]>
Commit | Line | Data |
---|---|---|
489468fe | 1 | ///////////////////////////////////////////////////////////////////////////// |
524c47aa | 2 | // Name: src/osx/carbon/dcprint.cpp |
489468fe SC |
3 | // Purpose: wxPrinterDC class |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 01/02/97 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Julian Smart | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | // For compilers that support precompilation, includes "wx.h". | |
13 | #include "wx/wxprec.h" | |
14 | ||
15 | #if wxUSE_PRINTING_ARCHITECTURE | |
16 | ||
17 | #ifdef __BORLANDC__ | |
18 | #pragma hdrstop | |
19 | #endif | |
20 | ||
21 | #include "wx/dcprint.h" | |
22 | ||
23 | #ifndef WX_PRECOMP | |
24 | #include "wx/msgdlg.h" | |
25 | #include "wx/math.h" | |
26 | #endif | |
27 | ||
524c47aa | 28 | #include "wx/osx/private.h" |
1f0c8f31 | 29 | #include "wx/osx/private/print.h" |
e158da36 | 30 | #include "wx/osx/dcprint.h" |
489468fe SC |
31 | #include "wx/graphics.h" |
32 | ||
33 | IMPLEMENT_ABSTRACT_CLASS(wxPrinterDCImpl, wxGCDCImpl) | |
34 | ||
35 | class wxNativePrinterDC | |
36 | { | |
37 | public : | |
38 | wxNativePrinterDC() {} | |
39 | virtual ~wxNativePrinterDC() {} | |
40 | virtual bool StartDoc( wxPrinterDC* dc , const wxString& message ) = 0; | |
41 | virtual void EndDoc( wxPrinterDC* dc ) = 0; | |
42 | virtual void StartPage( wxPrinterDC* dc ) = 0; | |
43 | virtual void EndPage( wxPrinterDC* dc ) = 0; | |
44 | virtual void GetSize( int *w , int *h) const = 0 ; | |
45 | virtual wxSize GetPPI() const = 0 ; | |
46 | ||
47 | // returns 0 in case of no Error, otherwise platform specific error codes | |
48 | virtual wxUint32 GetStatus() const = 0 ; | |
49 | bool Ok() { return GetStatus() == 0 ; } | |
50 | ||
51 | static wxNativePrinterDC* Create(wxPrintData* data) ; | |
52 | } ; | |
53 | ||
54 | class wxMacCarbonPrinterDC : public wxNativePrinterDC | |
55 | { | |
56 | public : | |
57 | wxMacCarbonPrinterDC( wxPrintData* data ) ; | |
58 | virtual ~wxMacCarbonPrinterDC() ; | |
59 | virtual bool StartDoc( wxPrinterDC* dc , const wxString& message ) ; | |
60 | virtual void EndDoc( wxPrinterDC* dc ) ; | |
61 | virtual void StartPage( wxPrinterDC* dc ) ; | |
62 | virtual void EndPage( wxPrinterDC* dc ) ; | |
63 | virtual wxUint32 GetStatus() const { return m_err ; } | |
64 | virtual void GetSize( int *w , int *h) const ; | |
65 | virtual wxSize GetPPI() const ; | |
66 | private : | |
67 | wxCoord m_maxX ; | |
68 | wxCoord m_maxY ; | |
69 | wxSize m_ppi ; | |
70 | OSStatus m_err ; | |
71 | } ; | |
72 | ||
73 | wxMacCarbonPrinterDC::wxMacCarbonPrinterDC( wxPrintData* data ) | |
74 | { | |
75 | m_err = noErr ; | |
c347101b | 76 | wxOSXPrintData *native = (wxOSXPrintData*) data->GetNativeData() ; |
884dad83 | 77 | |
489468fe | 78 | PMRect rPage; |
c347101b | 79 | m_err = PMGetAdjustedPageRect(native->GetPageFormat(), &rPage); |
489468fe SC |
80 | if ( m_err != noErr ) |
81 | return; | |
884dad83 | 82 | |
489468fe SC |
83 | m_maxX = wxCoord(rPage.right - rPage.left) ; |
84 | m_maxY = wxCoord(rPage.bottom - rPage.top); | |
884dad83 | 85 | |
489468fe | 86 | PMResolution res; |
884dad83 SC |
87 | PMPrinter printer; |
88 | m_err = PMSessionGetCurrentPrinter(native->GetPrintSession(), &printer); | |
89 | if ( m_err == noErr ) | |
90 | { | |
6d52ca53 | 91 | #if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_5 |
884dad83 | 92 | if ( PMPrinterGetOutputResolution != NULL ) |
489468fe | 93 | { |
489468fe | 94 | { |
884dad83 SC |
95 | m_err = PMPrinterGetOutputResolution( printer, native->GetPrintSettings(), &res) ; |
96 | if ( m_err == -9589 /* kPMKeyNotFound */ ) | |
97 | { | |
98 | m_err = noErr ; | |
99 | res.hRes = res.vRes = 300; | |
100 | } | |
489468fe SC |
101 | } |
102 | } | |
884dad83 | 103 | else |
489468fe | 104 | #endif |
884dad83 | 105 | { |
6d52ca53 | 106 | #if MAC_OS_X_VERSION_MIN_REQUIRED < MAC_OS_X_VERSION_10_5 |
884dad83 | 107 | m_err = PMPrinterGetPrinterResolution(printer, kPMCurrentValue, &res); |
489468fe | 108 | #endif |
884dad83 | 109 | } |
489468fe | 110 | } |
884dad83 SC |
111 | |
112 | m_maxX = wxCoord((double)m_maxX * res.hRes / 72.0); | |
113 | m_maxY = wxCoord((double)m_maxY * res.vRes / 72.0); | |
6d52ca53 | 114 | |
489468fe SC |
115 | m_ppi = wxSize(int(res.hRes), int(res.vRes)); |
116 | } | |
117 | ||
118 | wxMacCarbonPrinterDC::~wxMacCarbonPrinterDC() | |
119 | { | |
120 | } | |
121 | ||
122 | wxNativePrinterDC* wxNativePrinterDC::Create(wxPrintData* data) | |
123 | { | |
124 | return new wxMacCarbonPrinterDC(data) ; | |
125 | } | |
126 | ||
e9e767f1 | 127 | bool wxMacCarbonPrinterDC::StartDoc( wxPrinterDC* dc , const wxString& message ) |
489468fe SC |
128 | { |
129 | if ( m_err ) | |
130 | return false ; | |
131 | ||
132 | wxPrinterDCImpl *impl = (wxPrinterDCImpl*) dc->GetImpl(); | |
c347101b | 133 | wxOSXPrintData *native = (wxOSXPrintData*) impl->GetPrintData().GetNativeData() ; |
489468fe | 134 | |
884dad83 | 135 | PMPrintSettingsSetJobName(native->GetPrintSettings(), wxCFStringRef(message)); |
e9e767f1 | 136 | |
c347101b SC |
137 | m_err = PMSessionBeginCGDocumentNoDialog(native->GetPrintSession(), |
138 | native->GetPrintSettings(), | |
139 | native->GetPageFormat()); | |
489468fe SC |
140 | if ( m_err != noErr ) |
141 | return false; | |
142 | ||
143 | PMRect rPage; | |
c347101b | 144 | m_err = PMGetAdjustedPageRect(native->GetPageFormat(), &rPage); |
489468fe SC |
145 | if ( m_err != noErr ) |
146 | return false ; | |
147 | ||
148 | m_maxX = wxCoord(rPage.right - rPage.left) ; | |
149 | m_maxY = wxCoord(rPage.bottom - rPage.top); | |
150 | ||
151 | PMResolution res; | |
884dad83 SC |
152 | PMPrinter printer; |
153 | ||
154 | m_err = PMSessionGetCurrentPrinter(native->GetPrintSession(), &printer); | |
155 | if (m_err == noErr) | |
489468fe | 156 | { |
884dad83 SC |
157 | #if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_5 |
158 | if ( PMPrinterGetOutputResolution != NULL ) | |
489468fe | 159 | { |
c347101b | 160 | m_err = PMPrinterGetOutputResolution( printer, native->GetPrintSettings(), &res) ; |
489468fe SC |
161 | if ( m_err == -9589 /* kPMKeyNotFound */ ) |
162 | { | |
163 | m_err = noErr ; | |
164 | res.hRes = res.vRes = 300; | |
165 | } | |
166 | } | |
884dad83 | 167 | else |
489468fe | 168 | #endif |
884dad83 | 169 | { |
6d52ca53 | 170 | #if MAC_OS_X_VERSION_MIN_REQUIRED < MAC_OS_X_VERSION_10_5 |
884dad83 | 171 | m_err = PMPrinterGetPrinterResolution(printer, kPMCurrentValue, &res); |
489468fe | 172 | #endif |
884dad83 | 173 | } |
489468fe | 174 | } |
884dad83 SC |
175 | |
176 | m_maxX = wxCoord((double)m_maxX * res.hRes / 72.0); | |
177 | m_maxY = wxCoord((double)m_maxY * res.vRes / 72.0); | |
489468fe SC |
178 | |
179 | m_ppi = wxSize(int(res.hRes), int(res.vRes)); | |
180 | return true ; | |
181 | } | |
182 | ||
183 | void wxMacCarbonPrinterDC::EndDoc( wxPrinterDC* dc ) | |
184 | { | |
185 | if ( m_err ) | |
186 | return ; | |
187 | ||
188 | wxPrinterDCImpl *impl = (wxPrinterDCImpl*) dc->GetImpl(); | |
c347101b | 189 | wxOSXPrintData *native = (wxOSXPrintData*) impl->GetPrintData().GetNativeData() ; |
489468fe | 190 | |
c347101b | 191 | m_err = PMSessionEndDocumentNoDialog(native->GetPrintSession()); |
489468fe SC |
192 | } |
193 | ||
194 | void wxMacCarbonPrinterDC::StartPage( wxPrinterDC* dc ) | |
195 | { | |
196 | if ( m_err ) | |
197 | return ; | |
198 | ||
199 | wxPrinterDCImpl *impl = (wxPrinterDCImpl*) dc->GetImpl(); | |
c347101b | 200 | wxOSXPrintData *native = (wxOSXPrintData*) impl->GetPrintData().GetNativeData() ; |
489468fe | 201 | |
c347101b SC |
202 | m_err = PMSessionBeginPageNoDialog(native->GetPrintSession(), |
203 | native->GetPageFormat(), | |
884dad83 | 204 | NULL); |
489468fe SC |
205 | |
206 | CGContextRef pageContext; | |
207 | ||
208 | if ( m_err == noErr ) | |
209 | { | |
c347101b | 210 | m_err = PMSessionGetCGGraphicsContext(native->GetPrintSession(), |
489468fe SC |
211 | &pageContext ); |
212 | } | |
213 | ||
214 | if ( m_err != noErr ) | |
215 | { | |
c347101b SC |
216 | PMSessionEndPageNoDialog(native->GetPrintSession()); |
217 | PMSessionEndDocumentNoDialog(native->GetPrintSession()); | |
489468fe SC |
218 | } |
219 | else | |
220 | { | |
884dad83 SC |
221 | PMRect paperRect ; |
222 | m_err = PMGetAdjustedPaperRect( native->GetPageFormat() , &paperRect ) ; | |
223 | // make sure (0,0) is at the upper left of the printable area (wx conventions) | |
224 | // Core Graphics initially has the lower left of the paper as 0,0 | |
489468fe | 225 | if ( !m_err ) |
489468fe | 226 | CGContextTranslateCTM( pageContext , (CGFloat) -paperRect.left , (CGFloat) paperRect.bottom ) ; |
884dad83 | 227 | |
489468fe SC |
228 | // since this is a non-critical error, we set the flag back |
229 | m_err = noErr ; | |
884dad83 SC |
230 | |
231 | // Leopard deprecated PMSetResolution() which will not be available in 64 bit mode, so we avoid using it. | |
232 | // To set the proper drawing resolution, the docs suggest the use of CGContextScaleCTM(), so here we go; as a | |
233 | // consequence though, PMGetAdjustedPaperRect() and PMGetAdjustedPageRect() return unscaled rects, so we | |
234 | // have to manually scale them later. | |
235 | CGContextScaleCTM( pageContext, 72.0 / (double)m_ppi.x, -72.0 / (double)m_ppi.y); | |
236 | ||
237 | impl->SetGraphicsContext( wxGraphicsContext::CreateFromNative( pageContext ) ); | |
489468fe | 238 | } |
489468fe SC |
239 | } |
240 | ||
241 | void wxMacCarbonPrinterDC::EndPage( wxPrinterDC* dc ) | |
242 | { | |
243 | if ( m_err ) | |
244 | return ; | |
245 | ||
246 | wxPrinterDCImpl *impl = (wxPrinterDCImpl*) dc->GetImpl(); | |
c347101b | 247 | wxOSXPrintData *native = (wxOSXPrintData*) impl->GetPrintData().GetNativeData() ; |
489468fe | 248 | |
c347101b | 249 | m_err = PMSessionEndPageNoDialog(native->GetPrintSession()); |
489468fe SC |
250 | if ( m_err != noErr ) |
251 | { | |
c347101b | 252 | PMSessionEndDocumentNoDialog(native->GetPrintSession()); |
489468fe SC |
253 | } |
254 | // the cg context we got when starting the page isn't valid anymore, so replace it | |
255 | impl->SetGraphicsContext( wxGraphicsContext::Create() ); | |
256 | } | |
257 | ||
258 | void wxMacCarbonPrinterDC::GetSize( int *w , int *h) const | |
259 | { | |
260 | if ( w ) | |
261 | *w = m_maxX ; | |
262 | if ( h ) | |
263 | *h = m_maxY ; | |
264 | } | |
265 | ||
6d52ca53 | 266 | wxSize wxMacCarbonPrinterDC::GetPPI() const |
489468fe SC |
267 | { |
268 | return m_ppi ; | |
269 | }; | |
270 | ||
271 | // | |
272 | // | |
273 | // | |
274 | ||
275 | wxPrinterDCImpl::wxPrinterDCImpl( wxPrinterDC *owner, const wxPrintData& printdata ) | |
276 | : wxGCDCImpl( owner ) | |
277 | { | |
278 | m_ok = false ; | |
279 | m_printData = printdata ; | |
280 | m_printData.ConvertToNative() ; | |
281 | m_nativePrinterDC = wxNativePrinterDC::Create( &m_printData ) ; | |
282 | if ( m_nativePrinterDC ) | |
283 | { | |
284 | m_ok = m_nativePrinterDC->Ok() ; | |
285 | if ( !m_ok ) | |
286 | { | |
287 | wxString message ; | |
288 | message.Printf( wxT("Print Error %u"), m_nativePrinterDC->GetStatus() ) ; | |
289 | wxMessageDialog dialog( NULL , message , wxEmptyString, wxICON_HAND | wxOK) ; | |
290 | dialog.ShowModal(); | |
291 | } | |
292 | else | |
293 | { | |
294 | wxSize sz = GetPPI(); | |
295 | m_mm_to_pix_x = mm2inches * sz.x; | |
6d52ca53 | 296 | m_mm_to_pix_y = mm2inches * sz.y; |
489468fe SC |
297 | } |
298 | // we need at least a measuring context because people start measuring before a page | |
299 | // gets printed at all | |
300 | SetGraphicsContext( wxGraphicsContext::Create() ); | |
301 | } | |
302 | } | |
303 | ||
304 | wxSize wxPrinterDCImpl::GetPPI() const | |
305 | { | |
306 | return m_nativePrinterDC->GetPPI() ; | |
307 | } | |
308 | ||
309 | wxPrinterDCImpl::~wxPrinterDCImpl() | |
310 | { | |
311 | delete m_nativePrinterDC ; | |
312 | } | |
313 | ||
314 | bool wxPrinterDCImpl::StartDoc( const wxString& message ) | |
315 | { | |
316 | wxASSERT_MSG( IsOk() , wxT("Called wxPrinterDC::StartDoc from an invalid object") ) ; | |
317 | ||
318 | if ( !m_ok ) | |
319 | return false ; | |
320 | ||
321 | if ( m_nativePrinterDC->StartDoc( (wxPrinterDC*) GetOwner(), message ) ) | |
322 | { | |
323 | // in case we have to do additional things when successful | |
324 | } | |
325 | m_ok = m_nativePrinterDC->Ok() ; | |
326 | if ( !m_ok ) | |
327 | { | |
328 | wxString message ; | |
329 | message.Printf( wxT("Print Error %u"), m_nativePrinterDC->GetStatus() ) ; | |
330 | wxMessageDialog dialog( NULL , message , wxEmptyString, wxICON_HAND | wxOK) ; | |
331 | dialog.ShowModal(); | |
332 | } | |
333 | ||
334 | return m_ok ; | |
335 | } | |
336 | ||
337 | void wxPrinterDCImpl::EndDoc(void) | |
338 | { | |
339 | if ( !m_ok ) | |
340 | return ; | |
341 | ||
342 | m_nativePrinterDC->EndDoc( (wxPrinterDC*) GetOwner() ) ; | |
343 | m_ok = m_nativePrinterDC->Ok() ; | |
344 | ||
345 | if ( !m_ok ) | |
346 | { | |
347 | wxString message ; | |
348 | message.Printf( wxT("Print Error %u"), m_nativePrinterDC->GetStatus() ) ; | |
349 | wxMessageDialog dialog( NULL , message , wxEmptyString, wxICON_HAND | wxOK) ; | |
350 | dialog.ShowModal(); | |
351 | } | |
352 | } | |
353 | ||
6d52ca53 | 354 | wxRect wxPrinterDCImpl::GetPaperRect() const |
489468fe SC |
355 | { |
356 | wxCoord w, h; | |
357 | GetOwner()->GetSize(&w, &h); | |
358 | wxRect pageRect(0, 0, w, h); | |
c347101b | 359 | wxOSXPrintData *native = (wxOSXPrintData*) m_printData.GetNativeData() ; |
489468fe SC |
360 | OSStatus err = noErr ; |
361 | PMRect rPaper; | |
c347101b | 362 | err = PMGetAdjustedPaperRect(native->GetPageFormat(), &rPaper); |
489468fe SC |
363 | if ( err != noErr ) |
364 | return pageRect; | |
884dad83 SC |
365 | |
366 | wxSize ppi = GetOwner()->GetPPI(); | |
367 | rPaper.right *= (ppi.x / 72.0); | |
368 | rPaper.bottom *= (ppi.y / 72.0); | |
369 | rPaper.left *= (ppi.x / 72.0); | |
370 | rPaper.top *= (ppi.y / 72.0); | |
371 | ||
489468fe SC |
372 | return wxRect(wxCoord(rPaper.left), wxCoord(rPaper.top), |
373 | wxCoord(rPaper.right - rPaper.left), wxCoord(rPaper.bottom - rPaper.top)); | |
374 | } | |
375 | ||
376 | void wxPrinterDCImpl::StartPage() | |
377 | { | |
378 | if ( !m_ok ) | |
379 | return ; | |
380 | ||
381 | m_logicalFunction = wxCOPY; | |
382 | // m_textAlignment = wxALIGN_TOP_LEFT; | |
383 | m_backgroundMode = wxTRANSPARENT; | |
384 | ||
385 | m_textForegroundColour = *wxBLACK; | |
386 | m_textBackgroundColour = *wxWHITE; | |
387 | m_pen = *wxBLACK_PEN; | |
388 | m_font = *wxNORMAL_FONT; | |
389 | m_brush = *wxTRANSPARENT_BRUSH; | |
390 | m_backgroundBrush = *wxWHITE_BRUSH; | |
391 | ||
392 | m_nativePrinterDC->StartPage( (wxPrinterDC*) GetOwner() ) ; | |
393 | m_ok = m_nativePrinterDC->Ok() ; | |
394 | ||
395 | } | |
396 | ||
397 | void wxPrinterDCImpl::EndPage() | |
398 | { | |
399 | if ( !m_ok ) | |
400 | return ; | |
401 | ||
402 | m_nativePrinterDC->EndPage( (wxPrinterDC*) GetOwner() ); | |
403 | m_ok = m_nativePrinterDC->Ok() ; | |
404 | } | |
405 | ||
406 | void wxPrinterDCImpl::DoGetSize(int *width, int *height) const | |
407 | { | |
9a83f860 | 408 | wxCHECK_RET( m_ok , wxT("GetSize() doesn't work without a valid wxPrinterDC") ); |
489468fe SC |
409 | m_nativePrinterDC->GetSize(width, height ) ; |
410 | } | |
411 | ||
412 | #endif |