]> Shamusworld >> Repos - architektonas/blobdiff - src/actions/rs_actiondrawlinepolygon.cpp
Removed a bunch of cruft...
[architektonas] / src / actions / rs_actiondrawlinepolygon.cpp
index c32d062fead7ab1416e832f185765b77f3ac06ed..7bfe2bc810885467f64107630bd796a7866172e3 100644 (file)
 
 #include "rs_actiondrawlinepolygon.h"
 
+#include "rs_commandevent.h"
 #include "rs_creation.h"
 #include "rs_dialogfactory.h"
-#include "rs_graphicview.h"
+#include "graphicview.h"
 #include "rs_preview.h"
 
-RS_ActionDrawLinePolygon::RS_ActionDrawLinePolygon(RS_EntityContainer & container, RS_GraphicView & graphicView): RS_PreviewActionInterface("Draw Polygons",
+RS_ActionDrawLinePolygon::RS_ActionDrawLinePolygon(RS_EntityContainer & container, GraphicView & graphicView): RS_PreviewActionInterface("Draw Polygons",
                container, graphicView)
 {
        center = Vector(false);
@@ -85,12 +86,12 @@ void RS_ActionDrawLinePolygon::mouseMoveEvent(QMouseEvent * e)
 
 void RS_ActionDrawLinePolygon::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();
                clearPreview();