]> Shamusworld >> Repos - architektonas/blobdiff - src/actions/actiondrawtext.h
In the middle of major refactoring...
[architektonas] / src / actions / actiondrawtext.h
similarity index 78%
rename from src/actions/rs_actiondrawtext.h
rename to src/actions/actiondrawtext.h
index a8e9c467337d51d5d5f73534ef62d41bc5c8a41e..92c338040982ea9e8ef08a5fc106cb9993df2dcc 100644 (file)
@@ -1,16 +1,16 @@
-#ifndef RS_ACTIONDRAWTEXT_H
-#define RS_ACTIONDRAWTEXT_H
+#ifndef __ACTIONDRAWTEXT_H__
+#define __ACTIONDRAWTEXT_H__
 
-#include "rs_previewactioninterface.h"
+#include "actioninterface.h"
 #include "rs_text.h"
 
 /**
  * This action class can handle user events to draw texts.
  *
- * @author James L. Hammons
+ * @author James Hammons
  * @author Andrew Mustun
  */
-class RS_ActionDrawText: public RS_PreviewActionInterface
+class ActionDrawText: public ActionInterface
 {
        public:
                /**
@@ -23,8 +23,8 @@ class RS_ActionDrawText: public RS_PreviewActionInterface
                };
 
        public:
-               RS_ActionDrawText(RS_EntityContainer & container, GraphicView & graphicView);
-               ~RS_ActionDrawText();
+               ActionDrawText(RS_EntityContainer & container, GraphicView & graphicView);
+               ~ActionDrawText();
 
                virtual RS2::ActionType rtti();
                virtual void init(int status = 0);
@@ -52,4 +52,4 @@ class RS_ActionDrawText: public RS_PreviewActionInterface
                bool textChanged;
 };
 
-#endif
+#endif // __ACTIONDRAWTEXT_H__