X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/03e11df5470fd64d9d9a669d0b50b84c2d714736..fa2f5d3bc9563c2b88282d5487758572d8baffb3:/src/mac/carbon/printdlg.cpp diff --git a/src/mac/carbon/printdlg.cpp b/src/mac/carbon/printdlg.cpp index 88f6d70b58..1b18c1d49b 100644 --- a/src/mac/carbon/printdlg.cpp +++ b/src/mac/carbon/printdlg.cpp @@ -16,7 +16,18 @@ #include "wx/object.h" #include "wx/printdlg.h" #include "wx/dcprint.h" +#include "wx/msgdlg.h" #include "wx/mac/uma.h" +#ifndef __DARWIN__ + #include "Printing.h" +#endif + +#if defined(TARGET_CARBON) && !defined(__DARWIN__) +# if PM_USE_SESSION_APIS +# include +# endif +# include +#endif // Use generic page setup dialog: use your own native one if one exists. @@ -60,24 +71,24 @@ bool wxPrintDialog::Create(wxWindow *p, wxPrintDialogData* data) wxPrintDialog::~wxPrintDialog() { - if (m_destroyDC && m_printerDC) + if (m_destroyDC && m_printerDC) { delete m_printerDC; + m_printerDC = NULL; + } } int wxPrintDialog::ShowModal() { int result = wxID_CANCEL ; -#if !TARGET_CARBON - OSErr err ; wxString message ; - ::UMAPrOpen() ; - err = PrError() ; - - if ( !err ) + +#if !TARGET_CARBON + err = ::UMAPrOpen(NULL) ; + if ( err == noErr ) { m_printDialogData.ConvertToNative() ; - if ( ::PrJobDialog( m_printDialogData.GetPrintData().m_macPrintInfo ) ) + if ( ::PrJobDialog( (THPrint) m_printDialogData.GetPrintData().m_macPrintSettings ) ) { m_printDialogData.ConvertFromNative() ; result = wxID_OK ; @@ -88,13 +99,92 @@ int wxPrintDialog::ShowModal() { message.Printf( "Print Error %d", err ) ; wxMessageDialog dialog( NULL , message , "", wxICON_HAND | wxOK) ; + dialog.ShowModal(); } - ::UMAPrClose() ; + ::UMAPrClose(NULL) ; #else - #if __UNIX__ - #warning "TODO:Printing for carbon" + #if PM_USE_SESSION_APIS + Boolean accepted; + + { + m_printDialogData.ConvertToNative() ; + + // Set up a valid PageFormat object. + if (m_printDialogData.GetPrintData().m_macPageFormat == kPMNoPageFormat) + { + err = PMCreatePageFormat((PMPageFormat *)&m_printDialogData.GetPrintData().m_macPageFormat); + + // Note that PMPageFormat is not session-specific, but calling + // PMSessionDefaultPageFormat assigns values specific to the printer + // associated with the current printing session. + if ((err == noErr) && + (m_printDialogData.GetPrintData().m_macPageFormat != kPMNoPageFormat)) + { + err = PMSessionDefaultPageFormat((PMPrintSession)m_printDialogData.GetPrintData().m_macPrintSession, + (PMPageFormat)m_printDialogData.GetPrintData().m_macPageFormat); + } + } + else + { + err = PMSessionValidatePageFormat((PMPrintSession)m_printDialogData.GetPrintData().m_macPrintSession, + (PMPageFormat)m_printDialogData.GetPrintData().m_macPageFormat, + kPMDontWantBoolean); + } + + // Set up a valid PrintSettings object. + if (m_printDialogData.GetPrintData().m_macPrintSettings == kPMNoPrintSettings) + { + err = PMCreatePrintSettings((PMPrintSettings *)&m_printDialogData.GetPrintData().m_macPrintSettings); + + // Note that PMPrintSettings is not session-specific, but calling + // PMSessionDefaultPrintSettings assigns values specific to the printer + // associated with the current printing session. + if ((err == noErr) && + (m_printDialogData.GetPrintData().m_macPrintSettings != kPMNoPrintSettings)) + { + err = PMSessionDefaultPrintSettings((PMPrintSession)m_printDialogData.GetPrintData().m_macPrintSession, + (PMPrintSettings)m_printDialogData.GetPrintData().m_macPrintSettings); + } + } + else + { + err = PMSessionValidatePrintSettings((PMPrintSession)m_printDialogData.GetPrintData().m_macPrintSession, + (PMPrintSettings)m_printDialogData.GetPrintData().m_macPrintSettings, + kPMDontWantBoolean); + } + // Set a valid page range before displaying the Print dialog + if (err == noErr) + { + // err = PMSetPageRange(m_printDialogData.GetPrintData().m_macPrintSettings, + // minPage, maxPage); + } + + // Display the Print dialog. + if (err == noErr) + { + err = PMSessionPrintDialog((PMPrintSession)m_printDialogData.GetPrintData().m_macPrintSession, + (PMPrintSettings)m_printDialogData.GetPrintData().m_macPrintSettings, + (PMPageFormat)m_printDialogData.GetPrintData().m_macPageFormat, + &accepted); + if ((err == noErr) && !accepted) + { + err = kPMCancel; // user clicked Cancel button + } + } + if ( err == noErr ) + { + m_printDialogData.ConvertFromNative() ; + result = wxID_OK ; + } + } + if ((err != noErr) && (err != kPMCancel)) + { + message.Printf( "Print Error %d", err ) ; + wxMessageDialog dialog( NULL , message , "", wxICON_HAND | wxOK) ; + dialog.ShowModal(); + } #else - #pragma warning "TODO:Printing for carbon" + #pragma warning "TODO: Printing for carbon without session apis" #endif #endif return result ; @@ -137,18 +227,16 @@ wxPageSetupDialog::~wxPageSetupDialog() int wxPageSetupDialog::ShowModal() { - int result = wxID_CANCEL ; -#if !TARGET_CARBON - - OSErr err ; + int result = wxID_CANCEL ; + OSErr err ; wxString message ; - ::UMAPrOpen() ; - err = PrError() ; - - if ( !err ) + +#if !TARGET_CARBON + err = ::UMAPrOpen(NULL) ; + if ( err == noErr ) { m_pageSetupData.ConvertToNative() ; - if ( ::PrStlDialog( m_pageSetupData.GetPrintData().m_macPrintInfo ) ) + if ( ::PrStlDialog( (THPrint) m_pageSetupData.GetPrintData().m_macPrintSettings ) ) { m_pageSetupData.ConvertFromNative() ; result = wxID_OK ; @@ -159,13 +247,66 @@ int wxPageSetupDialog::ShowModal() { message.Printf( "Print Error %d", err ) ; wxMessageDialog dialog( NULL , message , "", wxICON_HAND | wxOK) ; + dialog.ShowModal(); } - ::UMAPrClose() ; + ::UMAPrClose(NULL) ; #else - #if __UNIX__ - #warning "TODO:Printing for carbon" + #if PM_USE_SESSION_APIS + Boolean accepted; + + { + m_pageSetupData.ConvertToNative() ; + + // Set up a valid PageFormat object. + if (m_pageSetupData.GetPrintData().m_macPageFormat == kPMNoPageFormat) + { + err = PMCreatePageFormat((PMPageFormat *)&m_pageSetupData.GetPrintData().m_macPageFormat); + + // Note that PMPageFormat is not session-specific, but calling + // PMSessionDefaultPageFormat assigns values specific to the printer + // associated with the current printing session. + if ((err == noErr) && + (m_pageSetupData.GetPrintData().m_macPageFormat != kPMNoPageFormat)) + { + err = PMSessionDefaultPageFormat((PMPrintSession)m_pageSetupData.GetPrintData().m_macPrintSession, + (PMPageFormat)m_pageSetupData.GetPrintData().m_macPageFormat); + } + } + else + { + err = PMSessionValidatePageFormat((PMPrintSession)m_pageSetupData.GetPrintData().m_macPrintSession, + (PMPageFormat)m_pageSetupData.GetPrintData().m_macPageFormat, + kPMDontWantBoolean); + } + + // Display the Page Setup dialog. + if (err == noErr) + { + err = PMSessionPageSetupDialog((PMPrintSession)m_pageSetupData.GetPrintData().m_macPrintSession, + (PMPageFormat)m_pageSetupData.GetPrintData().m_macPageFormat, + &accepted); + if ((err == noErr) && !accepted) + { + err = kPMCancel; // user clicked Cancel button + } + } + + // If the user did not cancel, flatten and save the PageFormat object + // with our document. + if (err == noErr) { + // err = FlattenAndSavePageFormat(m_pageSetupData.GetPrintData().m_macPageFormat); + m_pageSetupData.ConvertFromNative() ; + result = wxID_OK ; + } + } + if ((err != noErr) && (err != kPMCancel)) + { + message.Printf( "Print Error %d", err ) ; + wxMessageDialog dialog( NULL , message , "", wxICON_HAND | wxOK) ; + dialog.ShowModal(); + } #else - #pragma warning "TODO:Printing for carbon" + #pragma warning "TODO: Printing for carbon without session apis" #endif #endif return result ;