X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/f415cab9ef1433413a1a68a982ee9b17c5a8deda..da8b1d4b3b535aba94d04494f5b6e2b3e47901ee:/include/wx/msw/printwin.h diff --git a/include/wx/msw/printwin.h b/include/wx/msw/printwin.h index 64e171c9b0..de5b3975e3 100644 --- a/include/wx/msw/printwin.h +++ b/include/wx/msw/printwin.h @@ -18,7 +18,7 @@ // Represents the printer: manages printing a wxPrintout object // --------------------------------------------------------------------------- -class WXDLLEXPORT wxWindowsPrinter : public wxPrinterBase +class WXDLLIMPEXP_CORE wxWindowsPrinter : public wxPrinterBase { DECLARE_DYNAMIC_CLASS(wxWindowsPrinter) @@ -36,7 +36,7 @@ public: private: WXFARPROC m_lpAbortProc; - DECLARE_NO_COPY_CLASS(wxWindowsPrinter) + wxDECLARE_NO_COPY_CLASS(wxWindowsPrinter); }; // --------------------------------------------------------------------------- @@ -44,7 +44,7 @@ private: // wxPrintout. // --------------------------------------------------------------------------- -class WXDLLEXPORT wxWindowsPrintPreview : public wxPrintPreviewBase +class WXDLLIMPEXP_CORE wxWindowsPrintPreview : public wxPrintPreviewBase { public: wxWindowsPrintPreview(wxPrintout *printout, @@ -58,7 +58,9 @@ public: virtual bool Print(bool interactive); virtual void DetermineScaling(); -private: +protected: + virtual bool RenderPageIntoBitmap(wxBitmap& bmp, int pageNum); + DECLARE_DYNAMIC_CLASS_NO_COPY(wxWindowsPrintPreview) };