]> Shamusworld >> Repos - architektonas/blobdiff - src/actions/rs_actiondrawarc3p.cpp
Refactored CAD tool bars to use predefined actions.
[architektonas] / src / actions / rs_actiondrawarc3p.cpp
index 6f5d641851b53fbabb65499d4ecb9ec817a36836..2450e76dbf7798829e4c3a79b92ac111b336569f 100644 (file)
 #include "rs_actiondrawarc3p.h"
 
 #include "rs_actiondrawarc.h"
+#include "rs_commandevent.h"
 #include "commands.h"
 #include "rs_dialogfactory.h"
-#include "rs_graphicview.h"
+#include "graphicview.h"
 #include "rs_preview.h"
 
-RS_ActionDrawArc3P::RS_ActionDrawArc3P(RS_EntityContainer & container, RS_GraphicView & graphicView):
+RS_ActionDrawArc3P::RS_ActionDrawArc3P(RS_EntityContainer & container, GraphicView & graphicView):
        RS_PreviewActionInterface("Draw arcs 3P", container, graphicView)
 {
        reset();
@@ -138,12 +139,12 @@ void RS_ActionDrawArc3P::mouseMoveEvent(QMouseEvent * e)
 
 void RS_ActionDrawArc3P::mouseReleaseEvent(QMouseEvent * e)
 {
-       if (RS2::qtToRsButtonState(e->button()) == RS2::LeftButton)
+       if (e->button() == Qt::LeftButton)
        {
                Vector ce(snapPoint(e));
                coordinateEvent(&ce);
        }
-       else if (RS2::qtToRsButtonState(e->button()) == RS2::RightButton)
+       else if (e->button() == Qt::RightButton)
        {
                deletePreview();
                deleteSnapper();