2017-04-23 15:05:48 +02:00
|
|
|
#ifndef CROPSCENE_HPP
|
|
|
|
#define CROPSCENE_HPP
|
|
|
|
|
2017-05-05 23:59:39 +02:00
|
|
|
#include <QFont>
|
2017-04-23 15:05:48 +02:00
|
|
|
#include <QGraphicsRectItem>
|
|
|
|
#include <QGraphicsScene>
|
2017-04-29 12:08:02 +02:00
|
|
|
#include <QGraphicsSceneContextMenuEvent>
|
2017-04-23 15:05:48 +02:00
|
|
|
#include <QGraphicsSceneMouseEvent>
|
|
|
|
#include <QKeyEvent>
|
2017-05-02 19:49:33 +02:00
|
|
|
#include <QMenu>
|
|
|
|
#include <functional>
|
2017-04-29 17:35:42 +02:00
|
|
|
class CropScene;
|
|
|
|
|
|
|
|
#include <cropeditor/drawing/drawitem.hpp>
|
|
|
|
|
2017-05-05 23:59:39 +02:00
|
|
|
class CropScene : public QGraphicsScene {
|
2017-05-09 17:26:00 +02:00
|
|
|
Q_OBJECT
|
2017-06-14 23:34:58 +02:00
|
|
|
public:
|
2017-05-09 17:26:00 +02:00
|
|
|
CropScene(QObject *parent, QPixmap *pixmap);
|
|
|
|
~CropScene();
|
|
|
|
QPen &pen();
|
|
|
|
QBrush &brush();
|
|
|
|
QFont &font();
|
|
|
|
void setDrawingSelection(QString name, std::function<DrawItem *()> drawAction);
|
|
|
|
QPixmap *pixmap() {
|
|
|
|
return _pixmap;
|
|
|
|
}
|
2017-06-26 15:43:12 +02:00
|
|
|
QGraphicsPolygonItem *polyItm() {
|
|
|
|
return polyItem;
|
|
|
|
}
|
|
|
|
QGraphicsRectItem *selRect() {
|
|
|
|
return rect;
|
|
|
|
}
|
2017-05-09 17:26:00 +02:00
|
|
|
|
2017-06-14 23:34:58 +02:00
|
|
|
public slots:
|
2017-05-09 17:26:00 +02:00
|
|
|
void fontAsk();
|
|
|
|
|
2017-06-14 23:34:58 +02:00
|
|
|
signals:
|
2017-05-09 17:26:00 +02:00
|
|
|
void closedWithRect(QRect rect);
|
|
|
|
|
2017-06-14 23:34:58 +02:00
|
|
|
protected:
|
2017-05-09 17:26:00 +02:00
|
|
|
void mouseMoveEvent(QGraphicsSceneMouseEvent *e) override;
|
|
|
|
void mouseReleaseEvent(QGraphicsSceneMouseEvent *e) override;
|
2017-06-28 22:26:18 +02:00
|
|
|
void mousePressEvent(QGraphicsSceneMouseEvent *e) override;
|
2017-06-27 00:27:04 +02:00
|
|
|
void wheelEvent(QGraphicsSceneWheelEvent *event) override; // WHEEEEEEL
|
2017-05-09 17:26:00 +02:00
|
|
|
void contextMenuEvent(QGraphicsSceneContextMenuEvent *e) override;
|
|
|
|
|
|
|
|
void keyReleaseEvent(QKeyEvent *e) override;
|
|
|
|
|
2017-06-14 23:34:58 +02:00
|
|
|
private:
|
2017-06-27 00:27:04 +02:00
|
|
|
void updateMag(QPointF scenePos);
|
|
|
|
void initMagnifierGrid();
|
2017-05-09 17:26:00 +02:00
|
|
|
void addDrawingAction(QMenu &menu, QString name, std::function<DrawItem *()> item);
|
|
|
|
void done();
|
|
|
|
std::function<DrawItem *()> drawingSelectionMaker;
|
|
|
|
QFlags<Qt::MouseButton> prevButtons;
|
|
|
|
QPixmap *_pixmap;
|
|
|
|
QGraphicsRectItem *rect = nullptr;
|
2017-06-27 00:02:27 +02:00
|
|
|
QGraphicsPixmapItem *magnifier = nullptr;
|
|
|
|
QGraphicsRectItem *magnifierBox = nullptr;
|
|
|
|
QGraphicsTextItem *magnifierHint = nullptr;
|
|
|
|
QGraphicsRectItem *magnifierHintBox = nullptr;
|
2017-05-09 17:26:00 +02:00
|
|
|
QPointF initPos;
|
|
|
|
QPen _pen;
|
|
|
|
QBrush _brush;
|
|
|
|
QFont _font;
|
|
|
|
QGraphicsPolygonItem *polyItem = nullptr;
|
|
|
|
DrawItem *drawingSelection = nullptr;
|
|
|
|
QMenu menu;
|
|
|
|
QString drawingName = "None";
|
|
|
|
QAction *display;
|
2017-06-27 00:02:27 +02:00
|
|
|
QList<QGraphicsRectItem *> gridRectsX;
|
|
|
|
QList<QGraphicsRectItem *> gridRectsY;
|
2017-04-23 15:05:48 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // CROPSCENE_HPP
|