]> Shamusworld >> Repos - architektonas/blobdiff - src/actions/actionzoomwindow.h
In the middle of major refactoring...
[architektonas] / src / actions / actionzoomwindow.h
similarity index 60%
rename from src/actions/rs_actionzoomwindow.h
rename to src/actions/actionzoomwindow.h
index f1f81659db52bc89f19e726ac376ad980282b427..628da6fefd4b90a1dc98eb30d556edb9f9bfdf23 100644 (file)
@@ -1,19 +1,20 @@
-#ifndef RS_ACTIONZOOMWINDOW_H
-#define RS_ACTIONZOOMWINDOW_H
+#ifndef __ACTIONZOOMWINDOW_H__
+#define __ACTIONZOOMWINDOW_H__
 
-#include "rs_previewactioninterface.h"
+#include "actioninterface.h"
 #include "vector.h"
 
 /**
  * This action class can handle user events to zoom in a window.
  *
+ * @author James Hammons
  * @author Andrew Mustun
  */
-class RS_ActionZoomWindow: public RS_PreviewActionInterface
+class ActionZoomWindow: public ActionInterface
 {
        public:
-               RS_ActionZoomWindow(RS_EntityContainer & container, GraphicView & graphicView, bool keepAspectRatio = true);
-               ~RS_ActionZoomWindow();
+               ActionZoomWindow(RS_EntityContainer & container, GraphicView & graphicView, bool keepAspectRatio = true);
+               ~ActionZoomWindow();
 
                virtual void init(int status = 0);
                virtual void trigger();
@@ -30,4 +31,4 @@ class RS_ActionZoomWindow: public RS_PreviewActionInterface
                bool keepAspectRatio;
 };
 
-#endif
+#endif // __ACTIONZOOMWINDOW_H__