]> Shamusworld >> Repos - architektonas/blobdiff - src/actions/actiondrawlinetangent1.h
In the middle of major refactoring...
[architektonas] / src / actions / actiondrawlinetangent1.h
similarity index 71%
rename from src/actions/rs_actiondrawlinetangent1.h
rename to src/actions/actiondrawlinetangent1.h
index b772f74ca7a1bc9b138088f20c017fb4bdfdd08f..8d369c8b64d802e3332a03bf08851c879676cc71 100644 (file)
@@ -1,8 +1,8 @@
-#ifndef RS_ACTIONDRAWLINETANGENT1_H
-#define RS_ACTIONDRAWLINETANGENT1_H
+#ifndef __ACTIONDRAWLINETANGENT1_H__
+#define __ACTIONDRAWLINETANGENT1_H__
 
 #include "rs_line.h"
-#include "rs_previewactioninterface.h"
+#include "actioninterface.h"
 #include "vector.h"
 
 class RS_Line;
@@ -12,9 +12,10 @@ class RS_Entity;
  * This action class can handle user events to draw tangents from points
  * to circles.
  *
+ * @author James Hammons
  * @author Andrew Mustun
  */
-class RS_ActionDrawLineTangent1: public RS_PreviewActionInterface
+class ActionDrawLineTangent1: public ActionInterface
 {
        private:
                enum Status {
@@ -23,8 +24,8 @@ class RS_ActionDrawLineTangent1: public RS_PreviewActionInterface
                };
 
        public:
-               RS_ActionDrawLineTangent1(RS_EntityContainer & container, GraphicView & graphicView);
-               ~RS_ActionDrawLineTangent1();
+               ActionDrawLineTangent1(RS_EntityContainer & container, GraphicView & graphicView);
+               ~ActionDrawLineTangent1();
 
                virtual void trigger();
                virtual void mouseMoveEvent(QMouseEvent * e);
@@ -45,4 +46,4 @@ class RS_ActionDrawLineTangent1: public RS_PreviewActionInterface
                RS_LineData data;
 };
 
-#endif
+#endif // __ACTIONDRAWLINETANGENT1_H__