[TD]implement navigation styles
This commit is contained in:
committed by
WandererFan
parent
e53e231677
commit
9894964eb6
114
src/Mod/TechDraw/Gui/QGVNavStyleOpenSCAD.cpp
Normal file
114
src/Mod/TechDraw/Gui/QGVNavStyleOpenSCAD.cpp
Normal file
@@ -0,0 +1,114 @@
|
||||
/***************************************************************************
|
||||
* Copyright (c) 2022 Wanderer Fan <wandererfan@gmail.com> *
|
||||
* *
|
||||
* This file is part of the FreeCAD CAx development system. *
|
||||
* *
|
||||
* This library is free software; you can redistribute it and/or *
|
||||
* modify it under the terms of the GNU Library General Public *
|
||||
* License as published by the Free Software Foundation; either *
|
||||
* version 2 of the License, or (at your option) any later version. *
|
||||
* *
|
||||
* This library is distributed in the hope that it will be useful, *
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
||||
* GNU Library General Public License for more details. *
|
||||
* *
|
||||
* You should have received a copy of the GNU Library General Public *
|
||||
* License along with this library; see the file COPYING.LIB. If not, *
|
||||
* write to the Free Software Foundation, Inc., 59 Temple Place, *
|
||||
* Suite 330, Boston, MA 02111-1307, USA *
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
#include "PreCompiled.h"
|
||||
#ifndef _PreComp_
|
||||
#include <QApplication>
|
||||
#include <QGuiApplication>
|
||||
#include <QMouseEvent>
|
||||
#endif
|
||||
|
||||
#include "QGVPage.h"
|
||||
#include "QGVNavStyleOpenSCAD.h"
|
||||
|
||||
using namespace TechDrawGui;
|
||||
|
||||
namespace TechDrawGui {
|
||||
|
||||
QGVNavStyleOpenSCAD::QGVNavStyleOpenSCAD()
|
||||
{
|
||||
}
|
||||
|
||||
QGVNavStyleOpenSCAD::~QGVNavStyleOpenSCAD()
|
||||
{
|
||||
}
|
||||
|
||||
void QGVNavStyleOpenSCAD::handleKeyReleaseEvent(QKeyEvent *event)
|
||||
{
|
||||
//zoom mode 2
|
||||
if ( (event->key() == Qt::Key_Shift) && zoomingActive) {
|
||||
zoomingActive = false;
|
||||
event->accept();
|
||||
}
|
||||
}
|
||||
|
||||
//eat the RMB event so it doesn't trigger MDIViewPage context
|
||||
void QGVNavStyleOpenSCAD::handleMousePressEvent(QMouseEvent *event)
|
||||
{
|
||||
//zoom mode 2 Shift + RMB
|
||||
if ((event->button() == Qt::RightButton) &&
|
||||
(QApplication::keyboardModifiers() == Qt::ShiftModifier)) {
|
||||
startZoom(event->pos());
|
||||
event->accept();
|
||||
} else if (event->button() == Qt::RightButton) {
|
||||
//pan mode
|
||||
startPan(event->pos());
|
||||
event->accept();
|
||||
}
|
||||
|
||||
//zoom mode 2 MMB
|
||||
if (event->button() == Qt::MiddleButton) {
|
||||
startZoom(event->pos());
|
||||
event->accept();
|
||||
}
|
||||
}
|
||||
|
||||
void QGVNavStyleOpenSCAD::handleMouseMoveEvent(QMouseEvent *event)
|
||||
{
|
||||
if (getViewer()->isBalloonPlacing()) {
|
||||
getViewer()->setBalloonCursorPos(event->pos());
|
||||
}
|
||||
|
||||
if (panningActive) {
|
||||
pan(event->pos());
|
||||
event->accept();
|
||||
}
|
||||
|
||||
if (zoomingActive) {
|
||||
zoom(mouseZoomFactor(event->pos()));
|
||||
event->accept();
|
||||
}
|
||||
}
|
||||
|
||||
void QGVNavStyleOpenSCAD::handleMouseReleaseEvent(QMouseEvent *event)
|
||||
{
|
||||
if (getViewer()->isBalloonPlacing()) {
|
||||
placeBalloon(event->pos());
|
||||
}
|
||||
|
||||
if ((event->button() == Qt::RightButton) && panningActive) {
|
||||
stopPan();
|
||||
event->accept();
|
||||
}
|
||||
|
||||
if ((event->button() == Qt::RightButton) && zoomingActive) {
|
||||
zoomingActive = false;
|
||||
event->accept();
|
||||
}
|
||||
|
||||
if ((event->button() == Qt::MiddleButton) && zoomingActive) {
|
||||
zoomingActive = false;
|
||||
event->accept();
|
||||
}
|
||||
}
|
||||
|
||||
} // namespace TechDrawGui
|
||||
Reference in New Issue
Block a user