X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Factions%2Factionmodifystretch.h;fp=src%2Factions%2Frs_actionmodifystretch.h;h=6b96d2852b4ecb56a0be85e9c8423a486c85603a;hb=d774c2655ba2c3657a565f325411144452392277;hp=a6cd584c864fb56ee178bd32c6d9e47f27c9f23e;hpb=468780dd17f8b0ebb35427a9fc43491721d44d69;p=architektonas diff --git a/src/actions/rs_actionmodifystretch.h b/src/actions/actionmodifystretch.h similarity index 72% rename from src/actions/rs_actionmodifystretch.h rename to src/actions/actionmodifystretch.h index a6cd584..6b96d28 100644 --- a/src/actions/rs_actionmodifystretch.h +++ b/src/actions/actionmodifystretch.h @@ -1,17 +1,17 @@ -#ifndef RS_ACTIONMODIFYSTRETCH_H -#define RS_ACTIONMODIFYSTRETCH_H +#ifndef __ACTIONMODIFYSTRETCH_H__ +#define __ACTIONMODIFYSTRETCH_H__ -#include "rs_previewactioninterface.h" +#include "actioninterface.h" #include "vector.h" /** * This action class can handle user events to move entities. * + * @author James Hammons * @author Andrew Mustun */ -class RS_ActionModifyStretch: public RS_PreviewActionInterface +class ActionModifyStretch: public ActionInterface { - //Q_OBJECT public: /** * Action States. @@ -24,8 +24,8 @@ class RS_ActionModifyStretch: public RS_PreviewActionInterface }; public: - RS_ActionModifyStretch(RS_EntityContainer & container, GraphicView & graphicView); - ~RS_ActionModifyStretch(); + ActionModifyStretch(RS_EntityContainer & container, GraphicView & graphicView); + ~ActionModifyStretch(); virtual void init(int status = 0); virtual void trigger(); @@ -43,4 +43,4 @@ class RS_ActionModifyStretch: public RS_PreviewActionInterface Vector targetPoint; }; -#endif +#endif // __ACTIONMODIFYSTRETCH_H__