]> Shamusworld >> Repos - architektonas/blobdiff - src/actions/rs_actionmodifydelete.cpp
Major refactoring of actions: Moved implementation from header files
[architektonas] / src / actions / rs_actionmodifydelete.cpp
index bae019693fb14c82c66f29df7e96a5009c2942b3..15668e7d9a34b7598a7ccb69432cae253698ed1c 100644 (file)
-/****************************************************************************
-** $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 <jlhamm@acm.org>
+//
+// Who  When        What
+// ---  ----------  -----------------------------------------------------------
+// JLH  06/04/2010  Added this text. :-)
+//
 
 #include "rs_actionmodifydelete.h"
 
-#include "rs_actionselectsingle.h"
+#include "rs_dialogfactory.h"
+#include "rs_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,
+       RS_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