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