X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Factions%2Frs_actiondrawlinerectangle.cpp;h=db82d0188dcc004b3ff31c1400a41f27b655d25f;hb=be33e866f2121c48db93e06d743c5ae3826c1948;hp=3dc5b2d6c9e1609c787be785b15d187331c20dd9;hpb=ee048ce722e7beb53e702825bb3285cd5cacd8bb;p=architektonas diff --git a/src/actions/rs_actiondrawlinerectangle.cpp b/src/actions/rs_actiondrawlinerectangle.cpp index 3dc5b2d..db82d01 100644 --- a/src/actions/rs_actiondrawlinerectangle.cpp +++ b/src/actions/rs_actiondrawlinerectangle.cpp @@ -14,12 +14,13 @@ #include "rs_actiondrawlinerectangle.h" +#include "rs_commandevent.h" #include "rs_dialogfactory.h" -#include "rs_graphicview.h" +#include "graphicview.h" #include "rs_preview.h" RS_ActionDrawLineRectangle::RS_ActionDrawLineRectangle( - RS_EntityContainer & container, RS_GraphicView & graphicView): + RS_EntityContainer & container, GraphicView & graphicView): RS_PreviewActionInterface("Draw rectangles", container, graphicView) { reset(); @@ -106,12 +107,12 @@ void RS_ActionDrawLineRectangle::mouseMoveEvent(QMouseEvent * e) void RS_ActionDrawLineRectangle::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(); deleteSnapper();