-
Notifications
You must be signed in to change notification settings - Fork 0
/
paintscene.h
42 lines (31 loc) · 875 Bytes
/
paintscene.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#ifndef PAINTSCENE_H
#define PAINTSCENE_H
#include <QGraphicsScene>
#include <QGraphicsSceneMouseEvent>
#include "figura.h"
class PaintScene : public QGraphicsScene {
Q_OBJECT
Q_PROPERTY(int typeFigura READ typeFigura WRITE setTypeFigura NOTIFY typeFiguraChanged)
public:
explicit PaintScene(QObject *parent = 0);
~PaintScene();
int typeFigura() const;
void setTypeFigura(const int type);
enum FiguraTypes {
RetanguloType,
LosangoType,
TrianguloType,
ElipseType,
LinhaType,
PontoType
};
signals:
void typeFiguraChanged();
private:
Figura *tempFigura;
int m_typeFigura;
private:
void mousePressEvent(QGraphicsSceneMouseEvent * event);
void mouseMoveEvent(QGraphicsSceneMouseEvent *event);
};
#endif // PAINTSCENE_H