]> git.saurik.com Git - wxWidgets.git/blame - docs/latex/wx/print.tex
added support for 2 extra mouse buttons (patch 1757630)
[wxWidgets.git] / docs / latex / wx / print.tex
CommitLineData
a660d684
KB
1\section{\class{wxPrintData}}\label{wxprintdata}
2
7bcb11d3
JS
3This class holds a variety of information related to printers and
4printer device contexts. This class is used to create a wxPrinterDC
5and a wxPostScriptDC. It is also used as a data member of wxPrintDialogData
6and wxPageSetupDialogData, as part of the mechanism for transferring data
7between 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
a7af285d
VZ
17\wxheading{Library}
18
19\helpref{wxCore}{librarieslist}
20
a660d684
KB
21\wxheading{See also}
22
f415cab9 23\helpref{Printing framework overview}{printingoverview},
fa482912
JS
24\helpref{wxPrintDialog}{wxprintdialog},
25\helpref{wxPageSetupDialog}{wxpagesetupdialog},
26\helpref{wxPrintDialogData}{wxprintdialogdata},
27\helpref{wxPageSetupDialogData}{wxpagesetupdialogdata},
28\helpref{wxPrintDialog Overview}{wxprintdialogoverview},
29\helpref{wxPrinterDC}{wxprinterdc},
7bcb11d3
JS
30\helpref{wxPostScriptDC}{wxpostscriptdc}
31
32\wxheading{Remarks}
33
34The following functions are specific to PostScript printing
35and have not yet been documented:
36
37\begin{verbatim}
38const wxString& GetPrinterCommand() const ;
39const wxString& GetPrinterOptions() const ;
40const wxString& GetPreviewCommand() const ;
41const wxString& GetFilename() const ;
42const wxString& GetFontMetricPath() const ;
43double GetPrinterScaleX() const ;
44double GetPrinterScaleY() const ;
45long GetPrinterTranslateX() const ;
46long GetPrinterTranslateY() const ;
47// wxPRINT_MODE_PREVIEW, wxPRINT_MODE_FILE, wxPRINT_MODE_PRINTER
48wxPrintMode GetPrintMode() const ;
49
50void SetPrinterCommand(const wxString& command) ;
51void SetPrinterOptions(const wxString& options) ;
52void SetPreviewCommand(const wxString& command) ;
53void SetFilename(const wxString& filename) ;
54void SetFontMetricPath(const wxString& path) ;
55void SetPrinterScaleX(double x) ;
56void SetPrinterScaleY(double y) ;
57void SetPrinterScaling(double x, double y) ;
58void SetPrinterTranslateX(long x) ;
59void SetPrinterTranslateY(long y) ;
60void SetPrinterTranslation(long x, long y) ;
61void SetPrintMode(wxPrintMode printMode) ;
62\end{verbatim}
a660d684
KB
63
64\latexignore{\rtfignore{\wxheading{Members}}}
65
60090256 66
3e79fa75 67\membersection{wxPrintData::wxPrintData}\label{wxprintdatactor}
a660d684
KB
68
69\func{}{wxPrintData}{\void}
70
7bcb11d3
JS
71Default constructor.
72
73\func{}{wxPrintData}{\param{const wxPrintData\&}{ data}}
74
75Copy constructor.
a660d684 76
60090256 77
3e79fa75 78\membersection{wxPrintData::\destruct{wxPrintData}}\label{wxprintdatadtor}
a660d684
KB
79
80\func{}{\destruct{wxPrintData}}{\void}
81
82Destructor.
83
60090256 84
a660d684
KB
85\membersection{wxPrintData::GetCollate}\label{wxprintdatagetcollate}
86
7bcb11d3 87\constfunc{bool}{GetCollate}{\void}
a660d684 88
cc81d32f 89Returns true if collation is on.
a660d684 90
60090256
VZ
91
92\membersection{wxPrintData::GetBin}\label{wxprintdatagetbin}
93
94\constfunc{wxPrintBin}{GetBin}{\void}
95
96Returns the current bin (papersource). By default, the system is left to select
97the bin (\texttt{wxPRINTBIN\_DEFAULT} is returned).
98
99See \helpref{SetBin()}{wxprintdatasetbin} for the full list of bin values.
100
101
7bcb11d3 102\membersection{wxPrintData::GetColour}\label{wxprintdatagetcolour}
a660d684 103
7bcb11d3 104\constfunc{bool}{GetColour}{\void}
a660d684 105
cc81d32f 106Returns true if colour printing is on.
a660d684 107
60090256 108
7bcb11d3 109\membersection{wxPrintData::GetDuplex}\label{wxprintdatagetduplex}
a660d684 110
7bcb11d3 111\constfunc{wxDuplexMode}{GetDuplex}{\void}
a660d684 112
7bcb11d3 113Returns the duplex mode. One of wxDUPLEX\_SIMPLEX, wxDUPLEX\_HORIZONTAL, wxDUPLEX\_VERTICAL.
a660d684 114
60090256 115
a660d684
KB
116\membersection{wxPrintData::GetNoCopies}\label{wxprintdatagetnocopies}
117
7bcb11d3 118\constfunc{int}{GetNoCopies}{\void}
a660d684
KB
119
120Returns the number of copies requested by the user.
121
60090256 122
a660d684
KB
123\membersection{wxPrintData::GetOrientation}\label{wxprintdatagetorientation}
124
7bcb11d3 125\constfunc{int}{GetOrientation}{\void}
a660d684
KB
126
127Gets the orientation. This can be wxLANDSCAPE or wxPORTRAIT.
128
60090256 129
7bcb11d3 130\membersection{wxPrintData::GetPaperId}\label{wxprintdatagetpaperid}
a660d684 131
7bcb11d3 132\constfunc{wxPaperSize}{GetPaperId}{\void}
a660d684 133
7bcb11d3 134Returns the paper size id. For more information, see \helpref{wxPrintData::SetPaperId}{wxprintdatasetpaperid}.
a660d684 135
60090256 136
7bcb11d3 137\membersection{wxPrintData::GetPrinterName}\label{wxprintdatagetprintername}
a660d684 138
7bcb11d3 139\constfunc{const wxString\&}{GetPrinterName}{\void}
a660d684 140
7bcb11d3
JS
141Returns the printer name. If the printer name is the empty string, it indicates that the default
142printer should be used.
a660d684 143
60090256 144
7bcb11d3 145\membersection{wxPrintData::GetQuality}\label{wxprintdatagetquality}
a660d684 146
6394c596 147\constfunc{wxPrintQuality}{GetQuality}{\void}
a660d684 148
7bcb11d3
JS
149Returns the current print quality. This can be a positive integer, denoting the number of dots per inch, or
150one of the following identifiers:
a660d684 151
7bcb11d3 152\begin{verbatim}
a66abda9
GT
153wxPRINT_QUALITY_HIGH
154wxPRINT_QUALITY_MEDIUM
155wxPRINT_QUALITY_LOW
156wxPRINT_QUALITY_DRAFT
7bcb11d3 157\end{verbatim}
a660d684 158
7bcb11d3
JS
159On input you should pass one of these identifiers, but on return you may get back a positive integer
160indicating the current resolution setting.
a660d684 161
60090256 162
b7cacb43 163\membersection{wxPrintData::IsOk}\label{wxprintdataisok}
58cf0491 164
b7cacb43 165\constfunc{bool}{IsOk}{\void}
58cf0491 166
cc81d32f
VS
167Returns true if the print data is valid for using in print dialogs.
168This can return false on Windows if the current printer is not set, for example.
169On all other platforms, it returns true.
58cf0491 170
60090256
VZ
171
172\membersection{wxPrintData::SetBin}\label{wxprintdatasetbin}
173
174\func{void}{SetBin}{\param{wxPrintBin }{flag}}
175
176Sets the current bin. Possible values are:
177
178\small{
179\begin{verbatim}
180enum wxPrintBin
181{
182 wxPRINTBIN_DEFAULT,
183
184 wxPRINTBIN_ONLYONE,
185 wxPRINTBIN_LOWER,
186 wxPRINTBIN_MIDDLE,
187 wxPRINTBIN_MANUAL,
188 wxPRINTBIN_ENVELOPE,
189 wxPRINTBIN_ENVMANUAL,
190 wxPRINTBIN_AUTO,
191 wxPRINTBIN_TRACTOR,
192 wxPRINTBIN_SMALLFMT,
193 wxPRINTBIN_LARGEFMT,
194 wxPRINTBIN_LARGECAPACITY,
195 wxPRINTBIN_CASSETTE,
196 wxPRINTBIN_FORMSOURCE,
197
198 wxPRINTBIN_USER,
199};
200\end{verbatim}
201}
202
203
7bcb11d3 204\membersection{wxPrintData::SetCollate}\label{wxprintdatasetcollate}
a660d684 205
7bcb11d3 206\func{void}{SetCollate}{\param{bool }{flag}}
a660d684 207
7bcb11d3 208Sets collation to on or off.
a660d684 209
60090256 210
7bcb11d3 211\membersection{wxPrintData::SetColour}\label{wxprintdatasetcolour}
a660d684 212
7bcb11d3 213\func{void}{SetColour}{\param{bool }{flag}}
a660d684 214
7bcb11d3 215Sets colour printing on or off.
a660d684 216
60090256 217
7bcb11d3
JS
218\membersection{wxPrintData::SetDuplex}\label{wxprintdatasetduplex}
219
220\func{void}{SetDuplex}{\param{wxDuplexMode}{ mode}}
221
222Returns the duplex mode. One of wxDUPLEX\_SIMPLEX, wxDUPLEX\_HORIZONTAL, wxDUPLEX\_VERTICAL.
a660d684 223
60090256 224
a660d684
KB
225\membersection{wxPrintData::SetNoCopies}\label{wxprintdatasetnocopies}
226
227\func{void}{SetNoCopies}{\param{int }{n}}
228
229Sets the default number of copies to be printed out.
230
60090256 231
7bcb11d3 232\membersection{wxPrintData::SetOrientation}\label{wxprintdatasetorientation}
a660d684 233
7bcb11d3 234\func{void}{SetOrientation}{\param{int }{orientation}}
a660d684 235
7bcb11d3 236Sets the orientation. This can be wxLANDSCAPE or wxPORTRAIT.
a660d684 237
60090256 238
7bcb11d3
JS
239\membersection{wxPrintData::SetPaperId}\label{wxprintdatasetpaperid}
240
241\func{void}{SetPaperId}{\param{wxPaperSize}{ paperId}}
242
243\index{wxPaperSize}Sets the paper id. This indicates the type of paper to be used. For a mapping between
244paper id, paper size and string name, see wxPrintPaperDatabase in {\tt paper.h} (not yet documented).
245
246{\it paperId} can be one of:
247
248{\small
249\begin{verbatim}
250 wxPAPER_NONE, // Use specific dimensions
251 wxPAPER_LETTER, // Letter, 8 1/2 by 11 inches
252 wxPAPER_LEGAL, // Legal, 8 1/2 by 14 inches
253 wxPAPER_A4, // A4 Sheet, 210 by 297 millimeters
254 wxPAPER_CSHEET, // C Sheet, 17 by 22 inches
255 wxPAPER_DSHEET, // D Sheet, 22 by 34 inches
256 wxPAPER_ESHEET, // E Sheet, 34 by 44 inches
257 wxPAPER_LETTERSMALL, // Letter Small, 8 1/2 by 11 inches
258 wxPAPER_TABLOID, // Tabloid, 11 by 17 inches
259 wxPAPER_LEDGER, // Ledger, 17 by 11 inches
260 wxPAPER_STATEMENT, // Statement, 5 1/2 by 8 1/2 inches
261 wxPAPER_EXECUTIVE, // Executive, 7 1/4 by 10 1/2 inches
262 wxPAPER_A3, // A3 sheet, 297 by 420 millimeters
263 wxPAPER_A4SMALL, // A4 small sheet, 210 by 297 millimeters
264 wxPAPER_A5, // A5 sheet, 148 by 210 millimeters
265 wxPAPER_B4, // B4 sheet, 250 by 354 millimeters
266 wxPAPER_B5, // B5 sheet, 182-by-257-millimeter paper
267 wxPAPER_FOLIO, // Folio, 8-1/2-by-13-inch paper
268 wxPAPER_QUARTO, // Quarto, 215-by-275-millimeter paper
269 wxPAPER_10X14, // 10-by-14-inch sheet
270 wxPAPER_11X17, // 11-by-17-inch sheet
271 wxPAPER_NOTE, // Note, 8 1/2 by 11 inches
272 wxPAPER_ENV_9, // #9 Envelope, 3 7/8 by 8 7/8 inches
273 wxPAPER_ENV_10, // #10 Envelope, 4 1/8 by 9 1/2 inches
274 wxPAPER_ENV_11, // #11 Envelope, 4 1/2 by 10 3/8 inches
275 wxPAPER_ENV_12, // #12 Envelope, 4 3/4 by 11 inches
276 wxPAPER_ENV_14, // #14 Envelope, 5 by 11 1/2 inches
277 wxPAPER_ENV_DL, // DL Envelope, 110 by 220 millimeters
278 wxPAPER_ENV_C5, // C5 Envelope, 162 by 229 millimeters
279 wxPAPER_ENV_C3, // C3 Envelope, 324 by 458 millimeters
280 wxPAPER_ENV_C4, // C4 Envelope, 229 by 324 millimeters
281 wxPAPER_ENV_C6, // C6 Envelope, 114 by 162 millimeters
282 wxPAPER_ENV_C65, // C65 Envelope, 114 by 229 millimeters
283 wxPAPER_ENV_B4, // B4 Envelope, 250 by 353 millimeters
284 wxPAPER_ENV_B5, // B5 Envelope, 176 by 250 millimeters
285 wxPAPER_ENV_B6, // B6 Envelope, 176 by 125 millimeters
286 wxPAPER_ENV_ITALY, // Italy Envelope, 110 by 230 millimeters
287 wxPAPER_ENV_MONARCH, // Monarch Envelope, 3 7/8 by 7 1/2 inches
288 wxPAPER_ENV_PERSONAL, // 6 3/4 Envelope, 3 5/8 by 6 1/2 inches
289 wxPAPER_FANFOLD_US, // US Std Fanfold, 14 7/8 by 11 inches
290 wxPAPER_FANFOLD_STD_GERMAN, // German Std Fanfold, 8 1/2 by 12 inches
291 wxPAPER_FANFOLD_LGL_GERMAN, // German Legal Fanfold, 8 1/2 by 13 inches
292
293Windows 95 only:
294 wxPAPER_ISO_B4, // B4 (ISO) 250 x 353 mm
295 wxPAPER_JAPANESE_POSTCARD, // Japanese Postcard 100 x 148 mm
296 wxPAPER_9X11, // 9 x 11 in
297 wxPAPER_10X11, // 10 x 11 in
298 wxPAPER_15X11, // 15 x 11 in
299 wxPAPER_ENV_INVITE, // Envelope Invite 220 x 220 mm
300 wxPAPER_LETTER_EXTRA, // Letter Extra 9 \275 x 12 in
301 wxPAPER_LEGAL_EXTRA, // Legal Extra 9 \275 x 15 in
302 wxPAPER_TABLOID_EXTRA, // Tabloid Extra 11.69 x 18 in
303 wxPAPER_A4_EXTRA, // A4 Extra 9.27 x 12.69 in
304 wxPAPER_LETTER_TRANSVERSE, // Letter Transverse 8 \275 x 11 in
305 wxPAPER_A4_TRANSVERSE, // A4 Transverse 210 x 297 mm
306 wxPAPER_LETTER_EXTRA_TRANSVERSE, // Letter Extra Transverse 9\275 x 12 in
307 wxPAPER_A_PLUS, // SuperA/SuperA/A4 227 x 356 mm
308 wxPAPER_B_PLUS, // SuperB/SuperB/A3 305 x 487 mm
309 wxPAPER_LETTER_PLUS, // Letter Plus 8.5 x 12.69 in
310 wxPAPER_A4_PLUS, // A4 Plus 210 x 330 mm
311 wxPAPER_A5_TRANSVERSE, // A5 Transverse 148 x 210 mm
312 wxPAPER_B5_TRANSVERSE, // B5 (JIS) Transverse 182 x 257 mm
313 wxPAPER_A3_EXTRA, // A3 Extra 322 x 445 mm
314 wxPAPER_A5_EXTRA, // A5 Extra 174 x 235 mm
315 wxPAPER_B5_EXTRA, // B5 (ISO) Extra 201 x 276 mm
316 wxPAPER_A2, // A2 420 x 594 mm
317 wxPAPER_A3_TRANSVERSE, // A3 Transverse 297 x 420 mm
318 wxPAPER_A3_EXTRA_TRANSVERSE // A3 Extra Transverse 322 x 445 mm
319\end{verbatim}
320}
321
60090256 322
7bcb11d3
JS
323\membersection{wxPrintData::SetPrinterName}\label{wxprintdatasetprintername}
324
325\func{void}{SetPrinterName}{\param{const wxString\& }{printerName}}
326
327Sets the printer name. This can be the empty string to indicate that the default
328printer should be used.
329
60090256 330
7bcb11d3
JS
331\membersection{wxPrintData::SetQuality}\label{wxprintdatasetquality}
332
6394c596 333\func{void}{SetQuality}{\param{wxPrintQuality}{ quality}}
7bcb11d3
JS
334
335Sets the desired print quality. This can be a positive integer, denoting the number of dots per inch, or
336one of the following identifiers:
337
338\begin{verbatim}
a66abda9
GT
339wxPRINT_QUALITY_HIGH
340wxPRINT_QUALITY_MEDIUM
341wxPRINT_QUALITY_LOW
342wxPRINT_QUALITY_DRAFT
7bcb11d3
JS
343\end{verbatim}
344
345On input you should pass one of these identifiers, but on return you may get back a positive integer
346indicating the current resolution setting.
347
60090256 348
7bcb11d3
JS
349\membersection{wxPrintData::operator $=$}\label{wxprintdataassign}
350
351\func{void}{operator $=$}{\param{const wxPrintData\&}{ data}}
352
353Assigns print data to this object.
354
355\func{void}{operator $=$}{\param{const wxPrintSetupData\&}{ data}}
356
357Assigns print setup data to this object. wxPrintSetupData is deprecated,
358but retained for backward compatibility.
a660d684
KB
359
360\section{\class{wxPrintDialog}}\label{wxprintdialog}
361
362This class represents the print and print setup common dialogs.
363You may obtain a \helpref{wxPrinterDC}{wxprinterdc} device context from
364a successfully dismissed print dialog.
365
366\wxheading{Derived from}
367
368\helpref{wxDialog}{wxdialog}\\
369\helpref{wxWindow}{wxwindow}\\
370\helpref{wxEvtHandler}{wxevthandler}\\
371\helpref{wxObject}{wxobject}
372
954b8ae6
JS
373\wxheading{Include files}
374
375<wx/printdlg.h>
376
a7af285d
VZ
377\wxheading{Library}
378
379\helpref{wxCore}{librarieslist}
380
a660d684
KB
381\wxheading{See also}
382
f415cab9 383\helpref{Printing framework overview}{printingoverview},
a660d684
KB
384\helpref{wxPrintDialog Overview}{wxprintdialogoverview}
385
386\latexignore{\rtfignore{\wxheading{Members}}}
387
60090256 388
3e79fa75 389\membersection{wxPrintDialog::wxPrintDialog}\label{wxprintdialogctor}
a660d684 390
7bcb11d3 391\func{}{wxPrintDialog}{\param{wxWindow* }{parent}, \param{wxPrintDialogData* }{data = NULL}}
a660d684
KB
392
393Constructor. Pass a parent window, and optionally a pointer to a block of print
394data, which will be copied to the print dialog's print data.
395
396\wxheading{See also}
397
7bcb11d3 398\helpref{wxPrintDialogData}{wxprintdialogdata}
a660d684 399
60090256 400
3e79fa75 401\membersection{wxPrintDialog::\destruct{wxPrintDialog}}\label{wxprintdialogdtor}
a660d684
KB
402
403\func{}{\destruct{wxPrintDialog}}{\void}
404
405Destructor. If wxPrintDialog::GetPrintDC has {\it not} been called,
406the device context obtained by the dialog (if any) will be deleted.
407
60090256 408
7bcb11d3 409\membersection{wxPrintDialog::GetPrintDialogData}\label{wxprintdialoggetprintdialogdata}
a660d684 410
7bcb11d3 411\func{wxPrintDialogData\&}{GetPrintDialogData}{\void}
a660d684 412
7bcb11d3 413Returns the \helpref{print dialog data}{wxprintdialogdata} associated with the print dialog.
a660d684 414
60090256 415
a660d684
KB
416\membersection{wxPrintDialog::GetPrintDC}\label{wxprintdialoggetprintdc}
417
418\func{wxDC* }{GetPrintDC}{\void}
419
420Returns the device context created by the print dialog, if any.
421When this function has been called, the ownership of the device context
422is transferred to the application, so it must then be deleted
423explicitly.
424
60090256 425
a660d684
KB
426\membersection{wxPrintDialog::ShowModal}\label{wxprintdialogshowmodal}
427
428\func{int}{ShowModal}{\void}
429
430Shows the dialog, returning wxID\_OK if the user pressed OK, and wxID\_CANCEL
431otherwise. After this function is called, a device context may
432be retrievable using \helpref{wxPrintDialog::GetPrintDC}{wxprintdialoggetprintdc}.
433
7bcb11d3
JS
434\section{\class{wxPrintDialogData}}\label{wxprintdialogdata}
435
436This class holds information related to the visual characteristics of wxPrintDialog.
437It contains a wxPrintData object with underlying printing settings.
438
439\wxheading{Derived from}
440
441\helpref{wxObject}{wxobject}
442
443\wxheading{Include files}
444
445<wx/cmndata.h>
446
a7af285d
VZ
447\wxheading{Library}
448
449\helpref{wxCore}{librarieslist}
450
7bcb11d3
JS
451\wxheading{See also}
452
f415cab9
JS
453\helpref{Printing framework overview}{printingoverview},
454\helpref{wxPrintDialog}{wxprintdialog},
455\helpref{wxPrintDialog Overview}{wxprintdialogoverview}
7bcb11d3
JS
456
457\latexignore{\rtfignore{\wxheading{Members}}}
458
60090256 459
3e79fa75 460\membersection{wxPrintDialogData::wxPrintDialogData}\label{wxprintdialogdatactor}
7bcb11d3
JS
461
462\func{}{wxPrintDialogData}{\void}
463
464Default constructor.
465
466\func{}{wxPrintDialogData}{\param{wxPrintDialogData\&}{ dialogData}}
467
468Copy constructor.
469
470\func{}{wxPrintDialogData}{\param{wxPrintData\&}{ printData}}
471
472Construct an object from a print dialog data object.
473
60090256 474
3e79fa75 475\membersection{wxPrintDialogData::\destruct{wxPrintDialogData}}\label{wxprintdialogdatadtor}
7bcb11d3
JS
476
477\func{}{\destruct{wxPrintDialogData}}{\void}
478
479Destructor.
480
60090256 481
7bcb11d3
JS
482\membersection{wxPrintDialogData::EnableHelp}\label{wxprintdialogdataenablehelp}
483
484\func{void}{EnableHelp}{\param{bool }{flag}}
485
486Enables or disables the `Help' button.
487
60090256 488
7bcb11d3
JS
489\membersection{wxPrintDialogData::EnablePageNumbers}\label{wxprintdialogdataenablepagenumbers}
490
491\func{void}{EnablePageNumbers}{\param{bool }{flag}}
492
493Enables or disables the `Page numbers' controls.
494
60090256 495
7bcb11d3
JS
496\membersection{wxPrintDialogData::EnablePrintToFile}\label{wxprintdialogdataenableprinttofile}
497
498\func{void}{EnablePrintToFile}{\param{bool }{flag}}
499
500Enables or disables the `Print to file' checkbox.
501
60090256 502
7bcb11d3
JS
503\membersection{wxPrintDialogData::EnableSelection}\label{wxprintdialogdataenableselection}
504
505\func{void}{EnableSelection}{\param{bool }{flag}}
506
507Enables or disables the `Selection' radio button.
508
60090256 509
7bcb11d3
JS
510\membersection{wxPrintDialogData::GetAllPages}\label{wxprintdialogdatagetallpages}
511
512\constfunc{bool}{GetAllPages}{\void}
513
cc81d32f 514Returns true if the user requested that all pages be printed.
7bcb11d3 515
60090256 516
7bcb11d3
JS
517\membersection{wxPrintDialogData::GetCollate}\label{wxprintdialogdatagetcollate}
518
519\constfunc{bool}{GetCollate}{\void}
520
cc81d32f 521Returns true if the user requested that the document(s) be collated.
7bcb11d3 522
60090256 523
7bcb11d3
JS
524\membersection{wxPrintDialogData::GetFromPage}\label{wxprintdialogdatagetfrompage}
525
526\constfunc{int}{GetFromPage}{\void}
527
528Returns the {\it from} page number, as entered by the user.
529
60090256 530
7bcb11d3
JS
531\membersection{wxPrintDialogData::GetMaxPage}\label{wxprintdialogdatagetmaxpage}
532
533\constfunc{int}{GetMaxPage}{\void}
534
535Returns the {\it maximum} page number.
536
60090256 537
7bcb11d3
JS
538\membersection{wxPrintDialogData::GetMinPage}\label{wxprintdialogdatagetminpage}
539
540\constfunc{int}{GetMinPage}{\void}
541
542Returns the {\it minimum} page number.
543
60090256 544
7bcb11d3
JS
545\membersection{wxPrintDialogData::GetNoCopies}\label{wxprintdialogdatagetnocopies}
546
547\constfunc{int}{GetNoCopies}{\void}
548
549Returns the number of copies requested by the user.
550
60090256 551
7bcb11d3
JS
552\membersection{wxPrintDialogData::GetPrintData}\label{wxprintdialogdatagetprintdata}
553
554\func{wxPrintData\&}{GetPrintData}{\void}
555
556Returns a reference to the internal wxPrintData object.
557
60090256 558
7bcb11d3
JS
559\membersection{wxPrintDialogData::GetPrintToFile}\label{wxprintdialogdatagetprinttofile}
560
561\constfunc{bool}{GetPrintToFile}{\void}
562
cc81d32f 563Returns true if the user has selected printing to a file.
7bcb11d3 564
60090256 565
5360828d
JS
566\membersection{wxPrintDialogData::GetSelection}\label{wxprintdialogdatagetselection}
567
568\constfunc{bool}{GetSelection}{\void}
569
cc81d32f 570Returns true if the user requested that the selection be printed (where 'selection' is
5360828d
JS
571a concept specific to the application).
572
60090256 573
7bcb11d3
JS
574\membersection{wxPrintDialogData::GetToPage}\label{wxprintdialogdatagettopage}
575
576\constfunc{int}{GetToPage}{\void}
577
578Returns the {\it to} page number, as entered by the user.
579
60090256 580
b7cacb43 581\membersection{wxPrintDialogData::IsOk}\label{wxprintdialogdataisok}
58cf0491 582
b7cacb43 583\constfunc{bool}{IsOk}{\void}
58cf0491 584
cc81d32f
VS
585Returns true if the print data is valid for using in print dialogs.
586This can return false on Windows if the current printer is not set, for example.
587On all other platforms, it returns true.
58cf0491 588
60090256 589
7bcb11d3
JS
590\membersection{wxPrintDialogData::SetCollate}\label{wxprintdialogdatasetcollate}
591
592\func{void}{SetCollate}{\param{bool }{flag}}
593
cc81d32f 594Sets the 'Collate' checkbox to true or false.
7bcb11d3 595
60090256 596
7bcb11d3
JS
597\membersection{wxPrintDialogData::SetFromPage}\label{wxprintdialogdatasetfrompage}
598
599\func{void}{SetFromPage}{\param{int }{page}}
600
601Sets the {\it from} page number.
602
60090256 603
7bcb11d3
JS
604\membersection{wxPrintDialogData::SetMaxPage}\label{wxprintdialogdatasetmaxpage}
605
606\func{void}{SetMaxPage}{\param{int }{page}}
607
608Sets the {\it maximum} page number.
609
60090256 610
7bcb11d3
JS
611\membersection{wxPrintDialogData::SetMinPage}\label{wxprintdialogdatasetminpage}
612
613\func{void}{SetMinPage}{\param{int }{page}}
614
615Sets the {\it minimum} page number.
616
60090256 617
7bcb11d3
JS
618\membersection{wxPrintDialogData::SetNoCopies}\label{wxprintdialogdatasetnocopies}
619
620\func{void}{SetNoCopies}{\param{int }{n}}
621
622Sets the default number of copies the user has requested to be printed out.
623
60090256 624
7bcb11d3
JS
625\membersection{wxPrintDialogData::SetPrintData}\label{wxprintdialogdatasetprintdata}
626
627\func{void}{SetPrintData}{\param{const wxPrintData\& }{printData}}
628
629Sets the internal wxPrintData.
630
60090256 631
7bcb11d3
JS
632\membersection{wxPrintDialogData::SetPrintToFile}\label{wxprintdialogdatasetprinttofile}
633
634\func{void}{SetPrintToFile}{\param{bool }{flag}}
635
cc81d32f 636Sets the 'Print to file' checkbox to true or false.
7bcb11d3 637
60090256 638
5360828d
JS
639\membersection{wxPrintDialogData::SetSelection}\label{wxprintdialogdatasetselection}
640
641\func{void}{SetSelection}{\param{bool}{ flag}}
642
643Selects the 'Selection' radio button. The effect of printing the selection depends on how the application
644implements this command, if at all.
645
60090256 646
7bcb11d3
JS
647\membersection{wxPrintDialogData::SetSetupDialog}\label{wxprintdialogdatasetsetupdialog}
648
649\func{void}{SetSetupDialog}{\param{bool }{flag}}
650
651Determines whether the dialog to be shown will be the Print dialog
cc81d32f 652(pass false) or Print Setup dialog (pass true).
7bcb11d3 653
a947a1e5 654This function has been deprecated since version 2.5.4.
60090256 655
7bcb11d3
JS
656\membersection{wxPrintDialogData::SetToPage}\label{wxprintdialogdatasettopage}
657
658\func{void}{SetToPage}{\param{int }{page}}
659
660Sets the {\it to} page number.
661
60090256 662
7bcb11d3
JS
663\membersection{wxPrintDialogData::operator $=$}\label{wxprintdialogdataassign}
664
665\func{void}{operator $=$}{\param{const wxPrintData\&}{ data}}
666
667Assigns print data to this object.
668
669\func{void}{operator $=$}{\param{const wxPrintDialogData\&}{ data}}
670
671Assigns another print dialog data object to this object.
672
a660d684
KB
673\section{\class{wxPrinter}}\label{wxprinter}
674
675This class represents the Windows or PostScript printer, and is the vehicle through
676which printing may be launched by an application. Printing can also
677be achieved through using of lower functions and classes, but
678this and associated classes provide a more convenient and general
679method of printing.
680
681\wxheading{Derived from}
682
683\helpref{wxObject}{wxobject}
684
954b8ae6
JS
685\wxheading{Include files}
686
687<wx/print.h>
688
a660d684
KB
689\wxheading{See also}
690
f415cab9
JS
691\helpref{Printing framework overview}{printingoverview},
692\helpref{wxPrinterDC}{wxprinterdc},
693\helpref{wxPrintDialog}{wxprintdialog},
694\helpref{wxPrintout}{wxprintout},
695\helpref{wxPrintPreview}{wxprintpreview}.
a660d684
KB
696
697\latexignore{\rtfignore{\wxheading{Members}}}
698
60090256 699
3e79fa75 700\membersection{wxPrinter::wxPrinter}\label{wxprinterctor}
a660d684 701
7bcb11d3 702\func{}{wxPrinter}{\param{wxPrintDialogData* }{data = NULL}}
a660d684
KB
703
704Constructor. Pass an optional pointer to a block of print
7bcb11d3 705dialog data, which will be copied to the printer object's local data.
a660d684
KB
706
707\wxheading{See also}
708
2233e5b8 709\helpref{wxPrintDialogData}{wxprintdialogdata},
a660d684
KB
710\helpref{wxPrintData}{wxprintdata}
711
60090256 712
60090256 713
a660d684
KB
714\membersection{wxPrinter::CreateAbortWindow}\label{wxprintercreateabortwindow}
715
716\func{void}{CreateAbortWindow}{\param{wxWindow* }{parent}, \param{wxPrintout* }{printout}}
717
718Creates the default printing abort window, with a cancel button.
719
f6bcfd97 720
9a75ba66
RN
721\membersection{wxPrinter::GetAbort}\label{wxprintergetabort}
722
723\func{bool}{GetAbort}{\void}
724
725Returns true if the user has aborted the print job.
726
60090256 727
f6bcfd97
BP
728\membersection{wxPrinter::GetLastError}\label{wxprintergetlasterror}
729
730\func{static wxPrinterError}{GetLastError}{\void}
731
732Return last error. Valid after calling \helpref{Print}{wxprinterprint},
733\helpref{PrintDialog}{wxprinterprintdialog} or
734\helpref{wxPrintPreview::Print}{wxprintpreviewprint}. These functions
735set last error to {\bf wxPRINTER\_NO\_ERROR} if no error happened.
736
737Returned value is one of the following:
738
739\twocolwidtha{7cm}
740\begin{twocollist}\itemsep=0pt
741\twocolitem{{\bf wxPRINTER\_NO\_ERROR}}{No error happened.}
742\twocolitem{{\bf wxPRINTER\_CANCELLED}}{The user cancelled printing.}
743\twocolitem{{\bf wxPRINTER\_ERROR}}{There was an error during printing.}
744\end{twocollist}
745
746
60090256 747
7bcb11d3 748\membersection{wxPrinter::GetPrintDialogData}\label{wxprintergetprintdialogdata}
a660d684 749
7bcb11d3 750\func{wxPrintDialogData\&}{GetPrintDialogData}{\void}
a660d684
KB
751
752Returns the \helpref{print data}{wxprintdata} associated with the printer object.
753
60090256 754
a660d684
KB
755\membersection{wxPrinter::Print}\label{wxprinterprint}
756
cc81d32f 757\func{bool}{Print}{\param{wxWindow *}{parent}, \param{wxPrintout *}{printout}, \param{bool }{prompt=true}}
a660d684
KB
758
759Starts the printing process. Provide a parent window, a user-defined wxPrintout object which controls
760the printing of a document, and whether the print dialog should be invoked first.
761
cc81d32f 762Print could return false if there was a problem initializing the printer device context
f6bcfd97
BP
763(current printer not set, for example) or the user cancelled printing. Call
764\helpref{wxPrinter::GetLastError}{wxprintergetlasterror} to get detailed
765information about the kind of the error.
a660d684 766
60090256 767
a660d684
KB
768\membersection{wxPrinter::PrintDialog}\label{wxprinterprintdialog}
769
7bcb11d3
JS
770\func{wxDC*}{PrintDialog}{\param{wxWindow *}{parent}}
771
772Invokes the print dialog. If successful (the user did not press Cancel
773and no error occurred), a suitable device context will be returned
f6bcfd97
BP
774(otherwise NULL is returned -- call
775\helpref{wxPrinter::GetLastError}{wxprintergetlasterror} to get detailed
776information about the kind of the error).
a660d684 777
7bcb11d3 778The application must delete this device context to avoid a memory leak.
a660d684 779
60090256 780
a660d684
KB
781\membersection{wxPrinter::ReportError}\label{wxprinterreporterror}
782
783\func{void}{ReportError}{\param{wxWindow *}{parent}, \param{wxPrintout *}{printout}, \param{const wxString\& }{message}}
784
785Default error-reporting function.
786
60090256 787
a660d684
KB
788\membersection{wxPrinter::Setup}\label{wxprintersetup}
789
7bcb11d3 790\func{bool}{Setup}{\param{wxWindow *}{parent}}
a660d684
KB
791
792Invokes the print setup dialog. Note that the setup dialog is obsolete from
793Windows 95, though retained for backward compatibility.
794
795\section{\class{wxPrinterDC}}\label{wxprinterdc}
796
f415cab9
JS
797A printer device context is specific to MSW and Mac, and allows access to any
798printer with a Windows or Macintosh driver. See \helpref{wxDC}{wxdc} for further
799information on device contexts, and \helpref{wxDC::GetSize}{wxdcgetsize} for
800advice on achieving the correct scaling for the page.
a660d684
KB
801
802\wxheading{Derived from}
803
804\helpref{wxDC}{wxdc}\\
805\helpref{wxObject}{wxdc}
806
954b8ae6
JS
807\wxheading{Include files}
808
809<wx/dcprint.h>
810
a7af285d
VZ
811\wxheading{Library}
812
813\helpref{wxCore}{librarieslist}
814
a660d684
KB
815\wxheading{See also}
816
f415cab9
JS
817\helpref{Printing framework overview}{printingoverview},
818\helpref{wxDC}{wxdc}
a660d684
KB
819
820\latexignore{\rtfignore{\wxheading{Members}}}
821
60090256 822
3e79fa75 823\membersection{wxPrinterDC::wxPrinterDC}\label{wxprinterdcctor}
a660d684 824
7bcb11d3
JS
825\func{}{wxPrinterDC}{\param{const wxPrintData\& }{printData}}
826
f415cab9 827Constructor. Pass a \helpref{wxPrintData}{wxprintdata} object with information
7bcb11d3 828necessary for setting up a suitable printer device context. This
05db64b2
RN
829is the recommended way to construct a wxPrinterDC. Make sure you
830specify a reference to a \helpref{wxPrintData}{wxprintdata} object,
831not a pointer - you may not even get a warning if you pass a pointer
832instead.
7bcb11d3 833
a660d684 834\func{}{wxPrinterDC}{\param{const wxString\& }{driver}, \param{const wxString\& }{device}, \param{const wxString\& }{output},
cc81d32f 835 \param{const bool }{interactive = true}, \param{int }{orientation = wxPORTRAIT}}
a660d684
KB
836
837Constructor. With empty strings for the first three arguments, the default printer dialog is
838displayed. {\it device} indicates the type of printer and {\it output}
839is an optional file for printing to. The {\it driver} parameter is
840currently unused. Use the {\it Ok} member to test whether the
2edb0bde 841constructor was successful in creating a usable device context.
a660d684 842
7bcb11d3
JS
843This constructor is deprecated and retained only for backward compatibility.
844
f415cab9
JS
845\membersection{wxPrinterDC::GetPaperRect}\label{wxprinterdcgetpaperrect}
846
847\func{wxRect}{wxPrinterDC::GetPaperRect}{}
848
849Return the rectangle in device coordinates that corresponds to the full paper
850area, including the nonprinting regions of the paper. The point (0,0) in device
851coordinates is the top left corner of the page rectangle, which is the printable
852area on MSW and Mac. The coordinates of the top left corner of the paper
853rectangle will therefore have small negative values, while the bottom right
854coordinates will be somewhat larger than the values returned by
855\helpref{wxDC::GetSize}{wxdcgetsize}.
856
857
a660d684
KB
858\section{\class{wxPrintout}}\label{wxprintout}
859
f415cab9
JS
860This class encapsulates the functionality of printing out an application
861document. A new class must be derived and members overridden to respond to calls
862such as OnPrintPage and HasPage and to render the print image onto an associated
863\helpref{wxDC}{wxdc}. Instances of this class are passed to wxPrinter::Print or
864to a wxPrintPreview object to initiate printing or previewing.
865
866Your derived wxPrintout is responsible for drawing both the preview image and
867the printed page. If your windows' drawing routines accept an arbitrary DC as an
868argument, you can re-use those routines within your wxPrintout subclass to draw
869the printout image. You may also add additional drawing elements within your
870wxPrintout subclass, like headers, footers, and/or page numbers. However, the
871image on the printed page will often differ from the image drawn on the screen,
872as will the print preview image -- not just in the presence of headers and
873footers, but typically in scale. A high-resolution printer presents a much
874larger drawing surface (i.e., a higher-resolution DC); a zoomed-out preview
875image presents a much smaller drawing surface (lower-resolution DC). By using
876the routines FitThisSizeToXXX() and/or MapScreenSizeToXXX() within your
877wxPrintout subclass to set the user scale and origin of the associated DC, you
878can easily use a single drawing routine to draw on your application's windows,
879to create the print preview image, and to create the printed paper image, and
880achieve a common appearance to the preview image and the printed page.
881
a660d684
KB
882
883\wxheading{Derived from}
884
885\helpref{wxObject}{wxobject}
886
954b8ae6
JS
887\wxheading{Include files}
888
889<wx/print.h>
890
a660d684
KB
891\wxheading{See also}
892
f415cab9
JS
893\helpref{Printing framework overview}{printingoverview},
894\helpref{wxPrinterDC}{wxprinterdc},
895\helpref{wxPrintDialog}{wxprintdialog},
896\helpref{wxPageSetupDialog}{wxpagesetupdialog},
897\helpref{wxPrinter}{wxprinter},
898\helpref{wxPrintPreview}{wxprintpreview}
a660d684
KB
899
900\latexignore{\rtfignore{\wxheading{Members}}}
901
60090256 902
3e79fa75 903\membersection{wxPrintout::wxPrintout}\label{wxprintoutctor}
a660d684
KB
904
905\func{}{wxPrintout}{\param{const wxString\& }{title = "Printout"}}
906
2edb0bde 907Constructor. Pass an optional title argument - the current filename would be a good idea. This will appear in the printing list
fc799548 908(at least in MSW)
a660d684 909
60090256 910
3e79fa75 911\membersection{wxPrintout::\destruct{wxPrintout}}\label{wxprintoutdtor}
a660d684
KB
912
913\func{}{\destruct{wxPrintout}}{\void}
914
915Destructor.
916
60090256 917
a660d684
KB
918\membersection{wxPrintout::GetDC}\label{wxprintoutgetdc}
919
920\func{wxDC *}{GetDC}{\void}
921
922Returns the device context associated with the printout (given to the printout at start of
f415cab9 923printing or previewing). This will be a wxPrinterDC if printing under Windows or Mac,
a660d684
KB
924a wxPostScriptDC if printing on other platforms, and a wxMemoryDC if previewing.
925
60090256 926
a660d684
KB
927\membersection{wxPrintout::GetPageInfo}\label{wxprintoutgetpageinfo}
928
929\func{void}{GetPageInfo}{\param{int *}{minPage}, \param{int *}{maxPage}, \param{int *}{pageFrom}, \param{int *}{pageTo}}
930
f415cab9
JS
931Called by the framework to obtain information from the application about minimum
932and maximum page values that the user can select, and the required page range to
933be printed. By default this returns 1, 32000 for the page minimum and maximum
934values, and 1, 1 for the required page range.
a660d684
KB
935
936If {\it minPage} is zero, the page number controls in the print dialog will be disabled.
937
2233e5b8
RD
938\pythonnote{When this method is implemented in a derived Python class,
939it should be designed to take no parameters (other than the self
940reference) and to return a tuple of four integers.
941}
942
0a67eeac 943\perlnote{When this method is overridden in a derived class,
d2b354f9 944it must not take any parameters, and returns a 4-element list.
0a67eeac
MB
945}
946
60090256 947
a660d684
KB
948\membersection{wxPrintout::GetPageSizeMM}\label{wxprintoutgetpagesizemm}
949
950\func{void}{GetPageSizeMM}{\param{int *}{w}, \param{int *}{h}}
951
952Returns the size of the printer page in millimetres.
953
2233e5b8
RD
954\pythonnote{This method returns the output-only parameters as a tuple.}
955
0a67eeac
MB
956\perlnote{In wxPerl this method takes no arguments and returns a
9572-element list {\tt ( w, h )}}
958
60090256 959
a660d684
KB
960\membersection{wxPrintout::GetPageSizePixels}\label{wxprintoutgetpagesizepixels}
961
962\func{void}{GetPageSizePixels}{\param{int *}{w}, \param{int *}{h}}
963
f415cab9
JS
964Returns the size of the printer page in pixels, called the \em{page rectangle}.
965The page rectangle has a top left corner at (0,0) and a bottom right corner at
966(w,h). These values may not be the same as the values returned from
967\helpref{wxDC::GetSize}{wxdcgetsize}; if the printout is being used for
968previewing, a memory device context is used, which uses a bitmap size reflecting
969the current preview zoom. The application must take this discrepancy into
970account if previewing is to be supported.
a660d684 971
2233e5b8
RD
972\pythonnote{This method returns the output-only parameters as a tuple.}
973
0a67eeac
MB
974\perlnote{In wxPerl this method takes no arguments and returns a
9752-element list {\tt ( w, h )}}
976
60090256 977
f415cab9
JS
978\membersection{wxPrintout::GetPaperRectPixels}\label{wxprintoutgetpaperrectpixels}
979
980\func{wxRect}{GetPaperRectPixels}{}
981
982Returns the rectangle that corresponds to the entire paper in pixels, called the
983\em{paper rectangle}. This distinction between paper rectangle and page
984rectangle reflects the fact that most printers cannot print all the way to the
985edge of the paper. The page rectangle is a rectangle whose top left corner is at
986(0,0) and whose width and height are given by
987\helpref{wxDC::GetPageSizePixels}{wxprintoutgetpagesizepixels}. On MSW and Mac,
988the page rectangle gives the printable area of the paper, while the paper
989rectangle represents the entire paper, including non-printable borders. Thus,
990the rectangle returned by GetPaperRectPixels will have a top left corner whose
991coordinates are small negative numbers and the bottom right corner will have
992values somewhat larger than the width and height given by
993\helpref{wxDC::GetPageSizePixels}{wxprintoutgetpagesizepixels}. On other
994platforms and for PostScript printing, the paper is treated as if its entire
995area were printable, so this function will return the same rectangle as the page
996rectangle.
997
998
a660d684
KB
999\membersection{wxPrintout::GetPPIPrinter}\label{wxprintoutgetppiprinter}
1000
1001\func{void}{GetPPIPrinter}{\param{int *}{w}, \param{int *}{h}}
1002
1003Returns the number of pixels per logical inch of the printer device context.
f415cab9
JS
1004Dividing the printer PPI by the screen PPI can give a suitable scaling factor
1005for drawing text onto the printer. Remember to multiply this by a scaling factor
1006to take the preview DC size into account. Or you can just use the
1007FitThisSizeToXXX() and MapScreenSizeToXXX routines below, which do most of the
1008scaling calculations for you.
a660d684 1009
2233e5b8
RD
1010\pythonnote{This method returns the output-only parameters as a tuple.}
1011
0a67eeac
MB
1012\perlnote{In wxPerl this method takes no arguments and returns a
10132-element list {\tt ( w, h )}}
1014
60090256 1015
a660d684
KB
1016\membersection{wxPrintout::GetPPIScreen}\label{wxprintoutgetppiscreen}
1017
1018\func{void}{GetPPIScreen}{\param{int *}{w}, \param{int *}{h}}
1019
1020Returns the number of pixels per logical inch of the screen device context.
f415cab9
JS
1021Dividing the printer PPI by the screen PPI can give a suitable scaling factor
1022for drawing text onto the printer. If you are doing your own scaling, remember
1023to multiply this by a scaling factor to take the preview DC size into account.
a660d684 1024
60090256 1025
fc799548
JS
1026\membersection{wxPrintout::GetTitle}\label{wxprintoutgettitle}
1027
1028\func{wxString}{GetTitle}{\void}
1029
1030Returns the title of the printout
1031
2233e5b8
RD
1032\pythonnote{This method returns the output-only parameters as a tuple.}
1033
0a67eeac
MB
1034\perlnote{In wxPerl this method takes no arguments and returns a
10352-element list {\tt ( w, h )}}
1036
60090256 1037
a660d684
KB
1038\membersection{wxPrintout::HasPage}\label{wxprintouthaspage}
1039
1040\func{bool}{HasPage}{\param{int}{ pageNum}}
1041
cc81d32f
VS
1042Should be overridden to return true if the document has this page, or false
1043if not. Returning false signifies the end of the document. By default,
a660d684
KB
1044HasPage behaves as if the document has only one page.
1045
60090256 1046
a660d684
KB
1047\membersection{wxPrintout::IsPreview}\label{wxprintoutispreview}
1048
1049\func{bool}{IsPreview}{\void}
1050
cc81d32f 1051Returns true if the printout is currently being used for previewing.
a660d684 1052
60090256 1053
f415cab9
JS
1054\membersection{wxPrintout::FitThisSizeToPaper}\label{wxprintoutfitthissizetopaper}
1055
1056\func{void}{FitThisSizeToPaper}{\param{const wxSize\& }{imageSize}}
1057
1058Set the user scale and device origin of the wxDC associated with this wxPrintout
1059so that the given image size fits entirely within the paper and the origin is at
1060the top left corner of the paper. Note that with most printers, the region
1061around the edges of the paper are not printable so that the edges of the image
1062could be cut off. Use this if you're managing your own page margins.
1063
1064\membersection{wxPrintout::FitThisSizeToPage}\label{wxprintoutfitthissizetopage}
1065
1066
1067\func{void}{FitThisSizeToPage}{\param{const wxSize\& }{imageSize}}
1068
1069Set the user scale and device origin of the wxDC associated with this wxPrintout
1070so that the given image size fits entirely within the page rectangle and the
1071origin is at the top left corner of the page rectangle. On MSW and Mac, the page
1072rectangle is the printable area of the page. On other platforms and PostScript
1073printing, the page rectangle is the entire paper. Use this if you want your
1074printed image as large as possible, but with the caveat that on some platforms,
1075portions of the image might be cut off at the edges.
1076
1077
1078\membersection{wxPrintout::FitThisSizeToPageMargins}\label{wxprintoutfitthissizetopagemargins}
1079
1080\func{void}{FitThisSizeToPageMargins}{\param{const wxSize\& }{imageSize}, \param{const wxPageSetupDialogData\& }{pageSetupData}}
1081
1082Set the user scale and device origin of the wxDC associated with this wxPrintout
1083so that the given image size fits entirely within the page margins set in the
1084given wxPageSetupDialogData object. This function provides the greatest
1085consistency across all platforms because it does not depend on having access to
1086the printable area of the paper. Note that on Mac, the native wxPageSetupDialog
1087does not let you set the page margins; you'll have to provide your own mechanism,
1088or you can use the Mac-only class wxMacPageMarginsDialog.
1089
1090
1091\membersection{wxPrintout::MapScreenSizeToPaper}\label{wxprintoutmapscreensizetopaper}
1092
1093\func{void}{MapScreenSizeToPaper}{}
1094
1095Set the user scale and device origin of the wxDC associated with this wxPrintout
1096so that the printed page matches the screen size as closely as possible
1097and the logical origin is in the top left corner of the paper rectangle.
1098That is,
1099a 100-pixel object on screen should appear at the same size on the printed page. (It
1100will, of course, be larger or smaller in the preview image, depending on the zoom
1101factor.) Use this if you want WYSIWYG behavior, e.g., in a text editor.
1102
1103
1104\membersection{wxPrintout::MapScreenSizeToPage}\label{wxprintoutmapscreensizetopage}
1105
1106\func{void}{MapScreenSizeToPage}{}
1107
1108This sets the user scale of the wxDC assocated with this wxPrintout to the same
1109scale as \helpref{MapScreenSizeToPaper}{wxprintoutmapscreensizetopaper} but sets
1110the logical origin to the top left corner of the page rectangle.
1111
1112
1113\membersection{wxPrintout::MapScreenSizeToPageMargins}\label{wxprintoutmapscreensizetopagemargins}
1114
1115\func{void}{MapScreenSizeToPageMargins}{\param{const wxPageSetupDialogData\& }{pageSetupData}}
1116
1117This sets the user scale of the wxDC assocated with this wxPrintout to the same
1118scale as
1119\helpref{MapScreenSizeToPageMargins}{wxprintoutmapscreensizetopagemargins} but
1120sets the logical origin to the top left corner of the page margins specified by
1121the given wxPageSetupDialogData object.
1122
1123
1124\membersection{wxPrintout::MapScreenSizeToDevice}\label{wxprintoutmapscreensizetodevice}
1125
1126\func{void}{MapScreenSizeToDevice}{}
1127
1128Set the user scale and device origin of the wxDC associated with this wxPrintout
1129so that one screen pixel maps to one device pixel on the DC. That is, the user
1130scale is set to (1,1) and the device origin is set to (0,0). Use this if you
1131want to do your own scaling prior to calling wxDC drawing calls, for example, if
1132your underlying model is floating-point and you want to achieve maximum drawing
1133precision on high-resolution printers. (Note that while the underlying drawing
1134model of Mac OS X is floating-point, wxWidgets's drawing model scales from integer
1135coordinates.) You can use the GetLogicalXXXRect() routines below to obtain the
1136paper rectangle, page rectangle, or page margins rectangle to perform your own scaling.
1137
1138
1139\membersection{wxPrintout::GetLogicalPaperRect}\label{wxprintoutgetlogicalpaperrect}
1140
1141\func{wxRect}{GetLogicalPaperRect}{}
1142
1143Return the rectangle corresponding to the paper in the associated wxDC's
1144logical coordinates for the current user scale and device origin.
1145
1146
1147\membersection{wxPrintout::GetLogicalPageRect}\label{wxprintoutgetlogicalpagerect}
1148
1149\func{wxRect}{GetLogicalPageRect}{}
1150
1151Return the rectangle corresponding to the page in the associated wxDC's
1152logical coordinates for the current user scale and device origin.
1153On MSW and Mac, this will be the printable area of the paper. On other platforms
1154and PostScript printing, this will be the full paper rectangle.
1155
1156
1157\membersection{wxPrintout::GetLogicalPageMarginsRect}\label{wxprintoutgetlogicalpagemarginsrect}
1158
1159\func{wxRect}{GetLogicalPageMarginsRect}{\param{const wxPageSetupDialogData\& }{pageSetupData}}
1160
1161Return the rectangle corresponding to the page margins specified by the given
1162wxPageSetupDialogData object in the associated wxDC's logical coordinates for the
1163current user scale and device origin. The page margins are specified
1164with respect to the edges of the paper on all platforms.
1165
1166
1167\membersection{wxPrintout::SetLogicalOrigin}\label{wxprintoutsetlogicalorigin}
1168
1169\func{void}{SetLogicalOrigin}{\param{wxCoord }{x}, \param{wxCoord }{y}}
1170
1171Set the device origin of the associated wxDC so that the current logical point
1172becomes the new logical origin.
1173
1174
1175\membersection{wxPrintout::OffsetLogicalOrigin}\label{wxprintoutoffsetlogicalorigin}
1176
1177\func{void}{OffsetLogicalOrigin}{\param{wxCoord }{xoff}, \param{wxCoord }{yoff}}
1178
1179Shift the device origin by an amount specified in logical coordinates.
1180
1181
a660d684
KB
1182\membersection{wxPrintout::OnBeginDocument}\label{wxprintoutonbegindocument}
1183
1184\func{bool}{OnBeginDocument}{\param{int}{ startPage}, \param{int}{ endPage}}
1185
cc81d32f 1186Called by the framework at the start of document printing. Return false from
a660d684
KB
1187this function cancels the print job. OnBeginDocument is called once for every
1188copy printed.
1189
1190The base wxPrintout::OnBeginDocument {\it must} be called (and the return value
f6bcfd97 1191checked) from within the overridden function, since it calls wxDC::StartDoc.
a660d684 1192
f6bcfd97 1193\pythonnote{If this method is overridden in a Python class then the
2233e5b8 1194base class version can be called by using the method
6aa358ae 1195{\tt base\_OnBeginDocument(startPage, endPage)}. }
2233e5b8 1196
60090256 1197
a660d684
KB
1198\membersection{wxPrintout::OnEndDocument}\label{wxprintoutonenddocument}
1199
1200\func{void}{OnEndDocument}{\void}
1201
1202Called by the framework at the end of document printing. OnEndDocument
1203is called once for every copy printed.
1204
1205The base wxPrintout::OnEndDocument {\it must} be called
f6bcfd97 1206from within the overridden function, since it calls wxDC::EndDoc.
a660d684 1207
60090256 1208
a660d684
KB
1209\membersection{wxPrintout::OnBeginPrinting}\label{wxprintoutonbeginprinting}
1210
1211\func{void}{OnBeginPrinting}{\void}
1212
1213Called by the framework at the start of printing. OnBeginPrinting is called once for every
1214print job (regardless of how many copies are being printed).
1215
60090256 1216
a660d684
KB
1217\membersection{wxPrintout::OnEndPrinting}\label{wxprintoutonendprinting}
1218
1219\func{void}{OnEndPrinting}{\void}
1220
1221Called by the framework at the end of printing. OnEndPrinting
1222is called once for every print job (regardless of how many copies are being printed).
1223
60090256 1224
a660d684
KB
1225\membersection{wxPrintout::OnPreparePrinting}\label{wxprintoutonprepareprinting}
1226
1227\func{void}{OnPreparePrinting}{\void}
1228
1229Called once by the framework before any other demands are made of the
1230wxPrintout object. This gives the object an opportunity to calculate the
1231number of pages in the document, for example.
1232
60090256 1233
a660d684
KB
1234\membersection{wxPrintout::OnPrintPage}\label{wxprintoutonprintpage}
1235
1236\func{bool}{OnPrintPage}{\param{int}{ pageNum}}
1237
cc81d32f 1238Called by the framework when a page should be printed. Returning false cancels
a660d684
KB
1239the print job. The application can use wxPrintout::GetDC to obtain a device
1240context to draw on.
1241
1242\section{\class{wxPrintPreview}}\label{wxprintpreview}
1243
a660d684
KB
1244Objects of this class manage the print preview process. The object is passed
1245a wxPrintout object, and the wxPrintPreview object itself is passed to
1246a wxPreviewFrame object. Previewing is started by initializing and showing
1247the preview frame. Unlike wxPrinter::Print, flow of control returns to the application
1248immediately after the frame is shown.
1249
1250\wxheading{Derived from}
1251
1252\helpref{wxObject}{wxobject}
1253
954b8ae6
JS
1254\wxheading{Include files}
1255
1256<wx/print.h>
1257
a660d684
KB
1258\wxheading{See also}
1259
f415cab9
JS
1260\overview{Printing framework overview}{printingoverview},
1261\helpref{wxPrinterDC}{wxprinterdc},
1262\helpref{wxPrintDialog}{wxprintdialog},
1263\helpref{wxPrintout}{wxprintout},
1264\helpref{wxPrinter}{wxprinter},
1265\helpref{wxPreviewCanvas}{wxpreviewcanvas},
1266\helpref{wxPreviewControlBar}{wxpreviewcontrolbar},
a660d684
KB
1267\helpref{wxPreviewFrame}{wxpreviewframe}.
1268
1269\latexignore{\rtfignore{\wxheading{Members}}}
1270
60090256 1271
3e79fa75 1272\membersection{wxPrintPreview::wxPrintPreview}\label{wxprintpreviewctor}
a660d684
KB
1273
1274\func{}{wxPrintPreview}{\param{wxPrintout* }{printout}, \param{wxPrintout* }{printoutForPrinting},
1275\param{wxPrintData* }{data=NULL}}
1276
1277Constructor. Pass a printout object, an optional printout object to be
1278used for actual printing, and the address of an optional
1279block of printer data, which will be copied to the print preview object's
1280print data.
1281
1282If {\it printoutForPrinting} is non-NULL, a {\bf Print...} button will be placed on the
1283preview frame so that the user can print directly from the preview interface.
1284
1285Do not explicitly delete the printout objects once this destructor has been
1286called, since they will be deleted in the wxPrintPreview constructor.
1287The same does not apply to the {\it data} argument.
1288
1289Test the Ok member to check whether the wxPrintPreview object was created correctly.
cc81d32f 1290Ok could return false if there was a problem initializing the printer device context
a660d684
KB
1291(current printer not set, for example).
1292
60090256 1293
3e79fa75 1294\membersection{wxPrintPreview::\destruct{wxPrintPreview}}\label{wxprintpreviewdtor}
a660d684
KB
1295
1296\func{}{\destruct{wxPrinter}}{\void}
1297
1298Destructor. Deletes both print preview objects, so do not destroy these objects
1299in your application.
1300
60090256 1301
a660d684
KB
1302\membersection{wxPrintPreview::GetCanvas}\label{wxprintpreviewgetcanvas}
1303
d2b354f9 1304\func{wxPreviewCanvas* }{GetCanvas}{\void}
a660d684
KB
1305
1306Gets the preview window used for displaying the print preview image.
1307
60090256 1308
a660d684
KB
1309\membersection{wxPrintPreview::GetCurrentPage}\label{wxprintpreviewgetcurrentpage}
1310
1311\func{int}{GetCurrentPage}{\void}
1312
1313Gets the page currently being previewed.
1314
60090256 1315
a660d684
KB
1316\membersection{wxPrintPreview::GetFrame}\label{wxprintpreviewgetframe}
1317
1318\func{wxFrame *}{GetFrame}{\void}
1319
1320Gets the frame used for displaying the print preview canvas
1321and control bar.
1322
60090256 1323
a660d684
KB
1324\membersection{wxPrintPreview::GetMaxPage}\label{wxprintpreviewgetmaxpage}
1325
1326\func{int}{GetMaxPage}{\void}
1327
1328Returns the maximum page number.
1329
60090256 1330
a660d684
KB
1331\membersection{wxPrintPreview::GetMinPage}\label{wxprintpreviewgetminpage}
1332
1333\func{int}{GetMinPage}{\void}
1334
1335Returns the minimum page number.
1336
60090256 1337
a660d684
KB
1338\membersection{wxPrintPreview::GetPrintout}\label{wxprintpreviewgetprintout}
1339
1340\func{wxPrintout *}{GetPrintout}{\void}
1341
1342Gets the preview printout object associated with the wxPrintPreview object.
1343
60090256 1344
a660d684
KB
1345\membersection{wxPrintPreview::GetPrintoutForPrinting}\label{wxprintpreviewgetprintoutforprinting}
1346
1347\func{wxPrintout *}{GetPrintoutForPrinting}{\void}
1348
1349Gets the printout object to be used for printing from within the preview interface,
1350or NULL if none exists.
1351
60090256 1352
b7cacb43 1353\membersection{wxPrintPreview::IsOk}\label{wxprintpreviewisok}
a660d684
KB
1354
1355\func{bool}{Ok}{\void}
1356
cc81d32f 1357Returns true if the wxPrintPreview is valid, false otherwise. It could return false if there was a
a660d684
KB
1358problem initializing the printer device context (current printer not set, for example).
1359
60090256 1360
a660d684
KB
1361\membersection{wxPrintPreview::PaintPage}\label{wxprintpreviewpaintpage}
1362
f6e9a818 1363\func{bool}{PaintPage}{\param{wxPreviewCanvas *}{canvas}, \param{wxDC& }{dc}}
a660d684
KB
1364
1365This refreshes the preview window with the preview image.
1366It must be called from the preview window's OnPaint member.
1367
1368The implementation simply blits the preview bitmap onto
1369the canvas, creating a new preview bitmap if none exists.
1370
60090256 1371
a660d684
KB
1372\membersection{wxPrintPreview::Print}\label{wxprintpreviewprint}
1373
1374\func{bool}{Print}{\param{bool }{prompt}}
1375
1376Invokes the print process using the second wxPrintout object
1377supplied in the wxPrintPreview constructor.
1378Will normally be called by the {\bf Print...} panel item on the
1379preview frame's control bar.
1380
cc81d32f 1381Returns false in case of error -- call
f6bcfd97
BP
1382\helpref{wxPrinter::GetLastError}{wxprintergetlasterror} to get detailed
1383information about the kind of the error.
1384
60090256 1385
a660d684
KB
1386\membersection{wxPrintPreview::RenderPage}\label{wxprintpreviewrenderpage}
1387
1388\func{bool}{RenderPage}{\param{int }{pageNum}}
1389
1390Renders a page into a wxMemoryDC. Used internally by wxPrintPreview.
1391
60090256 1392
a660d684
KB
1393\membersection{wxPrintPreview::SetCanvas}\label{wxprintpreviewsetcanvas}
1394
9a75ba66 1395\func{void}{SetCanvas}{\param{wxPreviewCanvas* }{window}}
a660d684
KB
1396
1397Sets the window to be used for displaying the print preview image.
1398
60090256 1399
a660d684
KB
1400\membersection{wxPrintPreview::SetCurrentPage}\label{wxprintpreviewsetcurrentpage}
1401
1402\func{void}{SetCurrentPage}{\param{int}{ pageNum}}
1403
1404Sets the current page to be previewed.
1405
60090256 1406
a660d684
KB
1407\membersection{wxPrintPreview::SetFrame}\label{wxprintpreviewsetframe}
1408
1409\func{void}{SetFrame}{\param{wxFrame *}{frame}}
1410
1411Sets the frame to be used for displaying the print preview canvas
1412and control bar.
1413
60090256 1414
a660d684
KB
1415\membersection{wxPrintPreview::SetPrintout}\label{wxprintpreviewsetprintout}
1416
1417\func{void}{SetPrintout}{\param{wxPrintout *}{printout}}
1418
1419Associates a printout object with the wxPrintPreview object.
1420
60090256 1421
a660d684
KB
1422\membersection{wxPrintPreview::SetZoom}\label{wxprintpreviewsetzoom}
1423
1424\func{void}{SetZoom}{\param{int}{ percent}}
1425
1426Sets the percentage preview zoom, and refreshes the preview canvas
1427accordingly.
1428