]> Shamusworld >> Repos - architektonas/blobdiff - src/actions/rs_actiondimleader.cpp
Refactored CAD tool bars to use predefined actions.
[architektonas] / src / actions / rs_actiondimleader.cpp
index c1d2aa9ba084c4ba3b5dbb6303e4492dccf66562..31d2995557b451ae39faee5b8506189cadfff457 100644 (file)
 
 #include "rs_actiondimleader.h"
 
+#include "rs_commandevent.h"
 #include "rs_dialogfactory.h"
-#include "rs_graphicview.h"
+#include "graphicview.h"
 #include "rs_preview.h"
 
-RS_ActionDimLeader::RS_ActionDimLeader(RS_EntityContainer & container, RS_GraphicView & graphicView):
+RS_ActionDimLeader::RS_ActionDimLeader(RS_EntityContainer & container, GraphicView & graphicView):
        RS_PreviewActionInterface("Draw leaders", container, graphicView)
 {
        reset();
@@ -121,12 +122,12 @@ void RS_ActionDimLeader::mouseMoveEvent(QMouseEvent * e)
 
 void RS_ActionDimLeader::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)
        {
                if (getStatus() == SetEndpoint)
                {