]> Shamusworld >> Repos - architektonas/blobdiff - src/actions/actionmodifystretch.h
In the middle of major refactoring...
[architektonas] / src / actions / actionmodifystretch.h
similarity index 72%
rename from src/actions/rs_actionmodifystretch.h
rename to src/actions/actionmodifystretch.h
index a6cd584c864fb56ee178bd32c6d9e47f27c9f23e..6b96d2852b4ecb56a0be85e9c8423a486c85603a 100644 (file)
@@ -1,17 +1,17 @@
-#ifndef RS_ACTIONMODIFYSTRETCH_H
-#define RS_ACTIONMODIFYSTRETCH_H
+#ifndef __ACTIONMODIFYSTRETCH_H__
+#define __ACTIONMODIFYSTRETCH_H__
 
-#include "rs_previewactioninterface.h"
+#include "actioninterface.h"
 #include "vector.h"
 
 /**
  * This action class can handle user events to move entities.
  *
+ * @author James Hammons
  * @author Andrew Mustun
  */
-class RS_ActionModifyStretch: public RS_PreviewActionInterface
+class ActionModifyStretch: public ActionInterface
 {
-       //Q_OBJECT
        public:
                /**
                 * Action States.
@@ -24,8 +24,8 @@ class RS_ActionModifyStretch: public RS_PreviewActionInterface
                };
 
        public:
-               RS_ActionModifyStretch(RS_EntityContainer & container, GraphicView & graphicView);
-               ~RS_ActionModifyStretch();
+               ActionModifyStretch(RS_EntityContainer & container, GraphicView & graphicView);
+               ~ActionModifyStretch();
 
                virtual void init(int status = 0);
                virtual void trigger();
@@ -43,4 +43,4 @@ class RS_ActionModifyStretch: public RS_PreviewActionInterface
                Vector targetPoint;
 };
 
-#endif
+#endif // __ACTIONMODIFYSTRETCH_H__