X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Factions%2Factionmodifymoverotate.h;fp=src%2Factions%2Frs_actionmodifymoverotate.h;h=ca9c67ac4c6e36000f64da6078151b851dd73d89;hb=d774c2655ba2c3657a565f325411144452392277;hp=ad09386142b04e31cbcff6912c4ec4c6ca690c9d;hpb=468780dd17f8b0ebb35427a9fc43491721d44d69;p=architektonas diff --git a/src/actions/rs_actionmodifymoverotate.h b/src/actions/actionmodifymoverotate.h similarity index 78% rename from src/actions/rs_actionmodifymoverotate.h rename to src/actions/actionmodifymoverotate.h index ad09386..ca9c67a 100644 --- a/src/actions/rs_actionmodifymoverotate.h +++ b/src/actions/actionmodifymoverotate.h @@ -1,17 +1,18 @@ -#ifndef RS_ACTIONMODIFYMOVEROTATE_H -#define RS_ACTIONMODIFYMOVEROTATE_H +#ifndef __ACTIONMODIFYMOVEROTATE_H__ +#define __ACTIONMODIFYMOVEROTATE_H__ #include "rs_modification.h" -#include "rs_previewactioninterface.h" +#include "actioninterface.h" #include "vector.h" /** * This action class can handle user events to move and at the same * time rotate entities. * + * @author James Hammons * @author Andrew Mustun */ -class RS_ActionModifyMoveRotate: public RS_PreviewActionInterface +class ActionModifyMoveRotate: public ActionInterface { public: /** @@ -25,8 +26,8 @@ class RS_ActionModifyMoveRotate: public RS_PreviewActionInterface }; public: - RS_ActionModifyMoveRotate(RS_EntityContainer & container, GraphicView & graphicView); - ~RS_ActionModifyMoveRotate(); + ActionModifyMoveRotate(RS_EntityContainer & container, GraphicView & graphicView); + ~ActionModifyMoveRotate(); virtual RS2::ActionType rtti(); virtual void init(int status = 0); @@ -58,4 +59,4 @@ class RS_ActionModifyMoveRotate: public RS_PreviewActionInterface QString cmdAngle3; }; -#endif +#endif // __ACTIONMODIFYMOVEROTATE_H__