]> Shamusworld >> Repos - architektonas/blobdiff - src/actions/rs_actiondimlinear.cpp
Removed a bunch of cruft...
[architektonas] / src / actions / rs_actiondimlinear.cpp
index db10186569f96ac01a28bef35988ac8967c8772e..9fe8faba15d3830c5cfb54c1634b4d92515d5b9a 100644 (file)
 
 #include "rs_actiondimlinear.h"
 
+#include "rs_commandevent.h"
 #include "rs_constructionline.h"
 #include "rs_dialogfactory.h"
-#include "rs_graphicview.h"
+#include "graphicview.h"
 #include "rs_preview.h"
 
 /**
@@ -26,7 +27,7 @@
  * @param fixedAngle true: The user can't change the angle.
  *                   false: The user can change the angle in a option widget.
  */
-RS_ActionDimLinear::RS_ActionDimLinear(RS_EntityContainer & container, RS_GraphicView & graphicView, double angle, bool fixedAngle):
+RS_ActionDimLinear::RS_ActionDimLinear(RS_EntityContainer & container, GraphicView & graphicView, double angle, bool fixedAngle):
        RS_ActionDimension("Draw linear dimensions", container, graphicView)
 {
        edata.angle = angle;
@@ -142,12 +143,12 @@ void RS_ActionDimLinear::mouseMoveEvent(QMouseEvent * e)
 
 void RS_ActionDimLinear::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();