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 vtablegraphicsview.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-29 12:31:50 +02:00
|
|
|
#ifndef VTABLEGRAPHICSVIEW_H
|
|
|
|
#define VTABLEGRAPHICSVIEW_H
|
|
|
|
|
|
|
|
#include <QGraphicsView>
|
|
|
|
|
2013-11-19 21:56:49 +01:00
|
|
|
/**
|
2014-01-27 13:27:26 +01:00
|
|
|
* @brief The VTableGraphicsView class table layout view.
|
2013-11-19 21:56:49 +01:00
|
|
|
*/
|
2013-11-04 21:35:15 +01:00
|
|
|
class VTableGraphicsView : public QGraphicsView
|
|
|
|
{
|
2013-08-29 12:31:50 +02:00
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2013-11-19 21:56:49 +01:00
|
|
|
/**
|
2014-01-27 13:27:26 +01:00
|
|
|
* @brief The typeMove_e enum type items moves.
|
2013-11-19 21:56:49 +01:00
|
|
|
*/
|
2013-08-29 12:31:50 +02:00
|
|
|
enum typeMove_e { Left, Right, Up, Down };
|
2014-02-26 09:18:59 +01:00
|
|
|
|
2014-02-26 10:22:05 +01:00
|
|
|
VTableGraphicsView(QGraphicsScene* pScene, QWidget *parent = nullptr);
|
2013-08-29 12:31:50 +02:00
|
|
|
signals:
|
|
|
|
/**
|
2014-01-27 13:27:26 +01:00
|
|
|
* @brief itemChect emit after change selection state detail.
|
|
|
|
* @param flag false - selected, true - don't selected.
|
2013-08-29 12:31:50 +02:00
|
|
|
*/
|
2013-10-27 09:10:39 +01:00
|
|
|
void itemChect( bool flag );
|
2013-08-29 12:31:50 +02:00
|
|
|
public slots:
|
|
|
|
/**
|
2014-01-27 13:27:26 +01:00
|
|
|
* @brief selectionChanged handle selection change.
|
2013-08-29 12:31:50 +02:00
|
|
|
*/
|
2013-10-27 09:10:39 +01:00
|
|
|
void selectionChanged();
|
2013-08-29 12:31:50 +02:00
|
|
|
/**
|
2014-01-27 13:27:26 +01:00
|
|
|
* @brief rotateItems handle rotatation detail.
|
2013-08-29 12:31:50 +02:00
|
|
|
*/
|
2014-02-26 09:18:59 +01:00
|
|
|
void rotateItems();
|
2013-08-29 12:31:50 +02:00
|
|
|
/**
|
2014-01-27 13:27:26 +01:00
|
|
|
* @brief MirrorItem mirror detail.
|
2013-08-29 12:31:50 +02:00
|
|
|
*/
|
2013-10-27 09:10:39 +01:00
|
|
|
void MirrorItem();
|
2013-08-29 12:31:50 +02:00
|
|
|
/**
|
2014-01-27 13:27:26 +01:00
|
|
|
* @brief ZoomIn zoom in paper scale.
|
2013-08-29 12:31:50 +02:00
|
|
|
*/
|
2014-02-26 09:18:59 +01:00
|
|
|
void ZoomIn();
|
2013-08-29 12:31:50 +02:00
|
|
|
/**
|
2014-01-27 13:27:26 +01:00
|
|
|
* @brief ZoomOut zoom out paper scale.
|
2013-08-29 12:31:50 +02:00
|
|
|
*/
|
2014-02-26 09:18:59 +01:00
|
|
|
void ZoomOut();
|
2013-08-29 12:31:50 +02:00
|
|
|
protected:
|
|
|
|
/**
|
2014-01-27 13:27:26 +01:00
|
|
|
* @brief wheelEvent handle wheel events.
|
|
|
|
* @param event wheel event.
|
2013-08-29 12:31:50 +02:00
|
|
|
*/
|
2013-10-27 09:10:39 +01:00
|
|
|
void wheelEvent ( QWheelEvent * event );
|
2013-08-29 12:31:50 +02:00
|
|
|
/**
|
2014-01-27 13:27:26 +01:00
|
|
|
* @brief mousePressEvent handle mouse press events.
|
|
|
|
* @param mousePress mouse press event.
|
2013-08-29 12:31:50 +02:00
|
|
|
*/
|
2013-10-27 09:10:39 +01:00
|
|
|
void mousePressEvent(QMouseEvent *mousePress);
|
2013-08-29 12:31:50 +02:00
|
|
|
/**
|
2014-01-27 13:27:26 +01:00
|
|
|
* @brief mouseReleaseEvent handle mouse release events.
|
|
|
|
* @param event mouse release event.
|
2013-08-29 12:31:50 +02:00
|
|
|
*/
|
2013-10-27 09:10:39 +01:00
|
|
|
void mouseReleaseEvent ( QMouseEvent * event );
|
2013-08-29 12:31:50 +02:00
|
|
|
/**
|
2014-01-27 13:27:26 +01:00
|
|
|
* @brief keyPressEvent handle key press events.
|
|
|
|
* @param event key press event.
|
2013-08-29 12:31:50 +02:00
|
|
|
*/
|
2013-10-27 09:10:39 +01:00
|
|
|
void keyPressEvent ( QKeyEvent * event );
|
2013-08-29 12:31:50 +02:00
|
|
|
/**
|
2014-01-27 13:27:26 +01:00
|
|
|
* @brief rotateIt rotate selected details on 180 degree.
|
2013-08-29 12:31:50 +02:00
|
|
|
*/
|
2013-10-27 09:10:39 +01:00
|
|
|
void rotateIt();
|
2013-08-29 12:31:50 +02:00
|
|
|
/**
|
2014-01-27 13:27:26 +01:00
|
|
|
* @brief MoveItem move selected detail.
|
|
|
|
* @param move type of move.
|
2013-08-29 12:31:50 +02:00
|
|
|
*/
|
2013-10-27 09:10:39 +01:00
|
|
|
void MoveItem( VTableGraphicsView::typeMove_e move );
|
2013-08-29 12:31:50 +02:00
|
|
|
|
|
|
|
};
|
|
|
|
|
2014-02-26 09:18:59 +01:00
|
|
|
inline void VTableGraphicsView::rotateItems()
|
|
|
|
{
|
|
|
|
rotateIt();
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void VTableGraphicsView::ZoomIn()
|
|
|
|
{
|
|
|
|
scale(1.1, 1.1);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void VTableGraphicsView::ZoomOut()
|
|
|
|
{
|
|
|
|
scale(1/1.1, 1/1.1);
|
|
|
|
}
|
|
|
|
|
2013-08-29 12:31:50 +02:00
|
|
|
#endif // VTABLEGRAPHICSVIEW_H
|