X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Factions%2Factionselectall.cpp;fp=src%2Factions%2Frs_actionselectall.cpp;h=4abe16393a432ca60f573cbb448021a55c569201;hb=d774c2655ba2c3657a565f325411144452392277;hp=912dce514d3b7cbdd06c8ed22a1031d76630586a;hpb=468780dd17f8b0ebb35427a9fc43491721d44d69;p=architektonas diff --git a/src/actions/rs_actionselectall.cpp b/src/actions/actionselectall.cpp similarity index 64% rename from src/actions/rs_actionselectall.cpp rename to src/actions/actionselectall.cpp index 912dce5..4abe163 100644 --- a/src/actions/rs_actionselectall.cpp +++ b/src/actions/actionselectall.cpp @@ -1,4 +1,4 @@ -// rs_actionselectall.cpp +// actionselectall.cpp // // Part of the Architektonas Project // Originally part of QCad Community Edition by Andrew Mustun @@ -12,35 +12,35 @@ // JLH 06/22/2010 Added this text. :-) // -#include "rs_actionselectall.h" +#include "actionselectall.h" #include "rs_dialogfactory.h" #include "rs_selection.h" -RS_ActionSelectAll::RS_ActionSelectAll(RS_EntityContainer & container, +ActionSelectAll::ActionSelectAll(RS_EntityContainer & container, GraphicView & graphicView, bool select): - RS_ActionInterface("Select All Entities", container, graphicView) + ActionInterface("Select All Entities", container, graphicView) { this->select = select; } -RS_ActionSelectAll::~RS_ActionSelectAll() +ActionSelectAll::~ActionSelectAll() { } -/*virtual*/ RS2::ActionType RS_ActionSelectAll::rtti() +/*virtual*/ RS2::ActionType ActionSelectAll::rtti() { return RS2::ActionSelectAll; } -void RS_ActionSelectAll::init(int status) +void ActionSelectAll::init(int status) { - RS_ActionInterface::init(status); + ActionInterface::init(status); trigger(); finish(); } -void RS_ActionSelectAll::trigger() +void ActionSelectAll::trigger() { RS_Selection s(*container, graphicView); s.selectAll(select);