]> Shamusworld >> Repos - architektonas/blobdiff - src/actions/rs_actiondrawarc.cpp
Removed a bunch of cruft...
[architektonas] / src / actions / rs_actiondrawarc.cpp
index c4fded99e432b67f4927e08e04fdc1c121c61aec..e47f1bd23e526d803acd9e4ba67f125cefa03c1e 100644 (file)
 
 #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_ActionDrawArc::RS_ActionDrawArc(RS_EntityContainer & container, RS_GraphicView & graphicView):
+RS_ActionDrawArc::RS_ActionDrawArc(RS_EntityContainer & container, GraphicView & graphicView):
        RS_PreviewActionInterface("Draw arcs", container, graphicView)
 {
        reset();
@@ -156,12 +157,12 @@ void RS_ActionDrawArc::mouseMoveEvent(QMouseEvent * e)
 
 void RS_ActionDrawArc::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();