]> Shamusworld >> Repos - architektonas/blobdiff - src/actions/actionselectwindow.h
In the middle of major refactoring...
[architektonas] / src / actions / actionselectwindow.h
similarity index 69%
rename from src/actions/rs_actionselectwindow.h
rename to src/actions/actionselectwindow.h
index 62aafc7a78dd3ad519a4e1205f27ed75ff92f0a4..f96bbffbf0645abbf5aac9b46cff8f36f6e5cdfc 100644 (file)
@@ -1,15 +1,16 @@
-#ifndef RS_ACTIONSELECTWINDOW_H
-#define RS_ACTIONSELECTWINDOW_H
+#ifndef __ACTIONSELECTWINDOW_H__
+#define __ACTIONSELECTWINDOW_H__
 
-#include "rs_previewactioninterface.h"
+#include "actioninterface.h"
 #include "vector.h"
 
 /**
  * This action class can handle user events to select all entities.
  *
+ * @author James Hammons
  * @author Andrew Mustun
  */
-class RS_ActionSelectWindow: public RS_PreviewActionInterface
+class ActionSelectWindow: public ActionInterface
 {
        public:
                /**
@@ -21,8 +22,8 @@ class RS_ActionSelectWindow: public RS_PreviewActionInterface
                };
 
        public:
-               RS_ActionSelectWindow(RS_EntityContainer & container, GraphicView & graphicView, bool select);
-               ~RS_ActionSelectWindow();
+               ActionSelectWindow(RS_EntityContainer & container, GraphicView & graphicView, bool select);
+               ~ActionSelectWindow();
 
                virtual RS2::ActionType rtti();
                virtual void init(int status = 0);
@@ -41,4 +42,4 @@ class RS_ActionSelectWindow: public RS_PreviewActionInterface
                bool select;
 };
 
-#endif
+#endif // __ACTIONSELECTWINDOW_H__