X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Factions%2Factionmodifyattributes.cpp;h=fcbe0f52c247fc6238b9b4dd945f08ca04a3734a;hb=2ee84c5948ede7fc2f7b4435c5edef42a030ac05;hp=f3cbd7e5e01017559e6851edfdfdaac5481ebac1;hpb=bd2b29c8735d83ab48df13c3efee53f63570473e;p=architektonas diff --git a/src/actions/actionmodifyattributes.cpp b/src/actions/actionmodifyattributes.cpp index f3cbd7e..fcbe0f5 100644 --- a/src/actions/actionmodifyattributes.cpp +++ b/src/actions/actionmodifyattributes.cpp @@ -16,13 +16,13 @@ #include "actionmodifyattributes.h" -#include "rs_dialogfactory.h" +#include "dialogfactory.h" #include "drawing.h" #include "graphicview.h" -#include "rs_modification.h" +#include "modification.h" ActionModifyAttributes::ActionModifyAttributes( - RS_EntityContainer & container, GraphicView & graphicView): + EntityContainer & container, GraphicView & graphicView): ActionInterface("Change Attributes", container, graphicView) { } @@ -39,10 +39,10 @@ void ActionModifyAttributes::init(int status) void ActionModifyAttributes::trigger() { - RS_DEBUG->print("ActionModifyAttributes::trigger()"); + DEBUG->print("ActionModifyAttributes::trigger()"); - RS_AttributesData data; - data.pen = RS_Pen(); + AttributesData data; + data.pen = Pen(); data.layer = "0"; data.changeColor = false; data.changeLineType = false; @@ -51,10 +51,10 @@ void ActionModifyAttributes::trigger() if (graphic) { - if (RS_DIALOGFACTORY->requestAttributesDialog(data, + if (DIALOGFACTORY->requestAttributesDialog(data, *graphic->getLayerList())) { - RS_Modification m(*container, graphicView); + Modification m(*container, graphicView); m.changeAttributes(data); } } @@ -62,7 +62,7 @@ void ActionModifyAttributes::trigger() finish(); graphicView->killSelectActions(); - RS_DIALOGFACTORY->updateSelectionWidget(container->countSelected()); + DIALOGFACTORY->updateSelectionWidget(container->countSelected()); } void ActionModifyAttributes::updateMouseButtonHints() @@ -70,10 +70,10 @@ void ActionModifyAttributes::updateMouseButtonHints() switch (getStatus()) { //case Acknowledge: - //RS_DIALOGFACTORY->updateMouseWidget(tr("Acknowledge"), tr("Cancel")); + //DIALOGFACTORY->updateMouseWidget(tr("Acknowledge"), tr("Cancel")); //break; default: - RS_DIALOGFACTORY->updateMouseWidget("", ""); + DIALOGFACTORY->updateMouseWidget("", ""); break; } } @@ -86,7 +86,7 @@ void ActionModifyAttributes::updateMouseCursor() void ActionModifyAttributes::updateToolBar() { if (!isFinished()) - RS_DIALOGFACTORY->requestToolBar(RS2::ToolBarModify); + DIALOGFACTORY->requestToolBar(RS2::ToolBarModify); else - RS_DIALOGFACTORY->requestToolBar(RS2::ToolBarMain); + DIALOGFACTORY->requestToolBar(RS2::ToolBarMain); }