]> Shamusworld >> Repos - architektonas/blob - src/actions/actionoptionsdrawing.h
Fixed problem with MDI activation.
[architektonas] / src / actions / actionoptionsdrawing.h
1 #ifndef __ACTIONOPTIONSDRAWING_H__
2 #define __ACTIONOPTIONSDRAWING_H__
3
4 #include "actioninterface.h"
5
6 /**
7  * This action class can handle user events to change general
8  * application options.
9  *
10  * @author James Hammons
11  * @author Andrew Mustun
12  */
13 class ActionOptionsDrawing: public ActionInterface
14 {
15         public:
16                 ActionOptionsDrawing(EntityContainer & container, GraphicView & graphicView);
17                 ~ActionOptionsDrawing();
18
19                 virtual RS2::ActionType rtti();
20                 virtual void init(int status = 0);
21                 virtual void trigger();
22 };
23
24 #endif  // __ACTIONOPTIONSDRAWING_H__