]>
Commit | Line | Data |
---|---|---|
72e7876b SC |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: printwin.cpp | |
3 | // Purpose: wxMacPrinter framework | |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 04/01/98 | |
7 | // RCS-ID: $Id$ | |
6aa89a22 | 8 | // Copyright: (c) Julian Smart |
65571936 | 9 | // Licence: wxWindows licence |
72e7876b SC |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
3d1a4878 | 12 | #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) |
72e7876b SC |
13 | #pragma implementation "printwin.h" |
14 | #endif | |
15 | ||
16 | // For compilers that support precompilation, includes "wx.h". | |
17 | #include "wx/wxprec.h" | |
18 | ||
179e085f RN |
19 | #if wxUSE_PRINTING_ARCHITECTURE |
20 | ||
72e7876b SC |
21 | #ifdef __BORLANDC__ |
22 | #pragma hdrstop | |
23 | #endif | |
24 | ||
72e7876b SC |
25 | #ifndef WX_PRECOMP |
26 | #include "wx/utils.h" | |
27 | #include "wx/dc.h" | |
28 | #include "wx/app.h" | |
29 | #include "wx/msgdlg.h" | |
30 | #endif | |
31 | ||
d5301e33 | 32 | #include "wx/math.h" |
746d7582 | 33 | #include "wx/mac/uma.h" |
76a5e5d2 | 34 | |
72e7876b | 35 | #include "wx/mac/printmac.h" |
746d7582 SC |
36 | #include "wx/mac/private/print.h" |
37 | ||
72e7876b SC |
38 | #include "wx/dcprint.h" |
39 | #include "wx/printdlg.h" | |
08680429 | 40 | #include "wx/mac/printdlg.h" |
72e7876b SC |
41 | |
42 | #include <stdlib.h> | |
43 | ||
dc7ccb9c | 44 | IMPLEMENT_DYNAMIC_CLASS(wxMacCarbonPrintData, wxPrintNativeDataBase) |
72e7876b SC |
45 | IMPLEMENT_DYNAMIC_CLASS(wxMacPrinter, wxPrinterBase) |
46 | IMPLEMENT_CLASS(wxMacPrintPreview, wxPrintPreviewBase) | |
72e7876b | 47 | |
dc7ccb9c | 48 | bool wxMacCarbonPrintData::Ok() const |
746d7582 | 49 | { |
dc7ccb9c | 50 | return (m_macPageFormat != kPMNoPageFormat) && (m_macPrintSettings != kPMNoPrintSettings) && (m_macPrintSession != kPMNoReference); |
746d7582 | 51 | } |
746d7582 SC |
52 | wxMacCarbonPrintData::wxMacCarbonPrintData() |
53 | { | |
54 | m_macPageFormat = kPMNoPageFormat; | |
55 | m_macPrintSettings = kPMNoPrintSettings; | |
56 | m_macPrintSession = kPMNoReference ; | |
57 | ValidateOrCreate() ; | |
58 | } | |
59 | ||
60 | wxMacCarbonPrintData::~wxMacCarbonPrintData() | |
61 | { | |
62 | if (m_macPageFormat != kPMNoPageFormat) | |
63 | { | |
64 | (void)PMRelease(m_macPageFormat); | |
65 | m_macPageFormat = kPMNoPageFormat; | |
66 | } | |
67 | ||
68 | if (m_macPrintSettings != kPMNoPrintSettings) | |
69 | { | |
70 | (void)PMRelease(m_macPrintSettings); | |
71 | m_macPrintSettings = kPMNoPrintSettings; | |
72 | } | |
73 | ||
74 | if ( m_macPrintSession != kPMNoReference ) | |
75 | { | |
76 | (void)PMRelease(m_macPrintSession); | |
77 | m_macPrintSession = kPMNoReference; | |
78 | } | |
79 | } | |
80 | ||
81 | void wxMacCarbonPrintData::ValidateOrCreate() | |
82 | { | |
83 | OSStatus err = noErr ; | |
84 | if ( m_macPrintSession == kPMNoReference ) | |
85 | { | |
86 | err = PMCreateSession( (PMPrintSession *) &m_macPrintSession ) ; | |
87 | } | |
88 | // Set up a valid PageFormat object. | |
89 | if ( m_macPageFormat == kPMNoPageFormat) | |
90 | { | |
91 | err = PMCreatePageFormat((PMPageFormat *) &m_macPageFormat); | |
92 | ||
93 | // Note that PMPageFormat is not session-specific, but calling | |
94 | // PMSessionDefaultPageFormat assigns values specific to the printer | |
95 | // associated with the current printing session. | |
96 | if ((err == noErr) && | |
97 | ( m_macPageFormat != kPMNoPageFormat)) | |
98 | { | |
99 | err = PMSessionDefaultPageFormat((PMPrintSession) m_macPrintSession, | |
100 | (PMPageFormat) m_macPageFormat); | |
101 | } | |
102 | } | |
103 | else | |
104 | { | |
105 | err = PMSessionValidatePageFormat((PMPrintSession) m_macPrintSession, | |
106 | (PMPageFormat) m_macPageFormat, | |
107 | kPMDontWantBoolean); | |
108 | } | |
109 | ||
110 | // Set up a valid PrintSettings object. | |
111 | if ( m_macPrintSettings == kPMNoPrintSettings) | |
112 | { | |
113 | err = PMCreatePrintSettings((PMPrintSettings *) &m_macPrintSettings); | |
114 | ||
115 | // Note that PMPrintSettings is not session-specific, but calling | |
116 | // PMSessionDefaultPrintSettings assigns values specific to the printer | |
117 | // associated with the current printing session. | |
118 | if ((err == noErr) && | |
119 | ( m_macPrintSettings != kPMNoPrintSettings)) | |
120 | { | |
121 | err = PMSessionDefaultPrintSettings((PMPrintSession) m_macPrintSession, | |
122 | (PMPrintSettings) m_macPrintSettings); | |
123 | } | |
124 | } | |
125 | else | |
126 | { | |
127 | err = PMSessionValidatePrintSettings((PMPrintSession) m_macPrintSession, | |
128 | (PMPrintSettings) m_macPrintSettings, | |
129 | kPMDontWantBoolean); | |
130 | } | |
131 | } | |
132 | ||
dc7ccb9c | 133 | bool wxMacCarbonPrintData::TransferFrom( const wxPrintData &data ) |
746d7582 SC |
134 | { |
135 | ValidateOrCreate() ; | |
dc7ccb9c SC |
136 | PMSetCopies( (PMPrintSettings) m_macPrintSettings , data.GetNoCopies() , false ) ; |
137 | PMSetOrientation( (PMPageFormat) m_macPageFormat , ( data.GetOrientation() == wxLANDSCAPE ) ? | |
746d7582 SC |
138 | kPMLandscape : kPMPortrait , false ) ; |
139 | // collate cannot be set | |
140 | #if 0 // not yet tested | |
141 | if ( m_printerName.Length() > 0 ) | |
a9412f8f | 142 | PMSessionSetCurrentPrinter( (PMPrintSession) m_macPrintSession , wxMacCFStringHolder( m_printerName , wxFont::GetDefaultEncoding() ) ) ; |
746d7582 SC |
143 | #endif |
144 | PMColorMode color ; | |
145 | PMGetColorMode( (PMPrintSettings) m_macPrintSettings, &color ) ; | |
dc7ccb9c | 146 | if ( data.GetColour() ) |
746d7582 SC |
147 | { |
148 | if ( color == kPMBlackAndWhite ) | |
149 | PMSetColorMode( (PMPrintSettings) m_macPrintSettings, kPMColor ) ; | |
150 | } | |
151 | else | |
152 | PMSetColorMode( (PMPrintSettings) m_macPrintSettings, kPMBlackAndWhite ) ; | |
153 | ||
154 | // PMDuplexMode not yet accessible via API | |
155 | // PMQualityMode not yet accessible via API | |
156 | // todo paperSize | |
dc7ccb9c | 157 | return true ; |
746d7582 SC |
158 | } |
159 | ||
dc7ccb9c | 160 | bool wxMacCarbonPrintData::TransferTo( wxPrintData &data ) |
746d7582 SC |
161 | { |
162 | OSStatus err = noErr ; | |
163 | ||
164 | UInt32 copies ; | |
165 | err = PMGetCopies( m_macPrintSettings , &copies ) ; | |
166 | if ( err == noErr ) | |
dc7ccb9c | 167 | data.SetNoCopies( copies ) ; |
746d7582 SC |
168 | |
169 | PMOrientation orientation ; | |
170 | err = PMGetOrientation( m_macPageFormat , &orientation ) ; | |
171 | if ( err == noErr ) | |
172 | { | |
173 | if ( orientation == kPMPortrait || orientation == kPMReversePortrait ) | |
dc7ccb9c | 174 | data.SetOrientation( wxPORTRAIT ); |
746d7582 | 175 | else |
dc7ccb9c | 176 | data.SetOrientation( wxLANDSCAPE ); |
746d7582 SC |
177 | } |
178 | ||
179 | // collate cannot be set | |
180 | #if 0 | |
181 | { | |
182 | wxMacCFStringHolder name ; | |
183 | PMPrinter printer ; | |
184 | PMSessionGetCurrentPrinter( m_macPrintSession , | |
185 | &printer ) ; | |
186 | m_printerName = name.AsString() ; | |
187 | } | |
188 | #endif | |
189 | ||
190 | PMColorMode color ; | |
191 | err = PMGetColorMode( m_macPrintSettings, &color ) ; | |
192 | if ( err == noErr ) | |
dc7ccb9c | 193 | data.SetColour( !(color == kPMBlackAndWhite) ) ; |
746d7582 SC |
194 | |
195 | // PMDuplexMode not yet accessible via API | |
196 | // PMQualityMode not yet accessible via API | |
197 | // todo paperSize | |
198 | PMRect rPaper; | |
199 | err = PMGetUnadjustedPaperRect( m_macPageFormat, &rPaper); | |
200 | if ( err == noErr ) | |
201 | { | |
dc7ccb9c | 202 | data.SetPaperSize( wxSize ( |
746d7582 SC |
203 | (int)(( rPaper.right - rPaper.left ) * pt2mm + 0.5 ) , |
204 | (int)(( rPaper.bottom - rPaper.top ) * pt2mm + 0.5 ) ) ); | |
205 | } | |
dc7ccb9c | 206 | return true ; |
746d7582 SC |
207 | } |
208 | ||
209 | void wxMacCarbonPrintData::TransferFrom( wxPageSetupData *data ) | |
210 | { | |
211 | // should we setup the page rect here ? | |
212 | // since MacOS sometimes has two same paper rects with different | |
213 | // page rects we could make it roundtrip safe perhaps | |
746d7582 SC |
214 | } |
215 | ||
216 | void wxMacCarbonPrintData::TransferTo( wxPageSetupData* data ) | |
217 | { | |
218 | PMRect rPaper; | |
219 | OSStatus err = PMGetUnadjustedPaperRect(m_macPageFormat, &rPaper); | |
220 | if ( err == noErr ) | |
221 | { | |
222 | PMRect rPage ; | |
223 | err = PMGetUnadjustedPageRect(m_macPageFormat , &rPage ) ; | |
224 | if ( err == noErr ) | |
225 | { | |
226 | data->SetMinMarginTopLeft( wxPoint ( | |
227 | (int)(((double) rPage.left - rPaper.left ) * pt2mm) , | |
228 | (int)(((double) rPage.top - rPaper.top ) * pt2mm) ) ) ; | |
229 | ||
230 | data->SetMinMarginBottomRight( wxPoint ( | |
5be55d56 VZ |
231 | (wxCoord)(((double) rPaper.right - rPage.right ) * pt2mm), |
232 | (wxCoord)(((double) rPaper.bottom - rPage.bottom ) * pt2mm)) ) ; | |
dc7ccb9c SC |
233 | |
234 | if ( data->GetMarginTopLeft().x < data->GetMinMarginTopLeft().x ) | |
235 | data->SetMarginTopLeft( wxPoint( data->GetMinMarginTopLeft().x , | |
236 | data->GetMarginTopLeft().y ) ) ; | |
237 | ||
238 | if ( data->GetMarginBottomRight().x < data->GetMinMarginBottomRight().x ) | |
239 | data->SetMarginBottomRight( wxPoint( data->GetMinMarginBottomRight().x , | |
240 | data->GetMarginBottomRight().y ) ); | |
241 | ||
242 | if ( data->GetMarginTopLeft().y < data->GetMinMarginTopLeft().y ) | |
243 | data->SetMarginTopLeft( wxPoint( data->GetMarginTopLeft().x , data->GetMinMarginTopLeft().y ) ); | |
244 | ||
245 | if ( data->GetMarginBottomRight().y < data->GetMinMarginBottomRight().y ) | |
246 | data->SetMarginBottomRight( wxPoint( data->GetMarginBottomRight().x , | |
247 | data->GetMinMarginBottomRight().y) ); | |
248 | ||
746d7582 SC |
249 | } |
250 | } | |
251 | } | |
252 | ||
253 | void wxMacCarbonPrintData::TransferTo( wxPrintDialogData* data ) | |
254 | { | |
255 | UInt32 minPage , maxPage ; | |
256 | PMGetPageRange( m_macPrintSettings , &minPage , &maxPage ) ; | |
257 | data->SetMinPage( minPage ) ; | |
258 | data->SetMaxPage( maxPage ) ; | |
259 | UInt32 copies ; | |
260 | PMGetCopies( m_macPrintSettings , &copies ) ; | |
261 | data->SetNoCopies( copies ) ; | |
262 | UInt32 from , to ; | |
263 | PMGetFirstPage( m_macPrintSettings , &from ) ; | |
264 | PMGetLastPage( m_macPrintSettings , &to ) ; | |
265 | data->SetFromPage( from ) ; | |
266 | data->SetToPage( to ) ; | |
267 | } | |
268 | ||
269 | void wxMacCarbonPrintData::TransferFrom( wxPrintDialogData* data ) | |
270 | { | |
271 | PMSetPageRange( m_macPrintSettings , data->GetMinPage() , data->GetMaxPage() ) ; | |
272 | PMSetCopies( m_macPrintSettings , data->GetNoCopies() , false ) ; | |
273 | PMSetFirstPage( m_macPrintSettings , data->GetFromPage() , false ) ; | |
b386cd7a JS |
274 | |
275 | int toPage = data->GetToPage(); | |
276 | if (toPage < 1) | |
277 | toPage = data->GetFromPage(); | |
278 | PMSetLastPage( m_macPrintSettings , toPage , false ) ; | |
746d7582 SC |
279 | } |
280 | ||
72e7876b | 281 | /* |
e40298d5 JS |
282 | * Printer |
283 | */ | |
284 | ||
72e7876b | 285 | wxMacPrinter::wxMacPrinter(wxPrintDialogData *data): |
e40298d5 | 286 | wxPrinterBase(data) |
72e7876b SC |
287 | { |
288 | } | |
289 | ||
290 | wxMacPrinter::~wxMacPrinter(void) | |
291 | { | |
292 | } | |
293 | ||
294 | bool wxMacPrinter::Print(wxWindow *parent, wxPrintout *printout, bool prompt) | |
295 | { | |
e40298d5 JS |
296 | sm_abortIt = FALSE; |
297 | sm_abortWindow = NULL; | |
72e7876b | 298 | |
e40298d5 JS |
299 | if (!printout) |
300 | return FALSE; | |
301 | ||
302 | printout->SetIsPreview(FALSE); | |
d2b354f9 JS |
303 | if (m_printDialogData.GetMinPage() < 1) |
304 | m_printDialogData.SetMinPage(1); | |
305 | if (m_printDialogData.GetMaxPage() < 1) | |
306 | m_printDialogData.SetMaxPage(9999); | |
307 | ||
e40298d5 JS |
308 | // Create a suitable device context |
309 | wxDC *dc = NULL; | |
310 | if (prompt) | |
311 | { | |
2f1ae414 SC |
312 | wxPrintDialog dialog(parent, & m_printDialogData); |
313 | if (dialog.ShowModal() == wxID_OK) | |
e40298d5 JS |
314 | { |
315 | dc = dialog.GetPrintDC(); | |
ffcd5195 | 316 | m_printDialogData = dialog.GetPrintDialogData(); |
e40298d5 JS |
317 | } |
318 | } | |
319 | else | |
72e7876b | 320 | { |
e40298d5 | 321 | dc = new wxPrinterDC( m_printDialogData.GetPrintData() ) ; |
72e7876b | 322 | } |
e40298d5 JS |
323 | |
324 | ||
325 | // May have pressed cancel. | |
326 | if (!dc || !dc->Ok()) | |
72e7876b | 327 | { |
e40298d5 JS |
328 | if (dc) delete dc; |
329 | return FALSE; | |
72e7876b | 330 | } |
e40298d5 JS |
331 | |
332 | // on the mac we have always pixels as addressing mode with 72 dpi | |
333 | ||
334 | printout->SetPPIScreen(72, 72); | |
335 | printout->SetPPIPrinter(72, 72); | |
336 | ||
337 | // Set printout parameters | |
338 | printout->SetDC(dc); | |
339 | ||
340 | int w, h; | |
341 | wxCoord ww, hh; | |
342 | dc->GetSize(&w, &h); | |
343 | printout->SetPageSizePixels((int)w, (int)h); | |
344 | dc->GetSizeMM(&ww, &hh); | |
345 | printout->SetPageSizeMM((int)ww, (int)hh); | |
346 | ||
347 | // Create an abort window | |
348 | wxBeginBusyCursor(); | |
349 | ||
d2b354f9 JS |
350 | printout->OnPreparePrinting(); |
351 | ||
352 | // Get some parameters from the printout, if defined | |
353 | int fromPage, toPage; | |
354 | int minPage, maxPage; | |
355 | printout->GetPageInfo(&minPage, &maxPage, &fromPage, &toPage); | |
356 | ||
357 | if (maxPage == 0) | |
358 | { | |
359 | wxEndBusyCursor(); | |
360 | return FALSE; | |
361 | } | |
362 | ||
363 | // Only set min and max, because from and to have been | |
364 | // set by the user | |
365 | m_printDialogData.SetMinPage(minPage); | |
366 | m_printDialogData.SetMaxPage(maxPage); | |
367 | ||
e40298d5 JS |
368 | wxWindow *win = CreateAbortWindow(parent, printout); |
369 | wxSafeYield(win,true); | |
370 | ||
371 | if (!win) | |
372 | { | |
373 | wxEndBusyCursor(); | |
427ff662 | 374 | wxMessageBox(wxT("Sorry, could not create an abort dialog."), wxT("Print Error"), wxOK, parent); |
e40298d5 JS |
375 | delete dc; |
376 | return FALSE; | |
377 | } | |
378 | sm_abortWindow = win; | |
379 | sm_abortWindow->Show(TRUE); | |
380 | wxSafeYield(win,true); | |
381 | ||
382 | printout->OnBeginPrinting(); | |
383 | ||
384 | bool keepGoing = TRUE; | |
385 | ||
386 | int copyCount; | |
387 | for (copyCount = 1; copyCount <= m_printDialogData.GetNoCopies(); copyCount ++) | |
388 | { | |
389 | if (!printout->OnBeginDocument(m_printDialogData.GetFromPage(), m_printDialogData.GetToPage())) | |
390 | { | |
391 | wxEndBusyCursor(); | |
427ff662 | 392 | wxMessageBox(wxT("Could not start printing."), wxT("Print Error"), wxOK, parent); |
e40298d5 JS |
393 | break; |
394 | } | |
395 | if (sm_abortIt) | |
396 | break; | |
397 | ||
398 | int pn; | |
399 | for (pn = m_printDialogData.GetFromPage(); keepGoing && (pn <= m_printDialogData.GetToPage()) && printout->HasPage(pn); | |
400 | pn++) | |
401 | { | |
402 | if (sm_abortIt) | |
403 | { | |
404 | keepGoing = FALSE; | |
405 | break; | |
406 | } | |
407 | else | |
408 | { | |
5c45e86b SC |
409 | #if TARGET_CARBON |
410 | if ( UMAGetSystemVersion() >= 0x1000 ) | |
411 | #endif | |
412 | { | |
413 | GrafPtr thePort ; | |
414 | GetPort( &thePort ) ; | |
415 | wxSafeYield(win,true); | |
416 | SetPort( thePort ) ; | |
417 | } | |
e40298d5 JS |
418 | dc->StartPage(); |
419 | keepGoing = printout->OnPrintPage(pn); | |
420 | dc->EndPage(); | |
421 | } | |
422 | } | |
423 | printout->OnEndDocument(); | |
424 | } | |
425 | ||
426 | printout->OnEndPrinting(); | |
427 | ||
428 | if (sm_abortWindow) | |
429 | { | |
430 | sm_abortWindow->Show(FALSE); | |
431 | delete sm_abortWindow; | |
432 | sm_abortWindow = NULL; | |
433 | } | |
434 | ||
435 | wxEndBusyCursor(); | |
436 | ||
437 | delete dc; | |
438 | ||
439 | return TRUE; | |
72e7876b SC |
440 | } |
441 | ||
442 | wxDC* wxMacPrinter::PrintDialog(wxWindow *parent) | |
443 | { | |
444 | wxDC* dc = (wxDC*) NULL; | |
e40298d5 | 445 | |
72e7876b SC |
446 | wxPrintDialog dialog(parent, & m_printDialogData); |
447 | int ret = dialog.ShowModal(); | |
e40298d5 | 448 | |
72e7876b SC |
449 | if (ret == wxID_OK) |
450 | { | |
451 | dc = dialog.GetPrintDC(); | |
452 | m_printDialogData = dialog.GetPrintDialogData(); | |
453 | } | |
e40298d5 | 454 | |
72e7876b SC |
455 | return dc; |
456 | } | |
457 | ||
458 | bool wxMacPrinter::Setup(wxWindow *parent) | |
459 | { | |
04a014a5 | 460 | #if 0 |
72e7876b SC |
461 | wxPrintDialog dialog(parent, & m_printDialogData); |
462 | dialog.GetPrintDialogData().SetSetupDialog(TRUE); | |
e40298d5 | 463 | |
72e7876b | 464 | int ret = dialog.ShowModal(); |
e40298d5 | 465 | |
72e7876b SC |
466 | if (ret == wxID_OK) |
467 | { | |
468 | m_printDialogData = dialog.GetPrintDialogData(); | |
469 | } | |
e40298d5 | 470 | |
72e7876b | 471 | return (ret == wxID_OK); |
04a014a5 RR |
472 | #endif |
473 | return wxID_CANCEL; | |
72e7876b SC |
474 | } |
475 | ||
476 | /* | |
e40298d5 JS |
477 | * Print preview |
478 | */ | |
72e7876b SC |
479 | |
480 | wxMacPrintPreview::wxMacPrintPreview(wxPrintout *printout, | |
e40298d5 JS |
481 | wxPrintout *printoutForPrinting, |
482 | wxPrintDialogData *data) | |
483 | : wxPrintPreviewBase(printout, printoutForPrinting, data) | |
72e7876b SC |
484 | { |
485 | DetermineScaling(); | |
486 | } | |
487 | ||
488 | wxMacPrintPreview::wxMacPrintPreview(wxPrintout *printout, wxPrintout *printoutForPrinting, wxPrintData *data): | |
e40298d5 | 489 | wxPrintPreviewBase(printout, printoutForPrinting, data) |
72e7876b | 490 | { |
e40298d5 | 491 | DetermineScaling(); |
72e7876b SC |
492 | } |
493 | ||
494 | wxMacPrintPreview::~wxMacPrintPreview(void) | |
495 | { | |
496 | } | |
497 | ||
498 | bool wxMacPrintPreview::Print(bool interactive) | |
499 | { | |
e40298d5 JS |
500 | if (!m_printPrintout) |
501 | return FALSE; | |
502 | wxMacPrinter printer(&m_printDialogData); | |
503 | return printer.Print(m_previewFrame, m_printPrintout, interactive); | |
72e7876b SC |
504 | } |
505 | ||
506 | void wxMacPrintPreview::DetermineScaling(void) | |
507 | { | |
e40298d5 JS |
508 | int screenWidth , screenHeight ; |
509 | wxDisplaySize( &screenWidth , &screenHeight ) ; | |
510 | ||
511 | m_previewPrintout->SetPPIScreen( 72 , 72 ) ; | |
512 | m_previewPrintout->SetPPIPrinter( 72 , 72 ) ; | |
513 | m_previewPrintout->SetPageSizeMM( (int) (8.0 * 25.6), (int) (11.0 * 25.6) ); | |
514 | m_previewPrintout->SetPageSizePixels( 8 * 72 , 11 * 72 ) ; | |
2f1ae414 SC |
515 | m_pageWidth = 8 * 72 ; |
516 | m_pageHeight = 11 * 72 ; | |
517 | m_previewScale = 1 ; | |
e40298d5 | 518 | |
72e7876b | 519 | // Get a device context for the currently selected printer |
2f1ae414 SC |
520 | wxPrinterDC printerDC(m_printDialogData.GetPrintData()); |
521 | if (printerDC.Ok()) | |
72e7876b | 522 | { |
e40298d5 JS |
523 | int x , y ; |
524 | wxCoord ww, hh; | |
525 | printerDC.GetSizeMM(&ww, &hh); | |
526 | printerDC.GetSize( &x , &y ) ; | |
527 | m_previewPrintout->SetPageSizeMM((int)ww, (int)hh); | |
528 | m_previewPrintout->SetPageSizePixels( x , y) ; | |
529 | m_pageWidth = x ; | |
530 | m_pageHeight = y ; | |
531 | m_isOk = true ; | |
532 | } | |
533 | else | |
534 | { | |
535 | m_isOk = false ; | |
536 | } | |
72e7876b | 537 | // At 100%, the page should look about page-size on the screen. |
2f1ae414 SC |
538 | // m_previewScale = (float)((float)screenWidth/(float)printerWidth); |
539 | // m_previewScale = m_previewScale * (float)((float)screenXRes/(float)printerXRes); | |
540 | ||
541 | m_previewScale = 1 ; | |
72e7876b | 542 | } |
179e085f RN |
543 | |
544 | #endif |