/**************************************************************************** ** ** 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_actiondrawlinepolygon2.h" #include #include "rs_dialogfactory.h" #include "rs_graphicview.h" #include "rs_commandevent.h" #include "rs_creation.h" RS_ActionDrawLinePolygonCorCor::RS_ActionDrawLinePolygonCorCor( RS_EntityContainer& container, RS_GraphicView& graphicView) :RS_PreviewActionInterface("Draw Polygons (Corner,Corner)", container, graphicView) { corner1 = RS_Vector(false); corner2 = RS_Vector(false); number = 3; } QAction* RS_ActionDrawLinePolygonCorCor::createGUIAction(RS2::ActionType /*type*/, QObject* /*parent*/) { // tr("Polygon") QAction* action = new QAction(tr("Polygo&n (Cor,Cor)"), NULL); action->setIcon(QIcon(":/extui/linespolygon2.png")); //action->zetStatusTip(tr("Draw polygon with two corners")); return action; } void RS_ActionDrawLinePolygonCorCor::trigger() { RS_PreviewActionInterface::trigger(); deletePreview(); RS_Creation creation(container, graphicView); bool ok = creation.createPolygon2(corner1, corner2, number); if (!ok) { RS_DEBUG->print("RS_ActionDrawLinePolygon2::trigger:" " No polygon added\n"); } } void RS_ActionDrawLinePolygonCorCor::mouseMoveEvent(QMouseEvent* e) { RS_DEBUG->print("RS_ActionDrawLinePolygon2::mouseMoveEvent begin"); RS_Vector mouse = snapPoint(e); switch (getStatus()) { case SetCorner1: break; case SetCorner2: if (corner1.valid) { corner2 = mouse; deletePreview(); RS_Creation creation(preview, NULL, false); creation.createPolygon2(corner1, corner2, number); drawPreview(); } break; default: break; } } void RS_ActionDrawLinePolygonCorCor::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_ActionDrawLinePolygonCorCor::coordinateEvent(RS_CoordinateEvent* e) { if (e==NULL) { return; } RS_Vector mouse = e->getCoordinate(); switch (getStatus()) { case SetCorner1: corner1 = mouse; setStatus(SetCorner2); graphicView->moveRelativeZero(mouse); break; case SetCorner2: corner2 = mouse; trigger(); break; default: break; } } void RS_ActionDrawLinePolygonCorCor::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; case SetNumber: RS_DIALOGFACTORY->updateMouseWidget(tr("Number:"), tr("Back")); break; default: RS_DIALOGFACTORY->updateMouseWidget("", ""); break; } } } void RS_ActionDrawLinePolygonCorCor::showOptions() { RS_ActionInterface::showOptions(); if (RS_DIALOGFACTORY!=NULL) { RS_DIALOGFACTORY->requestOptions(this, true); } } void RS_ActionDrawLinePolygonCorCor::hideOptions() { RS_ActionInterface::hideOptions(); if (RS_DIALOGFACTORY!=NULL) { RS_DIALOGFACTORY->requestOptions(this, false); } } void RS_ActionDrawLinePolygonCorCor::commandEvent(RS_CommandEvent* e) { QString c = e->getCommand().toLower(); if (checkCommand("help", c)) { if (RS_DIALOGFACTORY!=NULL) { RS_DIALOGFACTORY->commandMessage(msgAvailableCommands() + getAvailableCommands().join(", ")); } return; } switch (getStatus()) { case SetCorner1: case SetCorner2: if (checkCommand("number", c)) { deletePreview(); lastStatus = (Status)getStatus(); setStatus(SetNumber); } break; case SetNumber: { bool ok; int n = c.toInt(&ok); if (ok==true) { if (n>0 && n<10000) { number = n; } else { if (RS_DIALOGFACTORY!=NULL) { RS_DIALOGFACTORY->commandMessage(tr("Not a valid number. " "Try 1..9999")); } } } else { if (RS_DIALOGFACTORY!=NULL) { RS_DIALOGFACTORY->commandMessage(tr("Not a valid expression.")); } } if (RS_DIALOGFACTORY!=NULL) { RS_DIALOGFACTORY->requestOptions(this, true, true); } setStatus(lastStatus); } break; default: break; } } QStringList RS_ActionDrawLinePolygonCorCor::getAvailableCommands() { QStringList cmd; switch (getStatus()) { case SetCorner1: case SetCorner2: cmd += command("number"); break; default: break; } return cmd; } void RS_ActionDrawLinePolygonCorCor::updateMouseCursor() { graphicView->setMouseCursor(RS2::CadCursor); } void RS_ActionDrawLinePolygonCorCor::updateToolBar() { if (RS_DIALOGFACTORY!=NULL) { if (isFinished()) { RS_DIALOGFACTORY->resetToolBar(); } } } // EOF