]> git.saurik.com Git - wxWidgets.git/blob - src/common/cmndata.cpp
Added missing files to listing
[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 and Markus Holzem
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 // ============================================================================
13 // declarations
14 // ============================================================================
15
16 // ----------------------------------------------------------------------------
17 // headers
18 // ----------------------------------------------------------------------------
19
20 #ifdef __GNUG__
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
42 // For compatibility
43 #if (defined(__WXMOTIF__) || defined(__WXGTK__) || defined(__WXPM__) || defined(__WXMAC__)) && wxUSE_POSTSCRIPT
44 #define wxCOMPATIBILITY_WITH_PRINTSETUPDATA 1
45 #endif
46
47 #if wxUSE_PRINTING_ARCHITECTURE
48 #include "wx/paper.h"
49
50 #if wxCOMPATIBILITY_WITH_PRINTSETUPDATA
51 #include "wx/generic/dcpsg.h"
52 #endif
53 #endif // wxUSE_PRINTING_ARCHITECTURE
54
55 #ifdef __WXMSW__
56 #include <windows.h>
57 #include "wx/msw/private.h"
58
59 #if !defined(__WIN32__)
60 #include <print.h>
61 #include <commdlg.h>
62 #endif // Win16
63
64 #ifdef __WXWINE__
65 #include <cderr.h>
66 #include <commdlg.h>
67 #endif
68
69 #if defined(__WATCOMC__) || defined(__SC__) || defined(__SALFORDC__)
70 #include <windowsx.h>
71 #include <commdlg.h>
72 #endif
73 #endif // MSW
74
75 #if wxUSE_PRINTING_ARCHITECTURE
76 IMPLEMENT_DYNAMIC_CLASS(wxPrintData, wxObject)
77 IMPLEMENT_DYNAMIC_CLASS(wxPrintDialogData, wxObject)
78 IMPLEMENT_DYNAMIC_CLASS(wxPageSetupDialogData, wxObject)
79 #endif // wxUSE_PRINTING_ARCHITECTURE
80
81 IMPLEMENT_DYNAMIC_CLASS(wxFontData, wxObject)
82 IMPLEMENT_DYNAMIC_CLASS(wxColourData, wxObject)
83
84 #ifdef __WXMAC__
85 #define mm2pt 2.83464566929
86 #define pt2mm 0.352777777778
87 #endif // Mac
88
89 #ifndef DMPAPER_USER
90 #define DMPAPER_USER 256
91 #endif
92
93 // ============================================================================
94 // implementation
95 // ============================================================================
96
97 // ----------------------------------------------------------------------------
98 // wxColourData
99 // ----------------------------------------------------------------------------
100
101 wxColourData::wxColourData()
102 {
103 int i;
104 for (i = 0; i < 16; i++)
105 custColours[i].Set(255, 255, 255);
106
107 chooseFull = FALSE;
108 dataColour.Set(0,0,0);
109 }
110
111 wxColourData::wxColourData(const wxColourData& data)
112 {
113 (*this) = data;
114 }
115
116 wxColourData::~wxColourData()
117 {
118 }
119
120 void wxColourData::SetCustomColour(int i, wxColour& colour)
121 {
122 if (i > 15 || i < 0)
123 return;
124
125 custColours[i] = colour;
126 }
127
128 wxColour wxColourData::GetCustomColour(int i)
129 {
130 if (i > 15 || i < 0)
131 return wxColour(0,0,0);
132
133 return custColours[i];
134 }
135
136 void wxColourData::operator=(const wxColourData& data)
137 {
138 int i;
139 for (i = 0; i < 16; i++)
140 custColours[i] = data.custColours[i];
141
142 dataColour = (wxColour&)data.dataColour;
143 chooseFull = data.chooseFull;
144 }
145
146 // ----------------------------------------------------------------------------
147 // Font data
148 // ----------------------------------------------------------------------------
149
150 wxFontData::wxFontData()
151 {
152 // Intialize colour to black.
153 fontColour.Set(0, 0, 0);
154
155 showHelp = FALSE;
156 allowSymbols = TRUE;
157 enableEffects = TRUE;
158 minSize = 0;
159 maxSize = 0;
160
161 m_encoding = wxFONTENCODING_SYSTEM;
162 }
163
164 wxFontData::~wxFontData()
165 {
166 }
167
168 #if wxUSE_PRINTING_ARCHITECTURE
169 // ----------------------------------------------------------------------------
170 // Print data
171 // ----------------------------------------------------------------------------
172
173 wxPrintData::wxPrintData()
174 {
175 #ifdef __WXMSW__
176 m_devMode = (void*) NULL;
177 m_devNames = (void*) NULL;
178 #elif defined( __WXMAC__ )
179 #if TARGET_CARBON
180 m_macPageFormat = kPMNoPageFormat;
181 m_macPrintSettings = kPMNoPrintSettings;
182 #else
183 m_macPrintInfo = (THPrint) NewHandleClear( sizeof( TPrint ) ) ;
184 (**m_macPrintInfo).iPrVersion = 0; // something invalid
185
186 (**m_macPrintInfo).prInfo.iHRes = 72;
187 (**m_macPrintInfo).prInfo.iVRes = 72;
188 Rect r1 = { 0, 0, 8*72 - 2 * 18, 11*72 - 2 * 36 } ;
189 (**m_macPrintInfo).prInfo.rPage = r1;// must have its top left & (0,0)
190
191 Rect r2 = { -18, -36, 8*72 - 18, 11*72 - 36 } ;
192 (**m_macPrintInfo).rPaper = r2;
193 (**m_macPrintInfo).prStl.iPageV = 11 * 120 ; // 11 inches in 120th of an inch
194 (**m_macPrintInfo).prStl.iPageH = 8 * 120 ; // 8 inches in 120th of an inch
195 #endif
196 #endif
197 m_printOrientation = wxPORTRAIT;
198 m_printNoCopies = 1;
199 m_printCollate = FALSE;
200
201 // New, 24/3/99
202 m_printerName = "";
203 m_colour = TRUE;
204 m_duplexMode = wxDUPLEX_SIMPLEX;
205 m_printQuality = wxPRINT_QUALITY_HIGH;
206 m_paperId = wxPAPER_A4;
207 m_paperSize = wxSize(210, 297);
208
209 // PostScript-specific data
210 m_printerCommand = "";
211 m_previewCommand = "";
212 m_printerOptions = "";
213 m_filename = "";
214 m_afmPath = "";
215 m_printerScaleX = 1.0;
216 m_printerScaleY = 1.0;
217 m_printerTranslateX = 0;
218 m_printerTranslateY = 0;
219 m_printMode = wxPRINT_MODE_FILE;
220 }
221
222 wxPrintData::wxPrintData(const wxPrintData& printData)
223 {
224 #ifdef __WXMSW__
225 m_devMode = (void*) NULL;
226 m_devNames = (void*) NULL;
227 #elif defined( __WXMAC__ )
228 #if TARGET_CARBON
229 m_macPageFormat = kPMNoPageFormat;
230 m_macPrintSettings = kPMNoPrintSettings;
231 #else
232 m_macPrintInfo = NULL ;
233 #endif
234 #endif
235 (*this) = printData;
236 }
237
238 wxPrintData::~wxPrintData()
239 {
240 #ifdef __WXMSW__
241 HGLOBAL hDevMode = (HGLOBAL)(DWORD) m_devMode;
242 if ( hDevMode )
243 GlobalFree(hDevMode);
244 HGLOBAL hDevNames = (HGLOBAL)(DWORD) m_devNames;
245 if ( hDevNames )
246 GlobalFree(hDevNames);
247 #elif defined(__WXMAC__)
248 #if TARGET_CARBON
249 if (m_macPageFormat != kPMNoPageFormat)
250 {
251 (void)PMDisposePageFormat(m_macPageFormat);
252 m_macPageFormat = kPMNoPageFormat;
253 }
254
255 if (m_macPrintSettings != kPMNoPrintSettings)
256 {
257 (void)PMDisposePrintSettings(m_macPrintSettings);
258 m_macPrintSettings = kPMNoPrintSettings;
259 }
260 #else
261 wxASSERT( m_macPrintInfo ) ;
262 // we should perhaps delete
263 #endif
264 #endif
265 }
266
267 #if defined(__WXMSW__) // && defined(__WIN32__)
268
269 #if defined(__WXDEBUG__) && defined(__WIN32__)
270 static wxString wxGetPrintDlgError()
271 {
272 DWORD err = CommDlgExtendedError();
273 wxString msg = wxT("Unknown");
274 switch (err)
275 {
276 case CDERR_FINDRESFAILURE: msg = wxT("CDERR_FINDRESFAILURE"); break;
277 case CDERR_INITIALIZATION: msg = wxT("CDERR_INITIALIZATION"); break;
278 case CDERR_LOADRESFAILURE: msg = wxT("CDERR_LOADRESFAILURE"); break;
279 case CDERR_LOADSTRFAILURE: msg = wxT("CDERR_LOADSTRFAILURE"); break;
280 case CDERR_LOCKRESFAILURE: msg = wxT("CDERR_LOCKRESFAILURE"); break;
281 case CDERR_MEMALLOCFAILURE: msg = wxT("CDERR_MEMALLOCFAILURE"); break;
282 case CDERR_MEMLOCKFAILURE: msg = wxT("CDERR_MEMLOCKFAILURE"); break;
283 case CDERR_NOHINSTANCE: msg = wxT("CDERR_NOHINSTANCE"); break;
284 case CDERR_NOHOOK: msg = wxT("CDERR_NOHOOK"); break;
285 case CDERR_NOTEMPLATE: msg = wxT("CDERR_NOTEMPLATE"); break;
286 case CDERR_STRUCTSIZE: msg = wxT("CDERR_STRUCTSIZE"); break;
287 case PDERR_RETDEFFAILURE: msg = wxT("PDERR_RETDEFFAILURE"); break;
288 case PDERR_PRINTERNOTFOUND: msg = wxT("PDERR_PRINTERNOTFOUND"); break;
289 case PDERR_PARSEFAILURE: msg = wxT("PDERR_PARSEFAILURE"); break;
290 case PDERR_NODEVICES: msg = wxT("PDERR_NODEVICES"); break;
291 case PDERR_NODEFAULTPRN: msg = wxT("PDERR_NODEFAULTPRN"); break;
292 case PDERR_LOADDRVFAILURE: msg = wxT("PDERR_LOADDRVFAILURE"); break;
293 case PDERR_INITFAILURE: msg = wxT("PDERR_INITFAILURE"); break;
294 case PDERR_GETDEVMODEFAIL: msg = wxT("PDERR_GETDEVMODEFAIL"); break;
295 case PDERR_DNDMMISMATCH: msg = wxT("PDERR_DNDMMISMATCH"); break;
296 case PDERR_DEFAULTDIFFERENT: msg = wxT("PDERR_DEFAULTDIFFERENT"); break;
297 case PDERR_CREATEICFAILURE: msg = wxT("PDERR_CREATEICFAILURE"); break;
298 default: break;
299 }
300 return msg;
301 }
302 #endif
303
304 static HGLOBAL wxCreateDevNames(const wxString& driverName, const wxString& printerName, const wxString& portName)
305 {
306 HGLOBAL hDev = NULL;
307 // if (!driverName.IsEmpty() && !printerName.IsEmpty() && !portName.IsEmpty())
308 if (driverName.IsEmpty() && printerName.IsEmpty() && portName.IsEmpty())
309 {
310 }
311 else
312 {
313 hDev = GlobalAlloc(GPTR, 4*sizeof(WORD)+
314 driverName.Length() + 1 +
315 printerName.Length() + 1 +
316 portName.Length()+1);
317 LPDEVNAMES lpDev = (LPDEVNAMES)GlobalLock(hDev);
318 lpDev->wDriverOffset = sizeof(WORD)*4;
319 wxStrcpy((wxChar*)lpDev + lpDev->wDriverOffset, driverName);
320
321 lpDev->wDeviceOffset = (WORD)(lpDev->wDriverOffset + driverName.Length()+1);
322 wxStrcpy((wxChar*)lpDev + lpDev->wDeviceOffset, printerName);
323
324 lpDev->wOutputOffset = (WORD)(lpDev->wDeviceOffset + printerName.Length()+1);
325 wxStrcpy((wxChar*)lpDev + lpDev->wOutputOffset, portName);
326
327 lpDev->wDefault = 0;
328
329 GlobalUnlock(hDev);
330 }
331 return hDev;
332 }
333
334 void wxPrintData::ConvertToNative()
335 {
336 HGLOBAL hDevMode = (HGLOBAL)(DWORD) m_devMode;
337 HGLOBAL hDevNames = (HGLOBAL)(DWORD) m_devNames;
338 if (!hDevMode)
339 {
340 // Use PRINTDLG as a way of creating a DEVMODE object
341 PRINTDLG *pd = new PRINTDLG;
342
343 // GNU-WIN32 has the wrong size PRINTDLG - can't work out why.
344 #ifdef __GNUWIN32__
345 memset(pd, 0, 66);
346 pd->lStructSize = 66 ;
347 #else
348 memset(pd, 0, sizeof(PRINTDLG));
349 pd->lStructSize = sizeof(PRINTDLG);
350 #endif
351
352 pd->hwndOwner = (HWND)NULL;
353 pd->hDevMode = NULL; // Will be created by PrintDlg
354 pd->hDevNames = NULL; // Ditto
355 pd->hInstance = (HINSTANCE) wxGetInstance();
356
357 pd->Flags = PD_RETURNDEFAULT;
358 pd->nCopies = 1;
359
360 // Fill out the DEVMODE structure
361 // so we can use it as input in the 'real' PrintDlg
362 if (!PrintDlg(pd))
363 {
364 if ( pd->hDevMode )
365 GlobalFree(pd->hDevMode);
366 if ( pd->hDevNames )
367 GlobalFree(pd->hDevNames);
368 pd->hDevMode = NULL;
369 pd->hDevNames = NULL;
370
371 #if defined(__WXDEBUG__) && defined(__WIN32__)
372 wxString str(wxT("Printing error: "));
373 str += wxGetPrintDlgError();
374 wxLogDebug(str);
375 #endif
376 }
377 else
378 {
379 hDevMode = pd->hDevMode;
380 m_devMode = (void*)(long) hDevMode;
381 pd->hDevMode = NULL;
382
383 // We'll create a new DEVNAMEs structure below.
384 if ( pd->hDevNames )
385 GlobalFree(pd->hDevNames);
386 pd->hDevNames = NULL;
387
388 // hDevNames = pd->hDevNames;
389 // m_devNames = (void*)(long) hDevNames;
390 // pd->hDevnames = NULL;
391
392 }
393
394 delete pd;
395 }
396
397 if ( hDevMode )
398 {
399 LPDEVMODE devMode = (LPDEVMODE) GlobalLock(hDevMode);
400
401 //// Orientation
402
403 #ifndef __WXWINE__
404 devMode->dmOrientation = m_printOrientation;
405 #endif
406 devMode->dmFields = DM_ORIENTATION;
407
408 //// Collation
409
410 #ifndef __WIN16__
411 devMode->dmCollate = (m_printCollate ? DMCOLLATE_TRUE : DMCOLLATE_FALSE);
412 devMode->dmFields |= DM_COLLATE;
413 #endif
414
415 //// Number of copies
416
417 devMode->dmCopies = m_printNoCopies;
418 devMode->dmFields |= DM_COPIES;
419
420 //// Printer name
421
422 if (m_printerName != wxT(""))
423 {
424 // TODO: make this Unicode compatible
425 int len = wxMin(31, m_printerName.Len());
426 int i;
427 for (i = 0; i < len; i++)
428 devMode->dmDeviceName[i] = m_printerName.GetChar(i);
429 devMode->dmDeviceName[i] = 0;
430 }
431
432 //// Colour
433
434 if (m_colour)
435 devMode->dmColor = DMCOLOR_COLOR;
436 else
437 devMode->dmColor = DMCOLOR_MONOCHROME;
438
439 devMode->dmFields |= DM_COLOR;
440
441 #ifndef __WXWINE__
442 //// Paper size
443
444 if (m_paperId == wxPAPER_NONE)
445 {
446 // DEVMODE is in tenths of a milimeter
447 devMode->dmPaperWidth = m_paperSize.x * 10;
448 devMode->dmPaperLength = m_paperSize.y * 10;
449 devMode->dmPaperSize = DMPAPER_USER;
450 devMode->dmFields |= DM_PAPERWIDTH;
451 devMode->dmFields |= DM_PAPERLENGTH;
452 }
453 else
454 {
455 if (wxThePrintPaperDatabase)
456 {
457 wxPrintPaperType* paper = wxThePrintPaperDatabase->FindPaperType(m_paperId);
458 if (paper)
459 {
460 devMode->dmPaperSize = paper->GetPlatformId();
461 devMode->dmFields |= DM_PAPERSIZE;
462 }
463 }
464 }
465 #endif
466
467 //// Duplex
468
469 int duplex;
470 switch (m_duplexMode)
471 {
472 case wxDUPLEX_HORIZONTAL: {
473 duplex = DMDUP_HORIZONTAL; break;
474 }
475 case wxDUPLEX_VERTICAL: {
476 duplex = DMDUP_VERTICAL; break;
477 }
478 default:
479 case wxDUPLEX_SIMPLEX: {
480 duplex = DMDUP_SIMPLEX; break;
481 }
482 }
483 devMode->dmDuplex = duplex;
484 devMode->dmFields |= DM_DUPLEX;
485
486 //// Quality
487
488 int quality;
489 switch (m_printQuality)
490 {
491 case wxPRINT_QUALITY_MEDIUM: {
492 quality = DMRES_MEDIUM; break;
493 }
494 case wxPRINT_QUALITY_LOW: {
495 quality = DMRES_LOW; break;
496 }
497 case wxPRINT_QUALITY_DRAFT: {
498 quality = DMRES_DRAFT; break;
499 }
500 case wxPRINT_QUALITY_HIGH: {
501 quality = DMRES_HIGH; break;
502 }
503 default: {
504 quality = m_printQuality; break;
505 }
506 }
507 devMode->dmPrintQuality = quality;
508 devMode->dmFields |= DM_PRINTQUALITY;
509
510 GlobalUnlock(hDevMode);
511 }
512
513 if ( hDevNames )
514 {
515 GlobalFree(hDevNames);
516 }
517
518 // TODO: I hope it's OK to pass some empty strings to DEVNAMES.
519 m_devNames = (void*) (long) wxCreateDevNames("", m_printerName, "");
520 }
521
522 void wxPrintData::ConvertFromNative()
523 {
524 HGLOBAL hDevMode = (HGLOBAL)(DWORD) m_devMode;
525 HGLOBAL hDevNames = (HGLOBAL)(DWORD) m_devNames;
526
527 if (!hDevMode)
528 return;
529
530 if ( hDevMode )
531 {
532 LPDEVMODE devMode = (LPDEVMODE)GlobalLock(hDevMode);
533
534 #ifndef __WXWINE__
535 //// Orientation
536
537 if (devMode->dmFields & DM_ORIENTATION)
538 m_printOrientation = devMode->dmOrientation;
539 #endif
540
541 //// Collation
542
543 #ifndef __WIN16__
544 if (devMode->dmFields & DM_COLLATE)
545 {
546 if (devMode->dmCollate == DMCOLLATE_TRUE)
547 m_printCollate = TRUE;
548 else
549 m_printCollate = FALSE;
550 }
551 #endif
552
553 //// Number of copies
554
555 if (devMode->dmFields & DM_COPIES)
556 {
557 m_printNoCopies = devMode->dmCopies;
558 }
559
560 //// Printer name
561
562 if (devMode->dmDeviceName[0] != 0)
563 {
564 // TODO: make this Unicode compatible
565 char buf[32];
566 int i = 0;
567 while (devMode->dmDeviceName[i] != 0)
568 {
569 buf[i] = devMode->dmDeviceName[i];
570 i ++;
571 }
572 buf[i] = 0;
573
574 m_printerName = buf;
575 }
576
577 //// Colour
578
579 if (devMode->dmFields & DM_COLOR)
580 {
581 if (devMode->dmColor == DMCOLOR_COLOR)
582 m_colour = TRUE;
583 else
584 m_colour = FALSE;
585 }
586 else
587 m_colour = TRUE;
588
589 #ifndef __WXWINE__
590 //// Paper size
591
592 // We don't know size of user defined paper and some buggy drivers
593 // set both DM_PAPERSIZE and DM_PAPERWIDTH & DM_PAPERLENGTH. Since
594 // dmPaperSize >= DMPAPER_USER wouldn't be in wxWin's database, this
595 // code wouldn't set m_paperSize correctly.
596 if ((devMode->dmFields & DM_PAPERSIZE) && (devMode->dmPaperSize < DMPAPER_USER))
597 {
598 if (wxThePrintPaperDatabase)
599 {
600 wxPrintPaperType* paper = wxThePrintPaperDatabase->FindPaperTypeByPlatformId(devMode->dmPaperSize);
601 if (paper)
602 {
603 m_paperId = paper->GetId();
604 m_paperSize.x = paper->GetWidth() / 10 ;
605 m_paperSize.y = paper->GetHeight() / 10 ;
606 }
607 else
608 {
609 // Shouldn't really get here
610 wxFAIL_MSG(wxT("Couldn't find paper size in paper database."));
611
612 m_paperId = wxPAPER_NONE;
613 m_paperSize.x = 0;
614 m_paperSize.y = 0;
615 }
616 }
617 else
618 {
619 // Shouldn't really get here
620 wxFAIL_MSG(wxT("Paper database wasn't initialized in wxPrintData::ConvertFromNative."));
621
622 m_paperId = wxPAPER_NONE;
623 m_paperSize.x = 0;
624 m_paperSize.y = 0;
625 }
626 }
627 else if ((devMode->dmFields & DM_PAPERWIDTH) && (devMode->dmFields & DM_PAPERLENGTH))
628 {
629 // DEVMODE is in tenths of a milimeter
630 m_paperSize.x = devMode->dmPaperWidth / 10;
631 m_paperSize.y = devMode->dmPaperLength / 10;
632 m_paperId = wxPAPER_NONE;
633 }
634 else
635 {
636 // Shouldn't really get here
637 wxFAIL_MSG(wxT("Couldn't find paper size from DEVMODE."));
638
639 m_paperSize.x = 0;
640 m_paperSize.y = 0;
641 m_paperId = wxPAPER_NONE;
642 }
643 #endif
644
645 //// Duplex
646
647 if (devMode->dmFields & DM_DUPLEX)
648 {
649 switch (devMode->dmDuplex)
650 {
651 case DMDUP_HORIZONTAL: {
652 m_duplexMode = wxDUPLEX_HORIZONTAL; break;
653 }
654 case DMDUP_VERTICAL: {
655 m_duplexMode = wxDUPLEX_VERTICAL; break;
656 }
657 default:
658 case DMDUP_SIMPLEX: {
659 m_duplexMode = wxDUPLEX_SIMPLEX; break;
660 }
661 }
662 }
663 else
664 m_duplexMode = wxDUPLEX_SIMPLEX;
665
666 //// Quality
667
668 if (devMode->dmFields & DM_PRINTQUALITY)
669 {
670 switch (devMode->dmPrintQuality)
671 {
672 case DMRES_MEDIUM: {
673 m_printQuality = wxPRINT_QUALITY_MEDIUM; break;
674 }
675 case DMRES_LOW: {
676 m_printQuality = wxPRINT_QUALITY_LOW; break;
677 }
678 case DMRES_DRAFT: {
679 m_printQuality = wxPRINT_QUALITY_DRAFT; break;
680 }
681 case DMRES_HIGH: {
682 m_printQuality = wxPRINT_QUALITY_HIGH; break;
683 }
684 default:
685 {
686 // TODO: if the printer fills in the resolution in DPI, how
687 // will the application know if it's high, low, draft etc.??
688 // wxFAIL_MSG("Warning: DM_PRINTQUALITY was not one of the standard values.");
689 m_printQuality = devMode->dmPrintQuality; break;
690
691 }
692 }
693 }
694 else
695 m_printQuality = wxPRINT_QUALITY_HIGH;
696
697 GlobalUnlock(hDevMode);
698 }
699
700 if (hDevNames)
701 {
702 LPDEVNAMES lpDevNames = (LPDEVNAMES)GlobalLock(hDevNames);
703 if (lpDevNames)
704 {
705 // TODO: Unicode-ification
706
707 // Get the port name
708 // port is obsolete in WIN32
709 // m_printData.SetPortName((LPSTR)lpDevNames + lpDevNames->wDriverOffset);
710
711 // Get the printer name
712 wxString printerName = (LPSTR)lpDevNames + lpDevNames->wDeviceOffset;
713
714 // Not sure if we should check for this mismatch
715 // wxASSERT_MSG( (m_printerName == "" || (devName == m_printerName)), "Printer name obtained from DEVMODE and DEVNAMES were different!");
716
717 if (printerName != wxT(""))
718 m_printerName = printerName;
719
720 GlobalUnlock(hDevNames);
721 }
722 }
723 }
724
725 #endif
726
727 #ifdef __WXMAC__
728 void wxPrintData::ConvertToNative()
729 {
730 #ifdef TARGET_CARBON
731 #else
732 (**m_macPrintInfo).prJob.iCopies = m_printNoCopies ;
733 #endif
734 }
735
736 void wxPrintData::ConvertFromNative()
737 {
738 #ifdef TARGET_CARBON
739 #else
740 m_printNoCopies = (**m_macPrintInfo).prJob.iCopies ;
741 #endif
742 }
743 #endif
744
745 void wxPrintData::operator=(const wxPrintData& data)
746 {
747 #ifdef __WXMAC__
748 #ifdef TARGET_CARBON
749 #else
750 m_macPrintInfo = data.m_macPrintInfo ;
751 HandToHand( (Handle*) &m_macPrintInfo ) ;
752 #endif
753 #endif
754 m_printNoCopies = data.m_printNoCopies;
755 m_printCollate = data.m_printCollate;
756 m_printOrientation = data.m_printOrientation;
757 m_printerName = data.m_printerName;
758 m_colour = data.m_colour;
759 m_duplexMode = data.m_duplexMode;
760 m_printQuality = data.m_printQuality;
761 m_paperId = data.m_paperId;
762 m_paperSize = data.m_paperSize;
763
764 // PostScript-specific data
765 m_printerCommand = data.m_printerCommand;
766 m_previewCommand = data.m_previewCommand;
767 m_printerOptions = data.m_printerOptions;
768 m_filename = data.m_filename;
769 m_afmPath = data.m_afmPath;
770 m_printerScaleX = data.m_printerScaleX;
771 m_printerScaleY = data.m_printerScaleY;
772 m_printerTranslateX = data.m_printerTranslateX;
773 m_printerTranslateY = data.m_printerTranslateY;
774 m_printMode = data.m_printMode;
775 }
776
777 // For compatibility
778 #if wxCOMPATIBILITY_WITH_PRINTSETUPDATA
779 void wxPrintData::operator=(const wxPrintSetupData& setupData)
780 {
781 SetPrinterCommand(setupData.GetPrinterCommand());
782 SetPreviewCommand(setupData.GetPrintPreviewCommand());
783 SetPrinterOptions(setupData.GetPrinterOptions());
784
785 long xt, yt;
786 setupData.GetPrinterTranslation(& xt, & yt);
787 SetPrinterTranslation(xt, yt);
788
789 double xs, ys;
790 setupData.GetPrinterScaling(& xs, & ys);
791 SetPrinterScaling(xs, ys);
792
793 SetOrientation(setupData.GetPrinterOrientation());
794 SetPrintMode((wxPrintMode) setupData.GetPrinterMode());
795 SetFontMetricPath(setupData.GetAFMPath());
796 if (setupData.GetPaperName() != "")
797 SetPaperId(wxThePrintPaperDatabase->ConvertNameToId(setupData.GetPaperName()));
798 SetColour(setupData.GetColour());
799 SetFilename(setupData.GetPrinterFile());
800 }
801 #endif // wxCOMPATIBILITY_WITH_PRINTSETUPDATA
802
803
804 // ----------------------------------------------------------------------------
805 // Print dialog data
806 // ----------------------------------------------------------------------------
807
808 wxPrintDialogData::wxPrintDialogData()
809 {
810 #ifdef __WXMSW__
811 m_printDlgData = NULL;
812 #endif
813 m_printFromPage = 0;
814 m_printToPage = 0;
815 m_printMinPage = 0;
816 m_printMaxPage = 0;
817 m_printNoCopies = 1;
818 m_printAllPages = FALSE;
819 m_printCollate = FALSE;
820 m_printToFile = FALSE;
821 m_printSelection = FALSE;
822 m_printEnableSelection = FALSE;
823 m_printEnablePageNumbers = TRUE;
824 m_printEnablePrintToFile = TRUE;
825 m_printEnableHelp = FALSE;
826 m_printSetupDialog = FALSE;
827 }
828
829 wxPrintDialogData::wxPrintDialogData(const wxPrintDialogData& dialogData)
830 {
831 #ifdef __WXMSW__
832 m_printDlgData = NULL;
833 #endif
834 (*this) = dialogData;
835 }
836
837 wxPrintDialogData::wxPrintDialogData(const wxPrintData& printData)
838 {
839 #ifdef __WXMSW__
840 m_printDlgData = NULL;
841 #endif
842 m_printFromPage = 0;
843 m_printToPage = 0;
844 m_printMinPage = 0;
845 m_printMaxPage = 0;
846 m_printNoCopies = 1;
847 m_printAllPages = FALSE;
848 m_printCollate = FALSE;
849 m_printToFile = FALSE;
850 m_printSelection = FALSE;
851 m_printEnableSelection = FALSE;
852 m_printEnablePageNumbers = TRUE;
853 m_printEnablePrintToFile = TRUE;
854 m_printEnableHelp = FALSE;
855 m_printSetupDialog = FALSE;
856
857 m_printData = printData;
858 }
859
860 wxPrintDialogData::~wxPrintDialogData()
861 {
862 #ifdef __WXMSW__
863 PRINTDLG *pd = (PRINTDLG *) m_printDlgData;
864 if ( pd && pd->hDevMode )
865 GlobalFree(pd->hDevMode);
866 if ( pd )
867 delete pd;
868 #endif
869 }
870
871 #ifdef __WXMSW__
872 void wxPrintDialogData::ConvertToNative()
873 {
874 m_printData.ConvertToNative();
875
876 PRINTDLG *pd = (PRINTDLG*) m_printDlgData;
877
878 if (!pd)
879 {
880 pd = new PRINTDLG;
881 m_printDlgData = (void*) pd;
882
883 // GNU-WIN32 has the wrong size PRINTDLG - can't work out why.
884 #ifdef __GNUWIN32__
885 pd->lStructSize = 66 ;
886 #else
887 pd->lStructSize = sizeof(PRINTDLG);
888 #endif
889 pd->hwndOwner = (HWND)NULL;
890 pd->hDevMode = NULL; // Will be created by PrintDlg
891 pd->hDevNames = NULL; // Ditto
892
893 pd->Flags = PD_RETURNDEFAULT;
894 pd->nCopies = 1;
895 }
896
897 // Pass the devmode data to the PRINTDLG structure, since it'll
898 // be needed when PrintDlg is called.
899 if (pd->hDevMode)
900 {
901 GlobalFree(pd->hDevMode);
902 }
903
904 // Pass the devnames data to the PRINTDLG structure, since it'll
905 // be needed when PrintDlg is called.
906 if (pd->hDevNames)
907 {
908 GlobalFree(pd->hDevNames);
909 }
910
911 pd->hDevMode = (HGLOBAL)(DWORD) m_printData.GetNativeData();
912
913 m_printData.SetNativeData((void*) NULL);
914
915 wxASSERT_MSG( (pd->hDevMode), wxT("hDevMode must be non-NULL in ConvertToNative!"));
916
917 pd->hDevNames = (HGLOBAL)(DWORD) m_printData.GetNativeDataDevNames();
918
919 m_printData.SetNativeDataDevNames((void*) NULL);
920
921 pd->hDC = (HDC) NULL;
922 pd->nFromPage = (WORD)m_printFromPage;
923 pd->nToPage = (WORD)m_printToPage;
924 pd->nMinPage = (WORD)m_printMinPage;
925 pd->nMaxPage = (WORD)m_printMaxPage;
926 pd->nCopies = (WORD)m_printNoCopies;
927
928 pd->Flags = PD_RETURNDC ;
929
930 #ifdef __GNUWIN32__
931 pd->lStructSize = 66 ;
932 #else
933 pd->lStructSize = sizeof( PRINTDLG );
934 #endif
935
936 pd->hwndOwner=(HWND)NULL;
937 // pd->hDevNames=(HANDLE)NULL;
938 pd->hInstance=(HINSTANCE)NULL;
939 pd->lCustData = (LPARAM) NULL;
940 pd->lpfnPrintHook = NULL;
941 pd->lpfnSetupHook = NULL;
942 pd->lpPrintTemplateName = NULL;
943 pd->lpSetupTemplateName = NULL;
944 pd->hPrintTemplate = (HGLOBAL) NULL;
945 pd->hSetupTemplate = (HGLOBAL) NULL;
946
947 if ( m_printAllPages )
948 pd->Flags |= PD_ALLPAGES;
949 if ( m_printSelection )
950 pd->Flags |= PD_SELECTION;
951 if ( m_printCollate )
952 pd->Flags |= PD_COLLATE;
953 if ( m_printToFile )
954 pd->Flags |= PD_PRINTTOFILE;
955 if ( !m_printEnablePrintToFile )
956 pd->Flags |= PD_DISABLEPRINTTOFILE;
957 if ( !m_printEnableSelection )
958 pd->Flags |= PD_NOSELECTION;
959 if ( !m_printEnablePageNumbers )
960 pd->Flags |= PD_NOPAGENUMS;
961 if ( m_printEnableHelp )
962 pd->Flags |= PD_SHOWHELP;
963 if ( m_printSetupDialog )
964 pd->Flags |= PD_PRINTSETUP;
965 }
966
967 void wxPrintDialogData::ConvertFromNative()
968 {
969 PRINTDLG *pd = (PRINTDLG*) m_printDlgData;
970 if ( pd == NULL )
971 return;
972
973 // Pass the devmode data back to the wxPrintData structure where it really belongs.
974 if (pd->hDevMode)
975 {
976 if (m_printData.GetNativeData())
977 {
978 // Make sure we don't leak memory
979 GlobalFree((HGLOBAL)(DWORD) m_printData.GetNativeData());
980 }
981 m_printData.SetNativeData((void*)(long) pd->hDevMode);
982 pd->hDevMode = NULL;
983 }
984
985 // Pass the devnames data back to the wxPrintData structure where it really belongs.
986 if (pd->hDevNames)
987 {
988 if (m_printData.GetNativeDataDevNames())
989 {
990 // Make sure we don't leak memory
991 GlobalFree((HGLOBAL)(DWORD) m_printData.GetNativeDataDevNames());
992 }
993 m_printData.SetNativeDataDevNames((void*)(long) pd->hDevNames);
994 pd->hDevNames = NULL;
995 }
996
997 // Now convert the DEVMODE object, passed down from the PRINTDLG object,
998 // into wxWindows form.
999 m_printData.ConvertFromNative();
1000
1001 m_printFromPage = pd->nFromPage ;
1002 m_printToPage = pd->nToPage ;
1003 m_printMinPage = pd->nMinPage ;
1004 m_printMaxPage = pd->nMaxPage ;
1005 m_printNoCopies = pd->nCopies ;
1006
1007 m_printAllPages = ((pd->Flags & PD_ALLPAGES) == PD_ALLPAGES);
1008 m_printSelection = ((pd->Flags & PD_SELECTION) == PD_SELECTION);
1009 m_printCollate = ((pd->Flags & PD_COLLATE) == PD_COLLATE);
1010 m_printToFile = ((pd->Flags & PD_PRINTTOFILE) == PD_PRINTTOFILE);
1011 m_printEnablePrintToFile = ((pd->Flags & PD_DISABLEPRINTTOFILE) != PD_DISABLEPRINTTOFILE);
1012 m_printEnableSelection = ((pd->Flags & PD_NOSELECTION) != PD_NOSELECTION);
1013 m_printEnablePageNumbers = ((pd->Flags & PD_NOPAGENUMS) != PD_NOPAGENUMS);
1014 m_printEnableHelp = ((pd->Flags & PD_SHOWHELP) == PD_SHOWHELP);
1015 m_printSetupDialog = ((pd->Flags & PD_PRINTSETUP) == PD_PRINTSETUP);
1016
1017 /* port is obsolete in WIN32
1018 // Get the port name
1019 if (pd->hDevNames)
1020 {
1021 LPDEVNAMES lpDevNames = (LPDEVNAMES)GlobalLock(pd->hDevNames);
1022 if (lpDevNames) {
1023 m_printData.SetPortName((LPSTR)lpDevNames + lpDevNames->wDriverOffset);
1024 wxString devName = (LPSTR)lpDevNames + lpDevNames->wDeviceOffset;
1025 GlobalUnlock(pd->hDevNames);
1026
1027 // wxASSERT_MSG( (m_printerName == "" || (devName == m_printerName)), "Printer name obtained from DEVMODE and DEVNAMES were different!");
1028 }
1029 }
1030 */
1031 }
1032
1033 void wxPrintDialogData::SetOwnerWindow(wxWindow* win)
1034 {
1035 if ( m_printDlgData == NULL )
1036 ConvertToNative();
1037
1038 if ( m_printDlgData != NULL && win != NULL)
1039 {
1040 PRINTDLG *pd = (PRINTDLG *) m_printDlgData ;
1041 pd->hwndOwner=(HWND) win->GetHWND();
1042 }
1043 }
1044 #endif // MSW
1045
1046 #ifdef __WXMAC__
1047 void wxPrintDialogData::ConvertToNative()
1048 {
1049 #ifdef TARGET_CARBON
1050 #else
1051 (**m_printData.m_macPrintInfo).prJob.iFstPage = m_printFromPage ;
1052 (**m_printData.m_macPrintInfo).prJob.iLstPage = m_printToPage ;
1053 m_printData.ConvertToNative() ;
1054 #endif
1055 }
1056
1057 void wxPrintDialogData::ConvertFromNative()
1058 {
1059 #ifdef TARGET_CARBON
1060 #else
1061 m_printData.ConvertFromNative() ;
1062 m_printFromPage = (**m_printData.m_macPrintInfo).prJob.iFstPage ;
1063 m_printToPage = (**m_printData.m_macPrintInfo).prJob.iLstPage ;
1064 #endif
1065 }
1066 #endif
1067
1068
1069 void wxPrintDialogData::operator=(const wxPrintDialogData& data)
1070 {
1071 m_printFromPage = data.m_printFromPage;
1072 m_printToPage = data.m_printToPage;
1073 m_printMinPage = data.m_printMinPage;
1074 m_printMaxPage = data.m_printMaxPage;
1075 m_printNoCopies = data.m_printNoCopies;
1076 m_printAllPages = data.m_printAllPages;
1077 m_printCollate = data.m_printCollate;
1078 m_printToFile = data.m_printToFile;
1079 m_printSelection = data.m_printSelection;
1080 m_printEnableSelection = data.m_printEnableSelection;
1081 m_printEnablePageNumbers = data.m_printEnablePageNumbers;
1082 m_printEnableHelp = data.m_printEnableHelp;
1083 m_printEnablePrintToFile = data.m_printEnablePrintToFile;
1084 m_printSetupDialog = data.m_printSetupDialog;
1085
1086 m_printData = data.m_printData;
1087 }
1088
1089 void wxPrintDialogData::operator=(const wxPrintData& data)
1090 {
1091 m_printData = data;
1092 }
1093
1094 // ----------------------------------------------------------------------------
1095 // wxPageSetupDialogData
1096 // ----------------------------------------------------------------------------
1097
1098 wxPageSetupDialogData::wxPageSetupDialogData()
1099 {
1100 #if defined(__WIN95__)
1101 m_pageSetupData = NULL;
1102 #endif
1103 m_paperSize = wxSize(0, 0);
1104
1105 CalculatePaperSizeFromId();
1106
1107 m_minMarginTopLeft = wxPoint(0, 0);
1108 m_minMarginBottomRight = wxPoint(0, 0);
1109 m_marginTopLeft = wxPoint(0, 0);
1110 m_marginBottomRight = wxPoint(0, 0);
1111
1112 // Flags
1113 m_defaultMinMargins = FALSE;
1114 m_enableMargins = TRUE;
1115 m_enableOrientation = TRUE;
1116 m_enablePaper = TRUE;
1117 m_enablePrinter = TRUE;
1118 m_enableHelp = FALSE;
1119 m_getDefaultInfo = FALSE;
1120 }
1121
1122 wxPageSetupDialogData::wxPageSetupDialogData(const wxPageSetupDialogData& dialogData)
1123 {
1124 #if defined(__WIN95__)
1125 m_pageSetupData = NULL;
1126 #endif
1127 (*this) = dialogData;
1128 }
1129
1130 wxPageSetupDialogData::wxPageSetupDialogData(const wxPrintData& printData)
1131 {
1132 #if defined(__WIN95__)
1133 m_pageSetupData = NULL;
1134 #endif
1135 m_paperSize = wxSize(0, 0);
1136 m_minMarginTopLeft = wxPoint(0, 0);
1137 m_minMarginBottomRight = wxPoint(0, 0);
1138 m_marginTopLeft = wxPoint(0, 0);
1139 m_marginBottomRight = wxPoint(0, 0);
1140
1141 // Flags
1142 m_defaultMinMargins = FALSE;
1143 m_enableMargins = TRUE;
1144 m_enableOrientation = TRUE;
1145 m_enablePaper = TRUE;
1146 m_enablePrinter = TRUE;
1147 m_enableHelp = FALSE;
1148 m_getDefaultInfo = FALSE;
1149
1150 m_printData = printData;
1151
1152 // The wxPrintData paper size overrides these values, unless the size cannot
1153 // be found.
1154 CalculatePaperSizeFromId();
1155 }
1156
1157 wxPageSetupDialogData::~wxPageSetupDialogData()
1158 {
1159 #if defined(__WIN95__) && defined(__WXMSW__)
1160 PAGESETUPDLG *pd = (PAGESETUPDLG *)m_pageSetupData;
1161 if ( pd && pd->hDevMode )
1162 GlobalFree(pd->hDevMode);
1163 if ( pd && pd->hDevNames )
1164 GlobalFree(pd->hDevNames);
1165 if ( pd )
1166 delete pd;
1167 #endif
1168 }
1169
1170 void wxPageSetupDialogData::operator=(const wxPageSetupDialogData& data)
1171 {
1172 m_paperSize = data.m_paperSize;
1173 m_minMarginTopLeft = data.m_minMarginTopLeft;
1174 m_minMarginBottomRight = data.m_minMarginBottomRight;
1175 m_marginTopLeft = data.m_marginTopLeft;
1176 m_marginBottomRight = data.m_marginBottomRight;
1177 m_defaultMinMargins = data.m_defaultMinMargins;
1178 m_enableMargins = data.m_enableMargins;
1179 m_enableOrientation = data.m_enableOrientation;
1180 m_enablePaper = data.m_enablePaper;
1181 m_enablePrinter = data.m_enablePrinter;
1182 m_getDefaultInfo = data.m_getDefaultInfo;;
1183 m_enableHelp = data.m_enableHelp;
1184
1185 m_printData = data.m_printData;
1186 }
1187
1188 void wxPageSetupDialogData::operator=(const wxPrintData& data)
1189 {
1190 m_printData = data;
1191 }
1192
1193 #if defined(__WIN95__)
1194 void wxPageSetupDialogData::ConvertToNative()
1195 {
1196 m_printData.ConvertToNative();
1197
1198 PAGESETUPDLG *pd = (PAGESETUPDLG*) m_pageSetupData;
1199
1200 if ( m_pageSetupData == NULL )
1201 {
1202 pd = new PAGESETUPDLG;
1203 pd->hDevMode = NULL;
1204 pd->hDevNames = NULL;
1205 m_pageSetupData = (void *)pd;
1206 }
1207
1208 // Pass the devmode data (created in m_printData.ConvertToNative)
1209 // to the PRINTDLG structure, since it'll
1210 // be needed when PrintDlg is called.
1211
1212 if (pd->hDevMode)
1213 {
1214 GlobalFree(pd->hDevMode);
1215 pd->hDevMode = NULL;
1216 }
1217
1218 pd->hDevMode = (HGLOBAL) m_printData.GetNativeData();
1219
1220 m_printData.SetNativeData((void*) NULL);
1221
1222 wxASSERT_MSG( (pd->hDevMode), wxT("hDevMode must be non-NULL in ConvertToNative!"));
1223
1224 // Pass the devnames data (created in m_printData.ConvertToNative)
1225 // to the PRINTDLG structure, since it'll
1226 // be needed when PrintDlg is called.
1227
1228 if (pd->hDevNames)
1229 {
1230 GlobalFree(pd->hDevNames);
1231 pd->hDevNames = NULL;
1232 }
1233
1234 pd->hDevNames = (HGLOBAL) m_printData.GetNativeDataDevNames();
1235
1236 m_printData.SetNativeDataDevNames((void*) NULL);
1237
1238 // pd->hDevMode = GlobalAlloc(GMEM_MOVEABLE, sizeof(DEVMODE));
1239
1240 pd->Flags = PSD_MARGINS|PSD_MINMARGINS;
1241
1242 if ( m_defaultMinMargins )
1243 pd->Flags |= PSD_DEFAULTMINMARGINS;
1244 if ( !m_enableMargins )
1245 pd->Flags |= PSD_DISABLEMARGINS;
1246 if ( !m_enableOrientation )
1247 pd->Flags |= PSD_DISABLEORIENTATION;
1248 if ( !m_enablePaper )
1249 pd->Flags |= PSD_DISABLEPAPER;
1250 if ( !m_enablePrinter )
1251 pd->Flags |= PSD_DISABLEPRINTER;
1252 if ( m_getDefaultInfo )
1253 pd->Flags |= PSD_RETURNDEFAULT;
1254 if ( m_enableHelp )
1255 pd->Flags |= PSD_SHOWHELP;
1256
1257 // We want the units to be in hundredths of a millimetre
1258 pd->Flags |= PSD_INHUNDREDTHSOFMILLIMETERS;
1259
1260 pd->lStructSize = sizeof( PAGESETUPDLG );
1261 pd->hwndOwner=(HWND)NULL;
1262 // pd->hDevNames=(HWND)NULL;
1263 pd->hInstance=(HINSTANCE)NULL;
1264 // PAGESETUPDLG is in hundreds of a mm
1265 pd->ptPaperSize.x = m_paperSize.x * 100;
1266 pd->ptPaperSize.y = m_paperSize.y * 100;
1267
1268 pd->rtMinMargin.left = m_minMarginTopLeft.x * 100;
1269 pd->rtMinMargin.top = m_minMarginTopLeft.y * 100;
1270 pd->rtMinMargin.right = m_minMarginBottomRight.x * 100;
1271 pd->rtMinMargin.bottom = m_minMarginBottomRight.y * 100;
1272
1273 pd->rtMargin.left = m_marginTopLeft.x * 100;
1274 pd->rtMargin.top = m_marginTopLeft.y * 100;
1275 pd->rtMargin.right = m_marginBottomRight.x * 100;
1276 pd->rtMargin.bottom = m_marginBottomRight.y * 100;
1277
1278 pd->lCustData = 0;
1279 pd->lpfnPageSetupHook = NULL;
1280 pd->lpfnPagePaintHook = NULL;
1281 pd->hPageSetupTemplate = NULL;
1282 pd->lpPageSetupTemplateName = NULL;
1283
1284 /*
1285 if ( pd->hDevMode )
1286 {
1287 DEVMODE *devMode = (DEVMODE*) GlobalLock(pd->hDevMode);
1288 memset(devMode, 0, sizeof(DEVMODE));
1289 devMode->dmSize = sizeof(DEVMODE);
1290 devMode->dmOrientation = m_orientation;
1291 devMode->dmFields = DM_ORIENTATION;
1292 GlobalUnlock(pd->hDevMode);
1293 }
1294 */
1295 }
1296
1297 void wxPageSetupDialogData::ConvertFromNative()
1298 {
1299 PAGESETUPDLG *pd = (PAGESETUPDLG *) m_pageSetupData ;
1300 if ( !pd )
1301 return;
1302
1303 // Pass the devmode data back to the wxPrintData structure where it really belongs.
1304 if (pd->hDevMode)
1305 {
1306 if (m_printData.GetNativeData())
1307 {
1308 // Make sure we don't leak memory
1309 GlobalFree((HGLOBAL) m_printData.GetNativeData());
1310 }
1311 m_printData.SetNativeData((void*) pd->hDevMode);
1312 pd->hDevMode = NULL;
1313 }
1314
1315 m_printData.ConvertFromNative();
1316
1317 // Pass the devnames data back to the wxPrintData structure where it really belongs.
1318 if (pd->hDevNames)
1319 {
1320 if (m_printData.GetNativeDataDevNames())
1321 {
1322 // Make sure we don't leak memory
1323 GlobalFree((HGLOBAL) m_printData.GetNativeDataDevNames());
1324 }
1325 m_printData.SetNativeDataDevNames((void*) pd->hDevNames);
1326 pd->hDevNames = NULL;
1327 }
1328
1329 m_printData.ConvertFromNative();
1330
1331 pd->Flags = PSD_MARGINS|PSD_MINMARGINS;
1332
1333 m_defaultMinMargins = ((pd->Flags & PSD_DEFAULTMINMARGINS) == PSD_DEFAULTMINMARGINS);
1334 m_enableMargins = ((pd->Flags & PSD_DISABLEMARGINS) != PSD_DISABLEMARGINS);
1335 m_enableOrientation = ((pd->Flags & PSD_DISABLEORIENTATION) != PSD_DISABLEORIENTATION);
1336 m_enablePaper = ((pd->Flags & PSD_DISABLEPAPER) != PSD_DISABLEPAPER);
1337 m_enablePrinter = ((pd->Flags & PSD_DISABLEPRINTER) != PSD_DISABLEPRINTER);
1338 m_getDefaultInfo = ((pd->Flags & PSD_RETURNDEFAULT) == PSD_RETURNDEFAULT);
1339 m_enableHelp = ((pd->Flags & PSD_SHOWHELP) == PSD_SHOWHELP);
1340
1341 // PAGESETUPDLG is in hundreds of a mm
1342 m_paperSize.x = pd->ptPaperSize.x / 100;
1343 m_paperSize.y = pd->ptPaperSize.y / 100;
1344
1345 m_minMarginTopLeft.x = pd->rtMinMargin.left / 100;
1346 m_minMarginTopLeft.y = pd->rtMinMargin.top / 100;
1347 m_minMarginBottomRight.x = pd->rtMinMargin.right / 100;
1348 m_minMarginBottomRight.y = pd->rtMinMargin.bottom / 100;
1349
1350 m_marginTopLeft.x = pd->rtMargin.left / 100 ;
1351 m_marginTopLeft.y = pd->rtMargin.top / 100 ;
1352 m_marginBottomRight.x = pd->rtMargin.right / 100 ;
1353 m_marginBottomRight.y = pd->rtMargin.bottom / 100 ;
1354 }
1355
1356 void wxPageSetupDialogData::SetOwnerWindow(wxWindow* win)
1357 {
1358 if ( m_pageSetupData == NULL )
1359 ConvertToNative();
1360
1361 if ( m_pageSetupData != NULL && win != NULL)
1362 {
1363 PAGESETUPDLG *pd = (PAGESETUPDLG *) m_pageSetupData ;
1364 pd->hwndOwner=(HWND) win->GetHWND();
1365 }
1366 }
1367 #endif // Win95
1368
1369 #ifdef __WXMAC__
1370 void wxPageSetupDialogData::ConvertToNative()
1371 {
1372 m_printData.ConvertToNative() ;
1373 // on mac the paper rect has a negative top left corner, because the page rect (printable area) is at 0,0
1374 #ifdef TARGET_CARBON
1375 #else
1376 (**m_printData.m_macPrintInfo).rPaper.left = int( ((double) m_minMarginTopLeft.x)*mm2pt ) ;
1377 (**m_printData.m_macPrintInfo).rPaper.top = int( ((double) m_minMarginTopLeft.y)*mm2pt ) ;
1378
1379 (**m_printData.m_macPrintInfo).rPaper.right = int( ((double) m_paperSize.x - m_minMarginTopLeft.x)*mm2pt ) ;
1380 (**m_printData.m_macPrintInfo).rPaper.bottom = int( ((double) m_paperSize.y - m_minMarginTopLeft.y)*mm2pt ) ;
1381
1382 (**m_printData.m_macPrintInfo).prInfo.rPage.left = 0 ;
1383 (**m_printData.m_macPrintInfo).prInfo.rPage.top = 0 ;
1384 (**m_printData.m_macPrintInfo).prInfo.rPage.right = int( ((double) m_paperSize.x - m_minMarginTopLeft.x - m_minMarginBottomRight.x)*mm2pt ) ;
1385 (**m_printData.m_macPrintInfo).prInfo.rPage.bottom = int( ((double) m_paperSize.y - m_minMarginTopLeft.y - m_minMarginBottomRight.y)*mm2pt ) ;
1386 #endif
1387 }
1388
1389 void wxPageSetupDialogData::ConvertFromNative()
1390 {
1391 m_printData.ConvertFromNative () ;
1392
1393 #ifdef TARGET_CARBON
1394 #else
1395 m_paperSize.x = ((double) (**m_printData.m_macPrintInfo).rPaper.right - (**m_printData.m_macPrintInfo).rPaper.left ) * pt2mm ;
1396 m_paperSize.y = ((double) (**m_printData.m_macPrintInfo).rPaper.bottom - (**m_printData.m_macPrintInfo).rPaper.top ) * pt2mm ;
1397
1398 m_minMarginTopLeft.x = ((double) -(**m_printData.m_macPrintInfo).rPaper.left ) * pt2mm ;
1399 m_minMarginTopLeft.y = ((double) -(**m_printData.m_macPrintInfo).rPaper.top ) * pt2mm ;
1400
1401 m_minMarginBottomRight.x = ((double) (**m_printData.m_macPrintInfo).rPaper.right - (**m_printData.m_macPrintInfo).prInfo.rPage.right ) * pt2mm ;
1402 m_minMarginBottomRight.y = ((double)(**m_printData.m_macPrintInfo).rPaper.bottom - (**m_printData.m_macPrintInfo).prInfo.rPage.bottom ) * pt2mm ;
1403 #endif
1404 // adjust minimal values
1405 //TODO add custom fields in dialog for margins
1406
1407 if ( m_marginTopLeft.x < m_minMarginTopLeft.x )
1408 m_marginTopLeft.x = m_minMarginTopLeft.x ;
1409
1410 if ( m_marginBottomRight.x < m_minMarginBottomRight.x )
1411 m_marginBottomRight.x = m_minMarginBottomRight.x ;
1412
1413 if ( m_marginTopLeft.y < m_minMarginTopLeft.y )
1414 m_marginTopLeft.y = m_minMarginTopLeft.y ;
1415
1416 if ( m_marginBottomRight.y < m_minMarginBottomRight.y )
1417 m_marginBottomRight.y = m_minMarginBottomRight.y ;
1418 }
1419 #endif
1420
1421
1422 // If a corresponding paper type is found in the paper database, will set the m_printData
1423 // paper size id member as well.
1424 void wxPageSetupDialogData::SetPaperSize(const wxSize& sz)
1425 {
1426 m_paperSize = sz;
1427
1428 CalculateIdFromPaperSize();
1429 }
1430
1431 // Sets the wxPrintData id, plus the paper width/height if found in the paper database.
1432 void wxPageSetupDialogData::SetPaperSize(wxPaperSize id)
1433 {
1434 m_printData.SetPaperId(id);
1435
1436 CalculatePaperSizeFromId();
1437 }
1438
1439 // Use paper size defined in this object to set the wxPrintData
1440 // paper id
1441 void wxPageSetupDialogData::CalculateIdFromPaperSize()
1442 {
1443 wxASSERT_MSG( (wxThePrintPaperDatabase != (wxPrintPaperDatabase*) NULL),
1444 wxT("wxThePrintPaperDatabase should not be NULL. Do not create global print dialog data objects.") );
1445
1446 wxSize sz = GetPaperSize();
1447
1448 wxPaperSize id = wxThePrintPaperDatabase->GetSize(wxSize(sz.x* 10, sz.y * 10));
1449 if (id != wxPAPER_NONE)
1450 {
1451 m_printData.SetPaperId(id);
1452 }
1453 }
1454
1455 // Use paper id in wxPrintData to set this object's paper size
1456 void wxPageSetupDialogData::CalculatePaperSizeFromId()
1457 {
1458 wxASSERT_MSG( (wxThePrintPaperDatabase != (wxPrintPaperDatabase*) NULL),
1459 wxT("wxThePrintPaperDatabase should not be NULL. Do not create global print dialog data objects.") );
1460
1461 wxSize sz = wxThePrintPaperDatabase->GetSize(m_printData.GetPaperId());
1462
1463 if (sz.x != 0)
1464 {
1465 // sz is in 10ths of a mm, so multiply by 10.
1466 m_paperSize.x = sz.x * 10;
1467 m_paperSize.y = sz.y * 10;
1468 }
1469 }
1470
1471 #endif // wxUSE_PRINTING_ARCHITECTURE