]> Shamusworld >> Repos - architektonas/blobdiff - src/actions/actiondrawlineparallel.h
In the middle of major refactoring...
[architektonas] / src / actions / actiondrawlineparallel.h
similarity index 74%
rename from src/actions/rs_actiondrawlineparallel.h
rename to src/actions/actiondrawlineparallel.h
index f3666cdaf37898321d78041c06a1906766fe9de9..cabe41f161a6c3ca2ae8a645a45d4cca1cb855b8 100644 (file)
@@ -1,19 +1,20 @@
-#ifndef RS_ACTIONDRAWLINEPARALLEL_H
-#define RS_ACTIONDRAWLINEPARALLEL_H
+#ifndef __ACTIONDRAWLINEPARALLEL_H__
+#define __ACTIONDRAWLINEPARALLEL_H__
 
 #include "rs_line.h"
-#include "rs_previewactioninterface.h"
+#include "actioninterface.h"
 #include "vector.h"
 
 class RS_Entity;
 
 /**
- * This action class can handle user events to draw parallel
- * lines, arcs and circles.
+ * This action class can handle user events to draw parallel lines, arcs and
+ * circles.
  *
+ * @author James Hammons
  * @author Andrew Mustun
  */
-class RS_ActionDrawLineParallel: public RS_PreviewActionInterface
+class ActionDrawLineParallel: public ActionInterface
 {
        private:
                enum Status {
@@ -24,8 +25,8 @@ class RS_ActionDrawLineParallel: public RS_PreviewActionInterface
                };
 
        public:
-               RS_ActionDrawLineParallel(RS_EntityContainer & container, GraphicView & graphicView);
-               ~RS_ActionDrawLineParallel();
+               ActionDrawLineParallel(RS_EntityContainer & container, GraphicView & graphicView);
+               ~ActionDrawLineParallel();
 
                virtual RS2::ActionType rtti();
                virtual void trigger();
@@ -58,4 +59,4 @@ class RS_ActionDrawLineParallel: public RS_PreviewActionInterface
                RS_Entity * entity;
 };
 
-#endif
+#endif // __ACTIONDRAWLINEPARALLEL_H__