X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/77ffb5937e89927b621128789401db8921fe580f..132422c4b93a0fe5d4f313350adf2c13423c07ac:/src/mac/carbon/dcprint.cpp?ds=sidebyside diff --git a/src/mac/carbon/dcprint.cpp b/src/mac/carbon/dcprint.cpp index caa8d1c3bf..49b5ba7b2f 100644 --- a/src/mac/carbon/dcprint.cpp +++ b/src/mac/carbon/dcprint.cpp @@ -6,16 +6,18 @@ // Created: 01/02/97 // RCS-ID: $Id$ // Copyright: (c) Julian Smart -// Licence: wxWidgets licence +// Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// -#ifdef __GNUG__ +#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) #pragma implementation "dcprint.h" #endif // For compilers that support precompilation, includes "wx.h". #include "wx/wxprec.h" +#if wxUSE_PRINTING_ARCHITECTURE + #ifdef __BORLANDC__ #pragma hdrstop #endif @@ -25,7 +27,7 @@ #include "wx/dcprint.h" #include "wx/msgdlg.h" -#include +#include "wx/math.h" #include "wx/mac/uma.h" #include "wx/mac/private/print.h" @@ -106,6 +108,15 @@ bool wxMacCarbonPrinterDC::StartDoc( wxPrinterDC* dc , const wxString& WXUNUSED wxMacCarbonPrintData *native = (wxMacCarbonPrintData*) dc->GetPrintData().m_nativePrintData ; +#if wxMAC_USE_CORE_GRAPHICS + { + CFStringRef s[1] = { kPMGraphicsContextCoreGraphics }; + CFArrayRef graphicsContextsArray = CFArrayCreate(NULL, (const void**)s, 1, &kCFTypeArrayCallBacks); + PMSessionSetDocumentFormatGeneration(native->m_macPrintSession, kPMDocumentFormatPDF, graphicsContextsArray, NULL); + CFRelease(graphicsContextsArray); + } +#endif + m_err = PMSessionBeginDocument(native->m_macPrintSession, native->m_macPrintSettings, native->m_macPageFormat); @@ -143,11 +154,21 @@ void wxMacCarbonPrinterDC::StartPage( wxPrinterDC* dc ) native->m_macPageFormat, nil); +#if wxMAC_USE_CORE_GRAPHICS + CGContextRef pageContext; +#endif if ( m_err == noErr ) { +#if wxMAC_USE_CORE_GRAPHICS + m_err = PMSessionGetGraphicsContext(native->m_macPrintSession, + kPMGraphicsContextCoreGraphics, + (void**) &pageContext ); + dc->MacSetCGContext(pageContext) ; +#else m_err = PMSessionGetGraphicsContext(native->m_macPrintSession, - nil, + kPMGraphicsContextQuickdraw, (void**) &dc->m_macPort ); +#endif } if ( m_err != noErr ) @@ -162,8 +183,13 @@ void wxMacCarbonPrinterDC::StartPage( wxPrinterDC* dc ) m_err = PMGetAdjustedPageRect(native->m_macPageFormat, &rPage); if ( !m_err ) { +#if wxMAC_USE_CORE_GRAPHICS + CGContextTranslateCTM( pageContext , 0 , rPage.bottom - rPage.top ) ; + CGContextScaleCTM( pageContext , 1 , -1 ) ; +#else dc->m_macLocalOrigin.x = (int) rPage.left; dc->m_macLocalOrigin.y = (int) rPage.top; +#endif } // since this is a non-critical error, we set the flag back m_err = noErr ; @@ -313,7 +339,6 @@ wxPrinterDC::wxPrinterDC(const wxPrintData& printdata) if ( m_nativePrinterDC ) { m_ok = m_nativePrinterDC->Ok() ; - if ( !m_ok ) { wxString message ; @@ -321,6 +346,10 @@ wxPrinterDC::wxPrinterDC(const wxPrintData& printdata) wxMessageDialog dialog( NULL , message , wxEmptyString, wxICON_HAND | wxOK) ; dialog.ShowModal(); } +#if wxMAC_USE_CORE_GRAPHICS + // the cgContext will only be handed over page by page + m_graphicContext = new wxMacCGContext() ; +#endif } } @@ -329,6 +358,14 @@ wxPrinterDC::~wxPrinterDC(void) delete m_nativePrinterDC ; } +#if wxMAC_USE_CORE_GRAPHICS +void wxPrinterDC::MacSetCGContext( void * cg ) +{ + ((wxMacCGContext*)(m_graphicContext))->SetNativeContext( (CGContextRef) 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") ) ; @@ -384,10 +421,11 @@ void wxPrinterDC::StartPage(void) m_font = *wxNORMAL_FONT; m_brush = *wxTRANSPARENT_BRUSH; m_backgroundBrush = *wxWHITE_BRUSH; - +#if !wxMAC_USE_CORE_GRAPHICS m_macFontInstalled = false ; m_macBrushInstalled = false ; m_macPenInstalled = false ; +#endif m_nativePrinterDC->StartPage(this) ; m_ok = m_nativePrinterDC->Ok() ; @@ -413,4 +451,4 @@ void wxPrinterDC::DoGetSize(int *width, int *height) const * height = m_nativePrinterDC->GetMaxY() ; } - +#endif