]> Shamusworld >> Repos - architektonas/blobdiff - src/actions/actiondrawellipseaxis.h
In the middle of major refactoring...
[architektonas] / src / actions / actiondrawellipseaxis.h
similarity index 70%
rename from src/actions/rs_actiondrawellipseaxis.h
rename to src/actions/actiondrawellipseaxis.h
index 2aacd5006b07ebb7c18d8eda7b8888c554d72ee4..31e54e3300d98debc745fc11d1f2a874d6289fb4 100644 (file)
@@ -1,16 +1,17 @@
-#ifndef RS_ACTIONDRAWELLIPSEAXIS_H
-#define RS_ACTIONDRAWELLIPSEAXIS_H
+#ifndef __ACTIONDRAWELLIPSEAXIS_H__
+#define __ACTIONDRAWELLIPSEAXIS_H__
 
 #include "rs_ellipse.h"
-#include "rs_previewactioninterface.h"
+#include "actioninterface.h"
 
 /**
- * This action class can handle user events to draw ellipses
- * with a center point and the endpoints of minor and major axis.
+ * This action class can handle user events to draw ellipses with a center
+ * point and the endpoints of minor and major axis.
  *
+ * @author James Hammons
  * @author Andrew Mustun
  */
-class RS_ActionDrawEllipseAxis: public RS_PreviewActionInterface
+class ActionDrawEllipseAxis: public ActionInterface
 {
        public:
                /**
@@ -25,8 +26,8 @@ class RS_ActionDrawEllipseAxis: public RS_PreviewActionInterface
                };
 
        public:
-               RS_ActionDrawEllipseAxis(RS_EntityContainer & container, GraphicView & graphicView, bool isArc);
-               ~RS_ActionDrawEllipseAxis();
+               ActionDrawEllipseAxis(RS_EntityContainer & container, GraphicView & graphicView, bool isArc);
+               ~ActionDrawEllipseAxis();
 
                virtual void init(int status = 0);
                virtual void trigger();
@@ -54,4 +55,4 @@ class RS_ActionDrawEllipseAxis: public RS_PreviewActionInterface
                bool isArc;
 };
 
-#endif
+#endif // __ACTIONDRAWELLIPSEAXIS_H__