]> Shamusworld >> Repos - architektonas/blob - src/actions/rs_actionoptionsdrawing.h
Major refactoring of actions: Moved implementation from header files
[architektonas] / src / actions / rs_actionoptionsdrawing.h
1 #ifndef RS_ACTIONOPTIONSDRAWING_H
2 #define RS_ACTIONOPTIONSDRAWING_H
3
4 #include "rs_actioninterface.h"
5
6 /**
7  * This action class can handle user events to change general
8  * application options.
9  *
10  * @author Andrew Mustun
11  */
12 class RS_ActionOptionsDrawing: public RS_ActionInterface
13 {
14         public:
15                 RS_ActionOptionsDrawing(RS_EntityContainer & container, RS_GraphicView & graphicView);
16                 ~RS_ActionOptionsDrawing();
17
18                 virtual RS2::ActionType rtti();
19                 virtual void init(int status = 0);
20                 virtual void trigger();
21 };
22
23 #endif