X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/f518afb5dcd87eca4287a442e5cc78baf3ab9d4b..c94f845b1602d44ccd7c7542afffde666adbb2f0:/src/mac/carbon/dcprint.cpp diff --git a/src/mac/carbon/dcprint.cpp b/src/mac/carbon/dcprint.cpp index 34af3cc1cb..58b2eb7a13 100644 --- a/src/mac/carbon/dcprint.cpp +++ b/src/mac/carbon/dcprint.cpp @@ -219,7 +219,9 @@ void wxMacCarbonPrinterDC::StartPage( wxPrinterDC* dc ) #if wxMAC_USE_CORE_GRAPHICS PMRect paperRect ; PMGetAdjustedPaperRect( native->m_macPageFormat , &paperRect ) ; - CGContextTranslateCTM( pageContext , -paperRect.left , -paperRect.top + ( rPage.bottom - rPage.top ) ) ; + // make sure (0,0) is at the upper left of the printable area (wx conventions) + // Core Graphics initially has the lower left of the paper as 0,0 + CGContextTranslateCTM( pageContext , -paperRect.left , paperRect.bottom ) ; CGContextScaleCTM( pageContext , 1 , -1 ) ; #else dc->m_macLocalOrigin.x = (int) rPage.left; @@ -230,7 +232,7 @@ void wxMacCarbonPrinterDC::StartPage( wxPrinterDC* dc ) m_err = noErr ; } #if wxMAC_USE_CORE_GRAPHICS - dc->MacSetCGContext(pageContext) ; + dc->SetGraphicsContext( wxGraphicsContext::CreateFromNative( pageContext ) ); #endif } @@ -247,7 +249,8 @@ void wxMacCarbonPrinterDC::EndPage( wxPrinterDC* dc ) PMSessionEndDocument(native->m_macPrintSession); } #if wxMAC_USE_CORE_GRAPHICS - dc->MacSetCGContext(NULL) ; + // the cg context we got when starting the page isn't valid anymore, so replace it + dc->SetGraphicsContext( wxGraphicsContext::Create() ); #endif } @@ -291,10 +294,9 @@ 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() ; - */ + // we need at least a measuring context because people start measuring before a page + // gets printed at all + SetGraphicsContext( wxGraphicsContext::Create() ); #endif } } @@ -306,23 +308,9 @@ 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 ; } -#if wxMAC_USE_CORE_GRAPHICS -void wxPrinterDC::MacSetCGContext( void * cg ) -{ - SetGraphicsContext( wxGraphicsContext::CreateFromNative( cg ) ); - m_graphicContext->SetPen( m_pen ) ; - m_graphicContext->SetBrush( m_brush ) ; -} -#endif bool wxPrinterDC::StartDoc( const wxString& message ) { wxASSERT_MSG( Ok() , wxT("Called wxPrinterDC::StartDoc from an invalid object") ) ;