X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/ce4169a4d129fc6cd165b2e9ccc5cf5d48356020..3cb99894576612e347480d43c5f2e2550b6151cf:/include/wx/generic/printps.h diff --git a/include/wx/generic/printps.h b/include/wx/generic/printps.h index 5934eaf40a..bb60929d0f 100644 --- a/include/wx/generic/printps.h +++ b/include/wx/generic/printps.h @@ -13,13 +13,13 @@ #ifndef __PRINTPSH__ #define __PRINTPSH__ -#ifdef __GNUG__ +#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) #pragma interface "printps.h" #endif #include "wx/prntbase.h" -#if wxUSE_PRINTING_ARCHITECTURE +#if wxUSE_PRINTING_ARCHITECTURE && wxUSE_POSTSCRIPT // ---------------------------------------------------------------------------- // Represents the printer: manages printing a wxPrintout object @@ -27,8 +27,6 @@ class WXDLLEXPORT wxPostScriptPrinter : public wxPrinterBase { - DECLARE_DYNAMIC_CLASS(wxPostScriptPrinter) - public: wxPostScriptPrinter(wxPrintDialogData *data = (wxPrintDialogData *) NULL); virtual ~wxPostScriptPrinter(); @@ -36,6 +34,9 @@ public: virtual bool Print(wxWindow *parent, wxPrintout *printout, bool prompt = TRUE); virtual wxDC* PrintDialog(wxWindow *parent); virtual bool Setup(wxWindow *parent); + +private: + DECLARE_DYNAMIC_CLASS(wxPostScriptPrinter) }; // ---------------------------------------------------------------------------- @@ -45,8 +46,6 @@ public: class WXDLLEXPORT wxPostScriptPrintPreview : public wxPrintPreviewBase { - DECLARE_CLASS(wxPostScriptPrintPreview) - public: wxPostScriptPrintPreview(wxPrintout *printout, wxPrintout *printoutForPrinting = (wxPrintout *) NULL, @@ -62,6 +61,9 @@ public: private: void Init(wxPrintout *printout, wxPrintout *printoutForPrinting); + +private: + DECLARE_CLASS(wxPostScriptPrintPreview) }; #endif