]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/mac/dcprint.h
Patch #826420, and also adapted to new SWIG
[wxWidgets.git] / include / wx / mac / dcprint.h
index 9fb216a27b6d9b1d57bff484e1cf94c94d64e29b..0e2b5bcf0d32e75e115498bd0ef57bb498b632a2 100644 (file)
@@ -6,19 +6,21 @@
 // Created:     1998-01-01
 // RCS-ID:      $Id$
 // Copyright:   (c) Stefan Csomor
-// Licence:    wxWindows licence
+// 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
 };