]> Shamusworld >> Repos - architektonas/blobdiff - src/actions/actionmodifymoverotate.h
In the middle of major refactoring...
[architektonas] / src / actions / actionmodifymoverotate.h
similarity index 78%
rename from src/actions/rs_actionmodifymoverotate.h
rename to src/actions/actionmodifymoverotate.h
index ad09386142b04e31cbcff6912c4ec4c6ca690c9d..ca9c67ac4c6e36000f64da6078151b851dd73d89 100644 (file)
@@ -1,17 +1,18 @@
-#ifndef RS_ACTIONMODIFYMOVEROTATE_H
-#define RS_ACTIONMODIFYMOVEROTATE_H
+#ifndef __ACTIONMODIFYMOVEROTATE_H__
+#define __ACTIONMODIFYMOVEROTATE_H__
 
 #include "rs_modification.h"
-#include "rs_previewactioninterface.h"
+#include "actioninterface.h"
 #include "vector.h"
 
 /**
  * This action class can handle user events to move and at the same
  * time rotate entities.
  *
+ * @author James Hammons
  * @author Andrew Mustun
  */
-class RS_ActionModifyMoveRotate: public RS_PreviewActionInterface
+class ActionModifyMoveRotate: public ActionInterface
 {
        public:
                /**
@@ -25,8 +26,8 @@ class RS_ActionModifyMoveRotate: public RS_PreviewActionInterface
                };
 
        public:
-               RS_ActionModifyMoveRotate(RS_EntityContainer & container, GraphicView & graphicView);
-               ~RS_ActionModifyMoveRotate();
+               ActionModifyMoveRotate(RS_EntityContainer & container, GraphicView & graphicView);
+               ~ActionModifyMoveRotate();
 
                virtual RS2::ActionType rtti();
                virtual void init(int status = 0);
@@ -58,4 +59,4 @@ class RS_ActionModifyMoveRotate: public RS_PreviewActionInterface
                QString cmdAngle3;
 };
 
-#endif
+#endif // __ACTIONMODIFYMOVEROTATE_H__