]> Shamusworld >> Repos - architektonas/blob - src/actions/actionselectcontour.h
In the middle of major refactoring...
[architektonas] / src / actions / actionselectcontour.h
1 #ifndef __ACTIONSELECTCONTOURS_H__
2 #define __ACTIONSELECTCONTOURS_H__
3
4 #include "actioninterface.h"
5
6 class RS_Entity;
7
8 /**
9  * This action class can handle user events to select contours.
10  *
11  * @author James Hammons
12  * @author Andrew Mustun
13  */
14 class ActionSelectContour: public ActionInterface
15 {
16         public:
17                 ActionSelectContour(RS_EntityContainer & container, GraphicView & graphicView);
18                 ~ActionSelectContour();
19
20                 virtual RS2::ActionType rtti();
21                 virtual void trigger();
22                 virtual void mouseReleaseEvent(QMouseEvent * e);
23                 virtual void updateMouseCursor();
24
25         private:
26                 RS_Entity * en;
27 };
28
29 #endif  // __ACTIONSELECTCONTOURS_H__