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