]> git.saurik.com Git - wxWidgets.git/blame - src/mac/carbon/dcprint.cpp
PCH support.
[wxWidgets.git] / src / mac / carbon / dcprint.cpp
CommitLineData
72e7876b 1/////////////////////////////////////////////////////////////////////////////
6d50343d 2// Name: src/mac/carbon/dcprint.cpp
72e7876b
SC
3// Purpose: wxPrinterDC class
4// Author: Julian Smart
5// Modified by:
6// Created: 01/02/97
7// RCS-ID: $Id$
6aa89a22 8// Copyright: (c) Julian Smart
6d50343d 9// Licence: wxWindows licence
72e7876b
SC
10/////////////////////////////////////////////////////////////////////////////
11
72e7876b
SC
12// For compilers that support precompilation, includes "wx.h".
13#include "wx/wxprec.h"
14
179e085f
RN
15#if wxUSE_PRINTING_ARCHITECTURE
16
72e7876b 17#ifdef __BORLANDC__
6d50343d 18 #pragma hdrstop
72e7876b
SC
19#endif
20
6d50343d
WS
21#include "wx/dcprint.h"
22
72e7876b 23#ifndef WX_PRECOMP
246c5004 24 #include "wx/msgdlg.h"
18680f86 25 #include "wx/math.h"
72e7876b
SC
26#endif
27
2f1ae414 28#include "wx/mac/uma.h"
746d7582 29#include "wx/mac/private/print.h"
8acd14d1 30#include "wx/graphics.h"
a3d3d3bf 31
72e7876b 32IMPLEMENT_CLASS(wxPrinterDC, wxDC)
72e7876b 33
746d7582
SC
34class wxNativePrinterDC
35{
36public :
37 wxNativePrinterDC() {}
38 virtual ~wxNativePrinterDC() {}
39 virtual bool StartDoc( wxPrinterDC* dc , const wxString& message ) = 0;
40 virtual void EndDoc( wxPrinterDC* dc ) = 0;
41 virtual void StartPage( wxPrinterDC* dc ) = 0;
42 virtual void EndPage( wxPrinterDC* dc ) = 0;
db49000e
SC
43 virtual void GetSize( int *w , int *h) const = 0 ;
44 virtual wxSize GetPPI() const = 0 ;
45
746d7582
SC
46 // returns 0 in case of no Error, otherwise platform specific error codes
47 virtual wxUint32 GetStatus() const = 0 ;
48 bool Ok() { return GetStatus() == 0 ; }
eb7f8ac5 49
746d7582
SC
50 static wxNativePrinterDC* Create(wxPrintData* data) ;
51} ;
72e7876b 52
746d7582
SC
53class wxMacCarbonPrinterDC : public wxNativePrinterDC
54{
55public :
56 wxMacCarbonPrinterDC( wxPrintData* data ) ;
d3c7fc99 57 virtual ~wxMacCarbonPrinterDC() ;
746d7582
SC
58 virtual bool StartDoc( wxPrinterDC* dc , const wxString& message ) ;
59 virtual void EndDoc( wxPrinterDC* dc ) ;
60 virtual void StartPage( wxPrinterDC* dc ) ;
61 virtual void EndPage( wxPrinterDC* dc ) ;
746d7582 62 virtual wxUint32 GetStatus() const { return m_err ; }
db49000e
SC
63 virtual void GetSize( int *w , int *h) const ;
64 virtual wxSize GetPPI() const ;
746d7582 65private :
4f74e0d1 66#if !wxMAC_USE_CORE_GRAPHICS
746d7582 67 GrafPtr m_macPrintFormerPort ;
4f74e0d1 68#endif
746d7582
SC
69 wxCoord m_maxX ;
70 wxCoord m_maxY ;
db49000e 71 wxSize m_ppi ;
746d7582
SC
72 OSStatus m_err ;
73} ;
74
75wxMacCarbonPrinterDC::wxMacCarbonPrinterDC( wxPrintData* data )
72e7876b 76{
4f74e0d1 77#if !wxMAC_USE_CORE_GRAPHICS
746d7582 78 ::GetPort( & m_macPrintFormerPort ) ;
4f74e0d1 79#endif
746d7582 80 m_err = noErr ;
dc7ccb9c 81 wxMacCarbonPrintData *native = (wxMacCarbonPrintData*) data->GetNativeData() ;
eb7f8ac5 82
746d7582
SC
83 PMRect rPage;
84 m_err = PMGetAdjustedPageRect(native->m_macPageFormat, &rPage);
85 if ( m_err != noErr )
86 return;
a689a4d0 87
746d7582
SC
88 m_maxX = wxCoord(rPage.right - rPage.left) ;
89 m_maxY = wxCoord(rPage.bottom - rPage.top);
db49000e
SC
90
91 PMResolution res;
4f74e0d1
SC
92#if MAC_OS_X_VERSION_MIN_REQUIRED >= MAC_OS_X_VERSION_10_5
93 PMPrinter printer;
94 PMSessionGetCurrentPrinter(native->m_macPrintSession, &printer);
95 PMPrinterGetOutputResolution( printer, native->m_macPrintSettings, &res) ;
96#else
db49000e 97 m_err = PMGetResolution((PMPageFormat) (native->m_macPageFormat), &res);
4f74e0d1 98#endif
f7862d3e 99 m_ppi = wxSize(int(res.hRes), int(res.vRes));
746d7582 100}
75411508 101
746d7582
SC
102wxMacCarbonPrinterDC::~wxMacCarbonPrinterDC()
103{
4f74e0d1 104#if !wxMAC_USE_CORE_GRAPHICS
746d7582
SC
105 // nothing to release from print data, as wxPrinterDC has all data in its wxPrintData member
106 ::SetPort( m_macPrintFormerPort ) ;
4f74e0d1 107#endif
746d7582
SC
108}
109
110wxNativePrinterDC* wxNativePrinterDC::Create(wxPrintData* data)
111{
112 return new wxMacCarbonPrinterDC(data) ;
113}
114
eb7f8ac5 115bool wxMacCarbonPrinterDC::StartDoc( wxPrinterDC* dc , const wxString& WXUNUSED(message) )
746d7582
SC
116{
117 if ( m_err )
118 return false ;
119
dc7ccb9c 120 wxMacCarbonPrintData *native = (wxMacCarbonPrintData*) dc->GetPrintData().GetNativeData() ;
746d7582 121
4f74e0d1 122#if MAC_OS_X_VERSION_MIN_REQUIRED < MAC_OS_X_VERSION_10_4 && wxMAC_USE_CORE_GRAPHICS
20b69855
SC
123 {
124 CFStringRef s[1] = { kPMGraphicsContextCoreGraphics };
125 CFArrayRef graphicsContextsArray = CFArrayCreate(NULL, (const void**)s, 1, &kCFTypeArrayCallBacks);
126 PMSessionSetDocumentFormatGeneration(native->m_macPrintSession, kPMDocumentFormatPDF, graphicsContextsArray, NULL);
127 CFRelease(graphicsContextsArray);
128 }
129#endif
4f74e0d1
SC
130#if MAC_OS_X_VERSION_MIN_REQUIRED >= MAC_OS_X_VERSION_10_4 && wxMAC_USE_CORE_GRAPHICS
131 m_err = PMSessionBeginCGDocument(native->m_macPrintSession,
132 native->m_macPrintSettings,
133 native->m_macPageFormat);
134#else
746d7582 135 m_err = PMSessionBeginDocument(native->m_macPrintSession,
eb7f8ac5 136 native->m_macPrintSettings,
746d7582 137 native->m_macPageFormat);
4f74e0d1
SC
138
139#endif
140
746d7582
SC
141 if ( m_err != noErr )
142 return false;
143
144 PMRect rPage;
145 m_err = PMGetAdjustedPageRect(native->m_macPageFormat, &rPage);
146 if ( m_err != noErr )
9fff7273 147 return false ;
db49000e
SC
148
149 m_maxX = wxCoord(rPage.right - rPage.left) ;
150 m_maxY = wxCoord(rPage.bottom - rPage.top);
746d7582 151
db49000e 152 PMResolution res;
4f74e0d1
SC
153#if MAC_OS_X_VERSION_MIN_REQUIRED >= MAC_OS_X_VERSION_10_5
154 PMPrinter printer;
155 PMSessionGetCurrentPrinter(native->m_macPrintSession, &printer);
156 PMPrinterGetOutputResolution( printer, native->m_macPrintSettings, &res) ;
157#else
db49000e 158 m_err = PMGetResolution((PMPageFormat) (native->m_macPageFormat), &res);
4f74e0d1 159#endif
db49000e 160 m_ppi = wxSize(int(res.hRes), int(res.vRes));
746d7582
SC
161 return true ;
162}
163
eb7f8ac5 164void wxMacCarbonPrinterDC::EndDoc( wxPrinterDC* dc )
746d7582
SC
165{
166 if ( m_err )
167 return ;
168
dc7ccb9c 169 wxMacCarbonPrintData *native = (wxMacCarbonPrintData*) dc->GetPrintData().GetNativeData() ;
746d7582
SC
170
171 m_err = PMSessionEndDocument(native->m_macPrintSession);
172}
173
eb7f8ac5 174void wxMacCarbonPrinterDC::StartPage( wxPrinterDC* dc )
746d7582
SC
175{
176 if ( m_err )
177 return ;
178
dc7ccb9c 179 wxMacCarbonPrintData *native = (wxMacCarbonPrintData*) dc->GetPrintData().GetNativeData() ;
746d7582
SC
180
181 m_err = PMSessionBeginPage(native->m_macPrintSession,
182 native->m_macPageFormat,
183 nil);
eb7f8ac5 184
20b69855
SC
185#if wxMAC_USE_CORE_GRAPHICS
186 CGContextRef pageContext;
187#endif
746d7582 188 if ( m_err == noErr )
e40298d5 189 {
20b69855 190#if wxMAC_USE_CORE_GRAPHICS
4f74e0d1
SC
191#if MAC_OS_X_VERSION_MIN_REQUIRED >= MAC_OS_X_VERSION_10_4
192 m_err = PMSessionGetCGGraphicsContext(native->m_macPrintSession,
193 &pageContext );
194
195#else
eb7f8ac5 196 m_err = PMSessionGetGraphicsContext(native->m_macPrintSession,
20b69855
SC
197 kPMGraphicsContextCoreGraphics,
198 (void**) &pageContext );
4f74e0d1 199#endif
20b69855
SC
200 dc->MacSetCGContext(pageContext) ;
201#else
202 m_err = PMSessionGetGraphicsContext(native->m_macPrintSession,
203 kPMGraphicsContextQuickdraw,
eb7f8ac5 204 (void**) &dc->m_macPort );
20b69855 205#endif
e40298d5 206 }
eb7f8ac5 207
746d7582 208 if ( m_err != noErr )
e40298d5 209 {
746d7582
SC
210 PMSessionEndPage(native->m_macPrintSession);
211 PMSessionEndDocument(native->m_macPrintSession);
e40298d5 212 }
746d7582 213 else
e40298d5 214 {
746d7582 215 PMRect rPage;
eb7f8ac5 216
746d7582
SC
217 m_err = PMGetAdjustedPageRect(native->m_macPageFormat, &rPage);
218 if ( !m_err )
219 {
20b69855 220#if wxMAC_USE_CORE_GRAPHICS
a06e389f
SC
221 PMRect paperRect ;
222 PMGetAdjustedPaperRect( native->m_macPageFormat , &paperRect ) ;
223 CGContextTranslateCTM( pageContext , -paperRect.left , -paperRect.top + ( rPage.bottom - rPage.top ) ) ;
20b69855 224 CGContextScaleCTM( pageContext , 1 , -1 ) ;
c725df80 225 CGContextSaveGState( pageContext ) ;
20b69855 226#else
eb7f8ac5
VZ
227 dc->m_macLocalOrigin.x = (int) rPage.left;
228 dc->m_macLocalOrigin.y = (int) rPage.top;
20b69855 229#endif
746d7582
SC
230 }
231 // since this is a non-critical error, we set the flag back
232 m_err = noErr ;
e40298d5 233 }
746d7582
SC
234}
235
eb7f8ac5 236void wxMacCarbonPrinterDC::EndPage( wxPrinterDC* dc )
746d7582
SC
237{
238 if ( m_err )
239 return ;
240
dc7ccb9c 241 wxMacCarbonPrintData *native = (wxMacCarbonPrintData*) dc->GetPrintData().GetNativeData() ;
746d7582
SC
242
243 m_err = PMSessionEndPage(native->m_macPrintSession);
244 if ( m_err != noErr )
f520d381 245 {
746d7582 246 PMSessionEndDocument(native->m_macPrintSession);
f520d381 247 }
746d7582
SC
248}
249
db49000e
SC
250void wxMacCarbonPrinterDC::GetSize( int *w , int *h) const
251{
252 if ( w )
253 *w = m_maxX ;
254 if ( h )
255 *h = m_maxY ;
256}
257
258wxSize wxMacCarbonPrinterDC::GetPPI() const
259{
260 return m_ppi ;
261};
262
263//
264//
265//
266
746d7582
SC
267wxPrinterDC::wxPrinterDC(const wxPrintData& printdata)
268{
6d50343d 269 m_ok = false ;
746d7582
SC
270 m_printData = printdata ;
271 m_printData.ConvertToNative() ;
272 m_nativePrinterDC = wxNativePrinterDC::Create( &m_printData ) ;
eb7f8ac5 273 if ( m_nativePrinterDC )
75411508 274 {
746d7582 275 m_ok = m_nativePrinterDC->Ok() ;
746d7582
SC
276 if ( !m_ok )
277 {
278 wxString message ;
eb7f8ac5 279 message.Printf( wxT("Print Error %u"), m_nativePrinterDC->GetStatus() ) ;
746d7582
SC
280 wxMessageDialog dialog( NULL , message , wxEmptyString, wxICON_HAND | wxOK) ;
281 dialog.ShowModal();
282 }
db49000e
SC
283 else
284 {
285 wxSize sz = GetPPI();
286 m_mm_to_pix_x = mm2inches * sz.x;
287 m_mm_to_pix_y = mm2inches * sz.y;
288 }
20b69855 289#if wxMAC_USE_CORE_GRAPHICS
f7862d3e 290/*
20b69855
SC
291 // the cgContext will only be handed over page by page
292 m_graphicContext = new wxMacCGContext() ;
f7862d3e 293 */
20b69855 294#endif
75411508 295 }
746d7582
SC
296}
297
db49000e
SC
298wxSize wxPrinterDC::GetPPI() const
299{
300 return m_nativePrinterDC->GetPPI() ;
301}
302
746d7582
SC
303wxPrinterDC::~wxPrinterDC(void)
304{
c725df80 305#if wxMAC_USE_CORE_GRAPHICS
f7862d3e 306/*
c725df80
SC
307 // this context was borrowed
308 ((wxMacCGContext*)(m_graphicContext))->SetNativeContext( NULL ) ;
f7862d3e 309 */
c725df80 310#endif
746d7582
SC
311 delete m_nativePrinterDC ;
312}
313
20b69855 314#if wxMAC_USE_CORE_GRAPHICS
6d50343d 315void wxPrinterDC::MacSetCGContext( void * cg )
20b69855 316{
f7862d3e 317 SetGraphicsContext( wxGraphicsContext::CreateFromNative( cg ) );
20b69855
SC
318 m_graphicContext->SetPen( m_pen ) ;
319 m_graphicContext->SetBrush( m_brush ) ;
320}
321#endif
eb7f8ac5 322bool wxPrinterDC::StartDoc( const wxString& message )
746d7582
SC
323{
324 wxASSERT_MSG( Ok() , wxT("Called wxPrinterDC::StartDoc from an invalid object") ) ;
eb7f8ac5 325
746d7582
SC
326 if ( !m_ok )
327 return false ;
328
329 if ( m_nativePrinterDC->StartDoc(this, message ) )
330 {
331 // in case we have to do additional things when successful
332 }
333 m_ok = m_nativePrinterDC->Ok() ;
334 if ( !m_ok )
75411508 335 {
746d7582 336 wxString message ;
eb7f8ac5 337 message.Printf( wxT("Print Error %u"), m_nativePrinterDC->GetStatus() ) ;
427ff662 338 wxMessageDialog dialog( NULL , message , wxEmptyString, wxICON_HAND | wxOK) ;
75411508 339 dialog.ShowModal();
75411508 340 }
746d7582 341
e40298d5 342 return m_ok ;
72e7876b
SC
343}
344
eb7f8ac5 345void wxPrinterDC::EndDoc(void)
72e7876b 346{
746d7582
SC
347 if ( !m_ok )
348 return ;
349
350 m_nativePrinterDC->EndDoc( this ) ;
351 m_ok = m_nativePrinterDC->Ok() ;
352
353 if ( !m_ok )
75411508 354 {
746d7582 355 wxString message ;
eb7f8ac5 356 message.Printf( wxT("Print Error %u"), m_nativePrinterDC->GetStatus() ) ;
746d7582
SC
357 wxMessageDialog dialog( NULL , message , wxEmptyString, wxICON_HAND | wxOK) ;
358 dialog.ShowModal();
75411508 359 }
72e7876b
SC
360}
361
eb7f8ac5 362void wxPrinterDC::StartPage(void)
72e7876b 363{
e40298d5
JS
364 if ( !m_ok )
365 return ;
2f1ae414 366
746d7582
SC
367 m_logicalFunction = wxCOPY;
368 // m_textAlignment = wxALIGN_TOP_LEFT;
369 m_backgroundMode = wxTRANSPARENT;
370
371 m_textForegroundColour = *wxBLACK;
372 m_textBackgroundColour = *wxWHITE;
373 m_pen = *wxBLACK_PEN;
374 m_font = *wxNORMAL_FONT;
375 m_brush = *wxTRANSPARENT_BRUSH;
376 m_backgroundBrush = *wxWHITE_BRUSH;
20b69855 377#if !wxMAC_USE_CORE_GRAPHICS
e40298d5
JS
378 m_macFontInstalled = false ;
379 m_macBrushInstalled = false ;
380 m_macPenInstalled = false ;
20b69855 381#endif
2f1ae414 382
746d7582
SC
383 m_nativePrinterDC->StartPage(this) ;
384 m_ok = m_nativePrinterDC->Ok() ;
eb7f8ac5 385
72e7876b
SC
386}
387
eb7f8ac5 388void wxPrinterDC::EndPage(void)
72e7876b 389{
e40298d5
JS
390 if ( !m_ok )
391 return ;
72e7876b 392
746d7582
SC
393 m_nativePrinterDC->EndPage(this) ;
394 m_ok = m_nativePrinterDC->Ok() ;
395}
72e7876b 396
746d7582
SC
397void wxPrinterDC::DoGetSize(int *width, int *height) const
398{
399 wxCHECK_RET( m_ok , _T("GetSize() doesn't work without a valid wxPrinterDC") );
db49000e 400 m_nativePrinterDC->GetSize(width, height ) ;
72e7876b 401}
746d7582 402
179e085f 403#endif