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