X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Factions%2Frs_actionselectall.h;h=daef00f6496a35a1991b0ec449e1f18b8ee3ed46;hb=be33e866f2121c48db93e06d743c5ae3826c1948;hp=d032c438a80c90c7a7bba6132bc6f8929746c4a1;hpb=16ce54abf01ca3032e42a5bb11a4afcf9014dcca;p=architektonas diff --git a/src/actions/rs_actionselectall.h b/src/actions/rs_actionselectall.h index d032c43..daef00f 100644 --- a/src/actions/rs_actionselectall.h +++ b/src/actions/rs_actionselectall.h @@ -3,31 +3,23 @@ #include "rs_actioninterface.h" - /** * This action class can handle user events to select all entities. * * @author Andrew Mustun */ -class RS_ActionSelectAll : public RS_ActionInterface { - //Q_OBJECT -public: - RS_ActionSelectAll(RS_EntityContainer& container, - RS_GraphicView& graphicView, - bool select); - ~RS_ActionSelectAll() {} - - static QAction* createGUIAction(RS2::ActionType type, QObject* parent); - - virtual RS2::ActionType rtti() { - return RS2::ActionSelectAll; - } - - void init(int status); - virtual void trigger(); - -protected: - bool select; +class RS_ActionSelectAll: public RS_ActionInterface +{ + public: + RS_ActionSelectAll(RS_EntityContainer & container, GraphicView & graphicView, bool select); + ~RS_ActionSelectAll(); + + virtual RS2::ActionType rtti(); + void init(int status); + virtual void trigger(); + + protected: + bool select; }; #endif