X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/4cb1706ae52c02214a4540c6c4b6882bed5af416..4f2570aaf16049c11fc50d85cb15952e73bbab85:/src/common/cmndata.cpp?ds=sidebyside diff --git a/src/common/cmndata.cpp b/src/common/cmndata.cpp index efad31ecbf..7d997f1bde 100644 --- a/src/common/cmndata.cpp +++ b/src/common/cmndata.cpp @@ -82,6 +82,8 @@ IMPLEMENT_DYNAMIC_CLASS(wxColourData, wxObject) #ifdef __WXMAC__ + #include "wx/mac/uma.h" + #define mm2pt 2.83464566929 #define pt2mm 0.352777777778 #endif // Mac @@ -179,6 +181,36 @@ wxPrintData::wxPrintData() #if TARGET_CARBON m_macPageFormat = kPMNoPageFormat; m_macPrintSettings = kPMNoPrintSettings; + + #if PM_USE_SESSION_APIS + PMPrintSession macPrintSession = kPMNoReference; + OSStatus err; + + err = ::UMAPrOpen(&macPrintSession) ; + if ( err == noErr ) + { + err = PMCreatePageFormat(&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_macPageFormat != kPMNoPageFormat)) + { + err = PMSessionDefaultPageFormat(macPrintSession, m_macPageFormat); + } + + err = PMCreatePrintSettings(&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_macPrintSettings != kPMNoPrintSettings)) + { + err = PMSessionDefaultPrintSettings(macPrintSession, m_macPrintSettings); + } + } + ::UMAPrClose(&macPrintSession) ; + #endif #else m_macPrintInfo = (THPrint) NewHandleClear( sizeof( TPrint ) ); (**m_macPrintInfo).iPrVersion = 0; // something invalid @@ -226,7 +258,7 @@ wxPrintData::wxPrintData(const wxPrintData& printData) m_devNames = (void*) NULL; #elif defined( __WXMAC__ ) #if TARGET_CARBON - m_macPageFormat = kPMNoPageFormat; + m_macPageFormat = kPMNoPageFormat; m_macPrintSettings = kPMNoPrintSettings; #else m_macPrintInfo = NULL; @@ -265,6 +297,7 @@ wxPrintData::~wxPrintData() #endif m_macPrintSettings = kPMNoPrintSettings; } + #else wxASSERT( m_macPrintInfo ); // we should perhaps delete @@ -733,7 +766,7 @@ void wxPrintData::ConvertFromNative() #ifdef __WXMAC__ void wxPrintData::ConvertToNative() { -#ifdef TARGET_CARBON +#if TARGET_CARBON #else (**m_macPrintInfo).prJob.iCopies = m_printNoCopies; #endif @@ -741,7 +774,7 @@ void wxPrintData::ConvertToNative() void wxPrintData::ConvertFromNative() { -#ifdef TARGET_CARBON +#if TARGET_CARBON #else m_printNoCopies = (**m_macPrintInfo).prJob.iCopies; #endif @@ -751,7 +784,7 @@ void wxPrintData::ConvertFromNative() void wxPrintData::operator=(const wxPrintData& data) { #ifdef __WXMAC__ -#ifdef TARGET_CARBON +#if TARGET_CARBON #else m_macPrintInfo = data.m_macPrintInfo; HandToHand( (Handle*) &m_macPrintInfo ); @@ -1053,7 +1086,7 @@ void wxPrintDialogData::SetOwnerWindow(wxWindow* win) #ifdef __WXMAC__ void wxPrintDialogData::ConvertToNative() { -#ifdef TARGET_CARBON +#if TARGET_CARBON #else (**m_printData.m_macPrintInfo).prJob.iFstPage = m_printFromPage; (**m_printData.m_macPrintInfo).prJob.iLstPage = m_printToPage; @@ -1063,7 +1096,7 @@ void wxPrintDialogData::ConvertToNative() void wxPrintDialogData::ConvertFromNative() { -#ifdef TARGET_CARBON +#if TARGET_CARBON #else m_printData.ConvertFromNative(); m_printFromPage = (**m_printData.m_macPrintInfo).prJob.iFstPage; @@ -1378,7 +1411,7 @@ void wxPageSetupDialogData::ConvertToNative() { m_printData.ConvertToNative(); // on mac the paper rect has a negative top left corner, because the page rect (printable area) is at 0,0 -#ifdef TARGET_CARBON +#if TARGET_CARBON #else (**m_printData.m_macPrintInfo).rPaper.left = int( ((double) m_minMarginTopLeft.x)*mm2pt ); (**m_printData.m_macPrintInfo).rPaper.top = int( ((double) m_minMarginTopLeft.y)*mm2pt ); @@ -1397,7 +1430,7 @@ void wxPageSetupDialogData::ConvertFromNative() { m_printData.ConvertFromNative (); -#ifdef TARGET_CARBON +#if TARGET_CARBON #else m_paperSize.x = ((double) (**m_printData.m_macPrintInfo).rPaper.right - (**m_printData.m_macPrintInfo).rPaper.left ) * pt2mm; m_paperSize.y = ((double) (**m_printData.m_macPrintInfo).rPaper.bottom - (**m_printData.m_macPrintInfo).rPaper.top ) * pt2mm;