X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Factions%2Frs_actiondrawpoint.cpp;h=820863903028762de03d75cfbb1f82d7c72e44d6;hb=27d4a138d23453e93a833e9347444b828a971cb4;hp=8ec3a810a5f2f29e8a8fe295564a7671e739581e;hpb=ee048ce722e7beb53e702825bb3285cd5cacd8bb;p=architektonas diff --git a/src/actions/rs_actiondrawpoint.cpp b/src/actions/rs_actiondrawpoint.cpp index 8ec3a81..8208639 100644 --- a/src/actions/rs_actiondrawpoint.cpp +++ b/src/actions/rs_actiondrawpoint.cpp @@ -14,11 +14,12 @@ #include "rs_actiondrawpoint.h" +#include "rs_commandevent.h" #include "rs_dialogfactory.h" -#include "rs_graphicview.h" +#include "graphicview.h" #include "rs_preview.h" -RS_ActionDrawPoint::RS_ActionDrawPoint(RS_EntityContainer & container, RS_GraphicView & graphicView): +RS_ActionDrawPoint::RS_ActionDrawPoint(RS_EntityContainer & container, GraphicView & graphicView): RS_PreviewActionInterface("Draw Points", container, graphicView) { } @@ -56,12 +57,12 @@ void RS_ActionDrawPoint::mouseMoveEvent(QMouseEvent * e) void RS_ActionDrawPoint::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);