X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Factions%2Factiondrawtext.h;fp=src%2Factions%2Frs_actiondrawtext.h;h=92c338040982ea9e8ef08a5fc106cb9993df2dcc;hb=d774c2655ba2c3657a565f325411144452392277;hp=a8e9c467337d51d5d5f73534ef62d41bc5c8a41e;hpb=468780dd17f8b0ebb35427a9fc43491721d44d69;p=architektonas diff --git a/src/actions/rs_actiondrawtext.h b/src/actions/actiondrawtext.h similarity index 78% rename from src/actions/rs_actiondrawtext.h rename to src/actions/actiondrawtext.h index a8e9c46..92c3380 100644 --- a/src/actions/rs_actiondrawtext.h +++ b/src/actions/actiondrawtext.h @@ -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__