]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/mac/dcprint.h
[ 1823588 ] gtk filedlg - droping support for gtk 2.2
[wxWidgets.git] / include / wx / mac / dcprint.h
index e2e11819a37fde60218af3a8b53973c809a7fee0..74537d6392b06d42e8d72463530244f3dddc05eb 100644 (file)
@@ -1,46 +1,5 @@
-/////////////////////////////////////////////////////////////////////////////
-// Name:        dcprint.h
-// Purpose:     wxPrinterDC class
-// Author:      AUTHOR
-// Modified by:
-// Created:     ??/??/98
-// RCS-ID:      $Id$
-// Copyright:   (c) AUTHOR
-// Licence:    wxWindows licence
-/////////////////////////////////////////////////////////////////////////////
-
-#ifndef _WX_DCPRINT_H_
-#define _WX_DCPRINT_H_
-
-#ifdef __GNUG__
-#pragma interface "dcprint.h"
+#ifdef __WXMAC_CLASSIC__
+#include "wx/mac/classic/dcprint.h"
+#else
+#include "wx/mac/carbon/dcprint.h"
 #endif
-
-#include "wx/dc.h"
-#include "wx/cmndata.h"
-
-class WXDLLEXPORT wxPrinterDC: public wxDC
-{
- public:
-  DECLARE_CLASS(wxPrinterDC)
-
-  // Create a printer DC
-  wxPrinterDC(const wxPrintData& printdata );
-  ~wxPrinterDC();
-
-    virtual bool StartDoc( const wxString& WXUNUSED(message) ) ;
-    virtual void EndDoc(void) ;
-    virtual void StartPage(void) ;
-    virtual void EndPage(void) ;
- protected :
- #if TARGET_CARBON
-       PMPrintContext  m_macPrintPort ;
- #else
-       TPPrPort        m_macPrintPort ;
- #endif
-       wxPrintData m_printData ;
-};
-
-#endif
-    // _WX_DCPRINT_H_
-