X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Factions%2Factiondrawpoint.cpp;h=891990def138b2f47c98e9f46be0e8ece433330b;hb=f62cebc26c7c3af447f0e4e4c43331f8589dce22;hp=67476b329bcb390d5c9b93e9adf4f333721b95a2;hpb=d774c2655ba2c3657a565f325411144452392277;p=architektonas diff --git a/src/actions/actiondrawpoint.cpp b/src/actions/actiondrawpoint.cpp index 67476b3..891990d 100644 --- a/src/actions/actiondrawpoint.cpp +++ b/src/actions/actiondrawpoint.cpp @@ -3,7 +3,9 @@ // 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 +// Portions copyright (C) 2001-2003 RibbonSoft +// Copyright (C) 2010 Underground Software +// See the README and GPLv2 files for licensing and warranty information // // JLH = James L. Hammons // @@ -14,12 +16,12 @@ #include "actiondrawpoint.h" -#include "rs_commandevent.h" -#include "rs_dialogfactory.h" +#include "commandevent.h" +#include "dialogfactory.h" #include "graphicview.h" -#include "rs_preview.h" +#include "preview.h" -ActionDrawPoint::ActionDrawPoint(RS_EntityContainer & container, GraphicView & graphicView): +ActionDrawPoint::ActionDrawPoint(EntityContainer & container, GraphicView & graphicView): ActionInterface("Draw Points", container, graphicView) { } @@ -32,7 +34,7 @@ void ActionDrawPoint::trigger() { if (pt.valid) { - RS_Point * point = new RS_Point(container, RS_PointData(pt)); + Point * point = new Point(container, PointData(pt)); container->addEntity(point); if (document) @@ -80,14 +82,14 @@ void ActionDrawPoint::coordinateEvent(Vector * e) trigger(); } -void ActionDrawPoint::commandEvent(RS_CommandEvent * e) +void ActionDrawPoint::commandEvent(CommandEvent * e) { QString c = e->getCommand().toLower(); if (checkCommand("help", c)) { - if (RS_DIALOGFACTORY != NULL) - RS_DIALOGFACTORY->commandMessage(msgAvailableCommands() + if (DIALOGFACTORY != NULL) + DIALOGFACTORY->commandMessage(msgAvailableCommands() + getAvailableCommands().join(", ")); return; @@ -102,16 +104,16 @@ QStringList ActionDrawPoint::getAvailableCommands() void ActionDrawPoint::updateMouseButtonHints() { - if (RS_DIALOGFACTORY != NULL) + if (DIALOGFACTORY != NULL) { switch (getStatus()) { case 0: - RS_DIALOGFACTORY->updateMouseWidget(tr("Specify location"), tr("Cancel")); + DIALOGFACTORY->updateMouseWidget(tr("Specify location"), tr("Cancel")); break; default: - RS_DIALOGFACTORY->updateMouseWidget("", ""); + DIALOGFACTORY->updateMouseWidget("", ""); break; } } @@ -124,11 +126,11 @@ void ActionDrawPoint::updateMouseCursor() void ActionDrawPoint::updateToolBar() { - if (RS_DIALOGFACTORY != NULL) + if (DIALOGFACTORY != NULL) { if (!isFinished()) - RS_DIALOGFACTORY->requestToolBar(RS2::ToolBarSnap); + DIALOGFACTORY->requestToolBar(RS2::ToolBarSnap); else - RS_DIALOGFACTORY->requestToolBar(RS2::ToolBarPoints); + DIALOGFACTORY->requestToolBar(RS2::ToolBarPoints); } }