1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxGenericPrintDialog, wxGenericPrintSetupDialog,
4 // wxGenericPageSetupDialog
5 // Author: Julian Smart
10 // Licence: wxWindows licence
11 /////////////////////////////////////////////////////////////////////////////
13 #ifndef __PRINTDLGH_G_
14 #define __PRINTDLGH_G_
16 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
17 #pragma interface "prntdlgg.h"
22 #if wxUSE_PRINTING_ARCHITECTURE
24 #include "wx/dialog.h"
25 #include "wx/cmndata.h"
26 #include "wx/prntbase.h"
27 #include "wx/printdlg.h"
28 #include "wx/listctrl.h"
34 class WXDLLEXPORT wxTextCtrl
;
35 class WXDLLEXPORT wxButton
;
36 class WXDLLEXPORT wxCheckBox
;
37 class WXDLLEXPORT wxComboBox
;
38 class WXDLLEXPORT wxStaticText
;
39 class WXDLLEXPORT wxRadioBox
;
40 class WXDLLEXPORT wxPageSetupData
;
42 // ----------------------------------------------------------------------------
44 // ----------------------------------------------------------------------------
46 // FIXME why all these enums start with 10 or 30?
50 wxPRINTID_STATIC
= 10,
55 wxPRINTID_PRINTTOFILE
,
61 wxPRINTID_LEFTMARGIN
= 30,
62 wxPRINTID_RIGHTMARGIN
,
64 wxPRINTID_BOTTOMMARGIN
69 wxPRINTID_PRINTCOLOUR
= 10,
70 wxPRINTID_ORIENTATION
,
79 //----------------------------------------------------------------------------
80 // wxPostScriptNativeData
81 //----------------------------------------------------------------------------
83 class WXDLLEXPORT wxPostScriptPrintNativeData
: public wxPrintNativeDataBase
86 wxPostScriptPrintNativeData();
87 virtual ~wxPostScriptPrintNativeData();
89 virtual bool TransferTo( wxPrintData
&data
);
90 virtual bool TransferFrom( const wxPrintData
&data
);
92 virtual bool Ok() const { return true; }
94 const wxString
& GetPrinterCommand() const { return m_printerCommand
; }
95 const wxString
& GetPrinterOptions() const { return m_printerOptions
; }
96 const wxString
& GetPreviewCommand() const { return m_previewCommand
; }
97 const wxString
& GetFontMetricPath() const { return m_afmPath
; }
98 double GetPrinterScaleX() const { return m_printerScaleX
; }
99 double GetPrinterScaleY() const { return m_printerScaleY
; }
100 long GetPrinterTranslateX() const { return m_printerTranslateX
; }
101 long GetPrinterTranslateY() const { return m_printerTranslateY
; }
103 void SetPrinterCommand(const wxString
& command
) { m_printerCommand
= command
; }
104 void SetPrinterOptions(const wxString
& options
) { m_printerOptions
= options
; }
105 void SetPreviewCommand(const wxString
& command
) { m_previewCommand
= command
; }
106 void SetFontMetricPath(const wxString
& path
) { m_afmPath
= path
; }
107 void SetPrinterScaleX(double x
) { m_printerScaleX
= x
; }
108 void SetPrinterScaleY(double y
) { m_printerScaleY
= y
; }
109 void SetPrinterScaling(double x
, double y
) { m_printerScaleX
= x
; m_printerScaleY
= y
; }
110 void SetPrinterTranslateX(long x
) { m_printerTranslateX
= x
; }
111 void SetPrinterTranslateY(long y
) { m_printerTranslateY
= y
; }
112 void SetPrinterTranslation(long x
, long y
) { m_printerTranslateX
= x
; m_printerTranslateY
= y
; }
115 wxOutputStream
*GetOutputStream() { return m_outputStream
; }
116 void SetOutputStream( wxOutputStream
*output
) { m_outputStream
= output
; }
120 wxString m_printerCommand
;
121 wxString m_previewCommand
;
122 wxString m_printerOptions
;
124 double m_printerScaleX
;
125 double m_printerScaleY
;
126 long m_printerTranslateX
;
127 long m_printerTranslateY
;
129 wxOutputStream
*m_outputStream
;
133 DECLARE_DYNAMIC_CLASS(wxPostScriptPrintNativeData
)
136 // ----------------------------------------------------------------------------
137 // Simulated Print and Print Setup dialogs for non-Windows platforms (and
138 // Windows using PostScript print/preview)
139 // ----------------------------------------------------------------------------
141 class WXDLLEXPORT wxGenericPrintDialog
: public wxPrintDialogBase
144 wxGenericPrintDialog(wxWindow
*parent
,
145 wxPrintDialogData
* data
= (wxPrintDialogData
*)NULL
);
146 wxGenericPrintDialog(wxWindow
*parent
, wxPrintData
* data
);
148 virtual ~wxGenericPrintDialog();
150 void OnSetup(wxCommandEvent
& event
);
151 void OnRange(wxCommandEvent
& event
);
152 void OnOK(wxCommandEvent
& event
);
154 virtual bool TransferDataFromWindow();
155 virtual bool TransferDataToWindow();
157 virtual int ShowModal();
159 wxPrintData
& GetPrintData()
160 { return m_printDialogData
.GetPrintData(); }
162 wxPrintDialogData
& GetPrintDialogData() { return m_printDialogData
; }
166 // wxStaticText* m_printerMessage;
167 wxButton
* m_setupButton
;
168 // wxButton* m_helpButton;
169 wxRadioBox
* m_rangeRadioBox
;
170 wxTextCtrl
* m_fromText
;
171 wxTextCtrl
* m_toText
;
172 wxTextCtrl
* m_noCopiesText
;
173 wxCheckBox
* m_printToFileCheckBox
;
174 // wxCheckBox* m_collateCopiesCheckBox;
176 wxPrintDialogData m_printDialogData
;
179 void Init(wxWindow
*parent
);
182 DECLARE_EVENT_TABLE()
183 DECLARE_DYNAMIC_CLASS(wxGenericPrintDialog
)
186 class WXDLLEXPORT wxGenericPrintSetupDialog
: public wxDialog
189 // There are no configuration options for the dialog, so we
190 // just pass the wxPrintData object (no wxPrintSetupDialogData class needed)
191 wxGenericPrintSetupDialog(wxWindow
*parent
, wxPrintData
* data
);
192 virtual ~wxGenericPrintSetupDialog();
194 void Init(wxPrintData
* data
);
196 void OnPrinter(wxListEvent
& event
);
198 virtual bool TransferDataFromWindow();
199 virtual bool TransferDataToWindow();
201 virtual wxComboBox
*CreatePaperTypeChoice();
204 wxListCtrl
* m_printerListCtrl
;
205 wxRadioBox
* m_orientationRadioBox
;
206 wxTextCtrl
* m_printerCommandText
;
207 wxTextCtrl
* m_printerOptionsText
;
208 wxCheckBox
* m_colourCheckBox
;
209 wxComboBox
* m_paperTypeChoice
;
211 wxPrintData m_printData
;
212 wxPrintData
& GetPrintData() { return m_printData
; }
214 // After pressing OK, write data here.
215 wxPrintData
* m_targetData
;
218 DECLARE_EVENT_TABLE()
219 DECLARE_CLASS(wxGenericPrintSetupDialog
)
224 class WXDLLEXPORT wxGenericPageSetupDialog
: public wxPageSetupDialogBase
227 wxGenericPageSetupDialog(wxWindow
*parent
= NULL
,
228 wxPageSetupDialogData
* data
= NULL
);
229 virtual ~wxGenericPageSetupDialog();
231 virtual bool TransferDataFromWindow();
232 virtual bool TransferDataToWindow();
234 virtual wxPageSetupDialogData
& GetPageSetupDialogData();
236 void OnPrinter(wxCommandEvent
& event
);
237 wxComboBox
*CreatePaperTypeChoice(int* x
, int* y
);
240 wxButton
* m_printerButton
;
241 wxRadioBox
* m_orientationRadioBox
;
242 wxTextCtrl
* m_marginLeftText
;
243 wxTextCtrl
* m_marginTopText
;
244 wxTextCtrl
* m_marginRightText
;
245 wxTextCtrl
* m_marginBottomText
;
246 wxComboBox
* m_paperTypeChoice
;
248 wxPageSetupDialogData m_pageData
;
251 DECLARE_EVENT_TABLE()
252 DECLARE_DYNAMIC_CLASS_NO_COPY(wxGenericPageSetupDialog
)