X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Factions%2Frs_actionblocksedit.cpp;h=c8b163cf4cbe774ee1e74d411fa23f20a5dff2a6;hb=3f46c180da0806c9c263e6d87d0f1404632402da;hp=1a0208d43c7c4a8381910a71a89c4b5066eb1ca2;hpb=16ce54abf01ca3032e42a5bb11a4afcf9014dcca;p=architektonas diff --git a/src/actions/rs_actionblocksedit.cpp b/src/actions/rs_actionblocksedit.cpp index 1a0208d..c8b163c 100644 --- a/src/actions/rs_actionblocksedit.cpp +++ b/src/actions/rs_actionblocksedit.cpp @@ -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. ** @@ -26,43 +26,41 @@ #include "rs_actionblocksedit.h" -#include "rs_graphic.h" +#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(); }