]> Shamusworld >> Repos - architektonas/blobdiff - src/actions/actiondrawimage.h
In the middle of major refactoring...
[architektonas] / src / actions / actiondrawimage.h
similarity index 83%
rename from src/actions/rs_actiondrawimage.h
rename to src/actions/actiondrawimage.h
index 47a330714c8cd2809a85ae002208b3f76d8cc628..79b3e8f874bedd1062d70d7cf12a16a00f5b06f0 100644 (file)
@@ -1,17 +1,18 @@
-#ifndef RS_ACTIONDRAWIMAGE_H
-#define RS_ACTIONDRAWIMAGE_H
+#ifndef __ACTIONDRAWIMAGE_H__
+#define __ACTIONDRAWIMAGE_H__
 
 #include <QtGui>
 #include "rs_image.h"
-#include "rs_previewactioninterface.h"
+#include "actioninterface.h"
 
 /**
  * This action class can handle user events for inserting bitmaps into the
  * current drawing.
  *
+ * @author James Hammons
  * @author Andrew Mustun
  */
-class RS_ActionDrawImage: public RS_PreviewActionInterface
+class ActionDrawImage: public ActionInterface
 {
        public:
                /**
@@ -29,8 +30,8 @@ class RS_ActionDrawImage: public RS_PreviewActionInterface
                };
 
        public:
-               RS_ActionDrawImage(RS_EntityContainer & container, GraphicView & graphicView);
-               ~RS_ActionDrawImage();
+               ActionDrawImage(RS_EntityContainer & container, GraphicView & graphicView);
+               ~ActionDrawImage();
 
                virtual RS2::ActionType rtti();
                virtual void init(int status = 0);
@@ -59,4 +60,4 @@ class RS_ActionDrawImage: public RS_PreviewActionInterface
                Status lastStatus;
 };
 
-#endif
+#endif // __ACTIONDRAWIMAGE_H__