]>
Commit | Line | Data |
---|---|---|
a660d684 KB |
1 | \section{\class{wxPrintData}}\label{wxprintdata} |
2 | ||
7bcb11d3 JS |
3 | This class holds a variety of information related to printers and |
4 | printer device contexts. This class is used to create a wxPrinterDC | |
5 | and a wxPostScriptDC. It is also used as a data member of wxPrintDialogData | |
6 | and wxPageSetupDialogData, as part of the mechanism for transferring data | |
7 | between the print dialogs and the application. | |
a660d684 KB |
8 | |
9 | \wxheading{Derived from} | |
10 | ||
11 | \helpref{wxObject}{wxobject} | |
12 | ||
954b8ae6 JS |
13 | \wxheading{Include files} |
14 | ||
15 | <wx/cmndata.h> | |
16 | ||
a660d684 KB |
17 | \wxheading{See also} |
18 | ||
2233e5b8 RD |
19 | \helpref{wxPrintDialog}{wxprintdialog}, |
20 | \helpref{wxPageSetupDialog}{wxpagesetupdialog}, | |
21 | \helpref{wxPrintDialogData}{wxprintdialogdata}, | |
22 | \helpref{wxPageSetupDialogData}{wxpagesetupdialogdata}, | |
23 | \helpref{wxPrintDialog Overview}{wxprintdialogoverview}, | |
24 | \helpref{wxPrinterDC}{wxprinterdc}, | |
7bcb11d3 JS |
25 | \helpref{wxPostScriptDC}{wxpostscriptdc} |
26 | ||
27 | \wxheading{Remarks} | |
28 | ||
29 | The following functions are specific to PostScript printing | |
30 | and have not yet been documented: | |
31 | ||
32 | \begin{verbatim} | |
33 | const wxString& GetPrinterCommand() const ; | |
34 | const wxString& GetPrinterOptions() const ; | |
35 | const wxString& GetPreviewCommand() const ; | |
36 | const wxString& GetFilename() const ; | |
37 | const wxString& GetFontMetricPath() const ; | |
38 | double GetPrinterScaleX() const ; | |
39 | double GetPrinterScaleY() const ; | |
40 | long GetPrinterTranslateX() const ; | |
41 | long GetPrinterTranslateY() const ; | |
42 | // wxPRINT_MODE_PREVIEW, wxPRINT_MODE_FILE, wxPRINT_MODE_PRINTER | |
43 | wxPrintMode GetPrintMode() const ; | |
44 | ||
45 | void SetPrinterCommand(const wxString& command) ; | |
46 | void SetPrinterOptions(const wxString& options) ; | |
47 | void SetPreviewCommand(const wxString& command) ; | |
48 | void SetFilename(const wxString& filename) ; | |
49 | void SetFontMetricPath(const wxString& path) ; | |
50 | void SetPrinterScaleX(double x) ; | |
51 | void SetPrinterScaleY(double y) ; | |
52 | void SetPrinterScaling(double x, double y) ; | |
53 | void SetPrinterTranslateX(long x) ; | |
54 | void SetPrinterTranslateY(long y) ; | |
55 | void SetPrinterTranslation(long x, long y) ; | |
56 | void SetPrintMode(wxPrintMode printMode) ; | |
57 | \end{verbatim} | |
a660d684 KB |
58 | |
59 | \latexignore{\rtfignore{\wxheading{Members}}} | |
60 | ||
61 | \membersection{wxPrintData::wxPrintData} | |
62 | ||
63 | \func{}{wxPrintData}{\void} | |
64 | ||
7bcb11d3 JS |
65 | Default constructor. |
66 | ||
67 | \func{}{wxPrintData}{\param{const wxPrintData\&}{ data}} | |
68 | ||
69 | Copy constructor. | |
a660d684 KB |
70 | |
71 | \membersection{wxPrintData::\destruct{wxPrintData}} | |
72 | ||
73 | \func{}{\destruct{wxPrintData}}{\void} | |
74 | ||
75 | Destructor. | |
76 | ||
a660d684 KB |
77 | \membersection{wxPrintData::GetCollate}\label{wxprintdatagetcollate} |
78 | ||
7bcb11d3 | 79 | \constfunc{bool}{GetCollate}{\void} |
a660d684 | 80 | |
7bcb11d3 | 81 | Returns TRUE if collation is on. |
a660d684 | 82 | |
7bcb11d3 | 83 | \membersection{wxPrintData::GetColour}\label{wxprintdatagetcolour} |
a660d684 | 84 | |
7bcb11d3 | 85 | \constfunc{bool}{GetColour}{\void} |
a660d684 | 86 | |
7bcb11d3 | 87 | Returns TRUE if colour printing is on. |
a660d684 | 88 | |
7bcb11d3 | 89 | \membersection{wxPrintData::GetDuplex}\label{wxprintdatagetduplex} |
a660d684 | 90 | |
7bcb11d3 | 91 | \constfunc{wxDuplexMode}{GetDuplex}{\void} |
a660d684 | 92 | |
7bcb11d3 | 93 | Returns the duplex mode. One of wxDUPLEX\_SIMPLEX, wxDUPLEX\_HORIZONTAL, wxDUPLEX\_VERTICAL. |
a660d684 KB |
94 | |
95 | \membersection{wxPrintData::GetNoCopies}\label{wxprintdatagetnocopies} | |
96 | ||
7bcb11d3 | 97 | \constfunc{int}{GetNoCopies}{\void} |
a660d684 KB |
98 | |
99 | Returns the number of copies requested by the user. | |
100 | ||
101 | \membersection{wxPrintData::GetOrientation}\label{wxprintdatagetorientation} | |
102 | ||
7bcb11d3 | 103 | \constfunc{int}{GetOrientation}{\void} |
a660d684 KB |
104 | |
105 | Gets the orientation. This can be wxLANDSCAPE or wxPORTRAIT. | |
106 | ||
7bcb11d3 | 107 | \membersection{wxPrintData::GetPaperId}\label{wxprintdatagetpaperid} |
a660d684 | 108 | |
7bcb11d3 | 109 | \constfunc{wxPaperSize}{GetPaperId}{\void} |
a660d684 | 110 | |
7bcb11d3 | 111 | Returns the paper size id. For more information, see \helpref{wxPrintData::SetPaperId}{wxprintdatasetpaperid}. |
a660d684 | 112 | |
7bcb11d3 | 113 | \membersection{wxPrintData::GetPrinterName}\label{wxprintdatagetprintername} |
a660d684 | 114 | |
7bcb11d3 | 115 | \constfunc{const wxString\&}{GetPrinterName}{\void} |
a660d684 | 116 | |
7bcb11d3 JS |
117 | Returns the printer name. If the printer name is the empty string, it indicates that the default |
118 | printer should be used. | |
a660d684 | 119 | |
7bcb11d3 | 120 | \membersection{wxPrintData::GetQuality}\label{wxprintdatagetquality} |
a660d684 | 121 | |
7bcb11d3 | 122 | \constfunc{wxPaperQuality}{GetQuality}{\void} |
a660d684 | 123 | |
7bcb11d3 JS |
124 | Returns the current print quality. This can be a positive integer, denoting the number of dots per inch, or |
125 | one of the following identifiers: | |
a660d684 | 126 | |
7bcb11d3 JS |
127 | \begin{verbatim} |
128 | wxPRINT\_QUALITY\_HIGH | |
129 | wxPRINT\_QUALITY\_MEDIUM | |
130 | wxPRINT\_QUALITY\_LOW | |
131 | wxPRINT\_QUALITY\_DRAFT | |
132 | \end{verbatim} | |
a660d684 | 133 | |
7bcb11d3 JS |
134 | On input you should pass one of these identifiers, but on return you may get back a positive integer |
135 | indicating the current resolution setting. | |
a660d684 | 136 | |
7bcb11d3 | 137 | \membersection{wxPrintData::SetCollate}\label{wxprintdatasetcollate} |
a660d684 | 138 | |
7bcb11d3 | 139 | \func{void}{SetCollate}{\param{bool }{flag}} |
a660d684 | 140 | |
7bcb11d3 | 141 | Sets collation to on or off. |
a660d684 | 142 | |
7bcb11d3 | 143 | \membersection{wxPrintData::SetColour}\label{wxprintdatasetcolour} |
a660d684 | 144 | |
7bcb11d3 | 145 | \func{void}{SetColour}{\param{bool }{flag}} |
a660d684 | 146 | |
7bcb11d3 | 147 | Sets colour printing on or off. |
a660d684 | 148 | |
7bcb11d3 JS |
149 | \membersection{wxPrintData::SetDuplex}\label{wxprintdatasetduplex} |
150 | ||
151 | \func{void}{SetDuplex}{\param{wxDuplexMode}{ mode}} | |
152 | ||
153 | Returns the duplex mode. One of wxDUPLEX\_SIMPLEX, wxDUPLEX\_HORIZONTAL, wxDUPLEX\_VERTICAL. | |
a660d684 KB |
154 | |
155 | \membersection{wxPrintData::SetNoCopies}\label{wxprintdatasetnocopies} | |
156 | ||
157 | \func{void}{SetNoCopies}{\param{int }{n}} | |
158 | ||
159 | Sets the default number of copies to be printed out. | |
160 | ||
7bcb11d3 | 161 | \membersection{wxPrintData::SetOrientation}\label{wxprintdatasetorientation} |
a660d684 | 162 | |
7bcb11d3 | 163 | \func{void}{SetOrientation}{\param{int }{orientation}} |
a660d684 | 164 | |
7bcb11d3 | 165 | Sets the orientation. This can be wxLANDSCAPE or wxPORTRAIT. |
a660d684 | 166 | |
7bcb11d3 JS |
167 | \membersection{wxPrintData::SetPaperId}\label{wxprintdatasetpaperid} |
168 | ||
169 | \func{void}{SetPaperId}{\param{wxPaperSize}{ paperId}} | |
170 | ||
171 | \index{wxPaperSize}Sets the paper id. This indicates the type of paper to be used. For a mapping between | |
172 | paper id, paper size and string name, see wxPrintPaperDatabase in {\tt paper.h} (not yet documented). | |
173 | ||
174 | {\it paperId} can be one of: | |
175 | ||
176 | {\small | |
177 | \begin{verbatim} | |
178 | wxPAPER_NONE, // Use specific dimensions | |
179 | wxPAPER_LETTER, // Letter, 8 1/2 by 11 inches | |
180 | wxPAPER_LEGAL, // Legal, 8 1/2 by 14 inches | |
181 | wxPAPER_A4, // A4 Sheet, 210 by 297 millimeters | |
182 | wxPAPER_CSHEET, // C Sheet, 17 by 22 inches | |
183 | wxPAPER_DSHEET, // D Sheet, 22 by 34 inches | |
184 | wxPAPER_ESHEET, // E Sheet, 34 by 44 inches | |
185 | wxPAPER_LETTERSMALL, // Letter Small, 8 1/2 by 11 inches | |
186 | wxPAPER_TABLOID, // Tabloid, 11 by 17 inches | |
187 | wxPAPER_LEDGER, // Ledger, 17 by 11 inches | |
188 | wxPAPER_STATEMENT, // Statement, 5 1/2 by 8 1/2 inches | |
189 | wxPAPER_EXECUTIVE, // Executive, 7 1/4 by 10 1/2 inches | |
190 | wxPAPER_A3, // A3 sheet, 297 by 420 millimeters | |
191 | wxPAPER_A4SMALL, // A4 small sheet, 210 by 297 millimeters | |
192 | wxPAPER_A5, // A5 sheet, 148 by 210 millimeters | |
193 | wxPAPER_B4, // B4 sheet, 250 by 354 millimeters | |
194 | wxPAPER_B5, // B5 sheet, 182-by-257-millimeter paper | |
195 | wxPAPER_FOLIO, // Folio, 8-1/2-by-13-inch paper | |
196 | wxPAPER_QUARTO, // Quarto, 215-by-275-millimeter paper | |
197 | wxPAPER_10X14, // 10-by-14-inch sheet | |
198 | wxPAPER_11X17, // 11-by-17-inch sheet | |
199 | wxPAPER_NOTE, // Note, 8 1/2 by 11 inches | |
200 | wxPAPER_ENV_9, // #9 Envelope, 3 7/8 by 8 7/8 inches | |
201 | wxPAPER_ENV_10, // #10 Envelope, 4 1/8 by 9 1/2 inches | |
202 | wxPAPER_ENV_11, // #11 Envelope, 4 1/2 by 10 3/8 inches | |
203 | wxPAPER_ENV_12, // #12 Envelope, 4 3/4 by 11 inches | |
204 | wxPAPER_ENV_14, // #14 Envelope, 5 by 11 1/2 inches | |
205 | wxPAPER_ENV_DL, // DL Envelope, 110 by 220 millimeters | |
206 | wxPAPER_ENV_C5, // C5 Envelope, 162 by 229 millimeters | |
207 | wxPAPER_ENV_C3, // C3 Envelope, 324 by 458 millimeters | |
208 | wxPAPER_ENV_C4, // C4 Envelope, 229 by 324 millimeters | |
209 | wxPAPER_ENV_C6, // C6 Envelope, 114 by 162 millimeters | |
210 | wxPAPER_ENV_C65, // C65 Envelope, 114 by 229 millimeters | |
211 | wxPAPER_ENV_B4, // B4 Envelope, 250 by 353 millimeters | |
212 | wxPAPER_ENV_B5, // B5 Envelope, 176 by 250 millimeters | |
213 | wxPAPER_ENV_B6, // B6 Envelope, 176 by 125 millimeters | |
214 | wxPAPER_ENV_ITALY, // Italy Envelope, 110 by 230 millimeters | |
215 | wxPAPER_ENV_MONARCH, // Monarch Envelope, 3 7/8 by 7 1/2 inches | |
216 | wxPAPER_ENV_PERSONAL, // 6 3/4 Envelope, 3 5/8 by 6 1/2 inches | |
217 | wxPAPER_FANFOLD_US, // US Std Fanfold, 14 7/8 by 11 inches | |
218 | wxPAPER_FANFOLD_STD_GERMAN, // German Std Fanfold, 8 1/2 by 12 inches | |
219 | wxPAPER_FANFOLD_LGL_GERMAN, // German Legal Fanfold, 8 1/2 by 13 inches | |
220 | ||
221 | Windows 95 only: | |
222 | wxPAPER_ISO_B4, // B4 (ISO) 250 x 353 mm | |
223 | wxPAPER_JAPANESE_POSTCARD, // Japanese Postcard 100 x 148 mm | |
224 | wxPAPER_9X11, // 9 x 11 in | |
225 | wxPAPER_10X11, // 10 x 11 in | |
226 | wxPAPER_15X11, // 15 x 11 in | |
227 | wxPAPER_ENV_INVITE, // Envelope Invite 220 x 220 mm | |
228 | wxPAPER_LETTER_EXTRA, // Letter Extra 9 \275 x 12 in | |
229 | wxPAPER_LEGAL_EXTRA, // Legal Extra 9 \275 x 15 in | |
230 | wxPAPER_TABLOID_EXTRA, // Tabloid Extra 11.69 x 18 in | |
231 | wxPAPER_A4_EXTRA, // A4 Extra 9.27 x 12.69 in | |
232 | wxPAPER_LETTER_TRANSVERSE, // Letter Transverse 8 \275 x 11 in | |
233 | wxPAPER_A4_TRANSVERSE, // A4 Transverse 210 x 297 mm | |
234 | wxPAPER_LETTER_EXTRA_TRANSVERSE, // Letter Extra Transverse 9\275 x 12 in | |
235 | wxPAPER_A_PLUS, // SuperA/SuperA/A4 227 x 356 mm | |
236 | wxPAPER_B_PLUS, // SuperB/SuperB/A3 305 x 487 mm | |
237 | wxPAPER_LETTER_PLUS, // Letter Plus 8.5 x 12.69 in | |
238 | wxPAPER_A4_PLUS, // A4 Plus 210 x 330 mm | |
239 | wxPAPER_A5_TRANSVERSE, // A5 Transverse 148 x 210 mm | |
240 | wxPAPER_B5_TRANSVERSE, // B5 (JIS) Transverse 182 x 257 mm | |
241 | wxPAPER_A3_EXTRA, // A3 Extra 322 x 445 mm | |
242 | wxPAPER_A5_EXTRA, // A5 Extra 174 x 235 mm | |
243 | wxPAPER_B5_EXTRA, // B5 (ISO) Extra 201 x 276 mm | |
244 | wxPAPER_A2, // A2 420 x 594 mm | |
245 | wxPAPER_A3_TRANSVERSE, // A3 Transverse 297 x 420 mm | |
246 | wxPAPER_A3_EXTRA_TRANSVERSE // A3 Extra Transverse 322 x 445 mm | |
247 | \end{verbatim} | |
248 | } | |
249 | ||
250 | \membersection{wxPrintData::SetPrinterName}\label{wxprintdatasetprintername} | |
251 | ||
252 | \func{void}{SetPrinterName}{\param{const wxString\& }{printerName}} | |
253 | ||
254 | Sets the printer name. This can be the empty string to indicate that the default | |
255 | printer should be used. | |
256 | ||
257 | \membersection{wxPrintData::SetQuality}\label{wxprintdatasetquality} | |
258 | ||
259 | \func{void}{SetQuality}{\param{wxPaperQuality}{ quality}} | |
260 | ||
261 | Sets the desired print quality. This can be a positive integer, denoting the number of dots per inch, or | |
262 | one of the following identifiers: | |
263 | ||
264 | \begin{verbatim} | |
265 | wxPRINT\_QUALITY\_HIGH | |
266 | wxPRINT\_QUALITY\_MEDIUM | |
267 | wxPRINT\_QUALITY\_LOW | |
268 | wxPRINT\_QUALITY\_DRAFT | |
269 | \end{verbatim} | |
270 | ||
271 | On input you should pass one of these identifiers, but on return you may get back a positive integer | |
272 | indicating the current resolution setting. | |
273 | ||
274 | \membersection{wxPrintData::operator $=$}\label{wxprintdataassign} | |
275 | ||
276 | \func{void}{operator $=$}{\param{const wxPrintData\&}{ data}} | |
277 | ||
278 | Assigns print data to this object. | |
279 | ||
280 | \func{void}{operator $=$}{\param{const wxPrintSetupData\&}{ data}} | |
281 | ||
282 | Assigns print setup data to this object. wxPrintSetupData is deprecated, | |
283 | but retained for backward compatibility. | |
a660d684 KB |
284 | |
285 | \section{\class{wxPrintDialog}}\label{wxprintdialog} | |
286 | ||
287 | This class represents the print and print setup common dialogs. | |
288 | You may obtain a \helpref{wxPrinterDC}{wxprinterdc} device context from | |
289 | a successfully dismissed print dialog. | |
290 | ||
291 | \wxheading{Derived from} | |
292 | ||
293 | \helpref{wxDialog}{wxdialog}\\ | |
294 | \helpref{wxWindow}{wxwindow}\\ | |
295 | \helpref{wxEvtHandler}{wxevthandler}\\ | |
296 | \helpref{wxObject}{wxobject} | |
297 | ||
954b8ae6 JS |
298 | \wxheading{Include files} |
299 | ||
300 | <wx/printdlg.h> | |
301 | ||
a660d684 KB |
302 | \wxheading{See also} |
303 | ||
304 | \helpref{wxPrintDialog Overview}{wxprintdialogoverview} | |
305 | ||
306 | \latexignore{\rtfignore{\wxheading{Members}}} | |
307 | ||
308 | \membersection{wxPrintDialog::wxPrintDialog} | |
309 | ||
7bcb11d3 | 310 | \func{}{wxPrintDialog}{\param{wxWindow* }{parent}, \param{wxPrintDialogData* }{data = NULL}} |
a660d684 KB |
311 | |
312 | Constructor. Pass a parent window, and optionally a pointer to a block of print | |
313 | data, which will be copied to the print dialog's print data. | |
314 | ||
315 | \wxheading{See also} | |
316 | ||
7bcb11d3 | 317 | \helpref{wxPrintDialogData}{wxprintdialogdata} |
a660d684 KB |
318 | |
319 | \membersection{wxPrintDialog::\destruct{wxPrintDialog}} | |
320 | ||
321 | \func{}{\destruct{wxPrintDialog}}{\void} | |
322 | ||
323 | Destructor. If wxPrintDialog::GetPrintDC has {\it not} been called, | |
324 | the device context obtained by the dialog (if any) will be deleted. | |
325 | ||
7bcb11d3 | 326 | \membersection{wxPrintDialog::GetPrintDialogData}\label{wxprintdialoggetprintdialogdata} |
a660d684 | 327 | |
7bcb11d3 | 328 | \func{wxPrintDialogData\&}{GetPrintDialogData}{\void} |
a660d684 | 329 | |
7bcb11d3 | 330 | Returns the \helpref{print dialog data}{wxprintdialogdata} associated with the print dialog. |
a660d684 KB |
331 | |
332 | \membersection{wxPrintDialog::GetPrintDC}\label{wxprintdialoggetprintdc} | |
333 | ||
334 | \func{wxDC* }{GetPrintDC}{\void} | |
335 | ||
336 | Returns the device context created by the print dialog, if any. | |
337 | When this function has been called, the ownership of the device context | |
338 | is transferred to the application, so it must then be deleted | |
339 | explicitly. | |
340 | ||
341 | \membersection{wxPrintDialog::ShowModal}\label{wxprintdialogshowmodal} | |
342 | ||
343 | \func{int}{ShowModal}{\void} | |
344 | ||
345 | Shows the dialog, returning wxID\_OK if the user pressed OK, and wxID\_CANCEL | |
346 | otherwise. After this function is called, a device context may | |
347 | be retrievable using \helpref{wxPrintDialog::GetPrintDC}{wxprintdialoggetprintdc}. | |
348 | ||
7bcb11d3 JS |
349 | \section{\class{wxPrintDialogData}}\label{wxprintdialogdata} |
350 | ||
351 | This class holds information related to the visual characteristics of wxPrintDialog. | |
352 | It contains a wxPrintData object with underlying printing settings. | |
353 | ||
354 | \wxheading{Derived from} | |
355 | ||
356 | \helpref{wxObject}{wxobject} | |
357 | ||
358 | \wxheading{Include files} | |
359 | ||
360 | <wx/cmndata.h> | |
361 | ||
362 | \wxheading{See also} | |
363 | ||
364 | \helpref{wxPrintDialog}{wxprintdialog}, \helpref{wxPrintDialog Overview}{wxprintdialogoverview} | |
365 | ||
366 | \latexignore{\rtfignore{\wxheading{Members}}} | |
367 | ||
368 | \membersection{wxPrintDialogData::wxPrintDialogData} | |
369 | ||
370 | \func{}{wxPrintDialogData}{\void} | |
371 | ||
372 | Default constructor. | |
373 | ||
374 | \func{}{wxPrintDialogData}{\param{wxPrintDialogData\&}{ dialogData}} | |
375 | ||
376 | Copy constructor. | |
377 | ||
378 | \func{}{wxPrintDialogData}{\param{wxPrintData\&}{ printData}} | |
379 | ||
380 | Construct an object from a print dialog data object. | |
381 | ||
382 | \membersection{wxPrintDialogData::\destruct{wxprintdialogdata}} | |
383 | ||
384 | \func{}{\destruct{wxPrintDialogData}}{\void} | |
385 | ||
386 | Destructor. | |
387 | ||
388 | \membersection{wxPrintDialogData::EnableHelp}\label{wxprintdialogdataenablehelp} | |
389 | ||
390 | \func{void}{EnableHelp}{\param{bool }{flag}} | |
391 | ||
392 | Enables or disables the `Help' button. | |
393 | ||
394 | \membersection{wxPrintDialogData::EnablePageNumbers}\label{wxprintdialogdataenablepagenumbers} | |
395 | ||
396 | \func{void}{EnablePageNumbers}{\param{bool }{flag}} | |
397 | ||
398 | Enables or disables the `Page numbers' controls. | |
399 | ||
400 | \membersection{wxPrintDialogData::EnablePrintToFile}\label{wxprintdialogdataenableprinttofile} | |
401 | ||
402 | \func{void}{EnablePrintToFile}{\param{bool }{flag}} | |
403 | ||
404 | Enables or disables the `Print to file' checkbox. | |
405 | ||
406 | \membersection{wxPrintDialogData::EnableSelection}\label{wxprintdialogdataenableselection} | |
407 | ||
408 | \func{void}{EnableSelection}{\param{bool }{flag}} | |
409 | ||
410 | Enables or disables the `Selection' radio button. | |
411 | ||
412 | \membersection{wxPrintDialogData::GetAllPages}\label{wxprintdialogdatagetallpages} | |
413 | ||
414 | \constfunc{bool}{GetAllPages}{\void} | |
415 | ||
416 | Returns TRUE if the user requested that all pages be printed. | |
417 | ||
418 | \membersection{wxPrintDialogData::GetCollate}\label{wxprintdialogdatagetcollate} | |
419 | ||
420 | \constfunc{bool}{GetCollate}{\void} | |
421 | ||
422 | Returns TRUE if the user requested that the document(s) be collated. | |
423 | ||
424 | \membersection{wxPrintDialogData::GetFromPage}\label{wxprintdialogdatagetfrompage} | |
425 | ||
426 | \constfunc{int}{GetFromPage}{\void} | |
427 | ||
428 | Returns the {\it from} page number, as entered by the user. | |
429 | ||
430 | \membersection{wxPrintDialogData::GetMaxPage}\label{wxprintdialogdatagetmaxpage} | |
431 | ||
432 | \constfunc{int}{GetMaxPage}{\void} | |
433 | ||
434 | Returns the {\it maximum} page number. | |
435 | ||
436 | \membersection{wxPrintDialogData::GetMinPage}\label{wxprintdialogdatagetminpage} | |
437 | ||
438 | \constfunc{int}{GetMinPage}{\void} | |
439 | ||
440 | Returns the {\it minimum} page number. | |
441 | ||
442 | \membersection{wxPrintDialogData::GetNoCopies}\label{wxprintdialogdatagetnocopies} | |
443 | ||
444 | \constfunc{int}{GetNoCopies}{\void} | |
445 | ||
446 | Returns the number of copies requested by the user. | |
447 | ||
448 | \membersection{wxPrintDialogData::GetPrintData}\label{wxprintdialogdatagetprintdata} | |
449 | ||
450 | \func{wxPrintData\&}{GetPrintData}{\void} | |
451 | ||
452 | Returns a reference to the internal wxPrintData object. | |
453 | ||
454 | \membersection{wxPrintDialogData::GetPrintToFile}\label{wxprintdialogdatagetprinttofile} | |
455 | ||
456 | \constfunc{bool}{GetPrintToFile}{\void} | |
457 | ||
458 | Returns TRUE if the user has selected printing to a file. | |
459 | ||
5360828d JS |
460 | \membersection{wxPrintDialogData::GetSelection}\label{wxprintdialogdatagetselection} |
461 | ||
462 | \constfunc{bool}{GetSelection}{\void} | |
463 | ||
464 | Returns TRUE if the user requested that the selection be printed (where 'selection' is | |
465 | a concept specific to the application). | |
466 | ||
7bcb11d3 JS |
467 | \membersection{wxPrintDialogData::GetToPage}\label{wxprintdialogdatagettopage} |
468 | ||
469 | \constfunc{int}{GetToPage}{\void} | |
470 | ||
471 | Returns the {\it to} page number, as entered by the user. | |
472 | ||
473 | \membersection{wxPrintDialogData::SetCollate}\label{wxprintdialogdatasetcollate} | |
474 | ||
475 | \func{void}{SetCollate}{\param{bool }{flag}} | |
476 | ||
477 | Sets the 'Collate' checkbox to TRUE or FALSE. | |
478 | ||
479 | \membersection{wxPrintDialogData::SetFromPage}\label{wxprintdialogdatasetfrompage} | |
480 | ||
481 | \func{void}{SetFromPage}{\param{int }{page}} | |
482 | ||
483 | Sets the {\it from} page number. | |
484 | ||
485 | \membersection{wxPrintDialogData::SetMaxPage}\label{wxprintdialogdatasetmaxpage} | |
486 | ||
487 | \func{void}{SetMaxPage}{\param{int }{page}} | |
488 | ||
489 | Sets the {\it maximum} page number. | |
490 | ||
491 | \membersection{wxPrintDialogData::SetMinPage}\label{wxprintdialogdatasetminpage} | |
492 | ||
493 | \func{void}{SetMinPage}{\param{int }{page}} | |
494 | ||
495 | Sets the {\it minimum} page number. | |
496 | ||
497 | \membersection{wxPrintDialogData::SetNoCopies}\label{wxprintdialogdatasetnocopies} | |
498 | ||
499 | \func{void}{SetNoCopies}{\param{int }{n}} | |
500 | ||
501 | Sets the default number of copies the user has requested to be printed out. | |
502 | ||
503 | \membersection{wxPrintDialogData::SetPrintData}\label{wxprintdialogdatasetprintdata} | |
504 | ||
505 | \func{void}{SetPrintData}{\param{const wxPrintData\& }{printData}} | |
506 | ||
507 | Sets the internal wxPrintData. | |
508 | ||
509 | \membersection{wxPrintDialogData::SetPrintToFile}\label{wxprintdialogdatasetprinttofile} | |
510 | ||
511 | \func{void}{SetPrintToFile}{\param{bool }{flag}} | |
512 | ||
513 | Sets the 'Print to file' checkbox to TRUE or FALSE. | |
514 | ||
5360828d JS |
515 | \membersection{wxPrintDialogData::SetSelection}\label{wxprintdialogdatasetselection} |
516 | ||
517 | \func{void}{SetSelection}{\param{bool}{ flag}} | |
518 | ||
519 | Selects the 'Selection' radio button. The effect of printing the selection depends on how the application | |
520 | implements this command, if at all. | |
521 | ||
7bcb11d3 JS |
522 | \membersection{wxPrintDialogData::SetSetupDialog}\label{wxprintdialogdatasetsetupdialog} |
523 | ||
524 | \func{void}{SetSetupDialog}{\param{bool }{flag}} | |
525 | ||
526 | Determines whether the dialog to be shown will be the Print dialog | |
527 | (pass FALSE) or Print Setup dialog (pass TRUE). | |
528 | ||
529 | Note that the setup dialog is (according to Microsoft) obsolete from | |
530 | Windows 95, though retained for backward compatibility. | |
531 | ||
532 | \membersection{wxPrintDialogData::SetToPage}\label{wxprintdialogdatasettopage} | |
533 | ||
534 | \func{void}{SetToPage}{\param{int }{page}} | |
535 | ||
536 | Sets the {\it to} page number. | |
537 | ||
538 | \membersection{wxPrintDialogData::operator $=$}\label{wxprintdialogdataassign} | |
539 | ||
540 | \func{void}{operator $=$}{\param{const wxPrintData\&}{ data}} | |
541 | ||
542 | Assigns print data to this object. | |
543 | ||
544 | \func{void}{operator $=$}{\param{const wxPrintDialogData\&}{ data}} | |
545 | ||
546 | Assigns another print dialog data object to this object. | |
547 | ||
a660d684 KB |
548 | \section{\class{wxPrinter}}\label{wxprinter} |
549 | ||
550 | This class represents the Windows or PostScript printer, and is the vehicle through | |
551 | which printing may be launched by an application. Printing can also | |
552 | be achieved through using of lower functions and classes, but | |
553 | this and associated classes provide a more convenient and general | |
554 | method of printing. | |
555 | ||
556 | \wxheading{Derived from} | |
557 | ||
558 | \helpref{wxObject}{wxobject} | |
559 | ||
954b8ae6 JS |
560 | \wxheading{Include files} |
561 | ||
562 | <wx/print.h> | |
563 | ||
a660d684 KB |
564 | \wxheading{See also} |
565 | ||
566 | \helpref{Printing framework overview}{printingoverview}, \helpref{wxPrinterDC}{wxprinterdc}, \helpref{wxPrintDialog}{wxprintdialog},\rtfsp | |
567 | \helpref{wxPrintout}{wxprintout}, \helpref{wxPrintPreview}{wxprintpreview}. | |
568 | ||
569 | \latexignore{\rtfignore{\wxheading{Members}}} | |
570 | ||
571 | \membersection{wxPrinter::wxPrinter} | |
572 | ||
7bcb11d3 | 573 | \func{}{wxPrinter}{\param{wxPrintDialogData* }{data = NULL}} |
a660d684 KB |
574 | |
575 | Constructor. Pass an optional pointer to a block of print | |
7bcb11d3 | 576 | dialog data, which will be copied to the printer object's local data. |
a660d684 KB |
577 | |
578 | \wxheading{See also} | |
579 | ||
2233e5b8 | 580 | \helpref{wxPrintDialogData}{wxprintdialogdata}, |
a660d684 KB |
581 | \helpref{wxPrintData}{wxprintdata} |
582 | ||
583 | \membersection{wxPrinter::\destruct{wxPrinter}} | |
584 | ||
585 | \func{}{\destruct{wxPrinter}}{\void} | |
586 | ||
587 | Destructor. | |
588 | ||
589 | \membersection{wxPrinter::Abort}\label{wxprinterabort} | |
590 | ||
591 | \func{bool}{Abort}{\void} | |
592 | ||
593 | Returns TRUE if the user has aborted the print job. | |
594 | ||
595 | \membersection{wxPrinter::CreateAbortWindow}\label{wxprintercreateabortwindow} | |
596 | ||
597 | \func{void}{CreateAbortWindow}{\param{wxWindow* }{parent}, \param{wxPrintout* }{printout}} | |
598 | ||
599 | Creates the default printing abort window, with a cancel button. | |
600 | ||
7bcb11d3 | 601 | \membersection{wxPrinter::GetPrintDialogData}\label{wxprintergetprintdialogdata} |
a660d684 | 602 | |
7bcb11d3 | 603 | \func{wxPrintDialogData\&}{GetPrintDialogData}{\void} |
a660d684 KB |
604 | |
605 | Returns the \helpref{print data}{wxprintdata} associated with the printer object. | |
606 | ||
607 | \membersection{wxPrinter::Print}\label{wxprinterprint} | |
608 | ||
609 | \func{bool}{Print}{\param{wxWindow *}{parent}, \param{wxPrintout *}{printout}, \param{bool }{prompt=TRUE}} | |
610 | ||
611 | Starts the printing process. Provide a parent window, a user-defined wxPrintout object which controls | |
612 | the printing of a document, and whether the print dialog should be invoked first. | |
613 | ||
614 | Print could return FALSE if there was a problem initializing the printer device context | |
615 | (current printer not set, for example). | |
616 | ||
617 | \membersection{wxPrinter::PrintDialog}\label{wxprinterprintdialog} | |
618 | ||
7bcb11d3 JS |
619 | \func{wxDC*}{PrintDialog}{\param{wxWindow *}{parent}} |
620 | ||
621 | Invokes the print dialog. If successful (the user did not press Cancel | |
622 | and no error occurred), a suitable device context will be returned | |
623 | (otherwise NULL is returned). | |
a660d684 | 624 | |
7bcb11d3 | 625 | The application must delete this device context to avoid a memory leak. |
a660d684 KB |
626 | |
627 | \membersection{wxPrinter::ReportError}\label{wxprinterreporterror} | |
628 | ||
629 | \func{void}{ReportError}{\param{wxWindow *}{parent}, \param{wxPrintout *}{printout}, \param{const wxString\& }{message}} | |
630 | ||
631 | Default error-reporting function. | |
632 | ||
633 | \membersection{wxPrinter::Setup}\label{wxprintersetup} | |
634 | ||
7bcb11d3 | 635 | \func{bool}{Setup}{\param{wxWindow *}{parent}} |
a660d684 KB |
636 | |
637 | Invokes the print setup dialog. Note that the setup dialog is obsolete from | |
638 | Windows 95, though retained for backward compatibility. | |
639 | ||
640 | \section{\class{wxPrinterDC}}\label{wxprinterdc} | |
641 | ||
642 | A printer device context is specific to Windows, and allows access to | |
643 | any printer with a Windows driver. See \helpref{wxDC}{wxdc} for further information | |
644 | on device contexts, and \helpref{wxDC::GetSize}{wxdcgetsize} for advice on | |
645 | achieving the correct scaling for the page. | |
646 | ||
647 | \wxheading{Derived from} | |
648 | ||
649 | \helpref{wxDC}{wxdc}\\ | |
650 | \helpref{wxObject}{wxdc} | |
651 | ||
954b8ae6 JS |
652 | \wxheading{Include files} |
653 | ||
654 | <wx/dcprint.h> | |
655 | ||
a660d684 KB |
656 | \wxheading{See also} |
657 | ||
658 | \helpref{wxDC}{wxdc}, \helpref{Printing framework overview}{printingoverview} | |
659 | ||
660 | \latexignore{\rtfignore{\wxheading{Members}}} | |
661 | ||
662 | \membersection{wxPrinterDC::wxPrinterDC} | |
663 | ||
7bcb11d3 JS |
664 | \func{}{wxPrinterDC}{\param{const wxPrintData\& }{printData}} |
665 | ||
666 | Pass a \helpref{wxPrintData}{wxprintdata} object with information | |
667 | necessary for setting up a suitable printer device context. This | |
668 | is the recommended way to construct a wxPrinterDC. | |
669 | ||
a660d684 | 670 | \func{}{wxPrinterDC}{\param{const wxString\& }{driver}, \param{const wxString\& }{device}, \param{const wxString\& }{output}, |
eaaa6a06 | 671 | \param{const bool }{interactive = TRUE}, \param{int }{orientation = wxPORTRAIT}} |
a660d684 KB |
672 | |
673 | Constructor. With empty strings for the first three arguments, the default printer dialog is | |
674 | displayed. {\it device} indicates the type of printer and {\it output} | |
675 | is an optional file for printing to. The {\it driver} parameter is | |
676 | currently unused. Use the {\it Ok} member to test whether the | |
677 | constructor was successful in creating a useable device context. | |
678 | ||
7bcb11d3 JS |
679 | This constructor is deprecated and retained only for backward compatibility. |
680 | ||
a660d684 KB |
681 | \section{\class{wxPrintout}}\label{wxprintout} |
682 | ||
683 | This class encapsulates the functionality of printing out an | |
684 | application document. A new class must be derived and members | |
685 | overridden to respond to calls such as OnPrintPage and HasPage. | |
686 | Instances of this class are passed to wxPrinter::Print or a | |
687 | wxPrintPreview object to initiate printing or previewing. | |
688 | ||
689 | \wxheading{Derived from} | |
690 | ||
691 | \helpref{wxObject}{wxobject} | |
692 | ||
954b8ae6 JS |
693 | \wxheading{Include files} |
694 | ||
695 | <wx/print.h> | |
696 | ||
a660d684 KB |
697 | \wxheading{See also} |
698 | ||
699 | \helpref{Printing framework overview}{printingoverview}, \helpref{wxPrinterDC}{wxprinterdc}, \helpref{wxPrintDialog}{wxprintdialog},\rtfsp | |
700 | \helpref{wxPrinter}{wxprinter}, \helpref{wxPrintPreview}{wxprintpreview} | |
701 | ||
702 | \latexignore{\rtfignore{\wxheading{Members}}} | |
703 | ||
704 | \membersection{wxPrintout::wxPrintout} | |
705 | ||
706 | \func{}{wxPrintout}{\param{const wxString\& }{title = "Printout"}} | |
707 | ||
708 | Constructor. Pass an optional title argument (currently unused). | |
709 | ||
710 | \membersection{wxPrintout::\destruct{wxPrintout}} | |
711 | ||
712 | \func{}{\destruct{wxPrintout}}{\void} | |
713 | ||
714 | Destructor. | |
715 | ||
716 | \membersection{wxPrintout::GetDC}\label{wxprintoutgetdc} | |
717 | ||
718 | \func{wxDC *}{GetDC}{\void} | |
719 | ||
720 | Returns the device context associated with the printout (given to the printout at start of | |
721 | printing or previewing). This will be a wxPrinterDC if printing under Windows, | |
722 | a wxPostScriptDC if printing on other platforms, and a wxMemoryDC if previewing. | |
723 | ||
724 | \membersection{wxPrintout::GetPageInfo}\label{wxprintoutgetpageinfo} | |
725 | ||
726 | \func{void}{GetPageInfo}{\param{int *}{minPage}, \param{int *}{maxPage}, \param{int *}{pageFrom}, \param{int *}{pageTo}} | |
727 | ||
728 | Called by the framework to obtain information from the application about minimum and maximum page values that | |
729 | the user can select, and the required page range to be printed. By default this | |
730 | returns 1, 32000 for the page minimum and maximum values, and 1, 1 for the required page range. | |
731 | ||
732 | If {\it minPage} is zero, the page number controls in the print dialog will be disabled. | |
733 | ||
2233e5b8 RD |
734 | \pythonnote{When this method is implemented in a derived Python class, |
735 | it should be designed to take no parameters (other than the self | |
736 | reference) and to return a tuple of four integers. | |
737 | } | |
738 | ||
a660d684 KB |
739 | \membersection{wxPrintout::GetPageSizeMM}\label{wxprintoutgetpagesizemm} |
740 | ||
741 | \func{void}{GetPageSizeMM}{\param{int *}{w}, \param{int *}{h}} | |
742 | ||
743 | Returns the size of the printer page in millimetres. | |
744 | ||
2233e5b8 RD |
745 | \pythonnote{This method returns the output-only parameters as a tuple.} |
746 | ||
a660d684 KB |
747 | \membersection{wxPrintout::GetPageSizePixels}\label{wxprintoutgetpagesizepixels} |
748 | ||
749 | \func{void}{GetPageSizePixels}{\param{int *}{w}, \param{int *}{h}} | |
750 | ||
751 | Returns the size of the printer page in pixels. These may not be the | |
752 | same as the values returned from \helpref{wxDC::GetSize}{wxdcgetsize} if | |
753 | the printout is being used for previewing, since in this case, a | |
754 | memory device context is used, using a bitmap size reflecting the current | |
755 | preview zoom. The application must take this discrepancy into account if | |
756 | previewing is to be supported. | |
757 | ||
2233e5b8 RD |
758 | \pythonnote{This method returns the output-only parameters as a tuple.} |
759 | ||
a660d684 KB |
760 | \membersection{wxPrintout::GetPPIPrinter}\label{wxprintoutgetppiprinter} |
761 | ||
762 | \func{void}{GetPPIPrinter}{\param{int *}{w}, \param{int *}{h}} | |
763 | ||
764 | Returns the number of pixels per logical inch of the printer device context. | |
765 | Dividing the printer PPI by the screen PPI can give a suitable scaling | |
766 | factor for drawing text onto the printer. Remember to multiply | |
767 | this by a scaling factor to take the preview DC size into account. | |
768 | ||
2233e5b8 RD |
769 | \pythonnote{This method returns the output-only parameters as a tuple.} |
770 | ||
a660d684 KB |
771 | \membersection{wxPrintout::GetPPIScreen}\label{wxprintoutgetppiscreen} |
772 | ||
773 | \func{void}{GetPPIScreen}{\param{int *}{w}, \param{int *}{h}} | |
774 | ||
775 | Returns the number of pixels per logical inch of the screen device context. | |
776 | Dividing the printer PPI by the screen PPI can give a suitable scaling | |
777 | factor for drawing text onto the printer. Remember to multiply | |
778 | this by a scaling factor to take the preview DC size into account. | |
779 | ||
2233e5b8 RD |
780 | \pythonnote{This method returns the output-only parameters as a tuple.} |
781 | ||
a660d684 KB |
782 | \membersection{wxPrintout::HasPage}\label{wxprintouthaspage} |
783 | ||
784 | \func{bool}{HasPage}{\param{int}{ pageNum}} | |
785 | ||
786 | Should be overriden to return TRUE if the document has this page, or FALSE | |
787 | if not. Returning FALSE signifies the end of the document. By default, | |
788 | HasPage behaves as if the document has only one page. | |
789 | ||
790 | \membersection{wxPrintout::IsPreview}\label{wxprintoutispreview} | |
791 | ||
792 | \func{bool}{IsPreview}{\void} | |
793 | ||
794 | Returns TRUE if the printout is currently being used for previewing. | |
795 | ||
796 | \membersection{wxPrintout::OnBeginDocument}\label{wxprintoutonbegindocument} | |
797 | ||
798 | \func{bool}{OnBeginDocument}{\param{int}{ startPage}, \param{int}{ endPage}} | |
799 | ||
800 | Called by the framework at the start of document printing. Return FALSE from | |
801 | this function cancels the print job. OnBeginDocument is called once for every | |
802 | copy printed. | |
803 | ||
804 | The base wxPrintout::OnBeginDocument {\it must} be called (and the return value | |
805 | checked) from within the overriden function, since it calls wxDC::StartDoc. | |
806 | ||
2233e5b8 RD |
807 | \pythonnote{If this method is overriden in a Python class then the |
808 | base class version can be called by using the method | |
c9110876 | 809 | {\tt base_OnBeginDocument(startPage, endPage)}. } |
2233e5b8 | 810 | |
a660d684 KB |
811 | \membersection{wxPrintout::OnEndDocument}\label{wxprintoutonenddocument} |
812 | ||
813 | \func{void}{OnEndDocument}{\void} | |
814 | ||
815 | Called by the framework at the end of document printing. OnEndDocument | |
816 | is called once for every copy printed. | |
817 | ||
818 | The base wxPrintout::OnEndDocument {\it must} be called | |
819 | from within the overriden function, since it calls wxDC::EndDoc. | |
820 | ||
821 | \membersection{wxPrintout::OnBeginPrinting}\label{wxprintoutonbeginprinting} | |
822 | ||
823 | \func{void}{OnBeginPrinting}{\void} | |
824 | ||
825 | Called by the framework at the start of printing. OnBeginPrinting is called once for every | |
826 | print job (regardless of how many copies are being printed). | |
827 | ||
828 | \membersection{wxPrintout::OnEndPrinting}\label{wxprintoutonendprinting} | |
829 | ||
830 | \func{void}{OnEndPrinting}{\void} | |
831 | ||
832 | Called by the framework at the end of printing. OnEndPrinting | |
833 | is called once for every print job (regardless of how many copies are being printed). | |
834 | ||
835 | \membersection{wxPrintout::OnPreparePrinting}\label{wxprintoutonprepareprinting} | |
836 | ||
837 | \func{void}{OnPreparePrinting}{\void} | |
838 | ||
839 | Called once by the framework before any other demands are made of the | |
840 | wxPrintout object. This gives the object an opportunity to calculate the | |
841 | number of pages in the document, for example. | |
842 | ||
843 | \membersection{wxPrintout::OnPrintPage}\label{wxprintoutonprintpage} | |
844 | ||
845 | \func{bool}{OnPrintPage}{\param{int}{ pageNum}} | |
846 | ||
847 | Called by the framework when a page should be printed. Returning FALSE cancels | |
848 | the print job. The application can use wxPrintout::GetDC to obtain a device | |
849 | context to draw on. | |
850 | ||
851 | \section{\class{wxPrintPreview}}\label{wxprintpreview} | |
852 | ||
853 | \overview{Printing framework overview}{printingoverview} | |
854 | ||
855 | Objects of this class manage the print preview process. The object is passed | |
856 | a wxPrintout object, and the wxPrintPreview object itself is passed to | |
857 | a wxPreviewFrame object. Previewing is started by initializing and showing | |
858 | the preview frame. Unlike wxPrinter::Print, flow of control returns to the application | |
859 | immediately after the frame is shown. | |
860 | ||
861 | \wxheading{Derived from} | |
862 | ||
863 | \helpref{wxObject}{wxobject} | |
864 | ||
954b8ae6 JS |
865 | \wxheading{Include files} |
866 | ||
867 | <wx/print.h> | |
868 | ||
a660d684 KB |
869 | \wxheading{See also} |
870 | ||
871 | \overview{Printing framework overview}{printingoverview}, \helpref{wxPrinterDC}{wxprinterdc}, \helpref{wxPrintDialog}{wxprintdialog},\rtfsp | |
872 | \helpref{wxPrintout}{wxprintout}, \helpref{wxPrinter}{wxprinter},\rtfsp | |
873 | \helpref{wxPreviewCanvas}{wxpreviewcanvas}, \helpref{wxPreviewControlBar}{wxpreviewcontrolbar},\rtfsp | |
874 | \helpref{wxPreviewFrame}{wxpreviewframe}. | |
875 | ||
876 | \latexignore{\rtfignore{\wxheading{Members}}} | |
877 | ||
878 | \membersection{wxPrintPreview::wxPrintPreview} | |
879 | ||
880 | \func{}{wxPrintPreview}{\param{wxPrintout* }{printout}, \param{wxPrintout* }{printoutForPrinting}, | |
881 | \param{wxPrintData* }{data=NULL}} | |
882 | ||
883 | Constructor. Pass a printout object, an optional printout object to be | |
884 | used for actual printing, and the address of an optional | |
885 | block of printer data, which will be copied to the print preview object's | |
886 | print data. | |
887 | ||
888 | If {\it printoutForPrinting} is non-NULL, a {\bf Print...} button will be placed on the | |
889 | preview frame so that the user can print directly from the preview interface. | |
890 | ||
891 | Do not explicitly delete the printout objects once this destructor has been | |
892 | called, since they will be deleted in the wxPrintPreview constructor. | |
893 | The same does not apply to the {\it data} argument. | |
894 | ||
895 | Test the Ok member to check whether the wxPrintPreview object was created correctly. | |
896 | Ok could return FALSE if there was a problem initializing the printer device context | |
897 | (current printer not set, for example). | |
898 | ||
899 | \membersection{wxPrintPreview::\destruct{wxPrintPreview}} | |
900 | ||
901 | \func{}{\destruct{wxPrinter}}{\void} | |
902 | ||
903 | Destructor. Deletes both print preview objects, so do not destroy these objects | |
904 | in your application. | |
905 | ||
906 | \membersection{wxPrintPreview::DrawBlankPage}\label{wxprintpreviewdrawblankpage} | |
907 | ||
908 | \func{bool}{DrawBlankPage}{\param{wxWindow* }{window}} | |
909 | ||
910 | Draws a representation of the blank page into the preview window. Used | |
911 | internally. | |
912 | ||
913 | \membersection{wxPrintPreview::GetCanvas}\label{wxprintpreviewgetcanvas} | |
914 | ||
915 | \func{wxWindow* }{GetCanvas}{\void} | |
916 | ||
917 | Gets the preview window used for displaying the print preview image. | |
918 | ||
919 | \membersection{wxPrintPreview::GetCurrentPage}\label{wxprintpreviewgetcurrentpage} | |
920 | ||
921 | \func{int}{GetCurrentPage}{\void} | |
922 | ||
923 | Gets the page currently being previewed. | |
924 | ||
925 | \membersection{wxPrintPreview::GetFrame}\label{wxprintpreviewgetframe} | |
926 | ||
927 | \func{wxFrame *}{GetFrame}{\void} | |
928 | ||
929 | Gets the frame used for displaying the print preview canvas | |
930 | and control bar. | |
931 | ||
932 | \membersection{wxPrintPreview::GetMaxPage}\label{wxprintpreviewgetmaxpage} | |
933 | ||
934 | \func{int}{GetMaxPage}{\void} | |
935 | ||
936 | Returns the maximum page number. | |
937 | ||
938 | \membersection{wxPrintPreview::GetMinPage}\label{wxprintpreviewgetminpage} | |
939 | ||
940 | \func{int}{GetMinPage}{\void} | |
941 | ||
942 | Returns the minimum page number. | |
943 | ||
944 | \membersection{wxPrintPreview::GetPrintData}\label{wxprintpreviewgetprintdata} | |
945 | ||
946 | \func{wxPrintData\&}{GetPrintData}{\void} | |
947 | ||
948 | Returns a reference to the internal print data. | |
949 | ||
950 | \membersection{wxPrintPreview::GetPrintout}\label{wxprintpreviewgetprintout} | |
951 | ||
952 | \func{wxPrintout *}{GetPrintout}{\void} | |
953 | ||
954 | Gets the preview printout object associated with the wxPrintPreview object. | |
955 | ||
956 | \membersection{wxPrintPreview::GetPrintoutForPrinting}\label{wxprintpreviewgetprintoutforprinting} | |
957 | ||
958 | \func{wxPrintout *}{GetPrintoutForPrinting}{\void} | |
959 | ||
960 | Gets the printout object to be used for printing from within the preview interface, | |
961 | or NULL if none exists. | |
962 | ||
963 | \membersection{wxPrintPreview::Ok}\label{wxprintpreviewok} | |
964 | ||
965 | \func{bool}{Ok}{\void} | |
966 | ||
967 | Returns TRUE if the wxPrintPreview is valid, FALSE otherwise. It could return FALSE if there was a | |
968 | problem initializing the printer device context (current printer not set, for example). | |
969 | ||
970 | \membersection{wxPrintPreview::PaintPage}\label{wxprintpreviewpaintpage} | |
971 | ||
972 | \func{bool}{PaintPage}{\param{wxWindow* }{window}} | |
973 | ||
974 | This refreshes the preview window with the preview image. | |
975 | It must be called from the preview window's OnPaint member. | |
976 | ||
977 | The implementation simply blits the preview bitmap onto | |
978 | the canvas, creating a new preview bitmap if none exists. | |
979 | ||
980 | \membersection{wxPrintPreview::Print}\label{wxprintpreviewprint} | |
981 | ||
982 | \func{bool}{Print}{\param{bool }{prompt}} | |
983 | ||
984 | Invokes the print process using the second wxPrintout object | |
985 | supplied in the wxPrintPreview constructor. | |
986 | Will normally be called by the {\bf Print...} panel item on the | |
987 | preview frame's control bar. | |
988 | ||
989 | \membersection{wxPrintPreview::RenderPage}\label{wxprintpreviewrenderpage} | |
990 | ||
991 | \func{bool}{RenderPage}{\param{int }{pageNum}} | |
992 | ||
993 | Renders a page into a wxMemoryDC. Used internally by wxPrintPreview. | |
994 | ||
995 | \membersection{wxPrintPreview::SetCanvas}\label{wxprintpreviewsetcanvas} | |
996 | ||
997 | \func{void}{SetCanvas}{\param{wxWindow* }{window}} | |
998 | ||
999 | Sets the window to be used for displaying the print preview image. | |
1000 | ||
1001 | \membersection{wxPrintPreview::SetCurrentPage}\label{wxprintpreviewsetcurrentpage} | |
1002 | ||
1003 | \func{void}{SetCurrentPage}{\param{int}{ pageNum}} | |
1004 | ||
1005 | Sets the current page to be previewed. | |
1006 | ||
1007 | \membersection{wxPrintPreview::SetFrame}\label{wxprintpreviewsetframe} | |
1008 | ||
1009 | \func{void}{SetFrame}{\param{wxFrame *}{frame}} | |
1010 | ||
1011 | Sets the frame to be used for displaying the print preview canvas | |
1012 | and control bar. | |
1013 | ||
1014 | \membersection{wxPrintPreview::SetPrintout}\label{wxprintpreviewsetprintout} | |
1015 | ||
1016 | \func{void}{SetPrintout}{\param{wxPrintout *}{printout}} | |
1017 | ||
1018 | Associates a printout object with the wxPrintPreview object. | |
1019 | ||
1020 | \membersection{wxPrintPreview::SetZoom}\label{wxprintpreviewsetzoom} | |
1021 | ||
1022 | \func{void}{SetZoom}{\param{int}{ percent}} | |
1023 | ||
1024 | Sets the percentage preview zoom, and refreshes the preview canvas | |
1025 | accordingly. | |
1026 |