]> Shamusworld >> Repos - architektonas/blob - src/actions/rs_actionselect.h
Refactoring: Moved RS_GraphicView to GraphicView.
[architektonas] / src / actions / rs_actionselect.h
1 #ifndef RS_ACTIONSELECT_H
2 #define RS_ACTIONSELECT_H
3
4 #include "rs_actioninterface.h"
5
6 /**
7  * This action class can handle user events to select entities.
8  *
9  * @author Andrew Mustun
10  */
11 class RS_ActionSelect: public RS_ActionInterface
12 {
13         public:
14                 RS_ActionSelect(RS_EntityContainer & container, GraphicView & graphicView, RS2::ActionType nextAction);
15                 ~RS_ActionSelect();
16
17                 void init(int status);
18                 void mouseReleaseEvent(QMouseEvent * e);
19                 void updateToolBar();
20
21         private:
22                 RS2::ActionType nextAction;
23 };
24
25 #endif