X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Factions%2Frs_actiondimradial.cpp;h=6248e5b33c3f1875a908c9e0caf2bac6b7868012;hb=be33e866f2121c48db93e06d743c5ae3826c1948;hp=ce138328a496aabe0451cec546a74134dc6e7584;hpb=16ce54abf01ca3032e42a5bb11a4afcf9014dcca;p=architektonas diff --git a/src/actions/rs_actiondimradial.cpp b/src/actions/rs_actiondimradial.cpp index ce13832..6248e5b 100644 --- a/src/actions/rs_actiondimradial.cpp +++ b/src/actions/rs_actiondimradial.cpp @@ -1,324 +1,320 @@ -/**************************************************************************** -** $Id: rs_actiondimradial.cpp 1134 2004-07-13 23:26:13Z andrew $ -** -** Copyright (C) 2001-2003 RibbonSoft. All rights reserved. -** -** This file is part of the qcadlib Library project. -** -** 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 LICENSE.GPL included in the -** packaging of this file. -** -** Licensees holding valid qcadlib Professional Edition licenses may use -** this file in accordance with the qcadlib Commercial License -** Agreement provided with the Software. -** -** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE -** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. -** -** See http://www.ribbonsoft.com for further details. -** -** Contact info@ribbonsoft.com if any conditions of this licensing are -** not clear to you. -** -**********************************************************************/ +// rs_actiondimradial.cpp +// +// Part of the Architektonas Project +// Originally part of QCad Community Edition by Andrew Mustun +// Extensively rewritten and refactored by James L. Hammons +// (C) 2010 Underground Software +// +// JLH = James L. Hammons +// +// Who When What +// --- ---------- ----------------------------------------------------------- +// JLH 06/03/2010 Added this text. :-) +// #include "rs_actiondimradial.h" -#include "rs_creation.h" -#include "rs_snapper.h" +#include "rs_commandevent.h" #include "rs_dialogfactory.h" +#include "graphicview.h" +#include "rs_preview.h" - - -RS_ActionDimRadial::RS_ActionDimRadial( - RS_EntityContainer& container, - RS_GraphicView& graphicView) - :RS_ActionDimension("Draw Radial Dimensions", - container, graphicView) { - reset(); +RS_ActionDimRadial::RS_ActionDimRadial(RS_EntityContainer & container, GraphicView & graphicView): RS_ActionDimension("Draw Radial Dimensions", + container, graphicView) +{ + reset(); } - -QAction * RS_ActionDimRadial::createGUIAction(RS2::ActionType /*type*/, QObject * /*parent*/) +RS_ActionDimRadial::~RS_ActionDimRadial() { - QAction * action = new QAction(tr("&Radial"), 0); -// QAction * action = new QAction(tr("Radial"), tr("&Radial"), -// QKeySequence(), NULL); - action->setStatusTip(tr("Radial Dimension")); +} - return action; +/*virtual*/ RS2::ActionType RS_ActionDimRadial::rtti() +{ + return RS2::ActionDimRadial; } void RS_ActionDimRadial::reset() { - RS_ActionDimension::reset(); + RS_ActionDimension::reset(); - edata = RS_DimRadialData(Vector(false), - 0.0); - entity = NULL; - pos = Vector(false); - RS_DIALOGFACTORY->requestOptions(this, true, true); + edata = RS_DimRadialData(Vector(false), + 0.0); + entity = NULL; + pos = Vector(false); + RS_DIALOGFACTORY->requestOptions(this, true, true); } - - -void RS_ActionDimRadial::trigger() { - RS_ActionDimension::trigger(); - - preparePreview(); - if (entity!=NULL) { - RS_DimRadial* newEntity = NULL; - - newEntity = new RS_DimRadial(container, - data, - edata); - - newEntity->setLayerToActive(); - newEntity->setPenToActive(); - newEntity->update(); - container->addEntity(newEntity); - - // upd. undo list: - if (document!=NULL) { - document->startUndoCycle(); - document->addUndoable(newEntity); - document->endUndoCycle(); - } - deleteSnapper(); - Vector rz = graphicView->getRelativeZero(); - graphicView->moveRelativeZero(Vector(0.0,0.0)); - graphicView->drawEntity(newEntity); - graphicView->moveRelativeZero(rz); - //drawSnapper(); - - } - else { - RS_DEBUG->print("RS_ActionDimRadial::trigger:" - " Entity is NULL\n"); - } +void RS_ActionDimRadial::trigger() +{ + RS_ActionDimension::trigger(); + + preparePreview(); + + if (entity != NULL) + { + RS_DimRadial * newEntity = NULL; + + newEntity = new RS_DimRadial(container, + data, + edata); + + newEntity->setLayerToActive(); + newEntity->setPenToActive(); + newEntity->update(); + container->addEntity(newEntity); + + // upd. undo list: + if (document != NULL) + { + document->startUndoCycle(); + document->addUndoable(newEntity); + document->endUndoCycle(); + } + deleteSnapper(); + Vector rz = graphicView->getRelativeZero(); + graphicView->moveRelativeZero(Vector(0.0, 0.0)); + graphicView->drawEntity(newEntity); + graphicView->moveRelativeZero(rz); + //drawSnapper(); + } + else + RS_DEBUG->print("RS_ActionDimRadial::trigger:" + " Entity is NULL\n"); } - -void RS_ActionDimRadial::preparePreview() { - if (entity!=NULL) { - double angle = data.definitionPoint.angleTo(pos); - double radius=0.0; - if (entity->rtti()==RS2::EntityArc) { - radius = ((RS_Arc*)entity)->getRadius(); - } else if (entity->rtti()==RS2::EntityCircle) { - radius = ((RS_Circle*)entity)->getRadius(); - } - - edata.definitionPoint.setPolar(radius, angle); - edata.definitionPoint += data.definitionPoint; - } +void RS_ActionDimRadial::preparePreview() +{ + if (entity != NULL) + { + double angle = data.definitionPoint.angleTo(pos); + double radius = 0.0; + + if (entity->rtti() == RS2::EntityArc) + radius = ((RS_Arc *)entity)->getRadius(); + else if (entity->rtti() == RS2::EntityCircle) + radius = ((RS_Circle *)entity)->getRadius(); + + edata.definitionPoint.setPolar(radius, angle); + edata.definitionPoint += data.definitionPoint; + } } +void RS_ActionDimRadial::mouseMoveEvent(QMouseEvent * e) +{ + RS_DEBUG->print("RS_ActionDimRadial::mouseMoveEvent begin"); + //Vector mouse(graphicView->toGraphX(e->x()), + // graphicView->toGraphY(e->y())); -void RS_ActionDimRadial::mouseMoveEvent(QMouseEvent* e) { - RS_DEBUG->print("RS_ActionDimRadial::mouseMoveEvent begin"); - - //Vector mouse(graphicView->toGraphX(e->x()), - // graphicView->toGraphY(e->y())); + switch (getStatus()) + { + case SetEntity: + entity = catchEntity(e, RS2::ResolveAll); + break; - switch (getStatus()) { - case SetEntity: - entity = catchEntity(e, RS2::ResolveAll); - break; + case SetPos: - case SetPos: - if (entity!=NULL) { - pos = snapPoint(e); + if (entity != NULL) + { + pos = snapPoint(e); - preparePreview(); + preparePreview(); - RS_DimRadial* d = new RS_DimRadial(preview, data, edata); - d->update(); + RS_DimRadial * d = new RS_DimRadial(preview, data, edata); + d->update(); - deletePreview(); - clearPreview(); - preview->addEntity(d); - drawPreview(); - } - break; + deletePreview(); + clearPreview(); + preview->addEntity(d); + drawPreview(); + } + break; - default: - break; - } + default: + break; + } - RS_DEBUG->print("RS_ActionDimRadial::mouseMoveEvent end"); + RS_DEBUG->print("RS_ActionDimRadial::mouseMoveEvent end"); } - - -void RS_ActionDimRadial::mouseReleaseEvent(QMouseEvent* e) { - - if (RS2::qtToRsButtonState(e->button())==RS2::LeftButton) { - switch (getStatus()) { - case SetEntity: { - RS_Entity* en = catchEntity(e, RS2::ResolveAll); - if (en!=NULL) { - if (en->rtti()==RS2::EntityArc || - en->rtti()==RS2::EntityCircle) { - entity = en; - if (entity->rtti()==RS2::EntityArc) { - data.definitionPoint = - ((RS_Arc*)entity)->getCenter(); - } else if (entity->rtti()==RS2::EntityCircle) { - data.definitionPoint = - ((RS_Circle*)entity)->getCenter(); - } - graphicView->moveRelativeZero(data.definitionPoint); - setStatus(SetPos); - } else { - RS_DIALOGFACTORY->commandMessage(tr("Not a circle " - "or arc entity")); - } - } - } - break; - - case SetPos: { - RS_CoordinateEvent ce(snapPoint(e)); - coordinateEvent(&ce); - } - break; - - default: - break; - } - } else if (RS2::qtToRsButtonState(e->button())==RS2::RightButton) { - deletePreview(); - deleteSnapper(); - clearPreview(); - init(getStatus()-1); - } +void RS_ActionDimRadial::mouseReleaseEvent(QMouseEvent * e) +{ + if (e->button() == Qt::LeftButton) + { + switch (getStatus()) + { + case SetEntity: { + RS_Entity * en = catchEntity(e, RS2::ResolveAll); + + if (en != NULL) + { + if (en->rtti() == RS2::EntityArc + || en->rtti() == RS2::EntityCircle) + { + entity = en; + + if (entity->rtti() == RS2::EntityArc) + data.definitionPoint = + ((RS_Arc *)entity)->getCenter(); + else if (entity->rtti() == RS2::EntityCircle) + data.definitionPoint = + ((RS_Circle *)entity)->getCenter(); + graphicView->moveRelativeZero(data.definitionPoint); + setStatus(SetPos); + } + else + RS_DIALOGFACTORY->commandMessage(tr("Not a circle " + "or arc entity")); + } + } + break; + + case SetPos: { + Vector ce(snapPoint(e)); + coordinateEvent(&ce); + } + break; + + default: + break; + } + } + else if (e->button() == Qt::RightButton) + { + deletePreview(); + deleteSnapper(); + clearPreview(); + init(getStatus() - 1); + } } - - -void RS_ActionDimRadial::coordinateEvent(RS_CoordinateEvent* e) { - if (e==NULL) { - return; - } - - switch (getStatus()) { - case SetPos: - pos = e->getCoordinate(); - trigger(); - reset(); - setStatus(SetEntity); - break; - - default: - break; - } +void RS_ActionDimRadial::coordinateEvent(Vector * e) +{ + if (e == NULL) + return; + + switch (getStatus()) + { + case SetPos: + pos = *e; + trigger(); + reset(); + setStatus(SetEntity); + break; + + default: + break; + } } - - -void RS_ActionDimRadial::commandEvent(RS_CommandEvent* e) { - QString c = e->getCommand().toLower(); - - if (checkCommand("help", c)) { - RS_DIALOGFACTORY->commandMessage(msgAvailableCommands() - + getAvailableCommands().join(", ")); - return; - } - - // setting new text label: - if (getStatus()==SetText) { - setText(c); - RS_DIALOGFACTORY->requestOptions(this, true, true); - graphicView->enableCoordinateInput(); - setStatus(lastStatus); - return; - } - - // command: text - if (checkCommand("text", c)) { - lastStatus = (Status)getStatus(); - graphicView->disableCoordinateInput(); - setStatus(SetText); - } - - // setting angle - if (getStatus()==SetPos) { - bool ok; - double a = RS_Math::eval(c, &ok); - if (ok==true) { - pos.setPolar(1.0, RS_Math::deg2rad(a)); - pos += data.definitionPoint; - trigger(); - reset(); - setStatus(SetEntity); - } else { - RS_DIALOGFACTORY->commandMessage(tr("Not a valid expression")); - } - return; - } +void RS_ActionDimRadial::commandEvent(RS_CommandEvent * e) +{ + QString c = e->getCommand().toLower(); + + if (checkCommand("help", c)) + { + RS_DIALOGFACTORY->commandMessage(msgAvailableCommands() + + getAvailableCommands().join(", ")); + return; + } + + // setting new text label: + if (getStatus() == SetText) + { + setText(c); + RS_DIALOGFACTORY->requestOptions(this, true, true); + graphicView->enableCoordinateInput(); + setStatus(lastStatus); + return; + } + + // command: text + if (checkCommand("text", c)) + { + lastStatus = (Status)getStatus(); + graphicView->disableCoordinateInput(); + setStatus(SetText); + } + + // setting angle + if (getStatus() == SetPos) + { + bool ok; + double a = RS_Math::eval(c, &ok); + + if (ok == true) + { + pos.setPolar(1.0, RS_Math::deg2rad(a)); + pos += data.definitionPoint; + trigger(); + reset(); + setStatus(SetEntity); + } + else + RS_DIALOGFACTORY->commandMessage(tr("Not a valid expression")); + + return; + } } +QStringList RS_ActionDimRadial::getAvailableCommands() +{ + QStringList cmd; + switch (getStatus()) + { + case SetEntity: + case SetPos: + cmd += command("text"); + break; -QStringList RS_ActionDimRadial::getAvailableCommands() { - QStringList cmd; - - switch (getStatus()) { - case SetEntity: - case SetPos: - cmd += command("text"); - break; - - default: - break; - } + default: + break; + } - return cmd; + return cmd; } - -void RS_ActionDimRadial::updateMouseButtonHints() { - switch (getStatus()) { - case SetEntity: - RS_DIALOGFACTORY->updateMouseWidget(tr("Select arc or circle entity"), - tr("Cancel")); - break; - case SetPos: - RS_DIALOGFACTORY->updateMouseWidget( - tr("Specify dimension line position or enter angle:"), - tr("Cancel")); - break; - case SetText: - RS_DIALOGFACTORY->updateMouseWidget(tr("Enter dimension text:"), ""); - break; - default: - RS_DIALOGFACTORY->updateMouseWidget("", ""); - break; - } +void RS_ActionDimRadial::updateMouseButtonHints() +{ + switch (getStatus()) + { + case SetEntity: + RS_DIALOGFACTORY->updateMouseWidget(tr("Select arc or circle entity"), + tr("Cancel")); + break; + + case SetPos: + RS_DIALOGFACTORY->updateMouseWidget( + tr("Specify dimension line position or enter angle:"), + tr("Cancel")); + break; + + case SetText: + RS_DIALOGFACTORY->updateMouseWidget(tr("Enter dimension text:"), ""); + break; + + default: + RS_DIALOGFACTORY->updateMouseWidget("", ""); + break; + } } +void RS_ActionDimRadial::showOptions() +{ + RS_ActionInterface::showOptions(); - -void RS_ActionDimRadial::showOptions() { - RS_ActionInterface::showOptions(); - - RS_DIALOGFACTORY->requestOptions(this, true); - //RS_DIALOGFACTORY->requestDimRadialOptions(edata, true); + RS_DIALOGFACTORY->requestOptions(this, true); + //RS_DIALOGFACTORY->requestDimRadialOptions(edata, true); } +void RS_ActionDimRadial::hideOptions() +{ + RS_ActionInterface::hideOptions(); - -void RS_ActionDimRadial::hideOptions() { - RS_ActionInterface::hideOptions(); - - //RS_DIALOGFACTORY->requestDimRadialOptions(edata, false); - RS_DIALOGFACTORY->requestOptions(this, false); + //RS_DIALOGFACTORY->requestDimRadialOptions(edata, false); + RS_DIALOGFACTORY->requestOptions(this, false); } - - // EOF