]> Shamusworld >> Repos - architektonas/blobdiff - src/actions/rs_actionlibraryinsert.cpp
Removed a bunch of cruft...
[architektonas] / src / actions / rs_actionlibraryinsert.cpp
index 4fdab2ff80b04d5a1efdcb2a0574b17af57a7dd6..b1a5757acd554a8fa4fc4486ae08ada8718ad460 100644 (file)
 
 #include "rs_actionlibraryinsert.h"
 
+#include "rs_commandevent.h"
 #include "rs_dialogfactory.h"
-#include "rs_graphicview.h"
+#include "graphicview.h"
 #include "rs_preview.h"
 #include "rs_units.h"
 
 /**
  * Constructor.
  */
-RS_ActionLibraryInsert::RS_ActionLibraryInsert(RS_EntityContainer & container, RS_GraphicView & graphicView):
+RS_ActionLibraryInsert::RS_ActionLibraryInsert(RS_EntityContainer & container, GraphicView & graphicView):
        RS_PreviewActionInterface("Library Insert", container, graphicView)
 {
 }
@@ -124,12 +125,12 @@ void RS_ActionLibraryInsert::mouseMoveEvent(QMouseEvent * e)
 
 void RS_ActionLibraryInsert::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)
        {
                deleteSnapper();
                init(getStatus() - 1);