X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Factions%2Frs_actionmodifybevel.cpp;h=652e447356fc8165e81729bb4b00f8467b2ed85b;hb=3f46c180da0806c9c263e6d87d0f1404632402da;hp=a16beffb687e63f19a280e7f88197e4163fa53d2;hpb=16ce54abf01ca3032e42a5bb11a4afcf9014dcca;p=architektonas diff --git a/src/actions/rs_actionmodifybevel.cpp b/src/actions/rs_actionmodifybevel.cpp index a16beff..652e447 100644 --- a/src/actions/rs_actionmodifybevel.cpp +++ b/src/actions/rs_actionmodifybevel.cpp @@ -1,298 +1,322 @@ -/**************************************************************************** -** $Id: rs_actionmodifybevel.cpp 1161 2004-12-09 23:10:09Z 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_actionmodifybevel.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/04/2010 Added this text. :-) +// #include "rs_actionmodifybevel.h" -#include "rs_snapper.h" +#include "rs_dialogfactory.h" #include "rs_information.h" - -RS_ActionModifyBevel::RS_ActionModifyBevel(RS_EntityContainer& container, - RS_GraphicView& graphicView) - :RS_PreviewActionInterface("Bevel Entities", - container, graphicView) { - - entity1 = NULL; - coord1 = Vector(false); - entity2 = NULL; - coord2 = Vector(false); +RS_ActionModifyBevel::RS_ActionModifyBevel(RS_EntityContainer & container, RS_GraphicView & graphicView): RS_PreviewActionInterface("Bevel Entities", + container, graphicView) +{ + entity1 = NULL; + coord1 = Vector(false); + entity2 = NULL; + coord2 = Vector(false); } - -QAction* RS_ActionModifyBevel::createGUIAction(RS2::ActionType /*type*/, QObject* /*parent*/) +RS_ActionModifyBevel::~RS_ActionModifyBevel() { - QAction * action = new QAction(tr("&Bevel"), 0); -// QAction* action = new QAction(tr("Bevel"), tr("&Bevel"), -// QKeySequence(), NULL); - action->setStatusTip(tr("Bevel Entities")); - return action; } +/*virtual*/ RS2::ActionType RS_ActionModifyBevel::rtti() +{ + return RS2::ActionModifyBevel; +} -void RS_ActionModifyBevel::init(int status) { - RS_ActionInterface::init(status); +void RS_ActionModifyBevel::init(int status) +{ + RS_ActionInterface::init(status); - snapMode = RS2::SnapFree; - snapRes = RS2::RestrictNothing; + snapMode = RS2::SnapFree; + snapRes = RS2::RestrictNothing; } +void RS_ActionModifyBevel::trigger() +{ + RS_DEBUG->print("RS_ActionModifyBevel::trigger()"); + + if (entity1 != NULL && entity1->isAtomic() + && entity2 != NULL && entity2->isAtomic()) + { + RS_Modification m(*container, graphicView); + m.bevel(coord1, (RS_AtomicEntity *)entity1, + coord2, (RS_AtomicEntity *)entity2, + data); + + entity1 = NULL; + entity2 = NULL; + setStatus(SetEntity1); + + RS_DIALOGFACTORY->updateSelectionWidget(container->countSelected()); + } +} +void RS_ActionModifyBevel::mouseMoveEvent(QMouseEvent * e) +{ + RS_DEBUG->print("RS_ActionModifyBevel::mouseMoveEvent begin"); -void RS_ActionModifyBevel::trigger() { + Vector mouse = graphicView->toGraph(e->x(), e->y()); + RS_Entity * se = catchEntity(e, RS2::ResolveAll); - RS_DEBUG->print("RS_ActionModifyBevel::trigger()"); + switch (getStatus()) + { + case SetEntity1: + coord1 = mouse; + entity1 = se; + break; - if (entity1!=NULL && entity1->isAtomic() && - entity2!=NULL && entity2->isAtomic()) { + case SetEntity2: - RS_Modification m(*container, graphicView); - m.bevel(coord1, (RS_AtomicEntity*)entity1, - coord2, (RS_AtomicEntity*)entity2, - data); + if (entity1 != NULL && RS_Information::isTrimmable(entity1)) + { + coord2 = mouse; + entity2 = se; + } + break; - entity1 = NULL; - entity2 = NULL; - setStatus(SetEntity1); + default: + break; + } - RS_DIALOGFACTORY->updateSelectionWidget(container->countSelected()); - } + RS_DEBUG->print("RS_ActionModifyBevel::mouseMoveEvent end"); } +void RS_ActionModifyBevel::mouseReleaseEvent(QMouseEvent * e) +{ + if (e->button() == Qt::LeftButton) + { + switch (getStatus()) + { + case SetEntity1: + if (entity1 != NULL && entity1->isAtomic()) + setStatus(SetEntity2); + break; -void RS_ActionModifyBevel::mouseMoveEvent(QMouseEvent* e) { - RS_DEBUG->print("RS_ActionModifyBevel::mouseMoveEvent begin"); - - Vector mouse = graphicView->toGraph(e->x(), e->y()); - RS_Entity* se = catchEntity(e, RS2::ResolveAll); + case SetEntity2: - switch (getStatus()) { - case SetEntity1: - coord1 = mouse; - entity1 = se; - break; + if (entity2 != NULL && entity2->isAtomic() + && RS_Information::isTrimmable(entity1, entity2)) + trigger(); + break; - case SetEntity2: - if (entity1!=NULL && RS_Information::isTrimmable(entity1)) { - coord2 = mouse; - entity2 = se; + default: + break; } - break; - - default: - break; - } - - RS_DEBUG->print("RS_ActionModifyBevel::mouseMoveEvent end"); + } + else if (e->button() == Qt::RightButton) + { + deletePreview(); + deleteSnapper(); + init(getStatus() - 1); + } } - - -void RS_ActionModifyBevel::mouseReleaseEvent(QMouseEvent* e) { - if (RS2::qtToRsButtonState(e->button())==RS2::LeftButton) { - switch (getStatus()) { - case SetEntity1: - if (entity1!=NULL && entity1->isAtomic()) { - setStatus(SetEntity2); - } - break; - - case SetEntity2: - if (entity2!=NULL && entity2->isAtomic() && - RS_Information::isTrimmable(entity1, entity2)) { - trigger(); - } - break; - - default: - break; - } - } else if (RS2::qtToRsButtonState(e->button())==RS2::RightButton) { - deletePreview(); - deleteSnapper(); - init(getStatus()-1); - } +void RS_ActionModifyBevel::commandEvent(RS_CommandEvent * e) +{ + QString c = e->getCommand().toLower(); + + if (checkCommand("help", c)) + { + RS_DIALOGFACTORY->commandMessage(msgAvailableCommands() + + getAvailableCommands().join(", ")); + return; + } + + switch (getStatus()) + { + case SetEntity1: + case SetEntity2: + + if (checkCommand("length1", c)) + { + deleteSnapper(); + deletePreview(); + clearPreview(); + lastStatus = (Status)getStatus(); + setStatus(SetLength1); + } + else if (checkCommand("length2", c)) + { + deleteSnapper(); + deletePreview(); + clearPreview(); + lastStatus = (Status)getStatus(); + setStatus(SetLength2); + } + else if (checkCommand("trim", c)) + { + //deleteSnapper(); + //deletePreview(); + //clearPreview(); + //lastStatus = (Status)getStatus(); + //setStatus(SetTrim); + data.trim = !data.trim; + RS_DIALOGFACTORY->requestOptions(this, true, true); + } + break; + + case SetLength1: { + bool ok; + double l = RS_Math::eval(c, &ok); + + if (ok == true) + data.length1 = l; + else + RS_DIALOGFACTORY->commandMessage(tr("Not a valid expression")); + RS_DIALOGFACTORY->requestOptions(this, true, true); + setStatus(lastStatus); + } + break; + + case SetLength2: { + bool ok; + double l = RS_Math::eval(c, &ok); + + if (ok == true) + data.length2 = l; + else + RS_DIALOGFACTORY->commandMessage(tr("Not a valid expression")); + RS_DIALOGFACTORY->requestOptions(this, true, true); + setStatus(lastStatus); + } + break; + + /*case SetTrim: { + if (checkCommand()) { + data.trim = true; + } else if (c==cmdNo.toLower() || c==cmdNo2) { + data.trim = false; + } else { + RS_DIALOGFACTORY->commandMessage(tr("Please enter 'Yes' " + "or 'No'")); + } + RS_DIALOGFACTORY->requestOptions(this, true, true); + setStatus(lastStatus); + } + break;*/ + + default: + break; + } } - - -void RS_ActionModifyBevel::commandEvent(RS_CommandEvent* e) { - QString c = e->getCommand().toLower(); - - if (checkCommand("help", c)) { - RS_DIALOGFACTORY->commandMessage(msgAvailableCommands() - + getAvailableCommands().join(", ")); - return; - } - - switch (getStatus()) { - case SetEntity1: - case SetEntity2: - if (checkCommand("length1", c)) { - deleteSnapper(); - deletePreview(); - clearPreview(); - lastStatus = (Status)getStatus(); - setStatus(SetLength1); - } else if (checkCommand("length2", c)) { - deleteSnapper(); - deletePreview(); - clearPreview(); - lastStatus = (Status)getStatus(); - setStatus(SetLength2); - } else if (checkCommand("trim", c)) { - //deleteSnapper(); - //deletePreview(); - //clearPreview(); - //lastStatus = (Status)getStatus(); - //setStatus(SetTrim); - data.trim = !data.trim; - RS_DIALOGFACTORY->requestOptions(this, true, true); - } - break; - - case SetLength1: { - bool ok; - double l = RS_Math::eval(c, &ok); - if (ok==true) { - data.length1 = l; - } else { - RS_DIALOGFACTORY->commandMessage(tr("Not a valid expression")); - } - RS_DIALOGFACTORY->requestOptions(this, true, true); - setStatus(lastStatus); - } - break; - - case SetLength2: { - bool ok; - double l = RS_Math::eval(c, &ok); - if (ok==true) { - data.length2 = l; - } else { - RS_DIALOGFACTORY->commandMessage(tr("Not a valid expression")); - } - RS_DIALOGFACTORY->requestOptions(this, true, true); - setStatus(lastStatus); - } - break; - - /*case SetTrim: { - if (checkCommand()) { - data.trim = true; - } else if (c==cmdNo.toLower() || c==cmdNo2) { - data.trim = false; - } else { - RS_DIALOGFACTORY->commandMessage(tr("Please enter 'Yes' " - "or 'No'")); - } - RS_DIALOGFACTORY->requestOptions(this, true, true); - setStatus(lastStatus); - } - break;*/ - - default: - break; - } +QStringList RS_ActionModifyBevel::getAvailableCommands() +{ + QStringList cmd; + + switch (getStatus()) + { + case SetEntity1: + case SetEntity2: + cmd += command("length1"); + cmd += command("length2"); + cmd += command("trim"); + break; + + default: + break; + } + return cmd; } +void RS_ActionModifyBevel::showOptions() +{ + RS_ActionInterface::showOptions(); - -QStringList RS_ActionModifyBevel::getAvailableCommands() { - QStringList cmd; - switch (getStatus()) { - case SetEntity1: - case SetEntity2: - cmd += command("length1"); - cmd += command("length2"); - cmd += command("trim"); - break; - default: - break; - } - return cmd; + RS_DIALOGFACTORY->requestOptions(this, true); } +void RS_ActionModifyBevel::hideOptions() +{ + RS_ActionInterface::hideOptions(); - -void RS_ActionModifyBevel::showOptions() { - RS_ActionInterface::showOptions(); - - RS_DIALOGFACTORY->requestOptions(this, true); + RS_DIALOGFACTORY->requestOptions(this, false); } - - -void RS_ActionModifyBevel::hideOptions() { - RS_ActionInterface::hideOptions(); - - RS_DIALOGFACTORY->requestOptions(this, false); +void RS_ActionModifyBevel::updateMouseButtonHints() +{ + switch (getStatus()) + { + case SetEntity1: + RS_DIALOGFACTORY->updateMouseWidget(tr("Select first entity"), + tr("Cancel")); + break; + + case SetEntity2: + RS_DIALOGFACTORY->updateMouseWidget(tr("Select second entity"), + tr("Back")); + break; + + case SetLength1: + RS_DIALOGFACTORY->updateMouseWidget(tr("Enter length 1:"), + tr("Back")); + break; + + case SetLength2: + RS_DIALOGFACTORY->updateMouseWidget(tr("Enter length 2:"), + tr("Back")); + break; + + /*case SetTrim: + RS_DIALOGFACTORY->updateMouseWidget(tr("Trim on? (yes/no):"), + ""); + break;*/ + default: + RS_DIALOGFACTORY->updateMouseWidget("", ""); + break; + } } - - -void RS_ActionModifyBevel::updateMouseButtonHints() { - switch (getStatus()) { - case SetEntity1: - RS_DIALOGFACTORY->updateMouseWidget(tr("Select first entity"), - tr("Cancel")); - break; - case SetEntity2: - RS_DIALOGFACTORY->updateMouseWidget(tr("Select second entity"), - tr("Back")); - break; - case SetLength1: - RS_DIALOGFACTORY->updateMouseWidget(tr("Enter length 1:"), - tr("Back")); - break; - case SetLength2: - RS_DIALOGFACTORY->updateMouseWidget(tr("Enter length 2:"), - tr("Back")); - break; - /*case SetTrim: - RS_DIALOGFACTORY->updateMouseWidget(tr("Trim on? (yes/no):"), - ""); - break;*/ - default: - RS_DIALOGFACTORY->updateMouseWidget("", ""); - break; - } +void RS_ActionModifyBevel::updateMouseCursor() +{ + graphicView->setMouseCursor(RS2::CadCursor); } +void RS_ActionModifyBevel::updateToolBar() +{ + RS_DIALOGFACTORY->requestToolBar(RS2::ToolBarModify); +} +void RS_ActionModifyBevel::setLength1(double l1) +{ + data.length1 = l1; +} -void RS_ActionModifyBevel::updateMouseCursor() { - graphicView->setMouseCursor(RS2::CadCursor); +double RS_ActionModifyBevel::getLength1() +{ + return data.length1; } +void RS_ActionModifyBevel::setLength2(double l2) +{ + data.length2 = l2; +} +double RS_ActionModifyBevel::getLength2() +{ + return data.length2; +} -void RS_ActionModifyBevel::updateToolBar() { - RS_DIALOGFACTORY->requestToolBar(RS2::ToolBarModify); +void RS_ActionModifyBevel::setTrim(bool t) +{ + data.trim = t; } +bool RS_ActionModifyBevel::isTrimOn() +{ + return data.trim; +} -// EOF