/**************************************************************************** ** ** 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_actiondrawlinepolygon.h" #include #include "rs_dialogfactory.h" #include "rs_graphicview.h" #include "rs_commandevent.h" #include "rs_creation.h" RS_ActionDrawLinePolygonCenCor::RS_ActionDrawLinePolygonCenCor( RS_EntityContainer& container, RS_GraphicView& graphicView) :RS_PreviewActionInterface("Draw Polygons (Center,Corner)", container, graphicView) { center = RS_Vector(false); corner = RS_Vector(false); number = 3; } QAction* RS_ActionDrawLinePolygonCenCor::createGUIAction(RS2::ActionType /*type*/, QObject* /*parent*/) { // Polygon QAction* action = new QAction(tr("Pol&ygon (Cen,Cor)"), NULL); action->setIcon(QIcon(":/extui/linespolygon.png")); //action->zetStatusTip(tr("Draw polygon with center and corner")); return action; } void RS_ActionDrawLinePolygonCenCor::trigger() { RS_PreviewActionInterface::trigger(); deletePreview(); RS_Creation creation(container, graphicView); bool ok = creation.createPolygon(center, corner, number); if (!ok) { RS_DEBUG->print("RS_ActionDrawLinePolygon::trigger:" " No polygon added\n"); } } void RS_ActionDrawLinePolygonCenCor::mouseMoveEvent(QMouseEvent* e) { RS_DEBUG->print("RS_ActionDrawLinePolygon::mouseMoveEvent begin"); RS_Vector mouse = snapPoint(e); switch (getStatus()) { case SetCenter: break; case SetCorner: if (center.valid) { corner = mouse; deletePreview(); RS_Creation creation(preview, NULL, false); creation.createPolygon(center, corner, number); drawPreview(); } break; default: break; } } void RS_ActionDrawLinePolygonCenCor::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_ActionDrawLinePolygonCenCor::coordinateEvent(RS_CoordinateEvent* e) { if (e==NULL) { return; } RS_Vector mouse = e->getCoordinate(); switch (getStatus()) { case SetCenter: center = mouse; setStatus(SetCorner); graphicView->moveRelativeZero(mouse); break; case SetCorner: corner = mouse; trigger(); break; default: break; } } void RS_ActionDrawLinePolygonCenCor::updateMouseButtonHints() { if (RS_DIALOGFACTORY!=NULL) { switch (getStatus()) { case SetCenter: RS_DIALOGFACTORY->updateMouseWidget(tr("Specify center"), ""); break; case SetCorner: RS_DIALOGFACTORY->updateMouseWidget(tr("Specify a corner"), ""); break; case SetNumber: RS_DIALOGFACTORY->updateMouseWidget(tr("Enter number:"), ""); break; default: RS_DIALOGFACTORY->updateMouseWidget("", ""); break; } } } void RS_ActionDrawLinePolygonCenCor::showOptions() { RS_ActionInterface::showOptions(); if (RS_DIALOGFACTORY!=NULL) { RS_DIALOGFACTORY->requestOptions(this, true); } } void RS_ActionDrawLinePolygonCenCor::hideOptions() { RS_ActionInterface::hideOptions(); if (RS_DIALOGFACTORY!=NULL) { RS_DIALOGFACTORY->requestOptions(this, false); } } void RS_ActionDrawLinePolygonCenCor::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 SetCenter: case SetCorner: 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_ActionDrawLinePolygonCenCor::getAvailableCommands() { QStringList cmd; switch (getStatus()) { case SetCenter: case SetCorner: cmd += command("number"); break; default: break; } return cmd; } void RS_ActionDrawLinePolygonCenCor::updateMouseCursor() { graphicView->setMouseCursor(RS2::CadCursor); } void RS_ActionDrawLinePolygonCenCor::updateToolBar() { if (RS_DIALOGFACTORY!=NULL) { if (isFinished()) { RS_DIALOGFACTORY->resetToolBar(); } } } // EOF