Changed wxStat, wxAccess and wxOpen to no longer
[wxWidgets.git] / src / generic / prntdlgg.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: prntdlgg.cpp
3 // Purpose: Generic print dialogs
4 // Author: Julian Smart
5 // Modified by:
6 // Created: 04/01/98
7 // RCS-ID: $Id$
8 // Copyright: (c) Julian Smart and Markus Holzem
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
11
12 // ============================================================================
13 // declarations
14 // ============================================================================
15
16 // ----------------------------------------------------------------------------
17 // headers
18 // ----------------------------------------------------------------------------
19
20 #ifdef __GNUG__
21 #pragma implementation "prntdlgg.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 #if wxUSE_PRINTING_ARCHITECTURE
32
33 #ifndef WX_PRECOMP
34 #include "wx/utils.h"
35 #include "wx/dc.h"
36 #include "wx/app.h"
37 #include "wx/frame.h"
38 #include "wx/stattext.h"
39 #include "wx/statbox.h"
40 #include "wx/button.h"
41 #include "wx/checkbox.h"
42 #include "wx/textctrl.h"
43 #include "wx/radiobox.h"
44 #include "wx/filedlg.h"
45 #include "wx/choice.h"
46 #include "wx/combobox.h"
47 #include "wx/intl.h"
48 #include "wx/sizer.h"
49 #endif
50
51 #if wxUSE_STATLINE
52 #include "wx/statline.h"
53 #endif
54
55 #include "wx/generic/prntdlgg.h"
56
57 #if wxUSE_POSTSCRIPT
58 #include "wx/generic/dcpsg.h"
59 #endif
60
61 #include "wx/printdlg.h"
62 #include "wx/paper.h"
63
64 // For print paper things
65 #include "wx/prntbase.h"
66
67 #include <stdlib.h>
68 #include <string.h>
69
70 // ----------------------------------------------------------------------------
71 // wxWin macros
72 // ----------------------------------------------------------------------------
73
74
75 #if wxUSE_POSTSCRIPT
76
77 IMPLEMENT_CLASS(wxGenericPrintDialog, wxDialog)
78 IMPLEMENT_CLASS(wxGenericPrintSetupDialog, wxDialog)
79
80 BEGIN_EVENT_TABLE(wxGenericPrintDialog, wxDialog)
81 EVT_BUTTON(wxID_OK, wxGenericPrintDialog::OnOK)
82 EVT_BUTTON(wxPRINTID_SETUP, wxGenericPrintDialog::OnSetup)
83 EVT_RADIOBOX(wxPRINTID_RANGE, wxGenericPrintDialog::OnRange)
84 END_EVENT_TABLE()
85
86 #endif // wxUSE_POSTSCRIPT
87
88 IMPLEMENT_CLASS(wxGenericPageSetupDialog, wxDialog)
89
90 BEGIN_EVENT_TABLE(wxGenericPageSetupDialog, wxDialog)
91 EVT_BUTTON(wxPRINTID_SETUP, wxGenericPageSetupDialog::OnPrinter)
92 END_EVENT_TABLE()
93
94 // ----------------------------------------------------------------------------
95 // global vars
96 // ----------------------------------------------------------------------------
97
98 extern wxPrintPaperDatabase *wxThePrintPaperDatabase;
99
100 #if wxUSE_POSTSCRIPT
101
102 // ============================================================================
103 // implementation
104 // ============================================================================
105
106 // ----------------------------------------------------------------------------
107 // Generic print dialog for non-Windows printing use.
108 // ----------------------------------------------------------------------------
109
110 wxGenericPrintDialog::wxGenericPrintDialog(wxWindow *parent,
111 wxPrintDialogData* data)
112 : wxDialog(parent, -1, _("Print"),
113 wxPoint(0, 0), wxSize(600, 600),
114 wxDEFAULT_DIALOG_STYLE |
115 wxDIALOG_MODAL |
116 wxTAB_TRAVERSAL)
117 {
118 if ( data )
119 m_printDialogData = *data;
120
121 Init(parent);
122 }
123
124 wxGenericPrintDialog::wxGenericPrintDialog(wxWindow *parent,
125 wxPrintData* data)
126 : wxDialog(parent, -1, _("Print"),
127 wxPoint(0, 0), wxSize(600, 600),
128 wxDEFAULT_DIALOG_STYLE |
129 wxDIALOG_MODAL |
130 wxTAB_TRAVERSAL)
131 {
132 if ( data )
133 m_printDialogData = *data;
134
135 Init(parent);
136 }
137
138 void wxGenericPrintDialog::Init(wxWindow * WXUNUSED(parent))
139 {
140 // wxDialog::Create(parent, -1, _("Print"), wxPoint(0, 0), wxSize(600, 600),
141 // wxDEFAULT_DIALOG_STYLE | wxDIALOG_MODAL | wxTAB_TRAVERSAL);
142
143 wxBoxSizer *mainsizer = new wxBoxSizer( wxVERTICAL );
144
145 // 1) top row
146
147 wxStaticBoxSizer *topsizer = new wxStaticBoxSizer(
148 new wxStaticBox( this, -1, _( "Printer options" ) ), wxHORIZONTAL );
149 m_printToFileCheckBox = new wxCheckBox( this, wxPRINTID_PRINTTOFILE, _("Print to File") );
150 topsizer->Add( m_printToFileCheckBox, 0, wxCENTER|wxALL, 5 );
151
152 topsizer->Add( 60,2,1 );
153
154 m_setupButton = new wxButton(this, wxPRINTID_SETUP, _("Setup...") );
155 topsizer->Add( m_setupButton, 0, wxCENTER|wxALL, 5 );
156
157 mainsizer->Add( topsizer, 0, wxLEFT|wxTOP|wxRIGHT, 10 );
158
159 // 2) middle row with radio box
160
161 wxString *choices = new wxString[2];
162 choices[0] = _("All");
163 choices[1] = _("Pages");
164
165 m_fromText = (wxTextCtrl*)NULL;
166 m_toText = (wxTextCtrl*)NULL;
167 m_rangeRadioBox = (wxRadioBox *)NULL;
168
169 if (m_printDialogData.GetFromPage() != 0)
170 {
171 m_rangeRadioBox = new wxRadioBox(this, wxPRINTID_RANGE, _("Print Range"),
172 wxDefaultPosition, wxDefaultSize,
173 2, choices,
174 1, wxRA_VERTICAL);
175 m_rangeRadioBox->SetSelection(1);
176
177 mainsizer->Add( m_rangeRadioBox, 0, wxLEFT|wxTOP|wxRIGHT, 10 );
178 }
179
180 // 3) bottom row
181
182 wxBoxSizer *bottomsizer = new wxBoxSizer( wxHORIZONTAL );
183
184 if (m_printDialogData.GetFromPage() != 0)
185 {
186 bottomsizer->Add( new wxStaticText(this, wxPRINTID_STATIC, _("From:") ), 0, wxCENTER|wxALL, 5 );
187 m_fromText = new wxTextCtrl(this, wxPRINTID_FROM, "", wxDefaultPosition, wxSize(40, -1));
188 bottomsizer->Add( m_fromText, 1, wxCENTER|wxRIGHT, 10 );
189
190 bottomsizer->Add( new wxStaticText(this, wxPRINTID_STATIC, _("To:") ), 0, wxCENTER|wxALL, 5);
191 m_toText = new wxTextCtrl(this, wxPRINTID_TO, "", wxDefaultPosition, wxSize(40, -1));
192 bottomsizer->Add( m_toText, 1, wxCENTER|wxRIGHT, 10 );
193 }
194
195 bottomsizer->Add( new wxStaticText(this, wxPRINTID_STATIC, _("Copies:") ), 0, wxCENTER|wxALL, 5 );
196 m_noCopiesText = new wxTextCtrl(this, wxPRINTID_COPIES, "", wxPoint(252, 130), wxSize(40, -1));
197 bottomsizer->Add( m_noCopiesText, 1, wxCENTER|wxRIGHT, 10 );
198
199 mainsizer->Add( bottomsizer, 0, wxTOP|wxLEFT|wxRIGHT, 12 );
200
201 #if wxUSE_STATLINE
202 // 4) static line
203 mainsizer->Add( new wxStaticLine( this, -1 ), 0, wxEXPAND | wxLEFT|wxRIGHT|wxTOP, 10 );
204 #endif
205
206 // 5) buttons
207
208 mainsizer->Add( CreateButtonSizer( wxOK|wxCANCEL), 0, wxCENTER|wxALL, 10 );
209
210 SetAutoLayout( TRUE );
211 SetSizer( mainsizer );
212
213 mainsizer->Fit( this );
214 Centre(wxBOTH);
215
216 // Calls wxWindow::OnInitDialog and then wxGenericPrintDialog::TransferDataToWindow
217 InitDialog();
218 delete[] choices;
219 }
220
221 int wxGenericPrintDialog::ShowModal()
222 {
223 if ( m_printDialogData.GetSetupDialog() )
224 {
225 // Make sure wxPrintData object reflects the settings now, in case the setup dialog
226 // changes it. In fact there aren't any common settings at
227 // present, but there might be in future.
228 // TransferDataFromWindow();
229
230 wxGenericPrintSetupDialog *genericPrintSetupDialog =
231 new wxGenericPrintSetupDialog(this, & m_printDialogData.GetPrintData());
232 int ret = genericPrintSetupDialog->ShowModal();
233 if ( ret != wxID_CANCEL )
234 {
235 // Transfer settings to the global object (for compatibility) and to
236 // the print dialog's print data.
237 *wxThePrintSetupData = genericPrintSetupDialog->GetPrintData();
238 m_printDialogData.GetPrintData() = genericPrintSetupDialog->GetPrintData();
239 }
240 genericPrintSetupDialog->Destroy();
241
242 // Restore the wxPrintData settings again (uncomment if any settings become common
243 // to both dialogs)
244 // TransferDataToWindow();
245
246 return ret;
247 }
248 else
249 {
250 return wxDialog::ShowModal();
251 }
252 }
253
254 wxGenericPrintDialog::~wxGenericPrintDialog()
255 {
256 }
257
258 void wxGenericPrintDialog::OnOK(wxCommandEvent& WXUNUSED(event))
259 {
260 TransferDataFromWindow();
261
262 // There are some interactions between the global setup data
263 // and the standard print dialog. The global printing 'mode'
264 // is determined by whether the user checks Print to file
265 // or not.
266 if (m_printDialogData.GetPrintToFile())
267 {
268 m_printDialogData.GetPrintData().SetPrintMode(wxPRINT_MODE_FILE);
269 wxThePrintSetupData->SetPrinterMode(wxPRINT_MODE_FILE);
270
271 wxString f = wxFileSelector(_("PostScript file"),
272 wxPathOnly(wxThePrintSetupData->GetPrinterFile()),
273 wxFileNameFromPath(wxThePrintSetupData->GetPrinterFile()),
274 wxT("ps"), wxT("*.ps"), 0, this);
275 if ( f.IsEmpty() )
276 return;
277
278 m_printDialogData.GetPrintData().SetFilename(f);
279 wxThePrintSetupData->SetPrinterFile(f);
280 }
281 else
282 {
283 m_printDialogData.GetPrintData().SetPrintMode(wxPRINT_MODE_PRINTER);
284 wxThePrintSetupData->SetPrinterMode(wxPRINT_MODE_PRINTER);
285 }
286
287 EndModal(wxID_OK);
288 }
289
290 void wxGenericPrintDialog::OnRange(wxCommandEvent& event)
291 {
292 if (!m_fromText) return;
293
294 if (event.GetInt() == 0)
295 {
296 m_fromText->Enable(FALSE);
297 m_toText->Enable(FALSE);
298 }
299 else if (event.GetInt() == 1)
300 {
301 m_fromText->Enable(TRUE);
302 m_toText->Enable(TRUE);
303 }
304 }
305
306 void wxGenericPrintDialog::OnSetup(wxCommandEvent& WXUNUSED(event))
307 {
308 *wxThePrintSetupData = m_printDialogData.GetPrintData();
309 wxGenericPrintSetupDialog *genericPrintSetupDialog =
310 new wxGenericPrintSetupDialog(this, wxThePrintSetupData);
311 int ret = genericPrintSetupDialog->ShowModal();
312 if ( ret != wxID_CANCEL )
313 {
314 *wxThePrintSetupData = genericPrintSetupDialog->GetPrintData();
315 m_printDialogData = genericPrintSetupDialog->GetPrintData();
316 }
317
318 genericPrintSetupDialog->Close(TRUE);
319 }
320
321 bool wxGenericPrintDialog::TransferDataToWindow()
322 {
323 if(m_printDialogData.GetFromPage() != 0)
324 {
325 if(m_fromText)
326 {
327 if (m_printDialogData.GetEnablePageNumbers())
328 {
329 m_fromText->Enable(TRUE);
330 m_toText->Enable(TRUE);
331 m_fromText->SetValue(
332 wxString::Format(_T("%d"), m_printDialogData.GetFromPage()));
333 m_toText->SetValue(
334 wxString::Format(_T("%d"), m_printDialogData.GetToPage()));
335 if(m_rangeRadioBox)
336 if (m_printDialogData.GetAllPages())
337 m_rangeRadioBox->SetSelection(0);
338 else
339 m_rangeRadioBox->SetSelection(1);
340 }
341 else
342 {
343 m_fromText->Enable(FALSE);
344 m_toText->Enable(FALSE);
345 if(m_rangeRadioBox)
346 {
347 m_rangeRadioBox->SetSelection(0);
348 m_rangeRadioBox->wxRadioBox::Enable(1, FALSE);
349 }
350 }
351 }
352 }
353 m_noCopiesText->SetValue(
354 wxString::Format(_T("%d"), m_printDialogData.GetNoCopies()));
355
356 m_printToFileCheckBox->SetValue(m_printDialogData.GetPrintToFile());
357 m_printToFileCheckBox->Enable(m_printDialogData.GetEnablePrintToFile());
358 return TRUE;
359 }
360
361 bool wxGenericPrintDialog::TransferDataFromWindow()
362 {
363 long res = 0;
364 if(m_printDialogData.GetFromPage() != -1)
365 {
366 if (m_printDialogData.GetEnablePageNumbers())
367 {
368 if(m_fromText)
369 {
370 wxString value = m_fromText->GetValue();
371 if (value.ToLong( &res ))
372 m_printDialogData.SetFromPage( res );
373 }
374 if(m_toText)
375 {
376 wxString value = m_toText->GetValue();
377 if (value.ToLong( &res ))
378 m_printDialogData.SetToPage( res );
379 }
380 }
381 if(m_rangeRadioBox)
382 {
383 if (m_rangeRadioBox->GetSelection() == 0)
384 m_printDialogData.SetAllPages(TRUE);
385 else
386 m_printDialogData.SetAllPages(FALSE);
387 }
388 }
389 else
390 { // continuous printing
391 m_printDialogData.SetFromPage(1);
392 m_printDialogData.SetToPage(32000);
393 }
394
395 wxString value = m_noCopiesText->GetValue();
396 if (value.ToLong( &res ))
397 m_printDialogData.SetNoCopies( res );
398
399 m_printDialogData.SetPrintToFile(m_printToFileCheckBox->GetValue());
400
401 return TRUE;
402 }
403
404 /*
405 TODO: collate and noCopies should be duplicated across dialog data and print data objects
406 (slightly different semantics on Windows but let's ignore this for a bit).
407 */
408
409 wxDC *wxGenericPrintDialog::GetPrintDC()
410 {
411 // return new wxPostScriptDC(wxThePrintSetupData->GetPrinterFile(), FALSE, (wxWindow *) NULL);
412 return new wxPostScriptDC(GetPrintDialogData().GetPrintData());
413 }
414
415 // ----------------------------------------------------------------------------
416 // Generic print setup dialog
417 // ----------------------------------------------------------------------------
418
419 wxGenericPrintSetupDialog::wxGenericPrintSetupDialog(wxWindow *parent, wxPrintData* data):
420 wxDialog(parent, -1, _("Print Setup"), wxPoint(0, 0), wxSize(600, 600), wxDEFAULT_DIALOG_STYLE|wxDIALOG_MODAL|wxTAB_TRAVERSAL)
421 {
422 Init(data);
423 }
424
425 // Convert wxPrintSetupData to standard wxPrintData object
426 wxGenericPrintSetupDialog::wxGenericPrintSetupDialog(wxWindow *parent, wxPrintSetupData* data):
427 wxDialog(parent, -1, _("Print Setup"), wxPoint(0, 0), wxSize(600, 600), wxDEFAULT_DIALOG_STYLE|wxDIALOG_MODAL|wxTAB_TRAVERSAL)
428 {
429 wxPrintData printData;
430 if (data)
431 printData = * data;
432 else
433 printData = * wxThePrintSetupData;
434
435 Init(& printData);
436 }
437
438 void wxGenericPrintSetupDialog::Init(wxPrintData* data)
439 {
440 if ( data )
441 m_printData = *data;
442
443 int staticBoxWidth = 300;
444
445 (void) new wxStaticBox(this, wxPRINTID_STATIC, _("Paper size"), wxPoint(10, 10), wxSize(staticBoxWidth, 60) );
446
447 int xPos = 20;
448 int yPos = 30;
449 m_paperTypeChoice = CreatePaperTypeChoice(&xPos, &yPos);
450
451 wxString *choices = new wxString[2];
452 choices[0] = _("Portrait");
453 choices[1] = _("Landscape");
454
455 m_orientationRadioBox = new wxRadioBox(this, wxPRINTID_ORIENTATION, _("Orientation"),
456 wxPoint(10, 80), wxSize(-1, -1), 2, choices, 1, wxRA_VERTICAL );
457 m_orientationRadioBox->SetSelection(0);
458
459 (void) new wxStaticBox(this, wxPRINTID_STATIC, _("Options"), wxPoint(10, 130), wxSize(staticBoxWidth, 50) );
460
461 int colourYPos = 145;
462
463 #ifdef __WXMOTIF__
464 colourYPos = 150;
465 #endif
466
467 m_colourCheckBox = new wxCheckBox(this, wxPRINTID_PRINTCOLOUR, _("Print in colour"), wxPoint(15, colourYPos));
468
469 (void) new wxStaticBox(this, wxPRINTID_STATIC, _("Print spooling"), wxPoint(330, 10), wxSize(200,170) );
470
471 (void) new wxStaticText(this, wxPRINTID_STATIC, _("Printer command:"), wxPoint(340, 30));
472
473 m_printerCommandText = new wxTextCtrl(this, wxPRINTID_COMMAND, "", wxPoint(360, 55), wxSize(150, -1));
474
475 (void) new wxStaticText(this, wxPRINTID_STATIC, _("Printer options:"), wxPoint(340, 110));
476
477 m_printerOptionsText = new wxTextCtrl(this, wxPRINTID_OPTIONS, "", wxPoint(360, 135), wxSize(150, -1));
478
479 wxButton *okButton = new wxButton(this, wxID_OK, _("OK"), wxPoint(130, 200), wxSize(80, -1));
480 (void) new wxButton(this, wxID_CANCEL, _("Cancel"), wxPoint(320, 200), wxSize(80, -1));
481
482 okButton->SetDefault();
483 okButton->SetFocus();
484
485 Fit();
486 Centre(wxBOTH);
487
488 InitDialog();
489 delete[] choices;
490 }
491
492 wxGenericPrintSetupDialog::~wxGenericPrintSetupDialog()
493 {
494 }
495
496 bool wxGenericPrintSetupDialog::TransferDataToWindow()
497 {
498 if (m_printerCommandText && m_printData.GetPrinterCommand())
499 m_printerCommandText->SetValue(m_printData.GetPrinterCommand());
500 if (m_printerOptionsText && m_printData.GetPrinterOptions())
501 m_printerOptionsText->SetValue(m_printData.GetPrinterOptions());
502 if (m_colourCheckBox)
503 m_colourCheckBox->SetValue(m_printData.GetColour());
504
505 if (m_orientationRadioBox)
506 {
507 if (m_printData.GetOrientation() == wxPORTRAIT)
508 m_orientationRadioBox->SetSelection(0);
509 else
510 m_orientationRadioBox->SetSelection(1);
511 }
512 return TRUE;
513 }
514
515 bool wxGenericPrintSetupDialog::TransferDataFromWindow()
516 {
517 if (m_printerCommandText)
518 m_printData.SetPrinterCommand(m_printerCommandText->GetValue());
519 if (m_printerOptionsText)
520 m_printData.SetPrinterOptions(m_printerOptionsText->GetValue());
521 if (m_colourCheckBox)
522 m_printData.SetColour(m_colourCheckBox->GetValue());
523 if (m_orientationRadioBox)
524 {
525 int sel = m_orientationRadioBox->GetSelection();
526 if (sel == 0)
527 m_printData.SetOrientation(wxPORTRAIT);
528 else
529 m_printData.SetOrientation(wxLANDSCAPE);
530 }
531 if (m_paperTypeChoice)
532 {
533 wxString val(m_paperTypeChoice->GetStringSelection());
534 if (!val.IsNull() && val != "")
535 m_printData.SetPaperId(wxThePrintPaperDatabase->ConvertNameToId(val));
536 }
537
538 // This is for backward compatibility only
539 *wxThePrintSetupData = GetPrintData();
540 return TRUE;
541 }
542
543 wxComboBox *wxGenericPrintSetupDialog::CreatePaperTypeChoice(int *x, int *y)
544 {
545 /* Should not be necessary
546 if (!wxThePrintPaperDatabase)
547 {
548 wxThePrintPaperDatabase = new wxPrintPaperDatabase;
549 wxThePrintPaperDatabase->CreateDatabase();
550 }
551 */
552 int n = wxThePrintPaperDatabase->Number();
553 wxString *choices = new wxString [n];
554 int sel = 0;
555 int i;
556 for (i = 0; i < n; i++)
557 {
558 wxPrintPaperType *paper = (wxPrintPaperType *)wxThePrintPaperDatabase->Nth(i)->Data();
559 choices[i] = paper->GetName();
560 if (m_printData.GetPaperId() == paper->GetId())
561 sel = i;
562 }
563
564 int width = 250;
565
566 wxComboBox *choice = new wxComboBox(this, wxPRINTID_PAPERSIZE,
567 _("Paper Size"),
568 wxPoint(*x, *y), wxSize(width, -1), n,
569 choices);
570
571 // SetFont(thisFont);
572
573 delete[] choices;
574
575 choice->SetSelection(sel);
576 return choice;
577 }
578 #endif // wxUSE_POSTSCRIPT
579
580 // ----------------------------------------------------------------------------
581 // Generic page setup dialog
582 // ----------------------------------------------------------------------------
583
584 void wxGenericPageSetupDialog::OnPrinter(wxCommandEvent& WXUNUSED(event))
585 {
586 // We no longer query GetPrintMode, so we can eliminate the need
587 // to call SetPrintMode.
588 // This has the limitation that we can't explicitly call the PostScript
589 // print setup dialog from the generic Page Setup dialog under Windows,
590 // but since this choice would only happen when trying to do PostScript
591 // printing under Windows (and only in 16-bit Windows which
592 // doesn't have a Windows-specific page setup dialog) it's worth it.
593
594 // First save the current settings, so the wxPrintData object is up to date.
595 TransferDataFromWindow();
596
597 // Transfer the current print settings from this dialog to the page setup dialog.
598 wxPrintDialogData data;
599 data = GetPageSetupData().GetPrintData();
600 data.SetSetupDialog(TRUE);
601 wxPrintDialog *printDialog = new wxPrintDialog(this, & data);
602 printDialog->ShowModal();
603
604 // Transfer the page setup print settings from the page dialog to this dialog again, in case
605 // the page setup dialog changed something.
606 GetPageSetupData().GetPrintData() = printDialog->GetPrintDialogData().GetPrintData();
607 GetPageSetupData().CalculatePaperSizeFromId(); // Make sure page size reflects the id in wxPrintData
608
609 printDialog->Destroy();
610
611 // Now update the dialog in case the page setup dialog changed some of our settings.
612 TransferDataToWindow();
613 }
614
615 wxGenericPageSetupDialog::wxGenericPageSetupDialog(wxWindow *parent, wxPageSetupData* data):
616 wxDialog(parent, -1, _("Page Setup"), wxPoint(0, 0), wxSize(600, 600), wxDIALOG_MODAL|wxDEFAULT_DIALOG_STYLE|wxTAB_TRAVERSAL)
617 {
618 if (data)
619 m_pageData = *data;
620
621 int textWidth = 80;
622
623 wxBoxSizer *mainsizer = new wxBoxSizer( wxVERTICAL );
624
625 // 1) top
626 wxStaticBoxSizer *topsizer = new wxStaticBoxSizer(
627 new wxStaticBox(this,wxPRINTID_STATIC, _("Paper size")), wxHORIZONTAL );
628
629 int n = wxThePrintPaperDatabase->Number();
630 wxString *choices = new wxString [n];
631 int i;
632 for (i = 0; i < n; i++)
633 {
634 wxPrintPaperType *paper = (wxPrintPaperType *)wxThePrintPaperDatabase->Nth(i)->Data();
635 choices[i] = paper->GetName();
636 }
637
638 m_paperTypeChoice = new wxComboBox(this, wxPRINTID_PAPERSIZE, _("Paper Size"),
639 wxDefaultPosition, wxSize(300, -1), n, choices);
640 topsizer->Add( m_paperTypeChoice, 1, wxEXPAND|wxALL, 5 );
641 // m_paperTypeChoice->SetSelection(sel);
642
643 mainsizer->Add( topsizer, 0, wxTOP|wxLEFT|wxRIGHT | wxEXPAND, 10 );
644
645 // 2) middle sizer with radio box
646
647 wxString *choices2 = new wxString[2];
648 choices2[0] = _("Portrait");
649 choices2[1] = _("Landscape");
650 m_orientationRadioBox = new wxRadioBox(this, wxPRINTID_ORIENTATION, _("Orientation"),
651 wxDefaultPosition, wxDefaultSize, 2, choices2, 2);
652 m_orientationRadioBox->SetSelection(0);
653
654 mainsizer->Add( m_orientationRadioBox, 0, wxTOP|wxLEFT|wxRIGHT, 10 );
655
656 // 3) margins
657
658 wxBoxSizer *table = new wxBoxSizer( wxHORIZONTAL );
659
660 wxBoxSizer *column1 = new wxBoxSizer( wxVERTICAL );
661 column1->Add( new wxStaticText(this, wxPRINTID_STATIC, _("Left margin (mm):")),1,wxALL|wxALIGN_RIGHT,5 );
662 column1->Add( new wxStaticText(this, wxPRINTID_STATIC, _("Top margin (mm):")),1,wxALL|wxALIGN_RIGHT,5 );
663 table->Add( column1, 0, wxALL | wxEXPAND, 5 );
664
665 wxBoxSizer *column2 = new wxBoxSizer( wxVERTICAL );
666 m_marginLeftText = new wxTextCtrl(this, wxPRINTID_LEFTMARGIN, "", wxDefaultPosition, wxSize(textWidth, -1));
667 m_marginTopText = new wxTextCtrl(this, wxPRINTID_TOPMARGIN, "", wxDefaultPosition, wxSize(textWidth, -1));
668 column2->Add( m_marginLeftText, 1, wxALL, 5 );
669 column2->Add( m_marginTopText, 1, wxALL, 5 );
670 table->Add( column2, 0, wxRIGHT|wxTOP|wxBOTTOM | wxEXPAND, 5 );
671
672 wxBoxSizer *column3 = new wxBoxSizer( wxVERTICAL );
673 column3->Add( new wxStaticText(this, wxPRINTID_STATIC, _("Right margin (mm):")),1,wxALL|wxALIGN_RIGHT,5 );
674 column3->Add( new wxStaticText(this, wxPRINTID_STATIC, _("Bottom margin (mm):")),1,wxALL|wxALIGN_RIGHT,5 );
675 table->Add( column3, 0, wxALL | wxEXPAND, 5 );
676
677 wxBoxSizer *column4 = new wxBoxSizer( wxVERTICAL );
678 m_marginRightText = new wxTextCtrl(this, wxPRINTID_RIGHTMARGIN, "", wxDefaultPosition, wxSize(textWidth, -1));
679 m_marginBottomText = new wxTextCtrl(this, wxPRINTID_BOTTOMMARGIN, "", wxDefaultPosition, wxSize(textWidth, -1));
680 column4->Add( m_marginRightText, 1, wxALL, 5 );
681 column4->Add( m_marginBottomText, 1, wxALL, 5 );
682 table->Add( column4, 0, wxRIGHT|wxTOP|wxBOTTOM | wxEXPAND, 5 );
683
684 mainsizer->Add( table, 0 );
685
686 #if wxUSE_STATLINE
687 // 5) static line
688 mainsizer->Add( new wxStaticLine( this, -1 ), 0, wxEXPAND | wxLEFT|wxRIGHT|wxTOP, 10 );
689 #endif
690
691 // 6) buttons
692
693 wxSizer* buttonsizer = CreateButtonSizer( wxOK|wxCANCEL);
694 m_printerButton = new wxButton(this, wxPRINTID_SETUP, _("Printer...") );
695 buttonsizer->Add( m_printerButton, 0, wxLEFT|wxRIGHT, 10 );
696 if ( !m_pageData.GetEnablePrinter() )
697 m_printerButton->Enable(FALSE);
698 // if (m_printData.GetEnableHelp())
699 // wxButton *helpButton = new wxButton(this, (wxFunction)wxGenericPageSetupHelpProc, _("Help"), -1, -1, buttonWidth, buttonHeight);
700 mainsizer->Add( buttonsizer, 0, wxCENTER|wxALL, 10 );
701
702
703 SetAutoLayout( TRUE );
704 SetSizer( mainsizer );
705
706 mainsizer->Fit( this );
707 Centre(wxBOTH);
708
709 InitDialog();
710
711 delete[] choices;
712 delete [] choices2;
713 }
714
715 wxGenericPageSetupDialog::~wxGenericPageSetupDialog()
716 {
717 }
718
719 bool wxGenericPageSetupDialog::TransferDataToWindow()
720 {
721 if (m_marginLeftText)
722 m_marginLeftText->SetValue(IntToString((int) m_pageData.GetMarginTopLeft().x));
723 if (m_marginTopText)
724 m_marginTopText->SetValue(IntToString((int) m_pageData.GetMarginTopLeft().y));
725 if (m_marginRightText)
726 m_marginRightText->SetValue(IntToString((int) m_pageData.GetMarginBottomRight().x));
727 if (m_marginBottomText)
728 m_marginBottomText->SetValue(IntToString((int) m_pageData.GetMarginBottomRight().y));
729
730 if (m_orientationRadioBox)
731 {
732 if (m_pageData.GetPrintData().GetOrientation() == wxPORTRAIT)
733 m_orientationRadioBox->SetSelection(0);
734 else
735 m_orientationRadioBox->SetSelection(1);
736 }
737
738 // Find the paper type from either the current paper size in the wxPageSetupDialogData, or
739 // failing that, the id in the wxPrintData object.
740
741 wxPrintPaperType* type = wxThePrintPaperDatabase->FindPaperType(
742 wxSize(m_pageData.GetPaperSize().x * 10, m_pageData.GetPaperSize().y * 10));
743
744 if (!type && m_pageData.GetPrintData().GetPaperId() != wxPAPER_NONE)
745 type = wxThePrintPaperDatabase->FindPaperType(m_pageData.GetPrintData().GetPaperId());
746
747 if (type)
748 {
749 m_paperTypeChoice->SetStringSelection(type->GetName());
750 }
751
752 return TRUE;
753 }
754
755 bool wxGenericPageSetupDialog::TransferDataFromWindow()
756 {
757 if (m_marginLeftText && m_marginTopText)
758 m_pageData.SetMarginTopLeft(wxPoint(wxAtoi((const wxChar *)m_marginLeftText->GetValue()),wxAtoi((const wxChar *)m_marginTopText->GetValue())));
759 if (m_marginRightText && m_marginBottomText)
760 m_pageData.SetMarginBottomRight(wxPoint(wxAtoi((const wxChar *)m_marginRightText->GetValue()),wxAtoi((const wxChar *)m_marginBottomText->GetValue())));
761
762 if (m_orientationRadioBox)
763 {
764 int sel = m_orientationRadioBox->GetSelection();
765 if (sel == 0)
766 {
767 #if wxUSE_POSTSCRIPT
768 wxThePrintSetupData->SetPrinterOrientation(wxPORTRAIT);
769 #endif
770 m_pageData.GetPrintData().SetOrientation(wxPORTRAIT);
771 }
772 else
773 {
774 #if wxUSE_POSTSCRIPT
775 wxThePrintSetupData->SetPrinterOrientation(wxLANDSCAPE);
776 #endif
777 m_pageData.GetPrintData().SetOrientation(wxLANDSCAPE);
778 }
779 }
780 if (m_paperTypeChoice)
781 {
782 wxString val(m_paperTypeChoice->GetStringSelection());
783 if (!val.IsNull() && val != "")
784 {
785 wxPrintPaperType* paper = wxThePrintPaperDatabase->FindPaperType(val);
786 if ( paper )
787 {
788 m_pageData.SetPaperSize(wxSize(paper->GetWidth()/10, paper->GetHeight()/10));
789 m_pageData.GetPrintData().SetPaperId(paper->GetId());
790 }
791 }
792 }
793
794 return TRUE;
795 }
796
797 wxComboBox *wxGenericPageSetupDialog::CreatePaperTypeChoice(int *x, int *y)
798 {
799 /*
800 if (!wxThePrintPaperDatabase)
801 {
802 wxThePrintPaperDatabase = new wxPrintPaperDatabase;
803 wxThePrintPaperDatabase->CreateDatabase();
804 }
805 */
806
807 int n = wxThePrintPaperDatabase->Number();
808 wxString *choices = new wxString [n];
809 int i;
810 for (i = 0; i < n; i++)
811 {
812 wxPrintPaperType *paper = (wxPrintPaperType *)wxThePrintPaperDatabase->Nth(i)->Data();
813 choices[i] = paper->GetName();
814 }
815
816 (void) new wxStaticText(this, wxPRINTID_STATIC, _("Paper size"), wxPoint(*x, *y));
817 *y += 25;
818
819 wxComboBox *choice = new wxComboBox(this, wxPRINTID_PAPERSIZE,
820 _("Paper Size"),
821 wxPoint(*x, *y), wxSize(300, -1), n,
822 choices);
823 *y += 35;
824 delete[] choices;
825
826 // choice->SetSelection(sel);
827 return choice;
828 }
829
830 #endif