X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Factions%2Factiondrawlinefree.h;fp=src%2Factions%2Frs_actiondrawlinefree.h;h=2aabde6422a3edeac750e856cbc0c0d8fa64f96f;hb=d774c2655ba2c3657a565f325411144452392277;hp=97c781c16f07fcfba75bb3535acdd0266b4e0c19;hpb=468780dd17f8b0ebb35427a9fc43491721d44d69;p=architektonas diff --git a/src/actions/rs_actiondrawlinefree.h b/src/actions/actiondrawlinefree.h similarity index 61% rename from src/actions/rs_actiondrawlinefree.h rename to src/actions/actiondrawlinefree.h index 97c781c..2aabde6 100644 --- a/src/actions/rs_actiondrawlinefree.h +++ b/src/actions/actiondrawlinefree.h @@ -1,7 +1,7 @@ -#ifndef RS_ACTIONDRAWLINEFREE_H -#define RS_ACTIONDRAWLINEFREE_H +#ifndef __ACTIONDRAWLINEFREE_H__ +#define __ACTIONDRAWLINEFREE_H__ -#include "rs_actioninterface.h" +#include "actioninterface.h" #include "vector.h" class RS_Polyline; @@ -9,13 +9,14 @@ class RS_Polyline; /** * This action class can handle user events to draw freehand lines. * + * @author James Hammons * @author Andrew Mustun */ -class RS_ActionDrawLineFree: public RS_ActionInterface +class ActionDrawLineFree: public ActionInterface { public: - RS_ActionDrawLineFree(RS_EntityContainer & container, GraphicView & graphicView); - ~RS_ActionDrawLineFree(); + ActionDrawLineFree(RS_EntityContainer & container, GraphicView & graphicView); + ~ActionDrawLineFree(); virtual void trigger(); virtual void mouseMoveEvent(QMouseEvent * e); @@ -30,4 +31,4 @@ class RS_ActionDrawLineFree: public RS_ActionInterface RS_Polyline * polyline; }; -#endif +#endif // __ACTIONDRAWLINEFREE_H__