]> Shamusworld >> Repos - architektonas/blobdiff - src/actions/rs_actiondrawline.cpp
Removed a bunch of cruft...
[architektonas] / src / actions / rs_actiondrawline.cpp
index 89a8ea5f4f00993c8ef81d052ade73cc9c1617e7..ce6ccdf8fdbe9078bb531800404ce9ab4d7ed41e 100644 (file)
 #include "rs_actiondrawline.h"
 
 #include "rs_actioneditundo.h"
+#include "rs_commandevent.h"
 #include "commands.h"
 #include "rs_dialogfactory.h"
-#include "rs_graphicview.h"
+#include "graphicview.h"
 #include "rs_preview.h"
 
-RS_ActionDrawLine::RS_ActionDrawLine(RS_EntityContainer & container, RS_GraphicView & graphicView):
+RS_ActionDrawLine::RS_ActionDrawLine(RS_EntityContainer & container, GraphicView & graphicView):
        RS_PreviewActionInterface("Draw lines", container, graphicView)
 {
        RS_DEBUG->print("RS_ActionDrawLine::RS_ActionDrawLine");
@@ -113,12 +114,12 @@ void RS_ActionDrawLine::mouseMoveEvent(QMouseEvent * e)
 
 void RS_ActionDrawLine::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();