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