]> Shamusworld >> Repos - architektonas/blobdiff - src/actions/rs_actiondrawpoint.cpp
Refactoring: Moved RS_GraphicView to GraphicView.
[architektonas] / src / actions / rs_actiondrawpoint.cpp
index 8ec3a810a5f2f29e8a8fe295564a7671e739581e..820863903028762de03d75cfbb1f82d7c72e44d6 100644 (file)
 
 #include "rs_actiondrawpoint.h"
 
+#include "rs_commandevent.h"
 #include "rs_dialogfactory.h"
-#include "rs_graphicview.h"
+#include "graphicview.h"
 #include "rs_preview.h"
 
-RS_ActionDrawPoint::RS_ActionDrawPoint(RS_EntityContainer & container, RS_GraphicView & graphicView):
+RS_ActionDrawPoint::RS_ActionDrawPoint(RS_EntityContainer & container, GraphicView & graphicView):
        RS_PreviewActionInterface("Draw Points", container, graphicView)
 {
 }
@@ -56,12 +57,12 @@ void RS_ActionDrawPoint::mouseMoveEvent(QMouseEvent * e)
 
 void RS_ActionDrawPoint::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)
        {
                deleteSnapper();
                init(getStatus() - 1);