valentina/src/app/widgets/vmaingraphicsscene.h

167 lines
5 KiB
C
Raw Normal View History

/************************************************************************
**
** @file vmaingraphicsscene.h
** @author Roman Telezhynskyi <dismine(at)gmail.com>
** @date November 15, 2013
**
** @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.
**
** Valentina 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.
**
** Valentina 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/>.
**
*************************************************************************/
2013-07-03 14:29:26 +02:00
#ifndef VMAINGRAPHICSSCENE_H
#define VMAINGRAPHICSSCENE_H
#include <QGraphicsScene>
#include "../options.h"
2013-07-25 14:00:51 +02:00
/**
* @brief The VMainGraphicsScene class main scene.
*/
class VMainGraphicsScene : public QGraphicsScene
{
2013-07-03 14:29:26 +02:00
Q_OBJECT
public:
/**
* @brief VMainGraphicsScene default constructor.
*/
2013-10-27 09:10:39 +01:00
VMainGraphicsScene();
/**
* @brief VMainGraphicsScene constructor.
* @param sceneRect scene rect.
* @param parent parent object.
*/
VMainGraphicsScene(const QRectF & sceneRect, QObject * parent = nullptr);
/**
* @brief getHorScrollBar return scene horizontal scrollbar.
* @return horizontal scrollbar.
*/
qint32 getHorScrollBar() const;
/**
* @brief setHorScrollBar set scene horizontal scrollbar.
* @param value horizontal scrollbar.
*/
void setHorScrollBar(const qint32 &value);
/**
* @brief getVerScrollBar return scene vertical scrollbar.
* @return vertical scrollbar.
*/
qint32 getVerScrollBar() const;
/**
* @brief setVerScrollBar set scene vertical scrollbar.
* @param value vertical scrollbar.
*/
void setVerScrollBar(const qint32 &value);
/**
* @brief transform return view transformation.
* @return view transformation.
*/
QTransform transform() const;
/**
* @brief setTransform set view transformation.
* @param transform view transformation.
*/
void setTransform(const QTransform &transform);
2013-07-25 14:00:51 +02:00
public slots:
/**
* @brief ChoosedItem emit ChoosedObject signal.
* @param id object id.
* @param type object scene type.
*/
void ChoosedItem(quint32 id, const SceneObject &type);
/**
* @brief SetFactor set current scale factor of scene.
* @param factor scene scale factor. scene scale factor.
*/
2013-10-27 09:10:39 +01:00
void SetFactor(qreal factor);
protected:
/**
* @brief mouseMoveEvent handle mouse move events.
* @param event mouse move event.
*/
2013-10-27 09:10:39 +01:00
void mouseMoveEvent(QGraphicsSceneMouseEvent* event);
/**
* @brief mousePressEvent mouse press events.
* @param event mouse press event
*/
2013-10-27 09:10:39 +01:00
void mousePressEvent(QGraphicsSceneMouseEvent *event);
2013-07-03 14:29:26 +02:00
signals:
/**
* @brief mouseMove send new mouse position.
* @param scenePos new mouse position.
*/
2013-10-27 09:10:39 +01:00
void mouseMove(QPointF scenePos);
/**
* @brief mousePress send new mouse press position.
* @param scenePos new mouse press position.
*/
2013-10-27 09:10:39 +01:00
void mousePress(QPointF scenePos);
/**
* @brief ChoosedObject send option choosed object.
* @param id object id.
* @param type object scene type.
*/
void ChoosedObject(quint32 id, SceneObject type);
/**
* @brief NewFactor send new scale factor.
* @param factor scene scale factor.
*/
2013-10-27 09:10:39 +01:00
void NewFactor(qreal factor);
private:
/**
* @brief horScrollBar value horizontal scroll bar.
*/
2013-10-27 09:10:39 +01:00
qint32 horScrollBar;
/**
* @brief verScrollBar value vertical scroll bar.
*/
2013-10-27 09:10:39 +01:00
qint32 verScrollBar;
/**
* @brief scaleFactor scale factor.
*/
2013-10-27 09:10:39 +01:00
qreal scaleFactor;
/**
* @brief _transform view transform value.
*/
QTransform _transform;
2013-07-03 14:29:26 +02:00
};
inline qint32 VMainGraphicsScene::getHorScrollBar() const
{
return horScrollBar;
}
inline void VMainGraphicsScene::setHorScrollBar(const qint32 &value)
{
horScrollBar = value;
}
inline qint32 VMainGraphicsScene::getVerScrollBar() const
{
return verScrollBar;
}
inline void VMainGraphicsScene::setVerScrollBar(const qint32 &value)
{
verScrollBar = value;
}
2013-07-03 14:29:26 +02:00
#endif // VMAINGRAPHICSSCENE_H