]> Shamusworld >> Repos - architektonas/blob - src/actions/rs_actionfileopen.h
Initial import
[architektonas] / src / actions / rs_actionfileopen.h
1 #ifndef RS_ACTIONFILEOPEN_H
2 #define RS_ACTIONFILEOPEN_H
3
4 #include "rs_actioninterface.h"
5
6 /**
7  * This action class can handle user events to open files.
8  *
9  * @author Andrew Mustun
10  */
11 class RS_ActionFileOpen: public RS_ActionInterface
12 {
13         //Q_OBJECT
14         public:
15                 RS_ActionFileOpen(RS_EntityContainer & container, RS_GraphicView & graphicView);
16                 ~RS_ActionFileOpen();
17
18                 static QAction * createGUIAction(RS2::ActionType type, QObject * parent);
19
20                 virtual void init(int status = 0);
21                 virtual void trigger();
22 };
23
24 #endif