]> Shamusworld >> Repos - architektonas/blobdiff - src/actions/actionselect.cpp
In the middle of major refactoring...
[architektonas] / src / actions / actionselect.cpp
similarity index 59%
rename from src/actions/rs_actionselect.cpp
rename to src/actions/actionselect.cpp
index 83077c7d54046ecce984ddf3331d36b74ac08b10..ab19e14a0d8afac296242135c95c24fc75bc6962 100644 (file)
@@ -1,4 +1,4 @@
-// rs_actionselect.cpp
+// actionselect.cpp
 //
 // Part of the Architektonas Project
 // Originally part of QCad Community Edition by Andrew Mustun
 // 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)
        {