X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/a31a5f85341a2ef131d86a1dee12f3d6c8156118..61d457caae3e33efe8e0953f79c4a94e366b22d7:/include/wx/mac/dcprint.h diff --git a/include/wx/mac/dcprint.h b/include/wx/mac/dcprint.h index 9fb216a27b..c7eb0a1fed 100644 --- a/include/wx/mac/dcprint.h +++ b/include/wx/mac/dcprint.h @@ -6,7 +6,7 @@ // Created: 1998-01-01 // RCS-ID: $Id$ // Copyright: (c) Stefan Csomor -// Licence: wxWindows licence +// Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// #ifndef _WX_DCPRINT_H_ @@ -19,6 +19,8 @@ #include "wx/dc.h" #include "wx/cmndata.h" +class wxNativePrinterDC ; + class WXDLLEXPORT wxPrinterDC: public wxDC { public: @@ -33,9 +35,12 @@ class WXDLLEXPORT wxPrinterDC: public wxDC virtual void EndDoc(void) ; virtual void StartPage(void) ; virtual void EndPage(void) ; + wxPrintData& GetPrintData() { return m_printData; } + virtual void DoGetSize( int *width, int *height ) const; + protected: - void* m_macPrintSessionPort ; - wxPrintData m_printData ; + wxPrintData m_printData ; + wxNativePrinterDC* m_nativePrinterDC ; #endif // wxUSE_PRINTING_ARCHITECTURE };