]> Shamusworld >> Repos - architektonas/blobdiff - src/actions/rs_actiondrawimage.cpp
Removed a bunch of cruft...
[architektonas] / src / actions / rs_actiondrawimage.cpp
index d68e5b517fd86cd4a4566048f8ab97b2d676c057..b80cfd574e0b89c16768c8fa643b9583ba4985d1 100644 (file)
 
 #include "rs_actiondrawimage.h"
 
+#include "rs_commandevent.h"
 #include "rs_creation.h"
 #include "rs_dialogfactory.h"
-#include "rs_graphicview.h"
+#include "graphicview.h"
 #include "rs_preview.h"
 
 /**
  * Constructor.
  */
-RS_ActionDrawImage::RS_ActionDrawImage(RS_EntityContainer & container, RS_GraphicView & graphicView):
+RS_ActionDrawImage::RS_ActionDrawImage(RS_EntityContainer & container, GraphicView & graphicView):
        RS_PreviewActionInterface("Image", container, graphicView)
 {
 }
@@ -125,13 +126,13 @@ void RS_ActionDrawImage::mouseMoveEvent(QMouseEvent * e)
 
 void RS_ActionDrawImage::mouseReleaseEvent(QMouseEvent * e)
 {
-//     if (RS2::qtToRsButtonState(e->button()) == RS2::LeftButton)
+//     if (e->button() == Qt::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)
        else if (e->button() == Qt::RightButton)
        {
                deleteSnapper();