]> Shamusworld >> Repos - architektonas/blob - src/actions/actionselect.h
Fixed problem with MDI activation.
[architektonas] / src / actions / actionselect.h
1 #ifndef __ACTIONSELECT_H__
2 #define __ACTIONSELECT_H__
3
4 #include "actioninterface.h"
5
6 /**
7  * This action class can handle user events to select entities.
8  *
9  * @author James Hammons
10  * @author Andrew Mustun
11  */
12 class ActionSelect: public ActionInterface
13 {
14         public:
15                 ActionSelect(EntityContainer & container, GraphicView & graphicView, RS2::ActionType nextAction);
16                 ~ActionSelect();
17
18                 void init(int status);
19                 void mouseReleaseEvent(QMouseEvent * e);
20                 void updateToolBar();
21
22         private:
23                 RS2::ActionType nextAction;
24 };
25
26 #endif  // __ACTIONSELECT_H__