2fffdecc86
--HG-- branch : develop
93 lines
3.4 KiB
C++
93 lines
3.4 KiB
C++
/****************************************************************************
|
|
**
|
|
** Copyright (C) 2013 Valentina project All Rights Reserved.
|
|
**
|
|
** This file is part of Valentina.
|
|
**
|
|
** Tox is free software: you can redistribute it and/or modify
|
|
** it under the terms of the GNU General Public License as published by
|
|
** the Free Software Foundation, either version 3 of the License, or
|
|
** (at your option) any later version.
|
|
**
|
|
** Tox 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 General Public License for more details.
|
|
**
|
|
** You should have received a copy of the GNU General Public License
|
|
** along with Valentina. If not, see <http://www.gnu.org/licenses/>.
|
|
**
|
|
****************************************************************************/
|
|
|
|
#include "vmaingraphicsview.h"
|
|
#include <QApplication>
|
|
#include <QWheelEvent>
|
|
#include <QScrollBar>
|
|
#include <QTimeLine>
|
|
|
|
VMainGraphicsView::VMainGraphicsView(QWidget *parent) :
|
|
QGraphicsView(parent), _numScheduledScalings(0){
|
|
this->setResizeAnchor(QGraphicsView::AnchorUnderMouse);
|
|
this->setTransformationAnchor(QGraphicsView::AnchorUnderMouse);
|
|
this->setRenderHints(QPainter::Antialiasing | QPainter::SmoothPixmapTransform);
|
|
}
|
|
|
|
void VMainGraphicsView::wheelEvent(QWheelEvent *event){
|
|
int numDegrees = event->delta() / 8;
|
|
int numSteps = numDegrees / 15; // see QWheelEvent documentation
|
|
_numScheduledScalings += numSteps;
|
|
if (_numScheduledScalings * numSteps < 0){ // if user moved the wheel in another direction, we reset
|
|
_numScheduledScalings = numSteps; // previously scheduled scalings
|
|
}
|
|
|
|
QTimeLine *anim = new QTimeLine(350, this);
|
|
anim->setUpdateInterval(20);
|
|
|
|
connect(anim, &QTimeLine::valueChanged, this, &VMainGraphicsView::scalingTime);
|
|
connect(anim, &QTimeLine::finished, this, &VMainGraphicsView::animFinished);
|
|
anim->start();
|
|
}
|
|
|
|
void VMainGraphicsView::scalingTime(qreal x){
|
|
Q_UNUSED(x);
|
|
qreal factor = 1.0 + qreal(_numScheduledScalings) / 300.0;
|
|
if (QApplication::keyboardModifiers() == Qt::ControlModifier){// If you press CTRL this code will execute
|
|
scale(factor, factor);
|
|
} else {
|
|
if(_numScheduledScalings < 0){
|
|
verticalScrollBar()->setValue(qRound(verticalScrollBar()->value() + factor*3.5));
|
|
} else {
|
|
verticalScrollBar()->setValue(qRound(verticalScrollBar()->value() - factor*3.5));
|
|
}
|
|
}
|
|
emit NewFactor(factor);
|
|
}
|
|
|
|
void VMainGraphicsView::animFinished(){
|
|
if (_numScheduledScalings > 0){
|
|
_numScheduledScalings--;
|
|
} else {
|
|
_numScheduledScalings++;
|
|
}
|
|
sender()->~QObject();
|
|
}
|
|
|
|
void VMainGraphicsView::mousePressEvent(QMouseEvent *mousePress){
|
|
if(mousePress->button() & Qt::LeftButton){
|
|
switch(QGuiApplication::keyboardModifiers()){
|
|
case Qt::ControlModifier:
|
|
QGraphicsView::setDragMode(QGraphicsView::ScrollHandDrag);
|
|
QGraphicsView::mousePressEvent(mousePress);
|
|
break;
|
|
default:
|
|
QGraphicsView::mousePressEvent(mousePress);
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
void VMainGraphicsView::mouseReleaseEvent(QMouseEvent *event){
|
|
QGraphicsView::mouseReleaseEvent ( event );
|
|
QGraphicsView::setDragMode( QGraphicsView::RubberBandDrag );
|
|
}
|