X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Factions%2Frs_actionmodifydelete.cpp;h=abfd500edd6640c50da0a41b0ba80b52d0902d1b;hb=be33e866f2121c48db93e06d743c5ae3826c1948;hp=bae019693fb14c82c66f29df7e96a5009c2942b3;hpb=16ce54abf01ca3032e42a5bb11a4afcf9014dcca;p=architektonas diff --git a/src/actions/rs_actionmodifydelete.cpp b/src/actions/rs_actionmodifydelete.cpp index bae0196..abfd500 100644 --- a/src/actions/rs_actionmodifydelete.cpp +++ b/src/actions/rs_actionmodifydelete.cpp @@ -1,108 +1,80 @@ -/**************************************************************************** -** $Id: rs_actionmodifydelete.cpp 1062 2004-01-16 21:51:20Z 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_actionmodifydelete.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_actionmodifydelete.h" -#include "rs_actionselectsingle.h" +#include "rs_dialogfactory.h" +#include "graphicview.h" #include "rs_modification.h" -#include "rs_snapper.h" -#include "rs_point.h" - - -RS_ActionModifyDelete::RS_ActionModifyDelete(RS_EntityContainer& container, - RS_GraphicView& graphicView) - :RS_ActionInterface("Delete Entities", - container, graphicView) {} - -QAction* RS_ActionModifyDelete::createGUIAction(RS2::ActionType /*type*/, QObject* /*parent*/) +RS_ActionModifyDelete::RS_ActionModifyDelete(RS_EntityContainer & container, + GraphicView & graphicView): RS_ActionInterface("Delete Entities", + container, graphicView) { - QAction * action = new QAction(tr("&Delete"), 0); -// QAction* action = new QAction(tr("Delete"), tr("&Delete"), -// QKeySequence(), NULL); - action->setStatusTip(tr("Delete Entities")); - return action; } - -void RS_ActionModifyDelete::init(int status) { - RS_ActionInterface::init(status); - - trigger(); +RS_ActionModifyDelete::~RS_ActionModifyDelete() +{ } - - -void RS_ActionModifyDelete::trigger() { - - RS_DEBUG->print("RS_ActionModifyDelete::trigger()"); - - RS_Modification m(*container, graphicView); - m.remove(); - - finish(); - - if (RS_DIALOGFACTORY!=NULL) { - RS_DIALOGFACTORY->updateSelectionWidget(container->countSelected()); - } +void RS_ActionModifyDelete::init(int status) +{ + RS_ActionInterface::init(status); + trigger(); } +void RS_ActionModifyDelete::trigger() +{ + RS_DEBUG->print("RS_ActionModifyDelete::trigger()"); + RS_Modification m(*container, graphicView); + m.remove(); + finish(); - -void RS_ActionModifyDelete::updateMouseButtonHints() { - if (RS_DIALOGFACTORY!=NULL) { - switch (getStatus()) { - //case Acknowledge: - // RS_DIALOGFACTORY->updateMouseWidget(tr("Acknowledge"), - // tr("Cancel")); - // break; - default: - RS_DIALOGFACTORY->updateMouseWidget("", ""); - break; - } - } + if (RS_DIALOGFACTORY != NULL) + RS_DIALOGFACTORY->updateSelectionWidget(container->countSelected()); } - - -void RS_ActionModifyDelete::updateMouseCursor() { - graphicView->setMouseCursor(RS2::DelCursor); +void RS_ActionModifyDelete::updateMouseButtonHints() +{ + if (RS_DIALOGFACTORY != NULL) + { + switch (getStatus()) + { + //case Acknowledge: + // RS_DIALOGFACTORY->updateMouseWidget(tr("Acknowledge"), + // tr("Cancel")); + // break; + default: + RS_DIALOGFACTORY->updateMouseWidget("", ""); + break; + } + } } - - -void RS_ActionModifyDelete::updateToolBar() { - if (RS_DIALOGFACTORY!=NULL) { - if (!isFinished()) { - RS_DIALOGFACTORY->requestToolBar(RS2::ToolBarModify); - } else { - RS_DIALOGFACTORY->requestToolBar(RS2::ToolBarMain); - } - } +void RS_ActionModifyDelete::updateMouseCursor() +{ + graphicView->setMouseCursor(RS2::DelCursor); } +void RS_ActionModifyDelete::updateToolBar() +{ + if (RS_DIALOGFACTORY != NULL) + { + if (!isFinished()) + RS_DIALOGFACTORY->requestToolBar(RS2::ToolBarModify); + else + RS_DIALOGFACTORY->requestToolBar(RS2::ToolBarMain); + } +} -// EOF