1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Generic print dialogs
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
21 #pragma implementation "prntdlgg.h"
24 // For compilers that support precompilation, includes "wx.h".
25 #include "wx/wxprec.h"
31 #if wxUSE_PRINTING_ARCHITECTURE && (!defined(__WXMSW__) || wxUSE_POSTSCRIPT_ARCHITECTURE_IN_MSW)
36 #include "wx/stattext.h"
37 #include "wx/statbox.h"
38 #include "wx/button.h"
39 #include "wx/checkbox.h"
40 #include "wx/textctrl.h"
41 #include "wx/radiobox.h"
42 #include "wx/filedlg.h"
43 #include "wx/combobox.h"
46 #include "wx/cmndata.h"
50 #include "wx/statline.h"
53 #include "wx/generic/prntdlgg.h"
56 #include "wx/generic/dcpsg.h"
59 #include "wx/prntbase.h"
60 #include "wx/printdlg.h"
62 #include "wx/filename.h"
64 // For print paper things
65 #include "wx/prntbase.h"
70 // ----------------------------------------------------------------------------
72 // ----------------------------------------------------------------------------
74 extern wxPrintPaperDatabase
*wxThePrintPaperDatabase
;
78 //----------------------------------------------------------------------------
79 // wxPostScriptNativeData
80 //----------------------------------------------------------------------------
82 IMPLEMENT_CLASS(wxPostScriptPrintNativeData
, wxPrintNativeDataBase
)
84 wxPostScriptPrintNativeData::wxPostScriptPrintNativeData()
86 m_previewCommand
= wxT("");
88 m_printerCommand
= wxT("print");
89 m_printerOptions
= wxT("/nonotify/queue=psqueue");
90 m_afmPath
= wxT("sys$ps_font_metrics:");
94 m_printerCommand
= wxT("print");
95 m_printerOptions
= wxT("");
96 m_afmPath
= wxT("c:\\windows\\system\\");
99 #if !defined(__VMS__) && !defined(__WXMSW__)
100 m_printerCommand
= wxT("lpr");
101 m_printerOptions
= wxT("");
105 m_printerScaleX
= 1.0;
106 m_printerScaleY
= 1.0;
107 m_printerTranslateX
= 0;
108 m_printerTranslateY
= 0;
109 m_printMode
= wxPRINT_MODE_FILE
;
112 wxPostScriptPrintNativeData::~wxPostScriptPrintNativeData()
116 bool wxPostScriptPrintNativeData::ConvertTo( wxPrintData
&data
)
121 bool wxPostScriptPrintNativeData::ConvertFrom( const wxPrintData
&data
)
126 // ----------------------------------------------------------------------------
127 // Generic print dialog for non-Windows printing use.
128 // ----------------------------------------------------------------------------
130 IMPLEMENT_CLASS(wxGenericPrintDialog
, wxPrintDialogBase
)
132 BEGIN_EVENT_TABLE(wxGenericPrintDialog
, wxPrintDialogBase
)
133 EVT_BUTTON(wxID_OK
, wxGenericPrintDialog::OnOK
)
134 EVT_BUTTON(wxPRINTID_SETUP
, wxGenericPrintDialog::OnSetup
)
135 EVT_RADIOBOX(wxPRINTID_RANGE
, wxGenericPrintDialog::OnRange
)
138 wxGenericPrintDialog::wxGenericPrintDialog(wxWindow
*parent
,
139 wxPrintDialogData
* data
)
140 : wxPrintDialogBase(parent
, wxID_ANY
, _("Print"),
141 wxPoint(0, 0), wxSize(600, 600),
142 wxDEFAULT_DIALOG_STYLE
|
146 m_printDialogData
= *data
;
151 wxGenericPrintDialog::wxGenericPrintDialog(wxWindow
*parent
,
153 : wxPrintDialogBase(parent
, wxID_ANY
, _("Print"),
154 wxPoint(0, 0), wxSize(600, 600),
155 wxDEFAULT_DIALOG_STYLE
|
159 m_printDialogData
= *data
;
164 void wxGenericPrintDialog::Init(wxWindow
* WXUNUSED(parent
))
166 // wxDialog::Create(parent, wxID_ANY, _("Print"), wxPoint(0, 0), wxSize(600, 600),
167 // wxDEFAULT_DIALOG_STYLE | wxTAB_TRAVERSAL);
169 wxBoxSizer
*mainsizer
= new wxBoxSizer( wxVERTICAL
);
173 wxStaticBoxSizer
*topsizer
= new wxStaticBoxSizer(
174 new wxStaticBox( this, wxID_ANY
, _( "Printer options" ) ), wxHORIZONTAL
);
175 m_printToFileCheckBox
= new wxCheckBox( this, wxPRINTID_PRINTTOFILE
, _("Print to File") );
176 topsizer
->Add( m_printToFileCheckBox
, 0, wxCENTER
|wxALL
, 5 );
178 topsizer
->Add( 60,2,1 );
180 m_setupButton
= new wxButton(this, wxPRINTID_SETUP
, _("Setup...") );
181 topsizer
->Add( m_setupButton
, 0, wxCENTER
|wxALL
, 5 );
183 mainsizer
->Add( topsizer
, 0, wxLEFT
|wxTOP
|wxRIGHT
, 10 );
185 // 2) middle row with radio box
187 wxString
*choices
= new wxString
[2];
188 choices
[0] = _("All");
189 choices
[1] = _("Pages");
191 m_fromText
= (wxTextCtrl
*)NULL
;
192 m_toText
= (wxTextCtrl
*)NULL
;
193 m_rangeRadioBox
= (wxRadioBox
*)NULL
;
195 if (m_printDialogData
.GetFromPage() != 0)
197 m_rangeRadioBox
= new wxRadioBox(this, wxPRINTID_RANGE
, _("Print Range"),
198 wxDefaultPosition
, wxDefaultSize
,
201 m_rangeRadioBox
->SetSelection(1);
203 mainsizer
->Add( m_rangeRadioBox
, 0, wxLEFT
|wxTOP
|wxRIGHT
, 10 );
208 wxBoxSizer
*bottomsizer
= new wxBoxSizer( wxHORIZONTAL
);
210 if (m_printDialogData
.GetFromPage() != 0)
212 bottomsizer
->Add( new wxStaticText(this, wxPRINTID_STATIC
, _("From:") ), 0, wxCENTER
|wxALL
, 5 );
213 m_fromText
= new wxTextCtrl(this, wxPRINTID_FROM
, wxEmptyString
, wxDefaultPosition
, wxSize(40, wxDefaultCoord
));
214 bottomsizer
->Add( m_fromText
, 1, wxCENTER
|wxRIGHT
, 10 );
216 bottomsizer
->Add( new wxStaticText(this, wxPRINTID_STATIC
, _("To:") ), 0, wxCENTER
|wxALL
, 5);
217 m_toText
= new wxTextCtrl(this, wxPRINTID_TO
, wxEmptyString
, wxDefaultPosition
, wxSize(40, wxDefaultCoord
));
218 bottomsizer
->Add( m_toText
, 1, wxCENTER
|wxRIGHT
, 10 );
221 bottomsizer
->Add( new wxStaticText(this, wxPRINTID_STATIC
, _("Copies:") ), 0, wxCENTER
|wxALL
, 5 );
222 m_noCopiesText
= new wxTextCtrl(this, wxPRINTID_COPIES
, wxEmptyString
, wxPoint(252, 130), wxSize(40, wxDefaultCoord
));
223 bottomsizer
->Add( m_noCopiesText
, 1, wxCENTER
|wxRIGHT
, 10 );
225 mainsizer
->Add( bottomsizer
, 0, wxTOP
|wxLEFT
|wxRIGHT
, 12 );
229 mainsizer
->Add( new wxStaticLine( this, wxID_ANY
), 0, wxEXPAND
| wxLEFT
|wxRIGHT
|wxTOP
, 10 );
234 mainsizer
->Add( CreateButtonSizer( wxOK
|wxCANCEL
), 0, wxCENTER
|wxALL
, 10 );
236 SetAutoLayout( true );
237 SetSizer( mainsizer
);
239 mainsizer
->Fit( this );
242 // Calls wxWindow::OnInitDialog and then wxGenericPrintDialog::TransferDataToWindow
247 int wxGenericPrintDialog::ShowModal()
249 if ( m_printDialogData
.GetSetupDialog() )
251 // Make sure wxPrintData object reflects the settings now, in case the setup dialog
252 // changes it. In fact there aren't any common settings at
253 // present, but there might be in future.
254 // TransferDataFromWindow();
256 wxGenericPrintSetupDialog
*genericPrintSetupDialog
=
257 new wxGenericPrintSetupDialog(this, & m_printDialogData
.GetPrintData());
258 int ret
= genericPrintSetupDialog
->ShowModal();
259 if ( ret
!= wxID_CANCEL
)
261 // Transfer settings to the print dialog's print data.
262 m_printDialogData
.GetPrintData() = genericPrintSetupDialog
->GetPrintData();
264 // genericPrintSetupDialog->Destroy();
266 // Restore the wxPrintData settings again (uncomment if any settings become common
268 // TransferDataToWindow();
274 return wxDialog::ShowModal();
278 wxGenericPrintDialog::~wxGenericPrintDialog()
282 void wxGenericPrintDialog::OnOK(wxCommandEvent
& WXUNUSED(event
))
284 TransferDataFromWindow();
286 // An empty 'to' field signals printing just the
288 if (m_printDialogData
.GetToPage() < 1)
289 m_printDialogData
.SetToPage(m_printDialogData
.GetFromPage());
291 wxPostScriptPrintNativeData
*data
=
292 (wxPostScriptPrintNativeData
*) m_printDialogData
.GetPrintData().GetNativeData();
294 // There are some interactions between the global setup data
295 // and the standard print dialog. The global printing 'mode'
296 // is determined by whether the user checks Print to file
298 if (m_printDialogData
.GetPrintToFile())
300 data
->SetPrintMode(wxPRINT_MODE_FILE
);
302 wxFileName
fname( m_printDialogData
.GetPrintData().GetFilename() );
304 wxFileDialog
dialog( this, _("PostScript file"),
305 fname
.GetPath(), fname
.GetFullName(), wxT("*.ps"), wxOPEN
| wxOVERWRITE_PROMPT
);
306 if (dialog
.ShowModal() != wxID_OK
) return;
308 m_printDialogData
.GetPrintData().SetFilename( dialog
.GetPath() );
312 data
->SetPrintMode(wxPRINT_MODE_PRINTER
);
318 void wxGenericPrintDialog::OnRange(wxCommandEvent
& event
)
320 if (!m_fromText
) return;
322 if (event
.GetInt() == 0)
324 m_fromText
->Enable(false);
325 m_toText
->Enable(false);
327 else if (event
.GetInt() == 1)
329 m_fromText
->Enable(true);
330 m_toText
->Enable(true);
334 void wxGenericPrintDialog::OnSetup(wxCommandEvent
& WXUNUSED(event
))
336 wxGenericPrintSetupDialog
dialog( this, &m_printDialogData
.GetPrintData() );
337 if (dialog
.ShowModal() != wxID_CANCEL
)
339 m_printDialogData
= dialog
.GetPrintData();
343 bool wxGenericPrintDialog::TransferDataToWindow()
345 if(m_printDialogData
.GetFromPage() != 0)
349 if (m_printDialogData
.GetEnablePageNumbers())
351 m_fromText
->Enable(true);
352 m_toText
->Enable(true);
353 if (m_printDialogData
.GetFromPage() > 0)
354 m_fromText
->SetValue(wxString::Format(_T("%d"), m_printDialogData
.GetFromPage()));
355 if (m_printDialogData
.GetToPage() > 0)
356 m_toText
->SetValue(wxString::Format(_T("%d"), m_printDialogData
.GetToPage()));
358 if (m_printDialogData
.GetAllPages() || m_printDialogData
.GetFromPage() == 0)
359 m_rangeRadioBox
->SetSelection(0);
361 m_rangeRadioBox
->SetSelection(1);
365 m_fromText
->Enable(false);
366 m_toText
->Enable(false);
369 m_rangeRadioBox
->SetSelection(0);
370 m_rangeRadioBox
->wxRadioBox::Enable(1, false);
375 m_noCopiesText
->SetValue(
376 wxString::Format(_T("%d"), m_printDialogData
.GetNoCopies()));
378 m_printToFileCheckBox
->SetValue(m_printDialogData
.GetPrintToFile());
379 m_printToFileCheckBox
->Enable(m_printDialogData
.GetEnablePrintToFile());
383 bool wxGenericPrintDialog::TransferDataFromWindow()
386 if(m_printDialogData
.GetFromPage() != -1)
388 if (m_printDialogData
.GetEnablePageNumbers())
392 wxString value
= m_fromText
->GetValue();
393 if (value
.ToLong( &res
))
394 m_printDialogData
.SetFromPage( res
);
398 wxString value
= m_toText
->GetValue();
399 if (value
.ToLong( &res
))
400 m_printDialogData
.SetToPage( res
);
405 if (m_rangeRadioBox
->GetSelection() == 0)
406 m_printDialogData
.SetAllPages(true);
408 m_printDialogData
.SetAllPages(false);
412 { // continuous printing
413 m_printDialogData
.SetFromPage(1);
414 m_printDialogData
.SetToPage(32000);
417 wxString value
= m_noCopiesText
->GetValue();
418 if (value
.ToLong( &res
))
419 m_printDialogData
.SetNoCopies( res
);
421 m_printDialogData
.SetPrintToFile(m_printToFileCheckBox
->GetValue());
427 TODO: collate and noCopies should be duplicated across dialog data and print data objects
428 (slightly different semantics on Windows but let's ignore this for a bit).
431 wxDC
*wxGenericPrintDialog::GetPrintDC()
433 // return new wxPostScriptDC(wxThePrintSetupData->GetPrinterFile(), false, (wxWindow *) NULL);
434 return new wxPostScriptDC(GetPrintDialogData().GetPrintData());
437 // ----------------------------------------------------------------------------
438 // Generic print setup dialog
439 // ----------------------------------------------------------------------------
441 IMPLEMENT_CLASS(wxGenericPrintSetupDialog
, wxDialog
)
443 wxGenericPrintSetupDialog::wxGenericPrintSetupDialog(wxWindow
*parent
, wxPrintData
* data
):
444 wxDialog(parent
, wxID_ANY
, _("Print Setup"), wxPoint(0, 0), wxSize(600, 600), wxDEFAULT_DIALOG_STYLE
|wxTAB_TRAVERSAL
)
449 void wxGenericPrintSetupDialog::Init(wxPrintData
* data
)
454 int staticBoxWidth
= 300;
456 (void) new wxStaticBox(this, wxPRINTID_STATIC
, _("Paper size"), wxPoint(10, 10), wxSize(staticBoxWidth
, 60) );
460 m_paperTypeChoice
= CreatePaperTypeChoice(&xPos
, &yPos
);
462 wxString
*choices
= new wxString
[2];
463 choices
[0] = _("Portrait");
464 choices
[1] = _("Landscape");
466 m_orientationRadioBox
= new wxRadioBox(this, wxPRINTID_ORIENTATION
, _("Orientation"),
467 wxPoint(10, 80), wxDefaultSize
, 2, choices
, 1, wxRA_VERTICAL
);
468 m_orientationRadioBox
->SetSelection(0);
470 (void) new wxStaticBox(this, wxPRINTID_STATIC
, _("Options"), wxPoint(10, 130), wxSize(staticBoxWidth
, 50) );
472 int colourYPos
= 145;
478 m_colourCheckBox
= new wxCheckBox(this, wxPRINTID_PRINTCOLOUR
, _("Print in colour"), wxPoint(15, colourYPos
));
480 (void) new wxStaticBox(this, wxPRINTID_STATIC
, _("Print spooling"), wxPoint(330, 10), wxSize(200,170) );
482 (void) new wxStaticText(this, wxPRINTID_STATIC
, _("Printer command:"), wxPoint(340, 30));
484 m_printerCommandText
= new wxTextCtrl(this, wxPRINTID_COMMAND
, wxEmptyString
, wxPoint(360, 55), wxSize(150, wxDefaultCoord
));
486 (void) new wxStaticText(this, wxPRINTID_STATIC
, _("Printer options:"), wxPoint(340, 110));
488 m_printerOptionsText
= new wxTextCtrl(this, wxPRINTID_OPTIONS
, wxEmptyString
, wxPoint(360, 135), wxSize(150, wxDefaultCoord
));
490 wxButton
*okButton
= new wxButton(this, wxID_OK
, _("OK"), wxPoint(130, 200), wxSize(80, wxDefaultCoord
));
491 (void) new wxButton(this, wxID_CANCEL
, _("Cancel"), wxPoint(320, 200), wxSize(80, wxDefaultCoord
));
493 okButton
->SetDefault();
494 okButton
->SetFocus();
503 wxGenericPrintSetupDialog::~wxGenericPrintSetupDialog()
507 bool wxGenericPrintSetupDialog::TransferDataToWindow()
509 wxPostScriptPrintNativeData
*data
=
510 (wxPostScriptPrintNativeData
*) m_printData
.GetNativeData();
512 if (m_printerCommandText
&& data
->GetPrinterCommand())
513 m_printerCommandText
->SetValue(data
->GetPrinterCommand());
514 if (m_printerOptionsText
&& data
->GetPrinterOptions())
515 m_printerOptionsText
->SetValue(data
->GetPrinterOptions());
516 if (m_colourCheckBox
)
517 m_colourCheckBox
->SetValue(m_printData
.GetColour());
519 if (m_orientationRadioBox
)
521 if (m_printData
.GetOrientation() == wxPORTRAIT
)
522 m_orientationRadioBox
->SetSelection(0);
524 m_orientationRadioBox
->SetSelection(1);
529 bool wxGenericPrintSetupDialog::TransferDataFromWindow()
531 wxPostScriptPrintNativeData
*data
=
532 (wxPostScriptPrintNativeData
*) m_printData
.GetNativeData();
534 if (m_printerCommandText
)
535 data
->SetPrinterCommand(m_printerCommandText
->GetValue());
536 if (m_printerOptionsText
)
537 data
->SetPrinterOptions(m_printerOptionsText
->GetValue());
538 if (m_colourCheckBox
)
539 m_printData
.SetColour(m_colourCheckBox
->GetValue());
540 if (m_orientationRadioBox
)
542 int sel
= m_orientationRadioBox
->GetSelection();
544 m_printData
.SetOrientation(wxPORTRAIT
);
546 m_printData
.SetOrientation(wxLANDSCAPE
);
548 if (m_paperTypeChoice
)
550 int selectedItem
= m_paperTypeChoice
->GetSelection();
551 if (selectedItem
!= -1)
553 wxPrintPaperType
*paper
= wxThePrintPaperDatabase
->Item(selectedItem
);
555 m_printData
.SetPaperId( paper
->GetId());
562 wxComboBox
*wxGenericPrintSetupDialog::CreatePaperTypeChoice(int *x
, int *y
)
564 /* Should not be necessary
565 if (!wxThePrintPaperDatabase)
567 wxThePrintPaperDatabase = new wxPrintPaperDatabase;
568 wxThePrintPaperDatabase->CreateDatabase();
571 size_t n
= wxThePrintPaperDatabase
->GetCount();
572 wxString
*choices
= new wxString
[n
];
575 for (size_t i
= 0; i
< n
; i
++)
577 wxPrintPaperType
*paper
= wxThePrintPaperDatabase
->Item(i
);
578 choices
[i
] = paper
->GetName();
579 if (m_printData
.GetPaperId() == paper
->GetId())
585 wxComboBox
*choice
= new wxComboBox( this,
589 wxSize(width
, wxDefaultCoord
),
592 // SetFont(thisFont);
596 choice
->SetSelection(sel
);
599 #endif // wxUSE_POSTSCRIPT
601 // ----------------------------------------------------------------------------
602 // Generic page setup dialog
603 // ----------------------------------------------------------------------------
605 IMPLEMENT_CLASS(wxGenericPageSetupDialog
, wxDialog
)
607 BEGIN_EVENT_TABLE(wxGenericPageSetupDialog
, wxDialog
)
608 EVT_BUTTON(wxPRINTID_SETUP
, wxGenericPageSetupDialog::OnPrinter
)
611 void wxGenericPageSetupDialog::OnPrinter(wxCommandEvent
& WXUNUSED(event
))
613 // We no longer query GetPrintMode, so we can eliminate the need
614 // to call SetPrintMode.
615 // This has the limitation that we can't explicitly call the PostScript
616 // print setup dialog from the generic Page Setup dialog under Windows,
617 // but since this choice would only happen when trying to do PostScript
618 // printing under Windows (and only in 16-bit Windows which
619 // doesn't have a Windows-specific page setup dialog) it's worth it.
621 // First save the current settings, so the wxPrintData object is up to date.
622 TransferDataFromWindow();
624 // Transfer the current print settings from this dialog to the page setup dialog.
625 wxPrintDialogData data
;
626 data
= GetPageSetupData().GetPrintData();
627 data
.SetSetupDialog(true);
628 wxPrintDialog
printDialog(this, & data
);
629 printDialog
.ShowModal();
631 // Transfer the page setup print settings from the page dialog to this dialog again, in case
632 // the page setup dialog changed something.
633 GetPageSetupData().GetPrintData() = printDialog
.GetPrintDialogData().GetPrintData();
634 GetPageSetupData().CalculatePaperSizeFromId(); // Make sure page size reflects the id in wxPrintData
636 // Now update the dialog in case the page setup dialog changed some of our settings.
637 TransferDataToWindow();
640 wxGenericPageSetupDialog::wxGenericPageSetupDialog( wxWindow
*parent
,
641 wxPageSetupData
* data
)
647 wxDEFAULT_DIALOG_STYLE
|wxTAB_TRAVERSAL
)
654 wxBoxSizer
*mainsizer
= new wxBoxSizer( wxVERTICAL
);
657 wxStaticBoxSizer
*topsizer
= new wxStaticBoxSizer(
658 new wxStaticBox(this,wxPRINTID_STATIC
, _("Paper size")), wxHORIZONTAL
);
660 size_t n
= wxThePrintPaperDatabase
->GetCount();
661 wxString
*choices
= new wxString
[n
];
663 for (size_t i
= 0; i
< n
; i
++)
665 wxPrintPaperType
*paper
= wxThePrintPaperDatabase
->Item(i
);
666 choices
[i
] = paper
->GetName();
669 m_paperTypeChoice
= new wxComboBox( this,
673 wxSize(300, wxDefaultCoord
),
675 topsizer
->Add( m_paperTypeChoice
, 1, wxEXPAND
|wxALL
, 5 );
676 // m_paperTypeChoice->SetSelection(sel);
678 mainsizer
->Add( topsizer
, 0, wxTOP
|wxLEFT
|wxRIGHT
| wxEXPAND
, 10 );
680 // 2) middle sizer with radio box
682 wxString
*choices2
= new wxString
[2];
683 choices2
[0] = _("Portrait");
684 choices2
[1] = _("Landscape");
685 m_orientationRadioBox
= new wxRadioBox(this, wxPRINTID_ORIENTATION
, _("Orientation"),
686 wxDefaultPosition
, wxDefaultSize
, 2, choices2
, 2);
687 m_orientationRadioBox
->SetSelection(0);
689 mainsizer
->Add( m_orientationRadioBox
, 0, wxTOP
|wxLEFT
|wxRIGHT
, 10 );
693 wxBoxSizer
*table
= new wxBoxSizer( wxHORIZONTAL
);
695 wxBoxSizer
*column1
= new wxBoxSizer( wxVERTICAL
);
696 column1
->Add( new wxStaticText(this, wxPRINTID_STATIC
, _("Left margin (mm):")),1,wxALL
|wxALIGN_RIGHT
,5 );
697 column1
->Add( new wxStaticText(this, wxPRINTID_STATIC
, _("Top margin (mm):")),1,wxALL
|wxALIGN_RIGHT
,5 );
698 table
->Add( column1
, 0, wxALL
| wxEXPAND
, 5 );
700 wxBoxSizer
*column2
= new wxBoxSizer( wxVERTICAL
);
701 m_marginLeftText
= new wxTextCtrl(this, wxPRINTID_LEFTMARGIN
, wxEmptyString
, wxDefaultPosition
, wxSize(textWidth
, wxDefaultCoord
));
702 m_marginTopText
= new wxTextCtrl(this, wxPRINTID_TOPMARGIN
, wxEmptyString
, wxDefaultPosition
, wxSize(textWidth
, wxDefaultCoord
));
703 column2
->Add( m_marginLeftText
, 1, wxALL
, 5 );
704 column2
->Add( m_marginTopText
, 1, wxALL
, 5 );
705 table
->Add( column2
, 0, wxRIGHT
|wxTOP
|wxBOTTOM
| wxEXPAND
, 5 );
707 wxBoxSizer
*column3
= new wxBoxSizer( wxVERTICAL
);
708 column3
->Add( new wxStaticText(this, wxPRINTID_STATIC
, _("Right margin (mm):")),1,wxALL
|wxALIGN_RIGHT
,5 );
709 column3
->Add( new wxStaticText(this, wxPRINTID_STATIC
, _("Bottom margin (mm):")),1,wxALL
|wxALIGN_RIGHT
,5 );
710 table
->Add( column3
, 0, wxALL
| wxEXPAND
, 5 );
712 wxBoxSizer
*column4
= new wxBoxSizer( wxVERTICAL
);
713 m_marginRightText
= new wxTextCtrl(this, wxPRINTID_RIGHTMARGIN
, wxEmptyString
, wxDefaultPosition
, wxSize(textWidth
, wxDefaultCoord
));
714 m_marginBottomText
= new wxTextCtrl(this, wxPRINTID_BOTTOMMARGIN
, wxEmptyString
, wxDefaultPosition
, wxSize(textWidth
, wxDefaultCoord
));
715 column4
->Add( m_marginRightText
, 1, wxALL
, 5 );
716 column4
->Add( m_marginBottomText
, 1, wxALL
, 5 );
717 table
->Add( column4
, 0, wxRIGHT
|wxTOP
|wxBOTTOM
| wxEXPAND
, 5 );
719 mainsizer
->Add( table
, 0 );
723 mainsizer
->Add( new wxStaticLine( this, wxID_ANY
), 0, wxEXPAND
| wxLEFT
|wxRIGHT
|wxTOP
, 10 );
728 wxSizer
* buttonsizer
= CreateButtonSizer( wxOK
|wxCANCEL
);
729 m_printerButton
= new wxButton(this, wxPRINTID_SETUP
, _("Printer...") );
730 buttonsizer
->Add( m_printerButton
, 0, wxLEFT
|wxRIGHT
, 10 );
731 if ( !m_pageData
.GetEnablePrinter() )
732 m_printerButton
->Enable(false);
733 // if (m_printData.GetEnableHelp())
734 // wxButton *helpButton = new wxButton(this, (wxFunction)wxGenericPageSetupHelpProc, _("Help"), wxDefaultCoord, wxDefaultCoord, buttonWidth, buttonHeight);
735 mainsizer
->Add( buttonsizer
, 0, wxCENTER
|wxALL
, 10 );
738 SetAutoLayout( true );
739 SetSizer( mainsizer
);
741 mainsizer
->Fit( this );
750 wxGenericPageSetupDialog::~wxGenericPageSetupDialog()
754 bool wxGenericPageSetupDialog::TransferDataToWindow()
756 if (m_marginLeftText
)
757 m_marginLeftText
->SetValue(wxString::Format(wxT("%d"), m_pageData
.GetMarginTopLeft().x
));
759 m_marginTopText
->SetValue(wxString::Format(wxT("%d"), m_pageData
.GetMarginTopLeft().y
));
760 if (m_marginRightText
)
761 m_marginRightText
->SetValue(wxString::Format(wxT("%d"), m_pageData
.GetMarginBottomRight().x
));
762 if (m_marginBottomText
)
763 m_marginBottomText
->SetValue(wxString::Format(wxT("%d"), m_pageData
.GetMarginBottomRight().y
));
765 if (m_orientationRadioBox
)
767 if (m_pageData
.GetPrintData().GetOrientation() == wxPORTRAIT
)
768 m_orientationRadioBox
->SetSelection(0);
770 m_orientationRadioBox
->SetSelection(1);
773 // Find the paper type from either the current paper size in the wxPageSetupDialogData, or
774 // failing that, the id in the wxPrintData object.
776 wxPrintPaperType
* type
= wxThePrintPaperDatabase
->FindPaperType(
777 wxSize(m_pageData
.GetPaperSize().x
* 10, m_pageData
.GetPaperSize().y
* 10));
779 if (!type
&& m_pageData
.GetPrintData().GetPaperId() != wxPAPER_NONE
)
780 type
= wxThePrintPaperDatabase
->FindPaperType(m_pageData
.GetPrintData().GetPaperId());
784 m_paperTypeChoice
->SetStringSelection(type
->GetName());
790 bool wxGenericPageSetupDialog::TransferDataFromWindow()
792 if (m_marginLeftText
&& m_marginTopText
)
794 int left
= wxAtoi( m_marginLeftText
->GetValue().c_str() );
795 int top
= wxAtoi( m_marginTopText
->GetValue().c_str() );
796 m_pageData
.SetMarginTopLeft( wxPoint(left
,top
) );
798 if (m_marginRightText
&& m_marginBottomText
)
800 int right
= wxAtoi( m_marginRightText
->GetValue().c_str() );
801 int bottom
= wxAtoi( m_marginBottomText
->GetValue().c_str() );
802 m_pageData
.SetMarginBottomRight( wxPoint(right
,bottom
) );
805 if (m_orientationRadioBox
)
807 int sel
= m_orientationRadioBox
->GetSelection();
810 m_pageData
.GetPrintData().SetOrientation(wxPORTRAIT
);
814 m_pageData
.GetPrintData().SetOrientation(wxLANDSCAPE
);
818 if (m_paperTypeChoice
)
820 int selectedItem
= m_paperTypeChoice
->GetSelection();
821 if (selectedItem
!= -1)
823 wxPrintPaperType
*paper
= wxThePrintPaperDatabase
->Item(selectedItem
);
826 m_pageData
.SetPaperSize(wxSize(paper
->GetWidth()/10, paper
->GetHeight()/10));
827 m_pageData
.GetPrintData().SetPaperId(paper
->GetId());
835 wxComboBox
*wxGenericPageSetupDialog::CreatePaperTypeChoice(int *x
, int *y
)
838 if (!wxThePrintPaperDatabase)
840 wxThePrintPaperDatabase = new wxPrintPaperDatabase;
841 wxThePrintPaperDatabase->CreateDatabase();
845 size_t n
= wxThePrintPaperDatabase
->GetCount();
846 wxString
*choices
= new wxString
[n
];
848 for (size_t i
= 0; i
< n
; i
++)
850 wxPrintPaperType
*paper
= wxThePrintPaperDatabase
->Item(i
);
851 choices
[i
] = paper
->GetName();
854 (void) new wxStaticText(this, wxPRINTID_STATIC
, _("Paper size"), wxPoint(*x
, *y
));
857 wxComboBox
*choice
= new wxComboBox( this,
861 wxSize(300, wxDefaultCoord
),
866 // choice->SetSelection(sel);