]>
Commit | Line | Data |
---|---|---|
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 | #if WXWIN_COMPATIBILITY_2_4 | |
262 | ||
263 | #include "wx/generic/prntdlgg.h" | |
264 | ||
265 | #if wxUSE_POSTSCRIPT | |
266 | #define WXUNUSED_WITHOUT_PS(name) name | |
267 | #else | |
268 | #define WXUNUSED_WITHOUT_PS(name) WXUNUSED(name) | |
269 | #endif | |
270 | ||
271 | wxString wxPrintData::GetPrinterCommand() const | |
272 | { | |
273 | #if wxUSE_POSTSCRIPT | |
274 | if (m_nativeData && wxIsKindOf(m_nativeData,wxPostScriptPrintNativeData)) | |
275 | return ((wxPostScriptPrintNativeData*)m_nativeData)->GetPrinterCommand(); | |
276 | #endif | |
277 | return wxT(""); | |
278 | } | |
279 | ||
280 | wxString wxPrintData::GetPrinterOptions() const | |
281 | { | |
282 | #if wxUSE_POSTSCRIPT | |
283 | if (m_nativeData && wxIsKindOf(m_nativeData,wxPostScriptPrintNativeData)) | |
284 | return ((wxPostScriptPrintNativeData*)m_nativeData)->GetPrinterOptions(); | |
285 | #endif | |
286 | return wxT(""); | |
287 | } | |
288 | ||
289 | wxString wxPrintData::GetPreviewCommand() const | |
290 | { | |
291 | #if wxUSE_POSTSCRIPT | |
292 | if (m_nativeData && wxIsKindOf(m_nativeData,wxPostScriptPrintNativeData)) | |
293 | return ((wxPostScriptPrintNativeData*)m_nativeData)->GetPreviewCommand(); | |
294 | #endif | |
295 | return wxT(""); | |
296 | } | |
297 | ||
298 | wxString wxPrintData::GetFontMetricPath() const | |
299 | { | |
300 | #if wxUSE_POSTSCRIPT | |
301 | if (m_nativeData && wxIsKindOf(m_nativeData,wxPostScriptPrintNativeData)) | |
302 | return ((wxPostScriptPrintNativeData*)m_nativeData)->GetFontMetricPath(); | |
303 | #endif | |
304 | return wxT(""); | |
305 | } | |
306 | ||
307 | double wxPrintData::GetPrinterScaleX() const | |
308 | { | |
309 | #if wxUSE_POSTSCRIPT | |
310 | if (m_nativeData && wxIsKindOf(m_nativeData,wxPostScriptPrintNativeData)) | |
311 | return ((wxPostScriptPrintNativeData*)m_nativeData)->GetPrinterScaleX(); | |
312 | #endif | |
313 | return 1.0; | |
314 | } | |
315 | ||
316 | double wxPrintData::GetPrinterScaleY() const | |
317 | { | |
318 | #if wxUSE_POSTSCRIPT | |
319 | if (m_nativeData && wxIsKindOf(m_nativeData,wxPostScriptPrintNativeData)) | |
320 | return ((wxPostScriptPrintNativeData*)m_nativeData)->GetPrinterScaleY(); | |
321 | #endif | |
322 | return 1.0; | |
323 | } | |
324 | ||
325 | long wxPrintData::GetPrinterTranslateX() const | |
326 | { | |
327 | #if wxUSE_POSTSCRIPT | |
328 | if (m_nativeData && wxIsKindOf(m_nativeData,wxPostScriptPrintNativeData)) | |
329 | return ((wxPostScriptPrintNativeData*)m_nativeData)->GetPrinterTranslateX(); | |
330 | #endif | |
331 | return 0; | |
332 | } | |
333 | ||
334 | long wxPrintData::GetPrinterTranslateY() const | |
335 | { | |
336 | #if wxUSE_POSTSCRIPT | |
337 | if (m_nativeData && wxIsKindOf(m_nativeData,wxPostScriptPrintNativeData)) | |
338 | return ((wxPostScriptPrintNativeData*)m_nativeData)->GetPrinterTranslateY(); | |
339 | #endif | |
340 | return 0; | |
341 | } | |
342 | ||
343 | void wxPrintData::SetPrinterCommand(const wxString& WXUNUSED_WITHOUT_PS(command)) | |
344 | { | |
345 | #if wxUSE_POSTSCRIPT | |
346 | if (m_nativeData && wxIsKindOf(m_nativeData,wxPostScriptPrintNativeData)) | |
347 | ((wxPostScriptPrintNativeData*)m_nativeData)->SetPrinterCommand( command ); | |
348 | #endif | |
349 | } | |
350 | ||
351 | void wxPrintData::SetPrinterOptions(const wxString& WXUNUSED_WITHOUT_PS(options)) | |
352 | { | |
353 | #if wxUSE_POSTSCRIPT | |
354 | if (m_nativeData && wxIsKindOf(m_nativeData,wxPostScriptPrintNativeData)) | |
355 | ((wxPostScriptPrintNativeData*)m_nativeData)->SetPrinterOptions( options ); | |
356 | #endif | |
357 | } | |
358 | ||
359 | void wxPrintData::SetPreviewCommand(const wxString& WXUNUSED_WITHOUT_PS(command)) | |
360 | { | |
361 | #if wxUSE_POSTSCRIPT | |
362 | if (m_nativeData && wxIsKindOf(m_nativeData,wxPostScriptPrintNativeData)) | |
363 | ((wxPostScriptPrintNativeData*)m_nativeData)->SetPreviewCommand( command ); | |
364 | #endif | |
365 | } | |
366 | ||
367 | void wxPrintData::SetFontMetricPath(const wxString& WXUNUSED_WITHOUT_PS(path)) | |
368 | { | |
369 | #if wxUSE_POSTSCRIPT | |
370 | if (m_nativeData && wxIsKindOf(m_nativeData,wxPostScriptPrintNativeData)) | |
371 | ((wxPostScriptPrintNativeData*)m_nativeData)->SetFontMetricPath( path ); | |
372 | #endif | |
373 | } | |
374 | ||
375 | void wxPrintData::SetPrinterScaleX(double WXUNUSED_WITHOUT_PS(x)) | |
376 | { | |
377 | #if wxUSE_POSTSCRIPT | |
378 | if (m_nativeData && wxIsKindOf(m_nativeData,wxPostScriptPrintNativeData)) | |
379 | ((wxPostScriptPrintNativeData*)m_nativeData)->SetPrinterScaleX( x ); | |
380 | #endif | |
381 | } | |
382 | ||
383 | void wxPrintData::SetPrinterScaleY(double WXUNUSED_WITHOUT_PS(y)) | |
384 | { | |
385 | #if wxUSE_POSTSCRIPT | |
386 | if (m_nativeData && wxIsKindOf(m_nativeData,wxPostScriptPrintNativeData)) | |
387 | ((wxPostScriptPrintNativeData*)m_nativeData)->SetPrinterScaleY( y ); | |
388 | #endif | |
389 | } | |
390 | ||
391 | void wxPrintData::SetPrinterScaling(double WXUNUSED_WITHOUT_PS(x), double WXUNUSED_WITHOUT_PS(y)) | |
392 | { | |
393 | #if wxUSE_POSTSCRIPT | |
394 | if (m_nativeData && wxIsKindOf(m_nativeData,wxPostScriptPrintNativeData)) | |
395 | ((wxPostScriptPrintNativeData*)m_nativeData)->SetPrinterScaling( x, y ); | |
396 | #endif | |
397 | } | |
398 | ||
399 | void wxPrintData::SetPrinterTranslateX(long WXUNUSED_WITHOUT_PS(x)) | |
400 | { | |
401 | #if wxUSE_POSTSCRIPT | |
402 | if (m_nativeData && wxIsKindOf(m_nativeData,wxPostScriptPrintNativeData)) | |
403 | ((wxPostScriptPrintNativeData*)m_nativeData)->SetPrinterTranslateX( x ); | |
404 | #endif | |
405 | } | |
406 | ||
407 | void wxPrintData::SetPrinterTranslateY(long WXUNUSED_WITHOUT_PS(y)) | |
408 | { | |
409 | #if wxUSE_POSTSCRIPT | |
410 | if (m_nativeData && wxIsKindOf(m_nativeData,wxPostScriptPrintNativeData)) | |
411 | ((wxPostScriptPrintNativeData*)m_nativeData)->SetPrinterTranslateY( y ); | |
412 | #endif | |
413 | } | |
414 | ||
415 | void wxPrintData::SetPrinterTranslation(long WXUNUSED_WITHOUT_PS(x), long WXUNUSED_WITHOUT_PS(y)) | |
416 | { | |
417 | #if wxUSE_POSTSCRIPT | |
418 | if (m_nativeData && wxIsKindOf(m_nativeData,wxPostScriptPrintNativeData)) | |
419 | ((wxPostScriptPrintNativeData*)m_nativeData)->SetPrinterTranslation( x, y ); | |
420 | #endif | |
421 | } | |
422 | #endif | |
423 | ||
424 | // ---------------------------------------------------------------------------- | |
425 | // Print dialog data | |
426 | // ---------------------------------------------------------------------------- | |
427 | ||
428 | wxPrintDialogData::wxPrintDialogData() | |
429 | { | |
430 | m_printFromPage = 0; | |
431 | m_printToPage = 0; | |
432 | m_printMinPage = 0; | |
433 | m_printMaxPage = 0; | |
434 | m_printNoCopies = 1; | |
435 | m_printAllPages = false; | |
436 | m_printCollate = false; | |
437 | m_printToFile = false; | |
438 | m_printSelection = false; | |
439 | m_printEnableSelection = false; | |
440 | m_printEnablePageNumbers = true; | |
441 | ||
442 | wxPrintFactory* factory = wxPrintFactory::GetFactory(); | |
443 | m_printEnablePrintToFile = ! factory->HasOwnPrintToFile(); | |
444 | ||
445 | m_printEnableHelp = false; | |
446 | #if WXWIN_COMPATIBILITY_2_4 | |
447 | m_printSetupDialog = false; | |
448 | #endif | |
449 | } | |
450 | ||
451 | wxPrintDialogData::wxPrintDialogData(const wxPrintDialogData& dialogData) | |
452 | : wxObject() | |
453 | { | |
454 | (*this) = dialogData; | |
455 | } | |
456 | ||
457 | wxPrintDialogData::wxPrintDialogData(const wxPrintData& printData) | |
458 | { | |
459 | m_printFromPage = 1; | |
460 | m_printToPage = 0; | |
461 | m_printMinPage = 1; | |
462 | m_printMaxPage = 9999; | |
463 | m_printNoCopies = 1; | |
464 | m_printAllPages = false; | |
465 | m_printCollate = false; | |
466 | m_printToFile = false; | |
467 | m_printSelection = false; | |
468 | m_printEnableSelection = false; | |
469 | m_printEnablePageNumbers = true; | |
470 | m_printEnablePrintToFile = true; | |
471 | m_printEnableHelp = false; | |
472 | #if WXWIN_COMPATIBILITY_2_4 | |
473 | m_printSetupDialog = false; | |
474 | #endif | |
475 | m_printData = printData; | |
476 | } | |
477 | ||
478 | wxPrintDialogData::~wxPrintDialogData() | |
479 | { | |
480 | } | |
481 | ||
482 | #ifdef __WXMAC__ | |
483 | ||
484 | void wxPrintDialogData::ConvertToNative() | |
485 | { | |
486 | m_printData.ConvertToNative(); | |
487 | m_printData.m_nativePrintData->TransferFrom( this ) ; | |
488 | } | |
489 | ||
490 | void wxPrintDialogData::ConvertFromNative() | |
491 | { | |
492 | m_printData.ConvertFromNative(); | |
493 | m_printData.m_nativePrintData->TransferTo( this ) ; | |
494 | } | |
495 | ||
496 | #endif | |
497 | ||
498 | ||
499 | void wxPrintDialogData::operator=(const wxPrintDialogData& data) | |
500 | { | |
501 | m_printFromPage = data.m_printFromPage; | |
502 | m_printToPage = data.m_printToPage; | |
503 | m_printMinPage = data.m_printMinPage; | |
504 | m_printMaxPage = data.m_printMaxPage; | |
505 | m_printNoCopies = data.m_printNoCopies; | |
506 | m_printAllPages = data.m_printAllPages; | |
507 | m_printCollate = data.m_printCollate; | |
508 | m_printToFile = data.m_printToFile; | |
509 | m_printSelection = data.m_printSelection; | |
510 | m_printEnableSelection = data.m_printEnableSelection; | |
511 | m_printEnablePageNumbers = data.m_printEnablePageNumbers; | |
512 | m_printEnableHelp = data.m_printEnableHelp; | |
513 | m_printEnablePrintToFile = data.m_printEnablePrintToFile; | |
514 | #if WXWIN_COMPATIBILITY_2_4 | |
515 | m_printSetupDialog = data.m_printSetupDialog; | |
516 | #endif | |
517 | m_printData = data.m_printData; | |
518 | } | |
519 | ||
520 | void wxPrintDialogData::operator=(const wxPrintData& data) | |
521 | { | |
522 | m_printData = data; | |
523 | } | |
524 | ||
525 | // ---------------------------------------------------------------------------- | |
526 | // wxPageSetupDialogData | |
527 | // ---------------------------------------------------------------------------- | |
528 | ||
529 | wxPageSetupDialogData::wxPageSetupDialogData() | |
530 | { | |
531 | m_paperSize = wxSize(0, 0); | |
532 | ||
533 | CalculatePaperSizeFromId(); | |
534 | ||
535 | m_minMarginTopLeft = wxPoint(0, 0); | |
536 | m_minMarginBottomRight = wxPoint(0, 0); | |
537 | m_marginTopLeft = wxPoint(0, 0); | |
538 | m_marginBottomRight = wxPoint(0, 0); | |
539 | ||
540 | // Flags | |
541 | m_defaultMinMargins = false; | |
542 | m_enableMargins = true; | |
543 | m_enableOrientation = true; | |
544 | m_enablePaper = true; | |
545 | m_enablePrinter = true; | |
546 | m_enableHelp = false; | |
547 | m_getDefaultInfo = false; | |
548 | } | |
549 | ||
550 | wxPageSetupDialogData::wxPageSetupDialogData(const wxPageSetupDialogData& dialogData) | |
551 | : wxObject() | |
552 | { | |
553 | (*this) = dialogData; | |
554 | } | |
555 | ||
556 | wxPageSetupDialogData::wxPageSetupDialogData(const wxPrintData& printData) | |
557 | { | |
558 | m_paperSize = wxSize(0, 0); | |
559 | m_minMarginTopLeft = wxPoint(0, 0); | |
560 | m_minMarginBottomRight = wxPoint(0, 0); | |
561 | m_marginTopLeft = wxPoint(0, 0); | |
562 | m_marginBottomRight = wxPoint(0, 0); | |
563 | ||
564 | // Flags | |
565 | m_defaultMinMargins = false; | |
566 | m_enableMargins = true; | |
567 | m_enableOrientation = true; | |
568 | m_enablePaper = true; | |
569 | m_enablePrinter = true; | |
570 | m_enableHelp = false; | |
571 | m_getDefaultInfo = false; | |
572 | ||
573 | m_printData = printData; | |
574 | ||
575 | // The wxPrintData paper size overrides these values, unless the size cannot | |
576 | // be found. | |
577 | CalculatePaperSizeFromId(); | |
578 | } | |
579 | ||
580 | wxPageSetupDialogData::~wxPageSetupDialogData() | |
581 | { | |
582 | } | |
583 | ||
584 | wxPageSetupDialogData& wxPageSetupDialogData::operator=(const wxPageSetupDialogData& data) | |
585 | { | |
586 | m_paperSize = data.m_paperSize; | |
587 | m_minMarginTopLeft = data.m_minMarginTopLeft; | |
588 | m_minMarginBottomRight = data.m_minMarginBottomRight; | |
589 | m_marginTopLeft = data.m_marginTopLeft; | |
590 | m_marginBottomRight = data.m_marginBottomRight; | |
591 | m_defaultMinMargins = data.m_defaultMinMargins; | |
592 | m_enableMargins = data.m_enableMargins; | |
593 | m_enableOrientation = data.m_enableOrientation; | |
594 | m_enablePaper = data.m_enablePaper; | |
595 | m_enablePrinter = data.m_enablePrinter; | |
596 | m_getDefaultInfo = data.m_getDefaultInfo;; | |
597 | m_enableHelp = data.m_enableHelp; | |
598 | ||
599 | m_printData = data.m_printData; | |
600 | ||
601 | return *this; | |
602 | } | |
603 | ||
604 | wxPageSetupDialogData& wxPageSetupDialogData::operator=(const wxPrintData& data) | |
605 | { | |
606 | m_printData = data; | |
607 | ||
608 | return *this; | |
609 | } | |
610 | ||
611 | #ifdef __WXMAC__ | |
612 | void wxPageSetupDialogData::ConvertToNative() | |
613 | { | |
614 | m_printData.ConvertToNative(); | |
615 | m_printData.m_nativePrintData->TransferFrom( this ) ; | |
616 | } | |
617 | ||
618 | void wxPageSetupDialogData::ConvertFromNative() | |
619 | { | |
620 | m_printData.ConvertFromNative (); | |
621 | m_paperSize = m_printData.GetPaperSize() ; | |
622 | CalculateIdFromPaperSize(); | |
623 | m_printData.m_nativePrintData->TransferTo( this ) ; | |
624 | // adjust minimal values | |
625 | ||
626 | if ( m_marginTopLeft.x < m_minMarginTopLeft.x ) | |
627 | m_marginTopLeft.x = m_minMarginTopLeft.x; | |
628 | ||
629 | if ( m_marginBottomRight.x < m_minMarginBottomRight.x ) | |
630 | m_marginBottomRight.x = m_minMarginBottomRight.x; | |
631 | ||
632 | if ( m_marginTopLeft.y < m_minMarginTopLeft.y ) | |
633 | m_marginTopLeft.y = m_minMarginTopLeft.y; | |
634 | ||
635 | if ( m_marginBottomRight.y < m_minMarginBottomRight.y ) | |
636 | m_marginBottomRight.y = m_minMarginBottomRight.y; | |
637 | } | |
638 | #endif | |
639 | ||
640 | ||
641 | // If a corresponding paper type is found in the paper database, will set the m_printData | |
642 | // paper size id member as well. | |
643 | void wxPageSetupDialogData::SetPaperSize(const wxSize& sz) | |
644 | { | |
645 | m_paperSize = sz; | |
646 | ||
647 | CalculateIdFromPaperSize(); | |
648 | } | |
649 | ||
650 | // Sets the wxPrintData id, plus the paper width/height if found in the paper database. | |
651 | void wxPageSetupDialogData::SetPaperSize(wxPaperSize id) | |
652 | { | |
653 | m_printData.SetPaperId(id); | |
654 | ||
655 | CalculatePaperSizeFromId(); | |
656 | } | |
657 | ||
658 | // Use paper size defined in this object to set the wxPrintData | |
659 | // paper id | |
660 | void wxPageSetupDialogData::CalculateIdFromPaperSize() | |
661 | { | |
662 | wxASSERT_MSG( (wxThePrintPaperDatabase != (wxPrintPaperDatabase*) NULL), | |
663 | wxT("wxThePrintPaperDatabase should not be NULL. Do not create global print dialog data objects.") ); | |
664 | ||
665 | wxSize sz = GetPaperSize(); | |
666 | ||
667 | wxPaperSize id = wxThePrintPaperDatabase->GetSize(wxSize(sz.x* 10, sz.y * 10)); | |
668 | if (id != wxPAPER_NONE) | |
669 | { | |
670 | m_printData.SetPaperId(id); | |
671 | } | |
672 | } | |
673 | ||
674 | // Use paper id in wxPrintData to set this object's paper size | |
675 | void wxPageSetupDialogData::CalculatePaperSizeFromId() | |
676 | { | |
677 | wxASSERT_MSG( (wxThePrintPaperDatabase != (wxPrintPaperDatabase*) NULL), | |
678 | wxT("wxThePrintPaperDatabase should not be NULL. Do not create global print dialog data objects.") ); | |
679 | ||
680 | wxSize sz = wxThePrintPaperDatabase->GetSize(m_printData.GetPaperId()); | |
681 | ||
682 | // sz is in 10ths of a mm, while paper size is in mm | |
683 | m_paperSize.x = sz.x / 10; | |
684 | m_paperSize.y = sz.y / 10; | |
685 | } | |
686 | ||
687 | #endif // wxUSE_PRINTING_ARCHITECTURE |