1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/osx/carbon/dcprint.cpp
3 // Purpose: wxPrinterDC class
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // For compilers that support precompilation, includes "wx.h".
13 #include "wx/wxprec.h"
15 #if wxUSE_PRINTING_ARCHITECTURE
21 #include "wx/dcprint.h"
24 #include "wx/msgdlg.h"
28 #include "wx/osx/private.h"
29 #include "wx/osx/private/print.h"
30 #include "wx/osx/dcprint.h"
31 #include "wx/graphics.h"
33 IMPLEMENT_ABSTRACT_CLASS(wxPrinterDCImpl
, wxGCDCImpl
)
35 class wxNativePrinterDC
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 ;
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 ; }
51 static wxNativePrinterDC
* Create(wxPrintData
* data
) ;
54 class wxMacCarbonPrinterDC
: public wxNativePrinterDC
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 ;
73 wxMacCarbonPrinterDC::wxMacCarbonPrinterDC( wxPrintData
* data
)
76 wxOSXPrintData
*native
= (wxOSXPrintData
*) data
->GetNativeData() ;
79 m_err
= PMGetAdjustedPageRect(native
->GetPageFormat(), &rPage
);
83 m_maxX
= wxCoord(rPage
.right
- rPage
.left
) ;
84 m_maxY
= wxCoord(rPage
.bottom
- rPage
.top
);
88 m_err
= PMSessionGetCurrentPrinter(native
->GetPrintSession(), &printer
);
91 #if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_5
92 if ( PMPrinterGetOutputResolution
!= NULL
)
95 m_err
= PMPrinterGetOutputResolution( printer
, native
->GetPrintSettings(), &res
) ;
96 if ( m_err
== -9589 /* kPMKeyNotFound */ )
99 res
.hRes
= res
.vRes
= 300;
106 #if MAC_OS_X_VERSION_MIN_REQUIRED < MAC_OS_X_VERSION_10_5
107 m_err
= PMPrinterGetPrinterResolution(printer
, kPMCurrentValue
, &res
);
108 if ( m_err
!= noErr
)
110 m_err
= PMGetResolution((PMPageFormat
) (native
->GetPageFormat()), &res
);
116 m_maxX
= wxCoord((double)m_maxX
* res
.hRes
/ 72.0);
117 m_maxY
= wxCoord((double)m_maxY
* res
.vRes
/ 72.0);
119 m_ppi
= wxSize(int(res
.hRes
), int(res
.vRes
));
122 wxMacCarbonPrinterDC::~wxMacCarbonPrinterDC()
126 wxNativePrinterDC
* wxNativePrinterDC::Create(wxPrintData
* data
)
128 return new wxMacCarbonPrinterDC(data
) ;
131 bool wxMacCarbonPrinterDC::StartDoc( wxPrinterDC
* dc
, const wxString
& message
)
136 wxPrinterDCImpl
*impl
= (wxPrinterDCImpl
*) dc
->GetImpl();
137 wxOSXPrintData
*native
= (wxOSXPrintData
*) impl
->GetPrintData().GetNativeData() ;
139 PMPrintSettingsSetJobName(native
->GetPrintSettings(), wxCFStringRef(message
));
141 m_err
= PMSessionBeginCGDocumentNoDialog(native
->GetPrintSession(),
142 native
->GetPrintSettings(),
143 native
->GetPageFormat());
144 if ( m_err
!= noErr
)
148 m_err
= PMGetAdjustedPageRect(native
->GetPageFormat(), &rPage
);
149 if ( m_err
!= noErr
)
152 m_maxX
= wxCoord(rPage
.right
- rPage
.left
) ;
153 m_maxY
= wxCoord(rPage
.bottom
- rPage
.top
);
158 m_err
= PMSessionGetCurrentPrinter(native
->GetPrintSession(), &printer
);
161 #if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_5
162 if ( PMPrinterGetOutputResolution
!= NULL
)
164 m_err
= PMPrinterGetOutputResolution( printer
, native
->GetPrintSettings(), &res
) ;
165 if ( m_err
== -9589 /* kPMKeyNotFound */ )
168 res
.hRes
= res
.vRes
= 300;
174 #if MAC_OS_X_VERSION_MIN_REQUIRED < MAC_OS_X_VERSION_10_5
175 if ( PMPrinterGetPrinterResolution(printer
, kPMCurrentValue
, &res
) != noErr
)
177 res
.hRes
= res
.vRes
= 300;
183 m_maxX
= wxCoord((double)m_maxX
* res
.hRes
/ 72.0);
184 m_maxY
= wxCoord((double)m_maxY
* res
.vRes
/ 72.0);
186 m_ppi
= wxSize(int(res
.hRes
), int(res
.vRes
));
190 void wxMacCarbonPrinterDC::EndDoc( wxPrinterDC
* dc
)
195 wxPrinterDCImpl
*impl
= (wxPrinterDCImpl
*) dc
->GetImpl();
196 wxOSXPrintData
*native
= (wxOSXPrintData
*) impl
->GetPrintData().GetNativeData() ;
198 m_err
= PMSessionEndDocumentNoDialog(native
->GetPrintSession());
201 void wxMacCarbonPrinterDC::StartPage( wxPrinterDC
* dc
)
206 wxPrinterDCImpl
*impl
= (wxPrinterDCImpl
*) dc
->GetImpl();
207 wxOSXPrintData
*native
= (wxOSXPrintData
*) impl
->GetPrintData().GetNativeData() ;
209 m_err
= PMSessionBeginPageNoDialog(native
->GetPrintSession(),
210 native
->GetPageFormat(),
213 CGContextRef pageContext
;
215 if ( m_err
== noErr
)
217 m_err
= PMSessionGetCGGraphicsContext(native
->GetPrintSession(),
221 if ( m_err
!= noErr
)
223 PMSessionEndPageNoDialog(native
->GetPrintSession());
224 PMSessionEndDocumentNoDialog(native
->GetPrintSession());
229 m_err
= PMGetAdjustedPaperRect( native
->GetPageFormat() , &paperRect
) ;
230 // make sure (0,0) is at the upper left of the printable area (wx conventions)
231 // Core Graphics initially has the lower left of the paper as 0,0
233 CGContextTranslateCTM( pageContext
, (CGFloat
) -paperRect
.left
, (CGFloat
) paperRect
.bottom
) ;
235 // since this is a non-critical error, we set the flag back
238 // Leopard deprecated PMSetResolution() which will not be available in 64 bit mode, so we avoid using it.
239 // To set the proper drawing resolution, the docs suggest the use of CGContextScaleCTM(), so here we go; as a
240 // consequence though, PMGetAdjustedPaperRect() and PMGetAdjustedPageRect() return unscaled rects, so we
241 // have to manually scale them later.
242 CGContextScaleCTM( pageContext
, 72.0 / (double)m_ppi
.x
, -72.0 / (double)m_ppi
.y
);
244 impl
->SetGraphicsContext( wxGraphicsContext::CreateFromNative( pageContext
) );
248 void wxMacCarbonPrinterDC::EndPage( wxPrinterDC
* dc
)
253 wxPrinterDCImpl
*impl
= (wxPrinterDCImpl
*) dc
->GetImpl();
254 wxOSXPrintData
*native
= (wxOSXPrintData
*) impl
->GetPrintData().GetNativeData() ;
256 m_err
= PMSessionEndPageNoDialog(native
->GetPrintSession());
257 if ( m_err
!= noErr
)
259 PMSessionEndDocumentNoDialog(native
->GetPrintSession());
261 // the cg context we got when starting the page isn't valid anymore, so replace it
262 impl
->SetGraphicsContext( wxGraphicsContext::Create() );
265 void wxMacCarbonPrinterDC::GetSize( int *w
, int *h
) const
273 wxSize
wxMacCarbonPrinterDC::GetPPI() const
282 wxPrinterDCImpl::wxPrinterDCImpl( wxPrinterDC
*owner
, const wxPrintData
& printdata
)
283 : wxGCDCImpl( owner
)
286 m_printData
= printdata
;
287 m_printData
.ConvertToNative() ;
288 m_nativePrinterDC
= wxNativePrinterDC::Create( &m_printData
) ;
289 if ( m_nativePrinterDC
)
291 m_ok
= m_nativePrinterDC
->Ok() ;
295 message
.Printf( wxT("Print Error %u"), m_nativePrinterDC
->GetStatus() ) ;
296 wxMessageDialog
dialog( NULL
, message
, wxEmptyString
, wxICON_HAND
| wxOK
) ;
301 wxSize sz
= GetPPI();
302 m_mm_to_pix_x
= mm2inches
* sz
.x
;
303 m_mm_to_pix_y
= mm2inches
* sz
.y
;
305 // we need at least a measuring context because people start measuring before a page
306 // gets printed at all
307 SetGraphicsContext( wxGraphicsContext::Create() );
311 wxSize
wxPrinterDCImpl::GetPPI() const
313 return m_nativePrinterDC
->GetPPI() ;
316 wxPrinterDCImpl::~wxPrinterDCImpl()
318 delete m_nativePrinterDC
;
321 bool wxPrinterDCImpl::StartDoc( const wxString
& message
)
323 wxASSERT_MSG( IsOk() , wxT("Called wxPrinterDC::StartDoc from an invalid object") ) ;
328 if ( m_nativePrinterDC
->StartDoc( (wxPrinterDC
*) GetOwner(), message
) )
330 // in case we have to do additional things when successful
332 m_ok
= m_nativePrinterDC
->Ok() ;
336 message
.Printf( wxT("Print Error %u"), m_nativePrinterDC
->GetStatus() ) ;
337 wxMessageDialog
dialog( NULL
, message
, wxEmptyString
, wxICON_HAND
| wxOK
) ;
344 void wxPrinterDCImpl::EndDoc(void)
349 m_nativePrinterDC
->EndDoc( (wxPrinterDC
*) GetOwner() ) ;
350 m_ok
= m_nativePrinterDC
->Ok() ;
355 message
.Printf( wxT("Print Error %u"), m_nativePrinterDC
->GetStatus() ) ;
356 wxMessageDialog
dialog( NULL
, message
, wxEmptyString
, wxICON_HAND
| wxOK
) ;
361 wxRect
wxPrinterDCImpl::GetPaperRect() const
364 GetOwner()->GetSize(&w
, &h
);
365 wxRect
pageRect(0, 0, w
, h
);
366 wxOSXPrintData
*native
= (wxOSXPrintData
*) m_printData
.GetNativeData() ;
367 OSStatus err
= noErr
;
369 err
= PMGetAdjustedPaperRect(native
->GetPageFormat(), &rPaper
);
373 wxSize ppi
= GetOwner()->GetPPI();
374 rPaper
.right
*= (ppi
.x
/ 72.0);
375 rPaper
.bottom
*= (ppi
.y
/ 72.0);
376 rPaper
.left
*= (ppi
.x
/ 72.0);
377 rPaper
.top
*= (ppi
.y
/ 72.0);
379 return wxRect(wxCoord(rPaper
.left
), wxCoord(rPaper
.top
),
380 wxCoord(rPaper
.right
- rPaper
.left
), wxCoord(rPaper
.bottom
- rPaper
.top
));
383 void wxPrinterDCImpl::StartPage()
388 m_logicalFunction
= wxCOPY
;
389 // m_textAlignment = wxALIGN_TOP_LEFT;
390 m_backgroundMode
= wxTRANSPARENT
;
392 m_textForegroundColour
= *wxBLACK
;
393 m_textBackgroundColour
= *wxWHITE
;
394 m_pen
= *wxBLACK_PEN
;
395 m_font
= *wxNORMAL_FONT
;
396 m_brush
= *wxTRANSPARENT_BRUSH
;
397 m_backgroundBrush
= *wxWHITE_BRUSH
;
399 m_nativePrinterDC
->StartPage( (wxPrinterDC
*) GetOwner() ) ;
400 m_ok
= m_nativePrinterDC
->Ok() ;
404 void wxPrinterDCImpl::EndPage()
409 m_nativePrinterDC
->EndPage( (wxPrinterDC
*) GetOwner() );
410 m_ok
= m_nativePrinterDC
->Ok() ;
413 void wxPrinterDCImpl::DoGetSize(int *width
, int *height
) const
415 wxCHECK_RET( m_ok
, wxT("GetSize() doesn't work without a valid wxPrinterDC") );
416 m_nativePrinterDC
->GetSize(width
, height
) ;