X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/af49c4b8a2d3553e733e71c7dd3911881f4c1a2a..06f6df7d4657582a637ac79f3452b61b1cbb10cc:/include/wx/mac/dcprint.h diff --git a/include/wx/mac/dcprint.h b/include/wx/mac/dcprint.h index cc581688d3..0e2b5bcf0d 100644 --- a/include/wx/mac/dcprint.h +++ b/include/wx/mac/dcprint.h @@ -1,24 +1,26 @@ ///////////////////////////////////////////////////////////////////////////// // Name: dcprint.h // Purpose: wxPrinterDC class -// Author: AUTHOR +// Author: Stefan Csomor // Modified by: -// Created: ??/??/98 +// Created: 1998-01-01 // RCS-ID: $Id$ -// Copyright: (c) AUTHOR -// Licence: wxWindows licence +// Copyright: (c) Stefan Csomor +// Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// #ifndef _WX_DCPRINT_H_ #define _WX_DCPRINT_H_ -#if defined(__GNUG__) && !defined(__APPLE__) +#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) #pragma interface "dcprint.h" #endif #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 };