/**************************************************************************** ** ** This file is part of the LibreCAD project, a 2D CAD program ** ** Copyright (C) 2010 R. van Twisk (librecad@rvt.dds.nl) ** Copyright (C) 2001-2003 RibbonSoft. All rights reserved. ** ** ** This file may be distributed and/or modified under the terms of the ** GNU General Public License version 2 as published by the Free Software ** Foundation and appearing in the file gpl-2.0.txt included in the ** packaging of this file. ** ** This program is distributed in the hope that it will be useful, ** but WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ** GNU General Public License for more details. ** ** You should have received a copy of the GNU General Public License ** along with this program; if not, write to the Free Software ** Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA ** ** This copyright notice MUST APPEAR in all copies of the script! ** **********************************************************************/ #include "rs_actiondrawlinerectangle.h" #include #include "rs_dialogfactory.h" #include "rs_graphicview.h" #include "rs_commandevent.h" RS_ActionDrawLineRectangle::RS_ActionDrawLineRectangle( RS_EntityContainer& container, RS_GraphicView& graphicView) :RS_PreviewActionInterface("Draw rectangles", container, graphicView) { reset(); } RS_ActionDrawLineRectangle::~RS_ActionDrawLineRectangle() {} QAction* RS_ActionDrawLineRectangle::createGUIAction(RS2::ActionType /*type*/, QObject* /*parent*/) { // tr("&Rectangle"), QAction* action = new QAction(tr("Rectangle"), NULL); action->setIcon(QIcon(":/extui/linesrect.png")); //action->zetStatusTip(tr("Draw rectangles")); return action; } void RS_ActionDrawLineRectangle::reset() { for (int i=0; i<4; ++i) { data[i] = RS_LineData(RS_Vector(false), RS_Vector(false)); } } void RS_ActionDrawLineRectangle::init(int status) { RS_PreviewActionInterface::init(status); reset(); } void RS_ActionDrawLineRectangle::trigger() { RS_PreviewActionInterface::trigger(); RS_Line* line[4]; preparePreview(); // create and add rectangle: for (int i=0; i<4; ++i) { line[i] = new RS_Line(container, data[i]); line[i]->setLayerToActive(); line[i]->setPenToActive(); container->addEntity(line[i]); } // upd. undo list: if (document!=NULL) { document->startUndoCycle(); for (int i=0; i<4; ++i) { document->addUndoable(line[i]); } document->endUndoCycle(); } // upd. view graphicView->redraw(RS2::RedrawDrawing); graphicView->moveRelativeZero(corner2); } void RS_ActionDrawLineRectangle::mouseMoveEvent(QMouseEvent* e) { RS_DEBUG->print("RS_ActionDrawLineRectangle::mouseMoveEvent begin"); RS_Vector mouse = snapPoint(e); if (getStatus()==SetCorner2 && corner1.valid) { corner2 = mouse; deletePreview(); preparePreview(); for (int i=0; i<4; ++i) { preview->addEntity(new RS_Line(preview, data[i])); } drawPreview(); } RS_DEBUG->print("RS_ActionDrawLineRectangle::mouseMoveEvent end"); } void RS_ActionDrawLineRectangle::mouseReleaseEvent(QMouseEvent* e) { if (e->button()==Qt::LeftButton) { RS_CoordinateEvent ce(snapPoint(e)); coordinateEvent(&ce); } else if (e->button()==Qt::RightButton) { deletePreview(); init(getStatus()-1); } } void RS_ActionDrawLineRectangle::preparePreview() { data[0] = RS_LineData(corner1, RS_Vector(corner2.x, corner1.y)); data[1] = RS_LineData(RS_Vector(corner2.x, corner1.y), corner2); data[2] = RS_LineData(corner2, RS_Vector(corner1.x, corner2.y)); data[3] = RS_LineData(RS_Vector(corner1.x, corner2.y), corner1); } void RS_ActionDrawLineRectangle::coordinateEvent(RS_CoordinateEvent* e) { if (e==NULL) { return; } RS_Vector mouse = e->getCoordinate(); switch (getStatus()) { case SetCorner1: corner1 = mouse; graphicView->moveRelativeZero(mouse); setStatus(SetCorner2); break; case SetCorner2: corner2 = mouse; trigger(); setStatus(SetCorner1); break; default: break; } } void RS_ActionDrawLineRectangle::commandEvent(RS_CommandEvent* e) { QString c = e->getCommand().toLower(); if (checkCommand("help", c)) { if (RS_DIALOGFACTORY!=NULL) { RS_DIALOGFACTORY->commandMessage(msgAvailableCommands() + getAvailableCommands().join(", ")); } return; } } QStringList RS_ActionDrawLineRectangle::getAvailableCommands() { QStringList cmd; return cmd; } void RS_ActionDrawLineRectangle::updateMouseButtonHints() { if (RS_DIALOGFACTORY!=NULL) { switch (getStatus()) { case SetCorner1: RS_DIALOGFACTORY->updateMouseWidget(tr("Specify first corner"), tr("Cancel")); break; case SetCorner2: RS_DIALOGFACTORY->updateMouseWidget(tr("Specify second corner"), tr("Back")); break; default: RS_DIALOGFACTORY->updateMouseWidget("", ""); break; } } } void RS_ActionDrawLineRectangle::updateMouseCursor() { graphicView->setMouseCursor(RS2::CadCursor); } void RS_ActionDrawLineRectangle::updateToolBar() { if (RS_DIALOGFACTORY!=NULL) { if (isFinished()) { RS_DIALOGFACTORY->resetToolBar(); } } } // EOF