]> Shamusworld >> Repos - architektonas/blobdiff - src/actions/actionmodifyentity.cpp
In the middle of major refactoring...
[architektonas] / src / actions / actionmodifyentity.cpp
similarity index 72%
rename from src/actions/rs_actionmodifyentity.cpp
rename to src/actions/actionmodifyentity.cpp
index 7aaaae48d46adb511d96b0292874deaeaecfb60e..f491f5670b026eb69a2e42222e6f6492714fb12a 100644 (file)
@@ -1,4 +1,4 @@
-// rs_actionmodifyentity.cpp
+// actionmodifyentity.cpp
 //
 // Part of the Architektonas Project
 // Originally part of QCad Community Edition by Andrew Mustun
 // JLH  06/04/2010  Added this text. :-)
 //
 
-#include "rs_actionmodifyentity.h"
+#include "actionmodifyentity.h"
 
 #include "rs_dialogfactory.h"
 #include "graphicview.h"
 
-RS_ActionModifyEntity::RS_ActionModifyEntity(RS_EntityContainer & container,
+ActionModifyEntity::ActionModifyEntity(RS_EntityContainer & container,
        GraphicView & graphicView):
-       RS_ActionInterface("Modify Entity", container, graphicView)
+       ActionInterface("Modify Entity", container, graphicView)
 {
        en = NULL;
 }
 
-RS_ActionModifyEntity::~RS_ActionModifyEntity()
+ActionModifyEntity::~ActionModifyEntity()
 {
 }
 
-void RS_ActionModifyEntity::trigger()
+void ActionModifyEntity::trigger()
 {
        if (en != NULL)
        {
@@ -61,10 +61,10 @@ void RS_ActionModifyEntity::trigger()
 
        }
        else
-               RS_DEBUG->print("RS_ActionModifyEntity::trigger: Entity is NULL\n");
+               RS_DEBUG->print("ActionModifyEntity::trigger: Entity is NULL\n");
 }
 
-void RS_ActionModifyEntity::mouseReleaseEvent(QMouseEvent * e)
+void ActionModifyEntity::mouseReleaseEvent(QMouseEvent * e)
 {
        if (e->button() == Qt::RightButton)
                init(getStatus() - 1);
@@ -75,9 +75,9 @@ void RS_ActionModifyEntity::mouseReleaseEvent(QMouseEvent * e)
        }
 }
 
-void RS_ActionModifyEntity::updateMouseCursor()
+void ActionModifyEntity::updateMouseCursor()
 {
        graphicView->setMouseCursor(RS2::SelectCursor);
 }
 
-// EOF
+