X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Factions%2Factionselect.cpp;fp=src%2Factions%2Frs_actionselect.cpp;h=ab19e14a0d8afac296242135c95c24fc75bc6962;hb=d774c2655ba2c3657a565f325411144452392277;hp=83077c7d54046ecce984ddf3331d36b74ac08b10;hpb=468780dd17f8b0ebb35427a9fc43491721d44d69;p=architektonas diff --git a/src/actions/rs_actionselect.cpp b/src/actions/actionselect.cpp similarity index 59% rename from src/actions/rs_actionselect.cpp rename to src/actions/actionselect.cpp index 83077c7..ab19e14 100644 --- a/src/actions/rs_actionselect.cpp +++ b/src/actions/actionselect.cpp @@ -1,4 +1,4 @@ -// rs_actionselect.cpp +// actionselect.cpp // // Part of the Architektonas Project // Originally part of QCad Community Edition by Andrew Mustun @@ -12,36 +12,36 @@ // JLH 06/04/2010 Added this text. :-) // -#include "rs_actionselect.h" +#include "actionselect.h" -#include "rs_actionselectsingle.h" +#include "actionselectsingle.h" #include "rs_dialogfactory.h" #include "graphicview.h" -RS_ActionSelect::RS_ActionSelect(RS_EntityContainer & container, GraphicView & graphicView, +ActionSelect::ActionSelect(RS_EntityContainer & container, GraphicView & graphicView, RS2::ActionType nextAction): - RS_ActionInterface("Select Entities", container, graphicView) + ActionInterface("Select Entities", container, graphicView) { this->nextAction = nextAction; } -RS_ActionSelect::~RS_ActionSelect() +ActionSelect::~ActionSelect() { } -void RS_ActionSelect::init(int status) +void ActionSelect::init(int status) { - RS_ActionInterface::init(status); - graphicView->setCurrentAction(new RS_ActionSelectSingle(*container, *graphicView)); + ActionInterface::init(status); + graphicView->setCurrentAction(new ActionSelectSingle(*container, *graphicView)); } -void RS_ActionSelect::mouseReleaseEvent(QMouseEvent * e) +void ActionSelect::mouseReleaseEvent(QMouseEvent * e) { if (e->button() == Qt::RightButton) init(getStatus() - 1); } -void RS_ActionSelect::updateToolBar() +void ActionSelect::updateToolBar() { if (RS_DIALOGFACTORY) {