X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Factions%2Factiondrawlinetangent2.h;fp=src%2Factions%2Frs_actiondrawlinetangent2.h;h=62e315d1a1733c6cbc17d879626c719522577528;hb=d774c2655ba2c3657a565f325411144452392277;hp=374e3041572edc52b2334d2af064b4e14fce12ae;hpb=468780dd17f8b0ebb35427a9fc43491721d44d69;p=architektonas diff --git a/src/actions/rs_actiondrawlinetangent2.h b/src/actions/actiondrawlinetangent2.h similarity index 71% rename from src/actions/rs_actiondrawlinetangent2.h rename to src/actions/actiondrawlinetangent2.h index 374e304..62e315d 100644 --- a/src/actions/rs_actiondrawlinetangent2.h +++ b/src/actions/actiondrawlinetangent2.h @@ -1,17 +1,18 @@ -#ifndef RS_ACTIONDRAWLINETANGENT2_H -#define RS_ACTIONDRAWLINETANGENT2_H +#ifndef __ACTIONDRAWLINETANGENT2_H__ +#define __ACTIONDRAWLINETANGENT2_H__ #include "rs_line.h" -#include "rs_previewactioninterface.h" +#include "actioninterface.h" class RS_Entity; /** * This action class can handle user events to draw tangents from circle to * circle. * + * @author James Hammons * @author Andrew Mustun */ -class RS_ActionDrawLineTangent2: public RS_PreviewActionInterface +class ActionDrawLineTangent2: public ActionInterface { private: enum Status { @@ -20,8 +21,8 @@ class RS_ActionDrawLineTangent2: public RS_PreviewActionInterface }; public: - RS_ActionDrawLineTangent2(RS_EntityContainer & container, GraphicView & graphicView); - ~RS_ActionDrawLineTangent2(); + ActionDrawLineTangent2(RS_EntityContainer & container, GraphicView & graphicView); + ~ActionDrawLineTangent2(); virtual void trigger(); virtual void mouseMoveEvent(QMouseEvent * e); @@ -43,4 +44,4 @@ class RS_ActionDrawLineTangent2: public RS_PreviewActionInterface RS_LineData data; }; -#endif +#endif // __ACTIONDRAWLINETANGENT2_H__