valentina/src/widgets/vmaingraphicsscene.h

133 lines
3.6 KiB
C
Raw Normal View History

/************************************************************************
**
** @file vmaingraphicsscene.h
** @author Roman Telezhinsky <dismine@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
*/
class VMainGraphicsScene : public QGraphicsScene
{
2013-07-03 14:29:26 +02:00
Q_OBJECT
public:
/**
* @brief VMainGraphicsScene
*/
2013-10-27 09:10:39 +01:00
VMainGraphicsScene();
/**
* @brief VMainGraphicsScene
* @param sceneRect
* @param parent
*/
2013-10-27 09:10:39 +01:00
VMainGraphicsScene(const QRectF & sceneRect, QObject * parent = 0);
/**
* @brief getHorScrollBar
* @return
*/
2013-10-27 09:10:39 +01:00
inline qint32 getHorScrollBar() const {return horScrollBar;}
/**
* @brief setHorScrollBar
* @param value
*/
2013-10-27 09:10:39 +01:00
inline void setHorScrollBar(const qint32 &value) {horScrollBar = value;}
/**
* @brief getVerScrollBar
* @return
*/
2013-10-27 09:10:39 +01:00
inline qint32 getVerScrollBar() const {return verScrollBar;}
/**
* @brief setVerScrollBar
* @param value
*/
2013-10-27 09:10:39 +01:00
inline void setVerScrollBar(const qint32 &value) {verScrollBar = value;}
2013-07-25 14:00:51 +02:00
public slots:
/**
* @brief ChoosedItem
* @param id
* @param type
*/
void ChoosedItem(qint64 id, const Scene::Scenes &type);
/**
* @brief SetFactor
* @param factor
*/
2013-10-27 09:10:39 +01:00
void SetFactor(qreal factor);
protected:
/**
* @brief mouseMoveEvent
* @param event
*/
2013-10-27 09:10:39 +01:00
void mouseMoveEvent(QGraphicsSceneMouseEvent* event);
/**
* @brief mousePressEvent
* @param event
*/
2013-10-27 09:10:39 +01:00
void mousePressEvent(QGraphicsSceneMouseEvent *event);
2013-07-03 14:29:26 +02:00
signals:
/**
* @brief mouseMove
* @param scenePos
*/
2013-10-27 09:10:39 +01:00
void mouseMove(QPointF scenePos);
/**
* @brief mousePress
* @param scenePos
*/
2013-10-27 09:10:39 +01:00
void mousePress(QPointF scenePos);
/**
* @brief ChoosedObject
* @param id
* @param type
*/
2013-10-27 09:10:39 +01:00
void ChoosedObject(qint64 id, Scene::Scenes type);
/**
* @brief NewFactor
* @param factor
*/
2013-10-27 09:10:39 +01:00
void NewFactor(qreal factor);
private:
/**
* @brief horScrollBar
*/
2013-10-27 09:10:39 +01:00
qint32 horScrollBar;
/**
* @brief verScrollBar
*/
2013-10-27 09:10:39 +01:00
qint32 verScrollBar;
/**
* @brief scaleFactor
*/
2013-10-27 09:10:39 +01:00
qreal scaleFactor;
2013-07-03 14:29:26 +02:00
};
#endif // VMAINGRAPHICSSCENE_H