1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/mac/carbon/printwin.cpp
3 // Purpose: wxMacPrinter framework
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
25 #include "wx/msgdlg.h"
26 #include "wx/dcprint.h"
30 #include "wx/mac/uma.h"
32 #include "wx/mac/printmac.h"
33 #include "wx/mac/private/print.h"
35 #include "wx/printdlg.h"
36 #include "wx/mac/printdlg.h"
40 IMPLEMENT_DYNAMIC_CLASS(wxMacCarbonPrintData
, wxPrintNativeDataBase
)
41 IMPLEMENT_DYNAMIC_CLASS(wxMacPrinter
, wxPrinterBase
)
42 IMPLEMENT_CLASS(wxMacPrintPreview
, wxPrintPreviewBase
)
44 bool wxMacCarbonPrintData::IsOk() const
46 return (m_macPageFormat
!= kPMNoPageFormat
) && (m_macPrintSettings
!= kPMNoPrintSettings
) && (m_macPrintSession
!= kPMNoReference
);
48 wxMacCarbonPrintData::wxMacCarbonPrintData()
50 m_macPageFormat
= kPMNoPageFormat
;
51 m_macPrintSettings
= kPMNoPrintSettings
;
52 m_macPrintSession
= kPMNoReference
;
56 wxMacCarbonPrintData::~wxMacCarbonPrintData()
58 if (m_macPageFormat
!= kPMNoPageFormat
)
60 (void)PMRelease(m_macPageFormat
);
61 m_macPageFormat
= kPMNoPageFormat
;
64 if (m_macPrintSettings
!= kPMNoPrintSettings
)
66 (void)PMRelease(m_macPrintSettings
);
67 m_macPrintSettings
= kPMNoPrintSettings
;
70 if ( m_macPrintSession
!= kPMNoReference
)
72 (void)PMRelease(m_macPrintSession
);
73 m_macPrintSession
= kPMNoReference
;
77 void wxMacCarbonPrintData::ValidateOrCreate()
79 OSStatus err
= noErr
;
80 if ( m_macPrintSession
== kPMNoReference
)
82 err
= PMCreateSession( (PMPrintSession
*) &m_macPrintSession
) ;
84 // Set up a valid PageFormat object.
85 if ( m_macPageFormat
== kPMNoPageFormat
)
87 err
= PMCreatePageFormat((PMPageFormat
*) &m_macPageFormat
);
89 // Note that PMPageFormat is not session-specific, but calling
90 // PMSessionDefaultPageFormat assigns values specific to the printer
91 // associated with the current printing session.
93 ( m_macPageFormat
!= kPMNoPageFormat
))
95 err
= PMSessionDefaultPageFormat((PMPrintSession
) m_macPrintSession
,
96 (PMPageFormat
) m_macPageFormat
);
101 err
= PMSessionValidatePageFormat((PMPrintSession
) m_macPrintSession
,
102 (PMPageFormat
) m_macPageFormat
,
106 // Set up a valid PrintSettings object.
107 if ( m_macPrintSettings
== kPMNoPrintSettings
)
109 err
= PMCreatePrintSettings((PMPrintSettings
*) &m_macPrintSettings
);
111 // Note that PMPrintSettings is not session-specific, but calling
112 // PMSessionDefaultPrintSettings assigns values specific to the printer
113 // associated with the current printing session.
114 if ((err
== noErr
) &&
115 ( m_macPrintSettings
!= kPMNoPrintSettings
))
117 err
= PMSessionDefaultPrintSettings((PMPrintSession
) m_macPrintSession
,
118 (PMPrintSettings
) m_macPrintSettings
);
123 err
= PMSessionValidatePrintSettings((PMPrintSession
) m_macPrintSession
,
124 (PMPrintSettings
) m_macPrintSettings
,
129 bool wxMacCarbonPrintData::TransferFrom( const wxPrintData
&data
)
132 PMSetCopies( (PMPrintSettings
) m_macPrintSettings
, data
.GetNoCopies() , false ) ;
133 PMSetOrientation( (PMPageFormat
) m_macPageFormat
, ( data
.GetOrientation() == wxLANDSCAPE
) ?
134 kPMLandscape
: kPMPortrait
, false ) ;
135 // collate cannot be set
136 #if 0 // not yet tested
137 if ( !m_printerName
.empty() )
138 PMSessionSetCurrentPrinter( (PMPrintSession
) m_macPrintSession
, wxMacCFStringHolder( m_printerName
, wxFont::GetDefaultEncoding() ) ) ;
142 PMGetColorMode( (PMPrintSettings
) m_macPrintSettings
, &color
) ;
143 if ( data
.GetColour() )
145 if ( color
== kPMBlackAndWhite
)
146 PMSetColorMode( (PMPrintSettings
) m_macPrintSettings
, kPMColor
) ;
149 PMSetColorMode( (PMPrintSettings
) m_macPrintSettings
, kPMBlackAndWhite
) ;
152 // PMDuplexMode not yet accessible via API
153 // PMQualityMode not yet accessible via API
158 PMSessionGetCurrentPrinter(m_macPrintSession
, &printer
);
159 #if MAC_OS_X_VERSION_MIN_REQUIRED >= MAC_OS_X_VERSION_10_5
160 PMPrinterGetOutputResolution( printer
,
161 (PMPrintSettings
) m_macPrintSettings
, &res
) ;
162 // TODO transfer ? into page format ?
164 PMTag tag
= kPMMaxSquareResolution
;
165 PMPrinterGetPrinterResolution(printer
, tag
, &res
);
166 PMSetResolution((PMPageFormat
) m_macPageFormat
, &res
);
168 // after setting the new resolution the format has to be updated, otherwise the page rect remains
169 // at the 'old' scaling
170 PMSessionValidatePageFormat((PMPrintSession
) m_macPrintSession
,
171 (PMPageFormat
) m_macPageFormat
,
172 kPMDontWantBoolean
) ;
177 bool wxMacCarbonPrintData::TransferTo( wxPrintData
&data
)
179 OSStatus err
= noErr
;
182 err
= PMGetCopies( m_macPrintSettings
, &copies
) ;
184 data
.SetNoCopies( copies
) ;
186 PMOrientation orientation
;
187 err
= PMGetOrientation( m_macPageFormat
, &orientation
) ;
190 if ( orientation
== kPMPortrait
|| orientation
== kPMReversePortrait
)
191 data
.SetOrientation( wxPORTRAIT
);
193 data
.SetOrientation( wxLANDSCAPE
);
196 // collate cannot be set
199 wxMacCFStringHolder name
;
201 PMSessionGetCurrentPrinter( m_macPrintSession
,
203 m_printerName
= name
.AsString() ;
209 err
= PMGetColorMode( m_macPrintSettings
, &color
) ;
211 data
.SetColour( !(color
== kPMBlackAndWhite
) ) ;
213 // PMDuplexMode not yet accessible via API
214 // PMQualityMode not yet accessible via API
217 err
= PMGetUnadjustedPaperRect( m_macPageFormat
, &rPaper
);
220 data
.SetPaperSize( wxSize (
221 (int)(( rPaper
.right
- rPaper
.left
) * pt2mm
+ 0.5 ) ,
222 (int)(( rPaper
.bottom
- rPaper
.top
) * pt2mm
+ 0.5 ) ) );
227 void wxMacCarbonPrintData::TransferFrom( wxPageSetupData
*data
)
229 // should we setup the page rect here ?
230 // since MacOS sometimes has two same paper rects with different
231 // page rects we could make it roundtrip safe perhaps
234 void wxMacCarbonPrintData::TransferTo( wxPageSetupData
* data
)
237 OSStatus err
= PMGetUnadjustedPaperRect(m_macPageFormat
, &rPaper
);
241 err
= PMGetUnadjustedPageRect(m_macPageFormat
, &rPage
) ;
244 data
->SetMinMarginTopLeft( wxPoint (
245 (int)(((double) rPage
.left
- rPaper
.left
) * pt2mm
) ,
246 (int)(((double) rPage
.top
- rPaper
.top
) * pt2mm
) ) ) ;
248 data
->SetMinMarginBottomRight( wxPoint (
249 (wxCoord
)(((double) rPaper
.right
- rPage
.right
) * pt2mm
),
250 (wxCoord
)(((double) rPaper
.bottom
- rPage
.bottom
) * pt2mm
)) ) ;
252 if ( data
->GetMarginTopLeft().x
< data
->GetMinMarginTopLeft().x
)
253 data
->SetMarginTopLeft( wxPoint( data
->GetMinMarginTopLeft().x
,
254 data
->GetMarginTopLeft().y
) ) ;
256 if ( data
->GetMarginBottomRight().x
< data
->GetMinMarginBottomRight().x
)
257 data
->SetMarginBottomRight( wxPoint( data
->GetMinMarginBottomRight().x
,
258 data
->GetMarginBottomRight().y
) );
260 if ( data
->GetMarginTopLeft().y
< data
->GetMinMarginTopLeft().y
)
261 data
->SetMarginTopLeft( wxPoint( data
->GetMarginTopLeft().x
, data
->GetMinMarginTopLeft().y
) );
263 if ( data
->GetMarginBottomRight().y
< data
->GetMinMarginBottomRight().y
)
264 data
->SetMarginBottomRight( wxPoint( data
->GetMarginBottomRight().x
,
265 data
->GetMinMarginBottomRight().y
) );
270 void wxMacCarbonPrintData::TransferTo( wxPrintDialogData
* data
)
272 UInt32 minPage
, maxPage
;
273 PMGetPageRange( m_macPrintSettings
, &minPage
, &maxPage
) ;
274 data
->SetMinPage( minPage
) ;
275 data
->SetMaxPage( maxPage
) ;
277 PMGetCopies( m_macPrintSettings
, &copies
) ;
278 data
->SetNoCopies( copies
) ;
280 PMGetFirstPage( m_macPrintSettings
, &from
) ;
281 PMGetLastPage( m_macPrintSettings
, &to
) ;
282 if ( to
>= 0x7FFFFFFF ) // due to an OS Bug we don't get back kPMPrintAllPages
284 data
->SetAllPages( true ) ;
285 // This means all pages, more or less
286 data
->SetFromPage(1);
287 data
->SetToPage(32000);
291 data
->SetFromPage( from
) ;
292 data
->SetToPage( to
) ;
293 data
->SetAllPages( false );
297 void wxMacCarbonPrintData::TransferFrom( wxPrintDialogData
* data
)
299 PMSetPageRange( m_macPrintSettings
, data
->GetMinPage() , data
->GetMaxPage() ) ;
300 PMSetCopies( m_macPrintSettings
, data
->GetNoCopies() , false ) ;
301 PMSetFirstPage( m_macPrintSettings
, data
->GetFromPage() , false ) ;
303 if (data
->GetAllPages() || data
->GetFromPage() == 0)
304 PMSetLastPage( m_macPrintSettings
, (UInt32
) kPMPrintAllPages
, true ) ;
306 PMSetLastPage( m_macPrintSettings
, (UInt32
) data
->GetToPage() , false ) ;
313 wxMacPrinter::wxMacPrinter(wxPrintDialogData
*data
):
318 wxMacPrinter::~wxMacPrinter(void)
322 bool wxMacPrinter::Print(wxWindow
*parent
, wxPrintout
*printout
, bool prompt
)
325 sm_abortWindow
= NULL
;
330 printout
->SetIsPreview(false);
331 if (m_printDialogData
.GetMinPage() < 1)
332 m_printDialogData
.SetMinPage(1);
333 if (m_printDialogData
.GetMaxPage() < 1)
334 m_printDialogData
.SetMaxPage(9999);
336 // Create a suitable device context
340 wxPrintDialog
dialog(parent
, & m_printDialogData
);
341 if (dialog
.ShowModal() == wxID_OK
)
343 dc
= dialog
.GetPrintDC();
344 m_printDialogData
= dialog
.GetPrintDialogData();
349 dc
= new wxPrinterDC( m_printDialogData
.GetPrintData() ) ;
352 // May have pressed cancel.
353 if (!dc
|| !dc
->Ok())
360 // on the mac we have always pixels as addressing mode with 72 dpi
361 printout
->SetPPIScreen(72, 72);
363 wxMacCarbonPrintData
* nativeData
= (wxMacCarbonPrintData
*)
364 (m_printDialogData
.GetPrintData().GetNativeData());
365 #if MAC_OS_X_VERSION_MIN_REQUIRED >= MAC_OS_X_VERSION_10_5
367 PMSessionGetCurrentPrinter(nativeData
->m_macPrintSession
, &printer
);
368 PMPrinterGetOutputResolution( printer
, nativeData
->m_macPrintSettings
, &res
) ;
370 PMGetResolution((PMPageFormat
) (nativeData
->m_macPageFormat
), &res
);
372 printout
->SetPPIPrinter(int(res
.hRes
), int(res
.vRes
));
374 // Set printout parameters
380 printout
->SetPageSizePixels((int)w
, (int)h
);
381 dc
->GetSizeMM(&ww
, &hh
);
382 printout
->SetPageSizeMM((int)ww
, (int)hh
);
384 // Create an abort window
387 printout
->OnPreparePrinting();
389 // Get some parameters from the printout, if defined
390 int fromPage
, toPage
;
391 int minPage
, maxPage
;
392 printout
->GetPageInfo(&minPage
, &maxPage
, &fromPage
, &toPage
);
400 // Only set min and max, because from and to have been
402 m_printDialogData
.SetMinPage(minPage
);
403 m_printDialogData
.SetMaxPage(maxPage
);
405 wxWindow
*win
= CreateAbortWindow(parent
, printout
);
406 wxSafeYield(win
,true);
411 wxMessageBox(wxT("Sorry, could not create an abort dialog."), wxT("Print Error"), wxOK
, parent
);
417 sm_abortWindow
= win
;
418 sm_abortWindow
->Show(true);
419 wxSafeYield(win
,true);
421 printout
->OnBeginPrinting();
423 bool keepGoing
= true;
426 for (copyCount
= 1; copyCount
<= m_printDialogData
.GetNoCopies(); copyCount
++)
428 if (!printout
->OnBeginDocument(m_printDialogData
.GetFromPage(), m_printDialogData
.GetToPage()))
431 wxMessageBox(wxT("Could not start printing."), wxT("Print Error"), wxOK
, parent
);
438 for (pn
= m_printDialogData
.GetFromPage();
439 keepGoing
&& (pn
<= m_printDialogData
.GetToPage()) && printout
->HasPage(pn
);
450 if ( UMAGetSystemVersion() >= 0x1000 )
453 #if !wxMAC_USE_CORE_GRAPHICS
455 GetPort( &thePort
) ;
457 wxSafeYield(win
,true);
458 #if !wxMAC_USE_CORE_GRAPHICS
463 keepGoing
= printout
->OnPrintPage(pn
);
467 printout
->OnEndDocument();
470 printout
->OnEndPrinting();
474 sm_abortWindow
->Show(false);
475 delete sm_abortWindow
;
476 sm_abortWindow
= NULL
;
486 wxDC
* wxMacPrinter::PrintDialog(wxWindow
*parent
)
488 wxDC
* dc
= (wxDC
*) NULL
;
490 wxPrintDialog
dialog(parent
, & m_printDialogData
);
491 int ret
= dialog
.ShowModal();
495 dc
= dialog
.GetPrintDC();
496 m_printDialogData
= dialog
.GetPrintDialogData();
502 bool wxMacPrinter::Setup(wxWindow
*parent
)
505 wxPrintDialog
dialog(parent
, & m_printDialogData
);
506 dialog
.GetPrintDialogData().SetSetupDialog(true);
508 int ret
= dialog
.ShowModal();
511 m_printDialogData
= dialog
.GetPrintDialogData();
513 return (ret
== wxID_OK
);
523 wxMacPrintPreview::wxMacPrintPreview(wxPrintout
*printout
,
524 wxPrintout
*printoutForPrinting
,
525 wxPrintDialogData
*data
)
526 : wxPrintPreviewBase(printout
, printoutForPrinting
, data
)
531 wxMacPrintPreview::wxMacPrintPreview(wxPrintout
*printout
, wxPrintout
*printoutForPrinting
, wxPrintData
*data
):
532 wxPrintPreviewBase(printout
, printoutForPrinting
, data
)
537 wxMacPrintPreview::~wxMacPrintPreview(void)
541 bool wxMacPrintPreview::Print(bool interactive
)
543 if (!m_printPrintout
)
546 wxMacPrinter
printer(&m_printDialogData
);
547 return printer
.Print(m_previewFrame
, m_printPrintout
, interactive
);
550 void wxMacPrintPreview::DetermineScaling(void)
552 int screenWidth
, screenHeight
;
553 wxDisplaySize( &screenWidth
, &screenHeight
) ;
555 wxSize
ppiScreen( 72 , 72 ) ;
556 wxSize
ppiPrinter( 72 , 72 ) ;
558 m_previewPrintout
->SetPPIScreen( ppiScreen
.x
, ppiScreen
.y
) ;
563 // Get a device context for the currently selected printer
564 wxPrinterDC
printerDC(m_printDialogData
.GetPrintData());
567 printerDC
.GetSizeMM(&ww
, &hh
);
568 printerDC
.GetSize( &x
, &y
) ;
569 ppiPrinter
= printerDC
.GetPPI() ;
577 ww
= (int) (x
* 25.4 / ppiPrinter
.x
) ;
578 hh
= (int) (y
* 25.4 / ppiPrinter
.y
) ;
581 m_previewPrintout
->SetPageSizeMM((int)ww
, (int)hh
);
582 m_previewPrintout
->SetPageSizePixels( x
, y
) ;
585 m_previewPrintout
->SetPPIPrinter( ppiPrinter
.x
, ppiPrinter
.y
) ;
587 m_previewScale
= (float)((float)ppiScreen
.x
/(float)ppiPrinter
.y
);