]> git.saurik.com Git - wxWidgets.git/blob - src/common/cmndata.cpp
explanation of getdefaultattributes
[wxWidgets.git] / src / common / cmndata.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: cmndata.cpp
3 // Purpose: Common GDI data
4 // Author: Julian Smart
5 // Modified by:
6 // Created: 01/02/97
7 // RCS-ID: $Id$
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 // ============================================================================
13 // declarations
14 // ============================================================================
15
16 // ----------------------------------------------------------------------------
17 // headers
18 // ----------------------------------------------------------------------------
19
20 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
21 #pragma implementation "cmndata.h"
22 #endif
23
24 // For compilers that support precompilation, includes "wx.h".
25 #include "wx/wxprec.h"
26
27 #ifdef __BORLANDC__
28 #pragma hdrstop
29 #endif
30
31 #ifndef WX_PRECOMP
32 #include <stdio.h>
33 #include "wx/string.h"
34 #include "wx/utils.h"
35 #include "wx/app.h"
36 #endif
37
38 #include "wx/gdicmn.h"
39 #include "wx/cmndata.h"
40 #include "wx/log.h"
41 #include "wx/prntbase.h"
42 #include "wx/printdlg.h"
43
44 #if wxUSE_FONTDLG
45 #include "wx/fontdlg.h"
46 #endif // wxUSE_FONTDLG
47
48 #if wxUSE_PRINTING_ARCHITECTURE
49 #include "wx/paper.h"
50 #endif // wxUSE_PRINTING_ARCHITECTURE
51
52 #if defined(__WXMSW__) && !defined(__PALMOS__)
53 #include <windowsx.h>
54 #include "wx/msw/private.h"
55
56 #ifndef __SMARTPHONE__ /* of WinCE */
57 #include <commdlg.h>
58 #endif
59
60 #if defined(__WATCOMC__) || defined(__SYMANTEC__) || defined(__SALFORDC__)
61 #include <windowsx.h>
62 #include <commdlg.h>
63 #endif
64 #endif // MSW
65
66 #ifdef __WXMAC__
67 #include "wx/mac/private/print.h"
68 #endif
69
70 #if wxUSE_PRINTING_ARCHITECTURE
71 IMPLEMENT_DYNAMIC_CLASS(wxPrintData, wxObject)
72 IMPLEMENT_DYNAMIC_CLASS(wxPrintDialogData, wxObject)
73 IMPLEMENT_DYNAMIC_CLASS(wxPageSetupDialogData, wxObject)
74 #endif // wxUSE_PRINTING_ARCHITECTURE
75
76 IMPLEMENT_DYNAMIC_CLASS(wxFontData, wxObject)
77 IMPLEMENT_DYNAMIC_CLASS(wxColourData, wxObject)
78
79 #ifndef DMPAPER_USER
80 #define DMPAPER_USER 256
81 #endif
82
83 // ============================================================================
84 // implementation
85 // ============================================================================
86
87 // ----------------------------------------------------------------------------
88 // wxColourData
89 // ----------------------------------------------------------------------------
90
91 wxColourData::wxColourData()
92 {
93 m_chooseFull = false;
94 m_dataColour.Set(0,0,0);
95 // m_custColours are wxNullColours initially
96 }
97
98 wxColourData::wxColourData(const wxColourData& data)
99 : wxObject()
100 {
101 (*this) = data;
102 }
103
104 wxColourData::~wxColourData()
105 {
106 }
107
108 void wxColourData::SetCustomColour(int i, const wxColour& colour)
109 {
110 wxCHECK_RET( (i >= 0 && i < 16), _T("custom colour index out of range") );
111
112 m_custColours[i] = colour;
113 }
114
115 wxColour wxColourData::GetCustomColour(int i)
116 {
117 wxCHECK_MSG( (i >= 0 && i < 16), wxColour(0,0,0),
118 _T("custom colour index out of range") );
119
120 return m_custColours[i];
121 }
122
123 void wxColourData::operator=(const wxColourData& data)
124 {
125 int i;
126 for (i = 0; i < 16; i++)
127 m_custColours[i] = data.m_custColours[i];
128
129 m_dataColour = (wxColour&)data.m_dataColour;
130 m_chooseFull = data.m_chooseFull;
131 }
132
133 // ----------------------------------------------------------------------------
134 // Font data
135 // ----------------------------------------------------------------------------
136
137 wxFontData::wxFontData()
138 {
139 // Intialize colour to black.
140 m_fontColour = wxNullColour;
141
142 m_showHelp = false;
143 m_allowSymbols = true;
144 m_enableEffects = true;
145 m_minSize = 0;
146 m_maxSize = 0;
147
148 m_encoding = wxFONTENCODING_SYSTEM;
149 }
150
151 wxFontData::~wxFontData()
152 {
153 }
154
155 #if wxUSE_FONTDLG
156
157 wxFontDialogBase::~wxFontDialogBase()
158 {
159 }
160
161 #endif // wxUSE_FONTDLG
162
163 #if wxUSE_PRINTING_ARCHITECTURE
164 // ----------------------------------------------------------------------------
165 // Print data
166 // ----------------------------------------------------------------------------
167
168 wxPrintData::wxPrintData()
169 {
170 #ifdef __WXMAC__
171 m_nativePrintData = wxNativePrintData::Create() ;
172 #endif
173 m_bin = wxPRINTBIN_DEFAULT;
174 m_printMode = wxPRINT_MODE_PRINTER;
175 m_printOrientation = wxPORTRAIT;
176 m_printNoCopies = 1;
177 m_printCollate = false;
178
179 // New, 24/3/99
180 m_printerName = wxT("");
181 m_colour = true;
182 m_duplexMode = wxDUPLEX_SIMPLEX;
183 m_printQuality = wxPRINT_QUALITY_HIGH;
184 m_paperId = wxPAPER_A4;
185 m_paperSize = wxSize(210, 297);
186
187 m_nativeData = wxPrintFactory::GetFactory()->CreatePrintNativeData();
188 }
189
190 wxPrintData::wxPrintData(const wxPrintData& printData)
191 : wxObject()
192 {
193 (*this) = printData;
194 }
195
196 wxPrintData::~wxPrintData()
197 {
198 m_nativeData->m_ref--;
199 if (m_nativeData->m_ref == 0)
200 delete m_nativeData;
201
202 #ifdef __WXMAC__
203 delete m_nativePrintData ;
204 #endif
205 }
206
207 void wxPrintData::ConvertToNative()
208 {
209 #ifdef __WXMAC__
210 m_nativePrintData->TransferFrom( this ) ;
211 #else
212 m_nativeData->TransferFrom( *this ) ;
213 #endif
214 }
215
216 void wxPrintData::ConvertFromNative()
217 {
218 #ifdef __WXMAC__
219 m_nativePrintData->TransferTo( this ) ;
220 #else
221 m_nativeData->TransferTo( *this ) ;
222 #endif
223 }
224
225 void wxPrintData::operator=(const wxPrintData& data)
226 {
227 m_printNoCopies = data.m_printNoCopies;
228 m_printCollate = data.m_printCollate;
229 m_printOrientation = data.m_printOrientation;
230 m_printerName = data.m_printerName;
231 m_colour = data.m_colour;
232 m_duplexMode = data.m_duplexMode;
233 m_printQuality = data.m_printQuality;
234 m_paperId = data.m_paperId;
235 m_paperSize = data.m_paperSize;
236 m_bin = data.m_bin;
237 m_printMode = data.m_printMode;
238 m_filename = data.m_filename;
239
240 // UnRef old m_nativeData
241 m_nativeData->m_ref--;
242 if (m_nativeData->m_ref == 0)
243 delete m_nativeData;
244 // Set Ref new one
245 m_nativeData = data.GetNativeData();
246 m_nativeData->m_ref++;
247
248 #ifdef __WXMAC__
249 m_nativePrintData->CopyFrom( data.m_nativePrintData ) ;
250 #endif
251 }
252
253 // Is this data OK for showing the print dialog?
254 bool wxPrintData::Ok() const
255 {
256 m_nativeData->TransferFrom( *this );
257
258 return m_nativeData->Ok();
259 }
260
261 // What should happen here? wxPostScriptPrintNativeData is not
262 // defined unless all this is true on MSW.
263 #if WXWIN_COMPATIBILITY_2_4 && wxUSE_PRINTING_ARCHITECTURE && (!defined(__WXMSW__) || wxUSE_POSTSCRIPT_ARCHITECTURE_IN_MSW)
264
265 #include "wx/generic/prntdlgg.h"
266
267 #if wxUSE_POSTSCRIPT
268 #define WXUNUSED_WITHOUT_PS(name) name
269 #else
270 #define WXUNUSED_WITHOUT_PS(name) WXUNUSED(name)
271 #endif
272
273 wxString wxPrintData::GetPrinterCommand() const
274 {
275 #if wxUSE_POSTSCRIPT
276 if (m_nativeData && wxIsKindOf(m_nativeData,wxPostScriptPrintNativeData))
277 return ((wxPostScriptPrintNativeData*)m_nativeData)->GetPrinterCommand();
278 #endif
279 return wxT("");
280 }
281
282 wxString wxPrintData::GetPrinterOptions() const
283 {
284 #if wxUSE_POSTSCRIPT
285 if (m_nativeData && wxIsKindOf(m_nativeData,wxPostScriptPrintNativeData))
286 return ((wxPostScriptPrintNativeData*)m_nativeData)->GetPrinterOptions();
287 #endif
288 return wxT("");
289 }
290
291 wxString wxPrintData::GetPreviewCommand() const
292 {
293 #if wxUSE_POSTSCRIPT
294 if (m_nativeData && wxIsKindOf(m_nativeData,wxPostScriptPrintNativeData))
295 return ((wxPostScriptPrintNativeData*)m_nativeData)->GetPreviewCommand();
296 #endif
297 return wxT("");
298 }
299
300 wxString wxPrintData::GetFontMetricPath() const
301 {
302 #if wxUSE_POSTSCRIPT
303 if (m_nativeData && wxIsKindOf(m_nativeData,wxPostScriptPrintNativeData))
304 return ((wxPostScriptPrintNativeData*)m_nativeData)->GetFontMetricPath();
305 #endif
306 return wxT("");
307 }
308
309 double wxPrintData::GetPrinterScaleX() const
310 {
311 #if wxUSE_POSTSCRIPT
312 if (m_nativeData && wxIsKindOf(m_nativeData,wxPostScriptPrintNativeData))
313 return ((wxPostScriptPrintNativeData*)m_nativeData)->GetPrinterScaleX();
314 #endif
315 return 1.0;
316 }
317
318 double wxPrintData::GetPrinterScaleY() const
319 {
320 #if wxUSE_POSTSCRIPT
321 if (m_nativeData && wxIsKindOf(m_nativeData,wxPostScriptPrintNativeData))
322 return ((wxPostScriptPrintNativeData*)m_nativeData)->GetPrinterScaleY();
323 #endif
324 return 1.0;
325 }
326
327 long wxPrintData::GetPrinterTranslateX() const
328 {
329 #if wxUSE_POSTSCRIPT
330 if (m_nativeData && wxIsKindOf(m_nativeData,wxPostScriptPrintNativeData))
331 return ((wxPostScriptPrintNativeData*)m_nativeData)->GetPrinterTranslateX();
332 #endif
333 return 0;
334 }
335
336 long wxPrintData::GetPrinterTranslateY() const
337 {
338 #if wxUSE_POSTSCRIPT
339 if (m_nativeData && wxIsKindOf(m_nativeData,wxPostScriptPrintNativeData))
340 return ((wxPostScriptPrintNativeData*)m_nativeData)->GetPrinterTranslateY();
341 #endif
342 return 0;
343 }
344
345 void wxPrintData::SetPrinterCommand(const wxString& WXUNUSED_WITHOUT_PS(command))
346 {
347 #if wxUSE_POSTSCRIPT
348 if (m_nativeData && wxIsKindOf(m_nativeData,wxPostScriptPrintNativeData))
349 ((wxPostScriptPrintNativeData*)m_nativeData)->SetPrinterCommand( command );
350 #endif
351 }
352
353 void wxPrintData::SetPrinterOptions(const wxString& WXUNUSED_WITHOUT_PS(options))
354 {
355 #if wxUSE_POSTSCRIPT
356 if (m_nativeData && wxIsKindOf(m_nativeData,wxPostScriptPrintNativeData))
357 ((wxPostScriptPrintNativeData*)m_nativeData)->SetPrinterOptions( options );
358 #endif
359 }
360
361 void wxPrintData::SetPreviewCommand(const wxString& WXUNUSED_WITHOUT_PS(command))
362 {
363 #if wxUSE_POSTSCRIPT
364 if (m_nativeData && wxIsKindOf(m_nativeData,wxPostScriptPrintNativeData))
365 ((wxPostScriptPrintNativeData*)m_nativeData)->SetPreviewCommand( command );
366 #endif
367 }
368
369 void wxPrintData::SetFontMetricPath(const wxString& WXUNUSED_WITHOUT_PS(path))
370 {
371 #if wxUSE_POSTSCRIPT
372 if (m_nativeData && wxIsKindOf(m_nativeData,wxPostScriptPrintNativeData))
373 ((wxPostScriptPrintNativeData*)m_nativeData)->SetFontMetricPath( path );
374 #endif
375 }
376
377 void wxPrintData::SetPrinterScaleX(double WXUNUSED_WITHOUT_PS(x))
378 {
379 #if wxUSE_POSTSCRIPT
380 if (m_nativeData && wxIsKindOf(m_nativeData,wxPostScriptPrintNativeData))
381 ((wxPostScriptPrintNativeData*)m_nativeData)->SetPrinterScaleX( x );
382 #endif
383 }
384
385 void wxPrintData::SetPrinterScaleY(double WXUNUSED_WITHOUT_PS(y))
386 {
387 #if wxUSE_POSTSCRIPT
388 if (m_nativeData && wxIsKindOf(m_nativeData,wxPostScriptPrintNativeData))
389 ((wxPostScriptPrintNativeData*)m_nativeData)->SetPrinterScaleY( y );
390 #endif
391 }
392
393 void wxPrintData::SetPrinterScaling(double WXUNUSED_WITHOUT_PS(x), double WXUNUSED_WITHOUT_PS(y))
394 {
395 #if wxUSE_POSTSCRIPT
396 if (m_nativeData && wxIsKindOf(m_nativeData,wxPostScriptPrintNativeData))
397 ((wxPostScriptPrintNativeData*)m_nativeData)->SetPrinterScaling( x, y );
398 #endif
399 }
400
401 void wxPrintData::SetPrinterTranslateX(long WXUNUSED_WITHOUT_PS(x))
402 {
403 #if wxUSE_POSTSCRIPT
404 if (m_nativeData && wxIsKindOf(m_nativeData,wxPostScriptPrintNativeData))
405 ((wxPostScriptPrintNativeData*)m_nativeData)->SetPrinterTranslateX( x );
406 #endif
407 }
408
409 void wxPrintData::SetPrinterTranslateY(long WXUNUSED_WITHOUT_PS(y))
410 {
411 #if wxUSE_POSTSCRIPT
412 if (m_nativeData && wxIsKindOf(m_nativeData,wxPostScriptPrintNativeData))
413 ((wxPostScriptPrintNativeData*)m_nativeData)->SetPrinterTranslateY( y );
414 #endif
415 }
416
417 void wxPrintData::SetPrinterTranslation(long WXUNUSED_WITHOUT_PS(x), long WXUNUSED_WITHOUT_PS(y))
418 {
419 #if wxUSE_POSTSCRIPT
420 if (m_nativeData && wxIsKindOf(m_nativeData,wxPostScriptPrintNativeData))
421 ((wxPostScriptPrintNativeData*)m_nativeData)->SetPrinterTranslation( x, y );
422 #endif
423 }
424 #endif
425
426 // ----------------------------------------------------------------------------
427 // Print dialog data
428 // ----------------------------------------------------------------------------
429
430 wxPrintDialogData::wxPrintDialogData()
431 {
432 m_printFromPage = 0;
433 m_printToPage = 0;
434 m_printMinPage = 0;
435 m_printMaxPage = 0;
436 m_printNoCopies = 1;
437 m_printAllPages = false;
438 m_printCollate = false;
439 m_printToFile = false;
440 m_printSelection = false;
441 m_printEnableSelection = false;
442 m_printEnablePageNumbers = true;
443
444 wxPrintFactory* factory = wxPrintFactory::GetFactory();
445 m_printEnablePrintToFile = ! factory->HasOwnPrintToFile();
446
447 m_printEnableHelp = false;
448 #if WXWIN_COMPATIBILITY_2_4
449 m_printSetupDialog = false;
450 #endif
451 }
452
453 wxPrintDialogData::wxPrintDialogData(const wxPrintDialogData& dialogData)
454 : wxObject()
455 {
456 (*this) = dialogData;
457 }
458
459 wxPrintDialogData::wxPrintDialogData(const wxPrintData& printData)
460 {
461 m_printFromPage = 1;
462 m_printToPage = 0;
463 m_printMinPage = 1;
464 m_printMaxPage = 9999;
465 m_printNoCopies = 1;
466 m_printAllPages = false;
467 m_printCollate = false;
468 m_printToFile = false;
469 m_printSelection = false;
470 m_printEnableSelection = false;
471 m_printEnablePageNumbers = true;
472 m_printEnablePrintToFile = true;
473 m_printEnableHelp = false;
474 #if WXWIN_COMPATIBILITY_2_4
475 m_printSetupDialog = false;
476 #endif
477 m_printData = printData;
478 }
479
480 wxPrintDialogData::~wxPrintDialogData()
481 {
482 }
483
484 #ifdef __WXMAC__
485
486 void wxPrintDialogData::ConvertToNative()
487 {
488 m_printData.ConvertToNative();
489 m_printData.m_nativePrintData->TransferFrom( this ) ;
490 }
491
492 void wxPrintDialogData::ConvertFromNative()
493 {
494 m_printData.ConvertFromNative();
495 m_printData.m_nativePrintData->TransferTo( this ) ;
496 }
497
498 #endif
499
500
501 void wxPrintDialogData::operator=(const wxPrintDialogData& data)
502 {
503 m_printFromPage = data.m_printFromPage;
504 m_printToPage = data.m_printToPage;
505 m_printMinPage = data.m_printMinPage;
506 m_printMaxPage = data.m_printMaxPage;
507 m_printNoCopies = data.m_printNoCopies;
508 m_printAllPages = data.m_printAllPages;
509 m_printCollate = data.m_printCollate;
510 m_printToFile = data.m_printToFile;
511 m_printSelection = data.m_printSelection;
512 m_printEnableSelection = data.m_printEnableSelection;
513 m_printEnablePageNumbers = data.m_printEnablePageNumbers;
514 m_printEnableHelp = data.m_printEnableHelp;
515 m_printEnablePrintToFile = data.m_printEnablePrintToFile;
516 #if WXWIN_COMPATIBILITY_2_4
517 m_printSetupDialog = data.m_printSetupDialog;
518 #endif
519 m_printData = data.m_printData;
520 }
521
522 void wxPrintDialogData::operator=(const wxPrintData& data)
523 {
524 m_printData = data;
525 }
526
527 // ----------------------------------------------------------------------------
528 // wxPageSetupDialogData
529 // ----------------------------------------------------------------------------
530
531 wxPageSetupDialogData::wxPageSetupDialogData()
532 {
533 m_paperSize = wxSize(0, 0);
534
535 CalculatePaperSizeFromId();
536
537 m_minMarginTopLeft = wxPoint(0, 0);
538 m_minMarginBottomRight = wxPoint(0, 0);
539 m_marginTopLeft = wxPoint(0, 0);
540 m_marginBottomRight = wxPoint(0, 0);
541
542 // Flags
543 m_defaultMinMargins = false;
544 m_enableMargins = true;
545 m_enableOrientation = true;
546 m_enablePaper = true;
547 m_enablePrinter = true;
548 m_enableHelp = false;
549 m_getDefaultInfo = false;
550 }
551
552 wxPageSetupDialogData::wxPageSetupDialogData(const wxPageSetupDialogData& dialogData)
553 : wxObject()
554 {
555 (*this) = dialogData;
556 }
557
558 wxPageSetupDialogData::wxPageSetupDialogData(const wxPrintData& printData)
559 {
560 m_paperSize = wxSize(0, 0);
561 m_minMarginTopLeft = wxPoint(0, 0);
562 m_minMarginBottomRight = wxPoint(0, 0);
563 m_marginTopLeft = wxPoint(0, 0);
564 m_marginBottomRight = wxPoint(0, 0);
565
566 // Flags
567 m_defaultMinMargins = false;
568 m_enableMargins = true;
569 m_enableOrientation = true;
570 m_enablePaper = true;
571 m_enablePrinter = true;
572 m_enableHelp = false;
573 m_getDefaultInfo = false;
574
575 m_printData = printData;
576
577 // The wxPrintData paper size overrides these values, unless the size cannot
578 // be found.
579 CalculatePaperSizeFromId();
580 }
581
582 wxPageSetupDialogData::~wxPageSetupDialogData()
583 {
584 }
585
586 wxPageSetupDialogData& wxPageSetupDialogData::operator=(const wxPageSetupDialogData& data)
587 {
588 m_paperSize = data.m_paperSize;
589 m_minMarginTopLeft = data.m_minMarginTopLeft;
590 m_minMarginBottomRight = data.m_minMarginBottomRight;
591 m_marginTopLeft = data.m_marginTopLeft;
592 m_marginBottomRight = data.m_marginBottomRight;
593 m_defaultMinMargins = data.m_defaultMinMargins;
594 m_enableMargins = data.m_enableMargins;
595 m_enableOrientation = data.m_enableOrientation;
596 m_enablePaper = data.m_enablePaper;
597 m_enablePrinter = data.m_enablePrinter;
598 m_getDefaultInfo = data.m_getDefaultInfo;;
599 m_enableHelp = data.m_enableHelp;
600
601 m_printData = data.m_printData;
602
603 return *this;
604 }
605
606 wxPageSetupDialogData& wxPageSetupDialogData::operator=(const wxPrintData& data)
607 {
608 m_printData = data;
609
610 return *this;
611 }
612
613 #ifdef __WXMAC__
614 void wxPageSetupDialogData::ConvertToNative()
615 {
616 m_printData.ConvertToNative();
617 m_printData.m_nativePrintData->TransferFrom( this ) ;
618 }
619
620 void wxPageSetupDialogData::ConvertFromNative()
621 {
622 m_printData.ConvertFromNative ();
623 m_paperSize = m_printData.GetPaperSize() ;
624 CalculateIdFromPaperSize();
625 m_printData.m_nativePrintData->TransferTo( this ) ;
626 // adjust minimal values
627
628 if ( m_marginTopLeft.x < m_minMarginTopLeft.x )
629 m_marginTopLeft.x = m_minMarginTopLeft.x;
630
631 if ( m_marginBottomRight.x < m_minMarginBottomRight.x )
632 m_marginBottomRight.x = m_minMarginBottomRight.x;
633
634 if ( m_marginTopLeft.y < m_minMarginTopLeft.y )
635 m_marginTopLeft.y = m_minMarginTopLeft.y;
636
637 if ( m_marginBottomRight.y < m_minMarginBottomRight.y )
638 m_marginBottomRight.y = m_minMarginBottomRight.y;
639 }
640 #endif
641
642
643 // If a corresponding paper type is found in the paper database, will set the m_printData
644 // paper size id member as well.
645 void wxPageSetupDialogData::SetPaperSize(const wxSize& sz)
646 {
647 m_paperSize = sz;
648
649 CalculateIdFromPaperSize();
650 }
651
652 // Sets the wxPrintData id, plus the paper width/height if found in the paper database.
653 void wxPageSetupDialogData::SetPaperSize(wxPaperSize id)
654 {
655 m_printData.SetPaperId(id);
656
657 CalculatePaperSizeFromId();
658 }
659
660 // Use paper size defined in this object to set the wxPrintData
661 // paper id
662 void wxPageSetupDialogData::CalculateIdFromPaperSize()
663 {
664 wxASSERT_MSG( (wxThePrintPaperDatabase != (wxPrintPaperDatabase*) NULL),
665 wxT("wxThePrintPaperDatabase should not be NULL. Do not create global print dialog data objects.") );
666
667 wxSize sz = GetPaperSize();
668
669 wxPaperSize id = wxThePrintPaperDatabase->GetSize(wxSize(sz.x* 10, sz.y * 10));
670 if (id != wxPAPER_NONE)
671 {
672 m_printData.SetPaperId(id);
673 }
674 }
675
676 // Use paper id in wxPrintData to set this object's paper size
677 void wxPageSetupDialogData::CalculatePaperSizeFromId()
678 {
679 wxASSERT_MSG( (wxThePrintPaperDatabase != (wxPrintPaperDatabase*) NULL),
680 wxT("wxThePrintPaperDatabase should not be NULL. Do not create global print dialog data objects.") );
681
682 wxSize sz = wxThePrintPaperDatabase->GetSize(m_printData.GetPaperId());
683
684 // sz is in 10ths of a mm, while paper size is in mm
685 m_paperSize.x = sz.x / 10;
686 m_paperSize.y = sz.y / 10;
687 }
688
689 #endif // wxUSE_PRINTING_ARCHITECTURE