]>
Commit | Line | Data |
---|---|---|
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 | 32 | IMPLEMENT_CLASS(wxPrinterDC, wxDC) |
72e7876b | 33 | |
746d7582 SC |
34 | class wxNativePrinterDC |
35 | { | |
36 | public : | |
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 |
53 | class wxMacCarbonPrinterDC : public wxNativePrinterDC |
54 | { | |
55 | public : | |
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 | 65 | private : |
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 | ||
75 | wxMacCarbonPrinterDC::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 |
102 | wxMacCarbonPrinterDC::~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 | ||
110 | wxNativePrinterDC* wxNativePrinterDC::Create(wxPrintData* data) | |
111 | { | |
112 | return new wxMacCarbonPrinterDC(data) ; | |
113 | } | |
114 | ||
eb7f8ac5 | 115 | bool 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 | 164 | void 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 | 174 | void 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 | #else |
201 | m_err = PMSessionGetGraphicsContext(native->m_macPrintSession, | |
202 | kPMGraphicsContextQuickdraw, | |
eb7f8ac5 | 203 | (void**) &dc->m_macPort ); |
20b69855 | 204 | #endif |
e40298d5 | 205 | } |
eb7f8ac5 | 206 | |
746d7582 | 207 | if ( m_err != noErr ) |
e40298d5 | 208 | { |
746d7582 SC |
209 | PMSessionEndPage(native->m_macPrintSession); |
210 | PMSessionEndDocument(native->m_macPrintSession); | |
e40298d5 | 211 | } |
746d7582 | 212 | else |
e40298d5 | 213 | { |
746d7582 | 214 | PMRect rPage; |
eb7f8ac5 | 215 | |
746d7582 SC |
216 | m_err = PMGetAdjustedPageRect(native->m_macPageFormat, &rPage); |
217 | if ( !m_err ) | |
218 | { | |
20b69855 | 219 | #if wxMAC_USE_CORE_GRAPHICS |
a06e389f SC |
220 | PMRect paperRect ; |
221 | PMGetAdjustedPaperRect( native->m_macPageFormat , &paperRect ) ; | |
3925a44c SC |
222 | // make sure (0,0) is at the upper left of the printable area (wx conventions) |
223 | // Core Graphics initially has the lower left of the paper as 0,0 | |
224 | CGContextTranslateCTM( pageContext , -paperRect.left , paperRect.bottom ) ; | |
20b69855 SC |
225 | CGContextScaleCTM( pageContext , 1 , -1 ) ; |
226 | #else | |
04ab8b6d | 227 | dc->SetDeviceLocalOrigin( (wxCoord) rPage.left, (wxCoord) rPage.top ); |
20b69855 | 228 | #endif |
746d7582 SC |
229 | } |
230 | // since this is a non-critical error, we set the flag back | |
231 | m_err = noErr ; | |
e40298d5 | 232 | } |
f518afb5 | 233 | #if wxMAC_USE_CORE_GRAPHICS |
ad667945 | 234 | dc->SetGraphicsContext( wxGraphicsContext::CreateFromNative( pageContext ) ); |
f518afb5 | 235 | #endif |
746d7582 SC |
236 | } |
237 | ||
eb7f8ac5 | 238 | void wxMacCarbonPrinterDC::EndPage( wxPrinterDC* dc ) |
746d7582 SC |
239 | { |
240 | if ( m_err ) | |
241 | return ; | |
242 | ||
dc7ccb9c | 243 | wxMacCarbonPrintData *native = (wxMacCarbonPrintData*) dc->GetPrintData().GetNativeData() ; |
746d7582 SC |
244 | |
245 | m_err = PMSessionEndPage(native->m_macPrintSession); | |
246 | if ( m_err != noErr ) | |
f520d381 | 247 | { |
746d7582 | 248 | PMSessionEndDocument(native->m_macPrintSession); |
f520d381 | 249 | } |
f518afb5 | 250 | #if wxMAC_USE_CORE_GRAPHICS |
ad667945 SC |
251 | // the cg context we got when starting the page isn't valid anymore, so replace it |
252 | dc->SetGraphicsContext( wxGraphicsContext::Create() ); | |
f518afb5 | 253 | #endif |
746d7582 SC |
254 | } |
255 | ||
db49000e SC |
256 | void wxMacCarbonPrinterDC::GetSize( int *w , int *h) const |
257 | { | |
258 | if ( w ) | |
259 | *w = m_maxX ; | |
260 | if ( h ) | |
261 | *h = m_maxY ; | |
262 | } | |
263 | ||
264 | wxSize wxMacCarbonPrinterDC::GetPPI() const | |
265 | { | |
266 | return m_ppi ; | |
267 | }; | |
268 | ||
269 | // | |
270 | // | |
271 | // | |
272 | ||
746d7582 SC |
273 | wxPrinterDC::wxPrinterDC(const wxPrintData& printdata) |
274 | { | |
6d50343d | 275 | m_ok = false ; |
746d7582 SC |
276 | m_printData = printdata ; |
277 | m_printData.ConvertToNative() ; | |
278 | m_nativePrinterDC = wxNativePrinterDC::Create( &m_printData ) ; | |
eb7f8ac5 | 279 | if ( m_nativePrinterDC ) |
75411508 | 280 | { |
746d7582 | 281 | m_ok = m_nativePrinterDC->Ok() ; |
746d7582 SC |
282 | if ( !m_ok ) |
283 | { | |
284 | wxString message ; | |
eb7f8ac5 | 285 | message.Printf( wxT("Print Error %u"), m_nativePrinterDC->GetStatus() ) ; |
746d7582 SC |
286 | wxMessageDialog dialog( NULL , message , wxEmptyString, wxICON_HAND | wxOK) ; |
287 | dialog.ShowModal(); | |
288 | } | |
db49000e SC |
289 | else |
290 | { | |
291 | wxSize sz = GetPPI(); | |
292 | m_mm_to_pix_x = mm2inches * sz.x; | |
293 | m_mm_to_pix_y = mm2inches * sz.y; | |
294 | } | |
20b69855 | 295 | #if wxMAC_USE_CORE_GRAPHICS |
ad667945 SC |
296 | // we need at least a measuring context because people start measuring before a page |
297 | // gets printed at all | |
298 | SetGraphicsContext( wxGraphicsContext::Create() ); | |
20b69855 | 299 | #endif |
75411508 | 300 | } |
746d7582 SC |
301 | } |
302 | ||
db49000e SC |
303 | wxSize wxPrinterDC::GetPPI() const |
304 | { | |
305 | return m_nativePrinterDC->GetPPI() ; | |
306 | } | |
307 | ||
746d7582 SC |
308 | wxPrinterDC::~wxPrinterDC(void) |
309 | { | |
310 | delete m_nativePrinterDC ; | |
311 | } | |
312 | ||
eb7f8ac5 | 313 | bool wxPrinterDC::StartDoc( const wxString& message ) |
746d7582 SC |
314 | { |
315 | wxASSERT_MSG( Ok() , wxT("Called wxPrinterDC::StartDoc from an invalid object") ) ; | |
eb7f8ac5 | 316 | |
746d7582 SC |
317 | if ( !m_ok ) |
318 | return false ; | |
319 | ||
320 | if ( m_nativePrinterDC->StartDoc(this, message ) ) | |
321 | { | |
322 | // in case we have to do additional things when successful | |
323 | } | |
324 | m_ok = m_nativePrinterDC->Ok() ; | |
325 | if ( !m_ok ) | |
75411508 | 326 | { |
746d7582 | 327 | wxString message ; |
eb7f8ac5 | 328 | message.Printf( wxT("Print Error %u"), m_nativePrinterDC->GetStatus() ) ; |
427ff662 | 329 | wxMessageDialog dialog( NULL , message , wxEmptyString, wxICON_HAND | wxOK) ; |
75411508 | 330 | dialog.ShowModal(); |
75411508 | 331 | } |
746d7582 | 332 | |
e40298d5 | 333 | return m_ok ; |
72e7876b SC |
334 | } |
335 | ||
eb7f8ac5 | 336 | void wxPrinterDC::EndDoc(void) |
72e7876b | 337 | { |
746d7582 SC |
338 | if ( !m_ok ) |
339 | return ; | |
340 | ||
341 | m_nativePrinterDC->EndDoc( this ) ; | |
342 | m_ok = m_nativePrinterDC->Ok() ; | |
343 | ||
344 | if ( !m_ok ) | |
75411508 | 345 | { |
746d7582 | 346 | wxString message ; |
eb7f8ac5 | 347 | message.Printf( wxT("Print Error %u"), m_nativePrinterDC->GetStatus() ) ; |
746d7582 SC |
348 | wxMessageDialog dialog( NULL , message , wxEmptyString, wxICON_HAND | wxOK) ; |
349 | dialog.ShowModal(); | |
75411508 | 350 | } |
72e7876b SC |
351 | } |
352 | ||
f415cab9 JS |
353 | wxRect wxPrinterDC::GetPaperRect() |
354 | { | |
355 | wxCoord w, h; | |
356 | GetSize(&w, &h); | |
357 | wxRect pageRect(0, 0, w, h); | |
358 | wxMacCarbonPrintData *native = (wxMacCarbonPrintData*) m_printData.GetNativeData() ; | |
359 | OSStatus err = noErr ; | |
360 | PMRect rPaper; | |
361 | err = PMGetAdjustedPaperRect(native->m_macPageFormat, &rPaper); | |
362 | if ( err != noErr ) | |
363 | return pageRect; | |
364 | return wxRect(wxCoord(rPaper.left), wxCoord(rPaper.top), | |
365 | wxCoord(rPaper.right - rPaper.left), wxCoord(rPaper.bottom - rPaper.top)); | |
366 | } | |
367 | ||
eb7f8ac5 | 368 | void wxPrinterDC::StartPage(void) |
72e7876b | 369 | { |
e40298d5 JS |
370 | if ( !m_ok ) |
371 | return ; | |
2f1ae414 | 372 | |
746d7582 SC |
373 | m_logicalFunction = wxCOPY; |
374 | // m_textAlignment = wxALIGN_TOP_LEFT; | |
375 | m_backgroundMode = wxTRANSPARENT; | |
376 | ||
377 | m_textForegroundColour = *wxBLACK; | |
378 | m_textBackgroundColour = *wxWHITE; | |
379 | m_pen = *wxBLACK_PEN; | |
380 | m_font = *wxNORMAL_FONT; | |
381 | m_brush = *wxTRANSPARENT_BRUSH; | |
382 | m_backgroundBrush = *wxWHITE_BRUSH; | |
20b69855 | 383 | #if !wxMAC_USE_CORE_GRAPHICS |
e40298d5 JS |
384 | m_macFontInstalled = false ; |
385 | m_macBrushInstalled = false ; | |
386 | m_macPenInstalled = false ; | |
20b69855 | 387 | #endif |
2f1ae414 | 388 | |
746d7582 SC |
389 | m_nativePrinterDC->StartPage(this) ; |
390 | m_ok = m_nativePrinterDC->Ok() ; | |
eb7f8ac5 | 391 | |
72e7876b SC |
392 | } |
393 | ||
eb7f8ac5 | 394 | void wxPrinterDC::EndPage(void) |
72e7876b | 395 | { |
e40298d5 JS |
396 | if ( !m_ok ) |
397 | return ; | |
72e7876b | 398 | |
746d7582 SC |
399 | m_nativePrinterDC->EndPage(this) ; |
400 | m_ok = m_nativePrinterDC->Ok() ; | |
401 | } | |
72e7876b | 402 | |
746d7582 SC |
403 | void wxPrinterDC::DoGetSize(int *width, int *height) const |
404 | { | |
405 | wxCHECK_RET( m_ok , _T("GetSize() doesn't work without a valid wxPrinterDC") ); | |
db49000e | 406 | m_nativePrinterDC->GetSize(width, height ) ; |
72e7876b | 407 | } |
746d7582 | 408 | |
179e085f | 409 | #endif |