]> Shamusworld >> Repos - architektonas/blobdiff - src/actions/rs_actionmodifytrimamount.cpp
Refactored CAD tool bars to use predefined actions.
[architektonas] / src / actions / rs_actionmodifytrimamount.cpp
index 65666c82c203f99af5ff0395ef42a0602e69920b..94a3ad8aca6d3f8869b8d64828f9d4cd3b7939c0 100644 (file)
 
 #include "rs_actionmodifytrimamount.h"
 
+#include "rs_commandevent.h"
 #include "rs_dialogfactory.h"
 #include "rs_modification.h"
 
 RS_ActionModifyTrimAmount::RS_ActionModifyTrimAmount(
-       RS_EntityContainer & container, RS_GraphicView & graphicView):
+       RS_EntityContainer & container, GraphicView & graphicView):
        RS_ActionInterface("Trim Entity by a given amount",
                container, graphicView)
 {
@@ -65,7 +66,7 @@ void RS_ActionModifyTrimAmount::mouseReleaseEvent(QMouseEvent * e)
        trimCoord = graphicView->toGraph(e->x(), e->y());
        trimEntity = catchEntity(e);
 
-       if (RS2::qtToRsButtonState(e->button()) == RS2::LeftButton)
+       if (e->button() == Qt::LeftButton)
        {
                switch (getStatus())
                {
@@ -93,7 +94,7 @@ void RS_ActionModifyTrimAmount::mouseReleaseEvent(QMouseEvent * e)
                        break;
                }
        }
-       else if (RS2::qtToRsButtonState(e->button()) == RS2::RightButton)
+       else if (e->button() == Qt::RightButton)
        {
                deleteSnapper();
                init(getStatus() - 1);