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