X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Factions%2Factionprintpreview.cpp;h=ada1c137de9d5c995991337f47124d0807b71be8;hb=f62cebc26c7c3af447f0e4e4c43331f8589dce22;hp=d1c5fd111f482f36307ee44ccbc267ace4e581e9;hpb=d774c2655ba2c3657a565f325411144452392277;p=architektonas diff --git a/src/actions/actionprintpreview.cpp b/src/actions/actionprintpreview.cpp index d1c5fd1..ada1c13 100644 --- a/src/actions/actionprintpreview.cpp +++ b/src/actions/actionprintpreview.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,14 +16,14 @@ #include "actionprintpreview.h" -#include "rs_dialogfactory.h" +#include "dialogfactory.h" #include "drawing.h" #include "graphicview.h" /** * Constructor. */ -ActionPrintPreview::ActionPrintPreview(RS_EntityContainer & container, GraphicView & graphicView): +ActionPrintPreview::ActionPrintPreview(EntityContainer & container, GraphicView & graphicView): ActionInterface("Print Preview", container, graphicView) { showOptions(); @@ -95,7 +97,7 @@ void ActionPrintPreview::mouseReleaseEvent(QMouseEvent * e) break; default: - RS_DIALOGFACTORY->requestPreviousMenu(); + DIALOGFACTORY->requestPreviousMenu(); e->accept(); break; } @@ -105,7 +107,7 @@ void ActionPrintPreview::coordinateEvent(Vector *) { } -void ActionPrintPreview::commandEvent(RS_CommandEvent *) +void ActionPrintPreview::commandEvent(CommandEvent *) { } @@ -119,14 +121,14 @@ void ActionPrintPreview::showOptions() { ActionInterface::showOptions(); - RS_DIALOGFACTORY->requestOptions(this, true); + DIALOGFACTORY->requestOptions(this, true); } void ActionPrintPreview::hideOptions() { ActionInterface::hideOptions(); - RS_DIALOGFACTORY->requestOptions(this, false); + DIALOGFACTORY->requestOptions(this, false); } void ActionPrintPreview::updateMouseButtonHints()