]> Shamusworld >> Repos - architektonas/blobdiff - src/actions/rs_actionblocksedit.cpp
Major refactoring of actions: Moved implementation from header files
[architektonas] / src / actions / rs_actionblocksedit.cpp
index e63c7a258410d11e2270215852057854c04f6043..c8b163cf4cbe774ee1e74d411fa23f20a5dff2a6 100644 (file)
@@ -10,7 +10,7 @@
 ** Foundation and appearing in the file LICENSE.GPL included in the
 ** packaging of this file.
 **
-** Licensees holding valid qcadlib Professional Edition licenses may use 
+** Licensees holding valid qcadlib Professional Edition licenses may use
 ** this file in accordance with the qcadlib Commercial License
 ** Agreement provided with the Software.
 **
 #include "drawing.h"
 #include "rs_dialogfactory.h"
 
+RS_ActionBlocksEdit::RS_ActionBlocksEdit(RS_EntityContainer & container, RS_GraphicView & graphicView):
+       RS_ActionInterface("Edit Block", container, graphicView)
+{
+}
 
-
-RS_ActionBlocksEdit::RS_ActionBlocksEdit(RS_EntityContainer& container,
-        RS_GraphicView& graphicView)
-        :RS_ActionInterface("Edit Block", container, graphicView) {}
-
-
-QAction* RS_ActionBlocksEdit::createGUIAction(RS2::ActionType /*type*/, QObject* /*parent*/)
+QAction * RS_ActionBlocksEdit::createGUIAction(RS2::ActionType /*type*/, QObject * /*parent*/)
 {
-        QAction* action = new QAction(tr("&Edit Block"), 0);
+       QAction * action = new QAction(tr("&Edit Block"), 0);
 //        QAction* action = new QAction(tr("Edit Block"), tr("&Edit Block"),
 //                             QKeySequence(), NULL);
-        action->setStatusTip(tr("Edit Block"));
-               return action;
+       action->setStatusTip(tr("Edit Block"));
+       return action;
 }
 
+void RS_ActionBlocksEdit::trigger()
+{
+       RS_DEBUG->print("edit block");
 
-void RS_ActionBlocksEdit::trigger() {
-    RS_DEBUG->print("edit block");
-    if (graphic!=NULL) {
-        if (RS_DIALOGFACTORY!=NULL) {
-            RS_DIALOGFACTORY->requestEditBlockWindow(graphic->getBlockList());
-        }
-    } else {
-        RS_DEBUG->print(RS_Debug::D_WARNING,
-               "RS_ActionBlocksEdit::trigger(): graphic is NULL");
-    }
-    finish();
+       if (graphic != NULL)
+       {
+               if (RS_DIALOGFACTORY != NULL)
+                       RS_DIALOGFACTORY->requestEditBlockWindow(graphic->getBlockList());
+       }
+       else
+               RS_DEBUG->print(RS_Debug::D_WARNING,
+                       "RS_ActionBlocksEdit::trigger(): graphic is NULL");
+       finish();
 }
 
-
-
-void RS_ActionBlocksEdit::init(int status) {
-    RS_ActionInterface::init(status);
-    trigger();
+void RS_ActionBlocksEdit::init(int status)
+{
+       RS_ActionInterface::init(status);
+       trigger();
 }