]> Shamusworld >> Repos - architektonas/blobdiff - src/actions/actionprintpreview.cpp
Bugfixes related to removing Snapper class.
[architektonas] / src / actions / actionprintpreview.cpp
index d1c5fd111f482f36307ee44ccbc267ace4e581e9..ada1c137de9d5c995991337f47124d0807b71be8 100644 (file)
@@ -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 <jlhamm@acm.org>
 //
 
 #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()