2013-11-15 13:41:26 +01:00
|
|
|
/************************************************************************
|
2013-09-18 21:16:19 +02:00
|
|
|
**
|
2013-11-15 13:50:05 +01:00
|
|
|
** @file vmaingraphicsview.h
|
2014-04-30 07:38:52 +02:00
|
|
|
** @author Roman Telezhynskyi <dismine(at)gmail.com>
|
2013-11-15 13:50:05 +01:00
|
|
|
** @date November 15, 2013
|
2013-09-18 21:16:19 +02:00
|
|
|
**
|
2013-11-15 13:41:26 +01:00
|
|
|
** @brief
|
|
|
|
** @copyright
|
|
|
|
** This source code is part of the Valentine project, a pattern making
|
|
|
|
** program, whose allow create and modeling patterns of clothing.
|
|
|
|
** Copyright (C) 2013 Valentina project
|
|
|
|
** <https://bitbucket.org/dismine/valentina> All Rights Reserved.
|
2013-09-18 21:16:19 +02:00
|
|
|
**
|
2013-11-15 13:41:26 +01:00
|
|
|
** Valentina is free software: you can redistribute it and/or modify
|
2013-09-18 21:16:19 +02:00
|
|
|
** 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.
|
|
|
|
**
|
2013-10-27 13:36:29 +01:00
|
|
|
** Valentina is distributed in the hope that it will be useful,
|
2013-09-18 21:16:19 +02:00
|
|
|
** 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/>.
|
|
|
|
**
|
2013-11-15 13:41:26 +01:00
|
|
|
*************************************************************************/
|
2013-09-18 21:16:19 +02:00
|
|
|
|
2013-08-13 18:48:36 +02:00
|
|
|
#ifndef VMAINGRAPHICSVIEW_H
|
|
|
|
#define VMAINGRAPHICSVIEW_H
|
|
|
|
|
2014-08-19 14:46:52 +02:00
|
|
|
#include <QObject>
|
2013-08-13 18:48:36 +02:00
|
|
|
#include <QGraphicsView>
|
|
|
|
|
2014-08-19 14:46:52 +02:00
|
|
|
/*!
|
|
|
|
* This class adds ability to zoom QGraphicsView using mouse wheel. The point under cursor
|
|
|
|
* remains motionless while it's possible.
|
|
|
|
*
|
|
|
|
* Note that it becomes not possible when the scene's
|
|
|
|
* size is not large enough comparing to the viewport size. QGraphicsView centers the picture
|
|
|
|
* when it's smaller than the view. And QGraphicsView's scrolls boundaries don't allow to
|
|
|
|
* put any picture point at any viewport position.
|
|
|
|
*
|
|
|
|
* When the user starts scrolling, this class remembers original scene position and
|
|
|
|
* keeps it until scrolling is completed. It's better than getting original scene position at
|
|
|
|
* each scrolling step because that approach leads to position errors due to before-mentioned
|
|
|
|
* positioning restrictions.
|
|
|
|
*
|
|
|
|
* When zommed using scroll, this class emits zoomed() signal.
|
|
|
|
*
|
|
|
|
* Usage:
|
|
|
|
*
|
|
|
|
* new Graphics_view_zoom(view);
|
|
|
|
*
|
|
|
|
* The object will be deleted automatically when the view is deleted.
|
|
|
|
*
|
|
|
|
* You can set keyboard modifiers used for zooming using set_modified(). Zooming will be
|
|
|
|
* performed only on exact match of modifiers combination. The default modifier is Ctrl.
|
|
|
|
*
|
|
|
|
* You can change zoom velocity by calling set_zoom_factor_base().
|
|
|
|
* Zoom coefficient is calculated as zoom_factor_base^angle_delta
|
|
|
|
* (see QWheelEvent::angleDelta).
|
|
|
|
* The default zoom factor base is 1.0015.
|
|
|
|
*/
|
|
|
|
class GraphicsViewZoom : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
GraphicsViewZoom(QGraphicsView* view);
|
|
|
|
void gentle_zoom(double factor);
|
|
|
|
void set_modifiers(Qt::KeyboardModifiers modifiers);
|
|
|
|
void set_zoom_factor_base(double value);
|
|
|
|
signals:
|
|
|
|
void zoomed();
|
|
|
|
public slots:
|
|
|
|
void scrollingTime(qreal x);
|
|
|
|
void animFinished();
|
|
|
|
private:
|
|
|
|
QGraphicsView* _view;
|
|
|
|
Qt::KeyboardModifiers _modifiers;
|
|
|
|
double _zoom_factor_base;
|
|
|
|
QPointF target_scene_pos;
|
|
|
|
QPointF target_viewport_pos;
|
|
|
|
|
|
|
|
bool eventFilter(QObject* object, QEvent* event);
|
|
|
|
private:
|
|
|
|
/** @brief _numScheduledScalings keep number scheduled scalings. */
|
|
|
|
qint32 _numScheduledScalings;
|
|
|
|
};
|
|
|
|
|
2013-11-19 21:56:49 +01:00
|
|
|
/**
|
2014-01-27 13:27:26 +01:00
|
|
|
* @brief The VMainGraphicsView class main scene view.
|
2013-11-19 21:56:49 +01:00
|
|
|
*/
|
2013-11-04 21:35:15 +01:00
|
|
|
class VMainGraphicsView : public QGraphicsView
|
|
|
|
{
|
2013-08-13 18:48:36 +02:00
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2014-06-13 19:02:41 +02:00
|
|
|
|
2014-02-26 10:22:05 +01:00
|
|
|
explicit VMainGraphicsView(QWidget *parent = nullptr);
|
2013-08-13 18:48:36 +02:00
|
|
|
signals:
|
2013-11-19 21:56:49 +01:00
|
|
|
/**
|
2014-01-27 13:27:26 +01:00
|
|
|
* @brief NewFactor send new scale factor.
|
2014-01-24 17:10:53 +01:00
|
|
|
* @param factor scene scale factor.
|
2013-11-19 21:56:49 +01:00
|
|
|
*/
|
2013-10-16 11:17:34 +02:00
|
|
|
void NewFactor(qreal factor);
|
2014-07-23 10:56:32 +02:00
|
|
|
/**
|
|
|
|
* @brief MouseRelease help catch mouse release event.
|
|
|
|
*
|
|
|
|
* Usefull when you need show dialog after working with tool visualization.
|
|
|
|
*/
|
2014-08-26 19:23:08 +02:00
|
|
|
void MouseRelease();
|
|
|
|
void itemClicked(QGraphicsItem *item);
|
2013-10-14 11:31:56 +02:00
|
|
|
public slots:
|
2014-06-02 20:42:46 +02:00
|
|
|
void ZoomIn();
|
|
|
|
void ZoomOut();
|
2014-07-11 15:10:54 +02:00
|
|
|
void ZoomOriginal();
|
|
|
|
void ZoomFitBest();
|
2013-08-13 18:48:36 +02:00
|
|
|
protected:
|
2013-10-14 11:31:56 +02:00
|
|
|
void mousePressEvent(QMouseEvent *mousePress);
|
|
|
|
void mouseReleaseEvent(QMouseEvent *event);
|
2013-10-14 10:40:01 +02:00
|
|
|
private:
|
2014-08-19 14:46:52 +02:00
|
|
|
GraphicsViewZoom* zoom;
|
2013-08-13 18:48:36 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // VMAINGRAPHICSVIEW_H
|