]> Shamusworld >> Repos - architektonas/blobdiff - src/actions/rs_actiondrawlinerectangle.cpp
Removed a bunch of cruft...
[architektonas] / src / actions / rs_actiondrawlinerectangle.cpp
index 3dc5b2d6c9e1609c787be785b15d187331c20dd9..db82d0188dcc004b3ff31c1400a41f27b655d25f 100644 (file)
 
 #include "rs_actiondrawlinerectangle.h"
 
+#include "rs_commandevent.h"
 #include "rs_dialogfactory.h"
-#include "rs_graphicview.h"
+#include "graphicview.h"
 #include "rs_preview.h"
 
 RS_ActionDrawLineRectangle::RS_ActionDrawLineRectangle(
-       RS_EntityContainer & container, RS_GraphicView & graphicView):
+       RS_EntityContainer & container, GraphicView & graphicView):
        RS_PreviewActionInterface("Draw rectangles", container, graphicView)
 {
        reset();
@@ -106,12 +107,12 @@ void RS_ActionDrawLineRectangle::mouseMoveEvent(QMouseEvent * e)
 
 void RS_ActionDrawLineRectangle::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();