X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/9fff72735315e9e8954ea29af9405f48f5e9ee19..2e57368359ab190b5bbad1849d88f298e30723c9:/src/mac/carbon/dcprint.cpp?ds=inline diff --git a/src/mac/carbon/dcprint.cpp b/src/mac/carbon/dcprint.cpp index 47958b22ab..34af3cc1cb 100644 --- a/src/mac/carbon/dcprint.cpp +++ b/src/mac/carbon/dcprint.cpp @@ -27,6 +27,7 @@ #include "wx/mac/uma.h" #include "wx/mac/private/print.h" +#include "wx/graphics.h" IMPLEMENT_CLASS(wxPrinterDC, wxDC) @@ -53,7 +54,7 @@ class wxMacCarbonPrinterDC : public wxNativePrinterDC { public : wxMacCarbonPrinterDC( wxPrintData* data ) ; - ~wxMacCarbonPrinterDC() ; + virtual ~wxMacCarbonPrinterDC() ; virtual bool StartDoc( wxPrinterDC* dc , const wxString& message ) ; virtual void EndDoc( wxPrinterDC* dc ) ; virtual void StartPage( wxPrinterDC* dc ) ; @@ -62,7 +63,9 @@ public : virtual void GetSize( int *w , int *h) const ; virtual wxSize GetPPI() const ; private : +#if !wxMAC_USE_CORE_GRAPHICS GrafPtr m_macPrintFormerPort ; +#endif wxCoord m_maxX ; wxCoord m_maxY ; wxSize m_ppi ; @@ -71,8 +74,9 @@ private : wxMacCarbonPrinterDC::wxMacCarbonPrinterDC( wxPrintData* data ) { +#if !wxMAC_USE_CORE_GRAPHICS ::GetPort( & m_macPrintFormerPort ) ; - +#endif m_err = noErr ; wxMacCarbonPrintData *native = (wxMacCarbonPrintData*) data->GetNativeData() ; @@ -85,14 +89,22 @@ wxMacCarbonPrinterDC::wxMacCarbonPrinterDC( wxPrintData* data ) m_maxY = wxCoord(rPage.bottom - rPage.top); PMResolution res; +#if MAC_OS_X_VERSION_MIN_REQUIRED >= MAC_OS_X_VERSION_10_5 + PMPrinter printer; + PMSessionGetCurrentPrinter(native->m_macPrintSession, &printer); + PMPrinterGetOutputResolution( printer, native->m_macPrintSettings, &res) ; +#else m_err = PMGetResolution((PMPageFormat) (native->m_macPageFormat), &res); +#endif m_ppi = wxSize(int(res.hRes), int(res.vRes)); } wxMacCarbonPrinterDC::~wxMacCarbonPrinterDC() { +#if !wxMAC_USE_CORE_GRAPHICS // nothing to release from print data, as wxPrinterDC has all data in its wxPrintData member ::SetPort( m_macPrintFormerPort ) ; +#endif } wxNativePrinterDC* wxNativePrinterDC::Create(wxPrintData* data) @@ -107,7 +119,7 @@ bool wxMacCarbonPrinterDC::StartDoc( wxPrinterDC* dc , const wxString& WXUNUSED wxMacCarbonPrintData *native = (wxMacCarbonPrintData*) dc->GetPrintData().GetNativeData() ; -#if wxMAC_USE_CORE_GRAPHICS +#if MAC_OS_X_VERSION_MIN_REQUIRED < MAC_OS_X_VERSION_10_4 && wxMAC_USE_CORE_GRAPHICS { CFStringRef s[1] = { kPMGraphicsContextCoreGraphics }; CFArrayRef graphicsContextsArray = CFArrayCreate(NULL, (const void**)s, 1, &kCFTypeArrayCallBacks); @@ -115,10 +127,17 @@ bool wxMacCarbonPrinterDC::StartDoc( wxPrinterDC* dc , const wxString& WXUNUSED CFRelease(graphicsContextsArray); } #endif - +#if MAC_OS_X_VERSION_MIN_REQUIRED >= MAC_OS_X_VERSION_10_4 && wxMAC_USE_CORE_GRAPHICS + m_err = PMSessionBeginCGDocument(native->m_macPrintSession, + native->m_macPrintSettings, + native->m_macPageFormat); +#else m_err = PMSessionBeginDocument(native->m_macPrintSession, native->m_macPrintSettings, native->m_macPageFormat); + +#endif + if ( m_err != noErr ) return false; @@ -131,7 +150,13 @@ bool wxMacCarbonPrinterDC::StartDoc( wxPrinterDC* dc , const wxString& WXUNUSED m_maxY = wxCoord(rPage.bottom - rPage.top); PMResolution res; +#if MAC_OS_X_VERSION_MIN_REQUIRED >= MAC_OS_X_VERSION_10_5 + PMPrinter printer; + PMSessionGetCurrentPrinter(native->m_macPrintSession, &printer); + PMPrinterGetOutputResolution( printer, native->m_macPrintSettings, &res) ; +#else m_err = PMGetResolution((PMPageFormat) (native->m_macPageFormat), &res); +#endif m_ppi = wxSize(int(res.hRes), int(res.vRes)); return true ; } @@ -163,10 +188,15 @@ void wxMacCarbonPrinterDC::StartPage( wxPrinterDC* dc ) if ( m_err == noErr ) { #if wxMAC_USE_CORE_GRAPHICS +#if MAC_OS_X_VERSION_MIN_REQUIRED >= MAC_OS_X_VERSION_10_4 + m_err = PMSessionGetCGGraphicsContext(native->m_macPrintSession, + &pageContext ); + +#else m_err = PMSessionGetGraphicsContext(native->m_macPrintSession, kPMGraphicsContextCoreGraphics, (void**) &pageContext ); - dc->MacSetCGContext(pageContext) ; +#endif #else m_err = PMSessionGetGraphicsContext(native->m_macPrintSession, kPMGraphicsContextQuickdraw, @@ -191,7 +221,6 @@ void wxMacCarbonPrinterDC::StartPage( wxPrinterDC* dc ) PMGetAdjustedPaperRect( native->m_macPageFormat , &paperRect ) ; CGContextTranslateCTM( pageContext , -paperRect.left , -paperRect.top + ( rPage.bottom - rPage.top ) ) ; CGContextScaleCTM( pageContext , 1 , -1 ) ; - CGContextSaveGState( pageContext ) ; #else dc->m_macLocalOrigin.x = (int) rPage.left; dc->m_macLocalOrigin.y = (int) rPage.top; @@ -200,6 +229,9 @@ void wxMacCarbonPrinterDC::StartPage( wxPrinterDC* dc ) // since this is a non-critical error, we set the flag back m_err = noErr ; } +#if wxMAC_USE_CORE_GRAPHICS + dc->MacSetCGContext(pageContext) ; +#endif } void wxMacCarbonPrinterDC::EndPage( wxPrinterDC* dc ) @@ -214,6 +246,9 @@ void wxMacCarbonPrinterDC::EndPage( wxPrinterDC* dc ) { PMSessionEndDocument(native->m_macPrintSession); } +#if wxMAC_USE_CORE_GRAPHICS + dc->MacSetCGContext(NULL) ; +#endif } void wxMacCarbonPrinterDC::GetSize( int *w , int *h) const @@ -256,8 +291,10 @@ wxPrinterDC::wxPrinterDC(const wxPrintData& printdata) m_mm_to_pix_y = mm2inches * sz.y; } #if wxMAC_USE_CORE_GRAPHICS +/* // the cgContext will only be handed over page by page m_graphicContext = new wxMacCGContext() ; + */ #endif } } @@ -270,8 +307,10 @@ wxSize wxPrinterDC::GetPPI() const wxPrinterDC::~wxPrinterDC(void) { #if wxMAC_USE_CORE_GRAPHICS +/* // this context was borrowed ((wxMacCGContext*)(m_graphicContext))->SetNativeContext( NULL ) ; + */ #endif delete m_nativePrinterDC ; } @@ -279,7 +318,7 @@ wxPrinterDC::~wxPrinterDC(void) #if wxMAC_USE_CORE_GRAPHICS void wxPrinterDC::MacSetCGContext( void * cg ) { - ((wxMacCGContext*)(m_graphicContext))->SetNativeContext( (CGContextRef) cg ) ; + SetGraphicsContext( wxGraphicsContext::CreateFromNative( cg ) ); m_graphicContext->SetPen( m_pen ) ; m_graphicContext->SetBrush( m_brush ) ; } @@ -324,6 +363,21 @@ void wxPrinterDC::EndDoc(void) } } +wxRect wxPrinterDC::GetPaperRect() +{ + wxCoord w, h; + GetSize(&w, &h); + wxRect pageRect(0, 0, w, h); + wxMacCarbonPrintData *native = (wxMacCarbonPrintData*) m_printData.GetNativeData() ; + OSStatus err = noErr ; + PMRect rPaper; + err = PMGetAdjustedPaperRect(native->m_macPageFormat, &rPaper); + if ( err != noErr ) + return pageRect; + return wxRect(wxCoord(rPaper.left), wxCoord(rPaper.top), + wxCoord(rPaper.right - rPaper.left), wxCoord(rPaper.bottom - rPaper.top)); +} + void wxPrinterDC::StartPage(void) { if ( !m_ok )