]> git.saurik.com Git - wxWidgets.git/blame - interface/wx/print.h
Make wxGridSizer ctors more consistent.
[wxWidgets.git] / interface / wx / print.h
CommitLineData
23324ae1
FM
1/////////////////////////////////////////////////////////////////////////////
2// Name: print.h
e54c96f1 3// Purpose: interface of wxPreviewControlBar
23324ae1
FM
4// Author: wxWidgets team
5// RCS-ID: $Id$
6// Licence: wxWindows license
7/////////////////////////////////////////////////////////////////////////////
8
9/**
10 @class wxPreviewControlBar
7c913512 11
23324ae1 12 This is the default implementation of the preview control bar, a panel
b1b95a65
FM
13 with buttons and a zoom control.
14
15 You can derive a new class from this and override some or all member functions
16 to change the behaviour and appearance; or you can leave it as it is.
7c913512 17
23324ae1
FM
18 @library{wxbase}
19 @category{printing}
7c913512 20
e54c96f1 21 @see wxPreviewFrame, wxPreviewCanvas, wxPrintPreview
23324ae1
FM
22*/
23class wxPreviewControlBar : public wxPanel
24{
25public:
b1b95a65
FM
26
27 /**
28 Constructor.
29
30 The @a buttons parameter may be a combination of the following, using the bitwise
31 'or' operator:
32
09a728e1
FM
33 @beginFlagTable
34 @flag{wxPREVIEW_PRINT}
b1b95a65 35 Create a print button.
09a728e1 36 @flag{wxPREVIEW_NEXT}
b1b95a65 37 Create a next page button.
09a728e1 38 @flag{wxPREVIEW_PREVIOUS}
b1b95a65 39 Create a previous page button.
09a728e1 40 @flag{wxPREVIEW_ZOOM}
b1b95a65 41 Create a zoom control.
09a728e1 42 @flag{wxPREVIEW_DEFAULT}
b1b95a65
FM
43 Equivalent to a combination of @c wxPREVIEW_PREVIOUS, @c wxPREVIEW_NEXT
44 and @c wxPREVIEW_ZOOM.
09a728e1 45 @endFlagTable
b1b95a65
FM
46 */
47 wxPreviewControlBar(wxPrintPreview* preview,
48 long buttons,
49 wxWindow* parent,
50 const wxPoint& pos = wxDefaultPosition,
51 const wxSize& size = wxDefaultSize,
52 long style = 0,
53 const wxString& name = "panel");
54
23324ae1
FM
55 /**
56 Destructor.
57 */
adaaa686 58 virtual ~wxPreviewControlBar();
23324ae1
FM
59
60 /**
61 Creates buttons, according to value of the button style flags.
4a31b0c3
FM
62
63 @todo which flags??
23324ae1 64 */
adaaa686 65 virtual void CreateButtons();
23324ae1
FM
66
67 /**
68 Gets the print preview object associated with the control bar.
69 */
adaaa686 70 virtual wxPrintPreviewBase* GetPrintPreview() const;
23324ae1
FM
71
72 /**
73 Gets the current zoom setting in percent.
74 */
adaaa686 75 virtual int GetZoomControl();
23324ae1
FM
76
77 /**
78 Sets the zoom control.
79 */
adaaa686 80 virtual void SetZoomControl(int percent);
23324ae1 81
23324ae1
FM
82};
83
84
e54c96f1 85
23324ae1
FM
86/**
87 @class wxPreviewCanvas
7c913512 88
23324ae1
FM
89 A preview canvas is the default canvas used by the print preview
90 system to display the preview.
7c913512 91
23324ae1
FM
92 @library{wxbase}
93 @category{printing}
7c913512 94
e54c96f1 95 @see wxPreviewFrame, wxPreviewControlBar, wxPrintPreview
23324ae1
FM
96*/
97class wxPreviewCanvas : public wxScrolledWindow
98{
99public:
100 /**
101 Constructor.
102 */
103 wxPreviewCanvas(wxPrintPreview* preview, wxWindow* parent,
104 const wxPoint& pos = wxDefaultPosition,
105 const wxSize& size = wxDefaultSize,
106 long style = 0,
107 const wxString& name = "canvas");
108
109 /**
110 Destructor.
111 */
adaaa686 112 virtual ~wxPreviewCanvas();
23324ae1
FM
113
114 /**
b1b95a65 115 Calls wxPrintPreview::PaintPage() to refresh the canvas.
23324ae1
FM
116 */
117 void OnPaint(wxPaintEvent& event);
118};
119
120
e54c96f1 121
23324ae1
FM
122/**
123 @class wxPreviewFrame
7c913512 124
23324ae1
FM
125 This class provides the default method of managing the print preview interface.
126 Member functions may be overridden to replace functionality, or the
127 class may be used without derivation.
7c913512 128
23324ae1
FM
129 @library{wxbase}
130 @category{printing}
7c913512 131
e54c96f1 132 @see wxPreviewCanvas, wxPreviewControlBar, wxPrintPreview
23324ae1
FM
133*/
134class wxPreviewFrame : public wxFrame
135{
136public:
137 /**
b1b95a65
FM
138 Constructor.
139
140 Pass a print preview object plus other normal frame arguments.
23324ae1
FM
141 The print preview object will be destroyed by the frame when it closes.
142 */
8067ee11
FM
143 wxPreviewFrame(wxPrintPreviewBase* preview, wxWindow* parent,
144 const wxString& title = "Print Preview",
23324ae1 145 const wxPoint& pos = wxDefaultPosition,
8067ee11 146 const wxSize& size = wxDefaultSize,
23324ae1 147 long style = wxDEFAULT_FRAME_STYLE,
408776d0 148 const wxString& name = wxFrameNameStr);
23324ae1
FM
149
150 /**
151 Destructor.
152 */
adaaa686 153 virtual ~wxPreviewFrame();
23324ae1
FM
154
155 /**
b1b95a65
FM
156 Creates a wxPreviewCanvas.
157
158 Override this function to allow a user-defined preview canvas object
159 to be created.
23324ae1 160 */
adaaa686 161 virtual void CreateCanvas();
23324ae1
FM
162
163 /**
b1b95a65
FM
164 Creates a wxPreviewControlBar.
165
166 Override this function to allow a user-defined preview control bar object
167 to be created.
23324ae1 168 */
adaaa686 169 virtual void CreateControlBar();
23324ae1
FM
170
171 /**
4a31b0c3
FM
172 Creates the preview canvas and control bar, and calls wxWindow::MakeModal(@true)
173 to disable other top-level windows in the application.
b1b95a65 174
4a31b0c3 175 This function should be called by the application prior to showing the frame.
23324ae1 176 */
adaaa686 177 virtual void Initialize();
23324ae1
FM
178
179 /**
180 Enables the other frames in the application, and deletes the print preview
181 object, implicitly deleting any printout objects associated with the print
182 preview object.
183 */
184 void OnCloseWindow(wxCloseEvent& event);
185};
186
187
e54c96f1 188
23324ae1
FM
189/**
190 @class wxPrintPreview
7c913512 191
23324ae1
FM
192 Objects of this class manage the print preview process. The object is passed
193 a wxPrintout object, and the wxPrintPreview object itself is passed to
194 a wxPreviewFrame object. Previewing is started by initializing and showing
b1b95a65
FM
195 the preview frame. Unlike wxPrinter::Print(), flow of control returns to the
196 application immediately after the frame is shown.
7c913512 197
82824b73
VS
198 @note
199 The preview shown is only exact on Windows. On other platforms, the wxDC
200 used for preview is different from what is used for printing and the
201 results may be significantly different, depending on how is the output
202 created. In particular, printing code relying on wxDC::GetTextExtent()
203 heavily (for example, wxHtmlEasyPrinting and other wxHTML classes do) is
204 affected. It is recommended to use native preview functionality on
205 platforms that offer it (OS X, GTK+).
206
23324ae1
FM
207 @library{wxbase}
208 @category{printing}
7c913512 209
4a31b0c3
FM
210 @see @ref overview_printing, wxPrinterDC, wxPrintDialog, wxPrintout, wxPrinter,
211 wxPreviewCanvas, wxPreviewControlBar, wxPreviewFrame
23324ae1
FM
212*/
213class wxPrintPreview : public wxObject
214{
215public:
216 /**
b1b95a65
FM
217 Constructor.
218
219 Pass a printout object, an optional printout object to be used for actual
220 printing, and the address of an optional block of printer data, which will
221 be copied to the print preview object's print data.
222
4a31b0c3 223 If @a printoutForPrinting is non-@NULL, a @b "Print..." button will be placed on
b1b95a65
FM
224 the preview frame so that the user can print directly from the preview interface.
225
226 @remarks
23324ae1
FM
227 Do not explicitly delete the printout objects once this destructor has been
228 called, since they will be deleted in the wxPrintPreview constructor.
4cc4bfaf 229 The same does not apply to the @a data argument.
b1b95a65 230
4a31b0c3 231 Use IsOk() to check whether the wxPrintPreview object was created correctly.
23324ae1
FM
232 */
233 wxPrintPreview(wxPrintout* printout,
11e3af6e
FM
234 wxPrintout* printoutForPrinting = NULL,
235 wxPrintDialogData* data = NULL);
23324ae1
FM
236
237 /**
b1b95a65
FM
238 Destructor.
239
240 Deletes both print preview objects, so do not destroy these objects
23324ae1
FM
241 in your application.
242 */
243 ~wxPrinter();
244
245 /**
246 Gets the preview window used for displaying the print preview image.
247 */
adaaa686 248 virtual wxPreviewCanvas* GetCanvas() const;
23324ae1
FM
249
250 /**
251 Gets the page currently being previewed.
252 */
adaaa686 253 virtual int GetCurrentPage() const;
23324ae1
FM
254
255 /**
256 Gets the frame used for displaying the print preview canvas
257 and control bar.
258 */
adaaa686 259 virtual wxFrame* GetFrame() const;
23324ae1
FM
260
261 /**
262 Returns the maximum page number.
263 */
adaaa686 264 virtual int GetMaxPage() const;
23324ae1
FM
265
266 /**
267 Returns the minimum page number.
268 */
adaaa686 269 virtual int GetMinPage() const;
23324ae1
FM
270
271 /**
272 Gets the preview printout object associated with the wxPrintPreview object.
273 */
adaaa686 274 virtual wxPrintout* GetPrintout() const;
23324ae1
FM
275
276 /**
277 Gets the printout object to be used for printing from within the preview
278 interface,
279 or @NULL if none exists.
280 */
adaaa686 281 virtual wxPrintout* GetPrintoutForPrinting() const;
23324ae1
FM
282
283 /**
b1b95a65
FM
284 Returns @true if the wxPrintPreview is valid, @false otherwise.
285
286 It could return @false if there was a problem initializing the printer
287 device context (current printer not set, for example).
23324ae1 288 */
adaaa686 289 virtual bool IsOk() const;
23324ae1
FM
290
291 /**
292 This refreshes the preview window with the preview image.
293 It must be called from the preview window's OnPaint member.
b1b95a65 294
23324ae1
FM
295 The implementation simply blits the preview bitmap onto
296 the canvas, creating a new preview bitmap if none exists.
297 */
43c48e1e 298 virtual bool PaintPage(wxPreviewCanvas* canvas, wxDC& dc);
23324ae1
FM
299
300 /**
301 Invokes the print process using the second wxPrintout object
302 supplied in the wxPrintPreview constructor.
303 Will normally be called by the @b Print... panel item on the
304 preview frame's control bar.
b1b95a65
FM
305
306 Returns @false in case of error -- call wxPrinter::GetLastError()
307 to get detailed information about the kind of the error.
23324ae1 308 */
adaaa686 309 virtual bool Print(bool prompt);
23324ae1
FM
310
311 /**
312 Renders a page into a wxMemoryDC. Used internally by wxPrintPreview.
313 */
adaaa686 314 virtual bool RenderPage(int pageNum);
23324ae1
FM
315
316 /**
317 Sets the window to be used for displaying the print preview image.
318 */
adaaa686 319 virtual void SetCanvas(wxPreviewCanvas* window);
23324ae1
FM
320
321 /**
322 Sets the current page to be previewed.
323 */
43c48e1e 324 virtual bool SetCurrentPage(int pageNum);
23324ae1
FM
325
326 /**
327 Sets the frame to be used for displaying the print preview canvas
328 and control bar.
329 */
adaaa686 330 virtual void SetFrame(wxFrame* frame);
23324ae1
FM
331
332 /**
333 Associates a printout object with the wxPrintPreview object.
334 */
adaaa686 335 virtual void SetPrintout(wxPrintout* printout);
23324ae1
FM
336
337 /**
4a31b0c3 338 Sets the percentage preview zoom, and refreshes the preview canvas accordingly.
23324ae1 339 */
adaaa686 340 virtual void SetZoom(int percent);
23324ae1
FM
341};
342
343
e54c96f1 344
23324ae1
FM
345/**
346 @class wxPrinter
7c913512 347
23324ae1 348 This class represents the Windows or PostScript printer, and is the vehicle
b1b95a65 349 through which printing may be launched by an application.
4a31b0c3 350
b1b95a65
FM
351 Printing can also be achieved through using of lower functions and classes,
352 but this and associated classes provide a more convenient and general method
353 of printing.
7c913512 354
23324ae1
FM
355 @library{wxbase}
356 @category{printing}
7c913512 357
4a31b0c3 358 @see @ref overview_printing, wxPrinterDC, wxPrintDialog, wxPrintout, wxPrintPreview
23324ae1
FM
359*/
360class wxPrinter : public wxObject
361{
362public:
363 /**
b1b95a65
FM
364 Constructor.
365
366 Pass an optional pointer to a block of print dialog data, which will be
367 copied to the printer object's local data.
3c4f71cc 368
4cc4bfaf 369 @see wxPrintDialogData, wxPrintData
23324ae1 370 */
4cc4bfaf 371 wxPrinter(wxPrintDialogData* data = NULL);
23324ae1
FM
372
373 /**
374 Creates the default printing abort window, with a cancel button.
375 */
43c48e1e 376 virtual wxWindow* CreateAbortWindow(wxWindow* parent, wxPrintout* printout);
23324ae1
FM
377
378 /**
379 Returns @true if the user has aborted the print job.
380 */
adaaa686 381 bool GetAbort() const;
23324ae1
FM
382
383 /**
b1b95a65
FM
384 Return last error. Valid after calling Print(), PrintDialog() or
385 wxPrintPreview::Print().
4a31b0c3
FM
386
387 These functions set last error to @c wxPRINTER_NO_ERROR if no error happened.
3c4f71cc 388
b1b95a65 389 Returned value is one of the following:
3c4f71cc 390
b1b95a65 391 @beginTable
4a31b0c3
FM
392 @row2col{wxPRINTER_NO_ERROR, No error happened.}
393 @row2col{wxPRINTER_CANCELLED, The user cancelled printing.}
394 @row2col{wxPRINTER_ERROR, There was an error during printing.}
b1b95a65 395 @endTable
23324ae1
FM
396 */
397 static wxPrinterError GetLastError();
398
399 /**
b1b95a65
FM
400 Returns the @ref overview_printing_printdata "print data" associated with
401 the printer object.
23324ae1 402 */
adaaa686 403 virtual wxPrintDialogData& GetPrintDialogData() const;
23324ae1
FM
404
405 /**
406 Starts the printing process. Provide a parent window, a user-defined wxPrintout
b1b95a65
FM
407 object which controls the printing of a document, and whether the print dialog
408 should be invoked first.
409
410 Print() could return @false if there was a problem initializing the printer device
411 context (current printer not set, for example) or the user cancelled printing.
412 Call GetLastError() to get detailed information about the kind of the error.
23324ae1 413 */
fadc2df6
FM
414 virtual bool Print(wxWindow* parent, wxPrintout* printout,
415 bool prompt = true);
23324ae1
FM
416
417 /**
b1b95a65
FM
418 Invokes the print dialog.
419
420 If successful (the user did not press Cancel and no error occurred),
4a31b0c3
FM
421 a suitable device context will be returned; otherwise @NULL is returned;
422 call GetLastError() to get detailed information about the kind of the error.
b1b95a65
FM
423
424 @remarks
23324ae1
FM
425 The application must delete this device context to avoid a memory leak.
426 */
adaaa686 427 virtual wxDC* PrintDialog(wxWindow* parent);
23324ae1
FM
428
429 /**
430 Default error-reporting function.
431 */
fadc2df6
FM
432 virtual void ReportError(wxWindow* parent, wxPrintout* printout,
433 const wxString& message);
23324ae1
FM
434
435 /**
b1b95a65
FM
436 Invokes the print setup dialog.
437
438 @remarks
439 The setup dialog is obsolete from Windows 95, though retained
440 for backward compatibility.
23324ae1 441 */
adaaa686 442 virtual bool Setup(wxWindow* parent);
23324ae1
FM
443};
444
445
e54c96f1 446
23324ae1
FM
447/**
448 @class wxPrintout
7c913512 449
b1b95a65
FM
450 This class encapsulates the functionality of printing out an application document.
451
452 A new class must be derived and members overridden to respond to calls such as
453 OnPrintPage() and HasPage() and to render the print image onto an associated wxDC.
454 Instances of this class are passed to wxPrinter::Print() or
23324ae1 455 to a wxPrintPreview object to initiate printing or previewing.
7c913512 456
23324ae1
FM
457 Your derived wxPrintout is responsible for drawing both the preview image and
458 the printed page. If your windows' drawing routines accept an arbitrary DC as an
459 argument, you can re-use those routines within your wxPrintout subclass to draw
460 the printout image. You may also add additional drawing elements within your
461 wxPrintout subclass, like headers, footers, and/or page numbers. However, the
462 image on the printed page will often differ from the image drawn on the screen,
463 as will the print preview image -- not just in the presence of headers and
464 footers, but typically in scale. A high-resolution printer presents a much
465 larger drawing surface (i.e., a higher-resolution DC); a zoomed-out preview
466 image presents a much smaller drawing surface (lower-resolution DC). By using
467 the routines FitThisSizeToXXX() and/or MapScreenSizeToXXX() within your
468 wxPrintout subclass to set the user scale and origin of the associated DC, you
469 can easily use a single drawing routine to draw on your application's windows,
470 to create the print preview image, and to create the printed paper image, and
471 achieve a common appearance to the preview image and the printed page.
7c913512 472
23324ae1
FM
473 @library{wxbase}
474 @category{printing}
7c913512 475
4a31b0c3
FM
476 @see @ref overview_printing, wxPrinterDC, wxPrintDialog, wxPageSetupDialog,
477 wxPrinter, wxPrintPreview
23324ae1
FM
478*/
479class wxPrintout : public wxObject
480{
481public:
482 /**
b1b95a65
FM
483 Constructor.
484
485 Pass an optional title argument - the current filename would be a
486 good idea. This will appear in the printing list (at least in MSW)
23324ae1
FM
487 */
488 wxPrintout(const wxString& title = "Printout");
489
490 /**
491 Destructor.
492 */
adaaa686 493 virtual ~wxPrintout();
23324ae1
FM
494
495 /**
496 Set the user scale and device origin of the wxDC associated with this wxPrintout
497 so that the given image size fits entirely within the page rectangle and the
b1b95a65
FM
498 origin is at the top left corner of the page rectangle.
499
500 On MSW and Mac, the page rectangle is the printable area of the page.
501 On other platforms and PostScript printing, the page rectangle is the entire paper.
502
503 Use this if you want your printed image as large as possible, but with the caveat
504 that on some platforms, portions of the image might be cut off at the edges.
23324ae1
FM
505 */
506 void FitThisSizeToPage(const wxSize& imageSize);
507
508 /**
509 Set the user scale and device origin of the wxDC associated with this wxPrintout
510 so that the given image size fits entirely within the page margins set in the
b1b95a65
FM
511 given wxPageSetupDialogData object.
512
513 This function provides the greatest consistency across all platforms because it
514 does not depend on having access to the printable area of the paper.
515
516 @remarks
517 On Mac, the native wxPageSetupDialog does not let you set the page margins;
518 you'll have to provide your own mechanism, or you can use the Mac-only class
519 wxMacPageMarginsDialog.
23324ae1
FM
520 */
521 void FitThisSizeToPageMargins(const wxSize& imageSize,
522 const wxPageSetupDialogData& pageSetupData);
523
524 /**
525 Set the user scale and device origin of the wxDC associated with this wxPrintout
526 so that the given image size fits entirely within the paper and the origin is at
b1b95a65
FM
527 the top left corner of the paper.
528
529 Use this if you're managing your own page margins.
530
531 @note
532 With most printers, the region around the edges of the paper are not
533 printable so that the edges of the image could be cut off.
534
23324ae1
FM
535 */
536 void FitThisSizeToPaper(const wxSize& imageSize);
537
538 /**
539 Returns the device context associated with the printout (given to the printout
b1b95a65
FM
540 at start of printing or previewing).
541
542 The application can use GetDC() to obtain a device context to draw on.
543
544 This will be a wxPrinterDC if printing under Windows or Mac, a wxPostScriptDC
545 if printing on other platforms, and a wxMemoryDC if previewing.
23324ae1 546 */
adaaa686 547 wxDC* GetDC() const;
23324ae1
FM
548
549 /**
550 Return the rectangle corresponding to the page margins specified by the given
551 wxPageSetupDialogData object in the associated wxDC's logical coordinates for
b1b95a65
FM
552 the current user scale and device origin.
553
554 The page margins are specified with respect to the edges of the paper on all
555 platforms.
23324ae1 556 */
adaaa686 557 wxRect GetLogicalPageMarginsRect(const wxPageSetupDialogData& pageSetupData) const;
23324ae1
FM
558
559 /**
b1b95a65 560 Return the rectangle corresponding to the page in the associated wxDC 's
7c913512 561 logical coordinates for the current user scale and device origin.
b1b95a65
FM
562
563 On MSW and Mac, this will be the printable area of the paper.
564 On other platforms and PostScript printing, this will be the full paper
565 rectangle.
23324ae1 566 */
adaaa686 567 wxRect GetLogicalPageRect() const;
23324ae1
FM
568
569 /**
b1b95a65 570 Return the rectangle corresponding to the paper in the associated wxDC 's
23324ae1
FM
571 logical coordinates for the current user scale and device origin.
572 */
adaaa686 573 wxRect GetLogicalPaperRect() const;
23324ae1
FM
574
575 /**
576 Returns the number of pixels per logical inch of the printer device context.
b1b95a65 577
23324ae1 578 Dividing the printer PPI by the screen PPI can give a suitable scaling factor
b1b95a65
FM
579 for drawing text onto the printer.
580
581 Remember to multiply this by a scaling factor to take the preview DC size into
582 account.
583 Or you can just use the FitThisSizeToXXX() and MapScreenSizeToXXX routines below,
584 which do most of the scaling calculations for you.
585
586 @beginWxPythonOnly
587 This method returns the output-only parameters as a tuple.
588 @endWxPythonOnly
23324ae1 589 */
adaaa686 590 void GetPPIPrinter(int* w, int* h) const;
23324ae1
FM
591
592 /**
593 Returns the number of pixels per logical inch of the screen device context.
b1b95a65 594
23324ae1 595 Dividing the printer PPI by the screen PPI can give a suitable scaling factor
b1b95a65
FM
596 for drawing text onto the printer.
597
598 If you are doing your own scaling, remember to multiply this by a scaling
599 factor to take the preview DC size into account.
600
601 @beginWxPythonOnly
602 This method returns the output-only parameters as a tuple.
603 @endWxPythonOnly
23324ae1 604 */
adaaa686 605 void GetPPIScreen(int* w, int* h) const;
23324ae1
FM
606
607 /**
608 Called by the framework to obtain information from the application about minimum
609 and maximum page values that the user can select, and the required page range to
b1b95a65
FM
610 be printed.
611
612 By default this returns (1, 32000) for the page minimum and maximum values, and
613 (1, 1) for the required page range.
614
3877c17e
VZ
615 @a minPage must be greater than zero and @a maxPage must be greater
616 than @a minPage.
b1b95a65
FM
617
618 @beginWxPythonOnly
619 When this method is implemented in a derived Python class, it should be designed
620 to take no parameters (other than the self reference) and to return a tuple of
621 four integers.
622 @endWxPythonOnly
23324ae1 623 */
fadc2df6
FM
624 virtual void GetPageInfo(int* minPage, int* maxPage, int* pageFrom,
625 int* pageTo);
23324ae1
FM
626
627 /**
628 Returns the size of the printer page in millimetres.
b1b95a65
FM
629
630 @beginWxPythonOnly
631 This method returns the output-only parameters as a tuple.
632 @endWxPythonOnly
23324ae1 633 */
adaaa686 634 void GetPageSizeMM(int* w, int* h) const;
23324ae1
FM
635
636 /**
637 Returns the size of the printer page in pixels, called the page rectangle.
b1b95a65 638
23324ae1
FM
639 The page rectangle has a top left corner at (0,0) and a bottom right corner at
640 (w,h). These values may not be the same as the values returned from
b1b95a65 641 wxDC::GetSize(); if the printout is being used for
23324ae1
FM
642 previewing, a memory device context is used, which uses a bitmap size reflecting
643 the current preview zoom. The application must take this discrepancy into
644 account if previewing is to be supported.
b1b95a65
FM
645
646 @beginWxPythonOnly
647 This method returns the output-only parameters as a tuple.
648 @endWxPythonOnly
23324ae1 649 */
adaaa686 650 void GetPageSizePixels(int* w, int* h) const;
23324ae1
FM
651
652 /**
653 Returns the rectangle that corresponds to the entire paper in pixels, called the
b1b95a65
FM
654 paper rectangle.
655
656 This distinction between paper rectangle and page rectangle reflects the fact that
657 most printers cannot print all the way to the edge of the paper.
658 The page rectangle is a rectangle whose top left corner is at (0,0) and whose width
659 and height are given by wxDC::GetPageSizePixels().
660
661 On MSW and Mac, the page rectangle gives the printable area of the paper, while the
662 paper rectangle represents the entire paper, including non-printable borders.
663 Thus, the rectangle returned by wxDC::GetPaperRectPixels() will have a top left corner
664 whose coordinates are small negative numbers and the bottom right corner will have
665 values somewhat larger than the width and height given by wxDC::GetPageSizePixels().
666
667 On other platforms and for PostScript printing, the paper is treated as if its entire
23324ae1
FM
668 area were printable, so this function will return the same rectangle as the page
669 rectangle.
670 */
adaaa686 671 wxRect GetPaperRectPixels() const;
23324ae1
FM
672
673 /**
4a31b0c3
FM
674 Returns the title of the printout.
675
676 @todo the python note here was wrong
23324ae1 677 */
adaaa686 678 virtual wxString GetTitle() const;
23324ae1
FM
679
680 /**
681 Should be overridden to return @true if the document has this page, or @false
b1b95a65
FM
682 if not.
683
684 Returning @false signifies the end of the document. By default,
23324ae1
FM
685 HasPage behaves as if the document has only one page.
686 */
adaaa686 687 virtual bool HasPage(int pageNum);
23324ae1
FM
688
689 /**
690 Returns @true if the printout is currently being used for previewing.
691 */
adaaa686 692 virtual bool IsPreview() const;
23324ae1
FM
693
694 /**
695 Set the user scale and device origin of the wxDC associated with this wxPrintout
b1b95a65
FM
696 so that one screen pixel maps to one device pixel on the DC.
697 That is, the user scale is set to (1,1) and the device origin is set to (0,0).
698
699 Use this if you want to do your own scaling prior to calling wxDC drawing calls,
700 for example, if your underlying model is floating-point and you want to achieve
701 maximum drawing precision on high-resolution printers.
702
703 You can use the GetLogicalXXXRect() routines below to obtain the paper rectangle,
704 page rectangle, or page margins rectangle to perform your own scaling.
705
706 @note
707 While the underlying drawing model of Mac OS X is floating-point,
708 wxWidgets's drawing model scales from integer coordinates.
23324ae1
FM
709 */
710 void MapScreenSizeToDevice();
711
712 /**
713 This sets the user scale of the wxDC assocated with this wxPrintout to the same
b1b95a65
FM
714 scale as MapScreenSizeToPaper() but sets the logical origin to the top left corner
715 of the page rectangle.
23324ae1
FM
716 */
717 void MapScreenSizeToPage();
718
719 /**
720 This sets the user scale of the wxDC assocated with this wxPrintout to the same
b1b95a65
FM
721 scale as MapScreenSizeToPageMargins() but sets the logical origin to the top left
722 corner of the page margins specified by the given wxPageSetupDialogData object.
23324ae1
FM
723 */
724 void MapScreenSizeToPageMargins(const wxPageSetupDialogData& pageSetupData);
725
726 /**
727 Set the user scale and device origin of the wxDC associated with this wxPrintout
728 so that the printed page matches the screen size as closely as possible
729 and the logical origin is in the top left corner of the paper rectangle.
4a31b0c3
FM
730
731 That is, a 100-pixel object on screen should appear at the same size on the
732 printed page.
b1b95a65
FM
733 (It will, of course, be larger or smaller in the preview image, depending on the
734 zoom factor.)
735
736 Use this if you want WYSIWYG behavior, e.g., in a text editor.
23324ae1
FM
737 */
738 void MapScreenSizeToPaper();
739
740 /**
741 Shift the device origin by an amount specified in logical coordinates.
742 */
743 void OffsetLogicalOrigin(wxCoord xoff, wxCoord yoff);
744
745 /**
746 Called by the framework at the start of document printing. Return @false from
b1b95a65
FM
747 this function cancels the print job.
748
749 OnBeginDocument() is called once for every copy printed.
750
751 @remarks
752 The base OnBeginDocument() must be called (and the return value
753 checked) from within the overridden function, since it calls wxDC::StartDoc().
754
755 @beginWxPythonOnly
756 If this method is overridden in a Python class then the base class version can
757 be called by using the method <tt>base_OnBeginDocument(startPage, endPage)</tt>.
758 @endWxPythonOnly
23324ae1 759 */
adaaa686 760 virtual bool OnBeginDocument(int startPage, int endPage);
23324ae1
FM
761
762 /**
b1b95a65
FM
763 Called by the framework at the start of printing.
764
765 OnBeginPrinting() is called once for every print job
766 (regardless of how many copies are being printed).
23324ae1 767 */
adaaa686 768 virtual void OnBeginPrinting();
23324ae1
FM
769
770 /**
b1b95a65
FM
771 Called by the framework at the end of document printing.
772
773 OnEndDocument() is called once for every copy printed.
774
775 @remarks
776 The base OnEndDocument() must be called from within the overridden function,
777 since it calls wxDC::EndDoc().
23324ae1 778 */
adaaa686 779 virtual void OnEndDocument();
23324ae1
FM
780
781 /**
b1b95a65
FM
782 Called by the framework at the end of printing.
783
784 OnEndPrinting is called once for every print job
785 (regardless of how many copies are being printed).
23324ae1 786 */
adaaa686 787 virtual void OnEndPrinting();
23324ae1
FM
788
789 /**
790 Called once by the framework before any other demands are made of the
b1b95a65
FM
791 wxPrintout object.
792
793 This gives the object an opportunity to calculate the number of pages
794 in the document, for example.
23324ae1 795 */
adaaa686 796 virtual void OnPreparePrinting();
23324ae1
FM
797
798 /**
799 Called by the framework when a page should be printed. Returning @false cancels
b1b95a65 800 the print job.
23324ae1 801 */
da1ed74c 802 virtual bool OnPrintPage(int pageNum) = 0;
23324ae1
FM
803
804 /**
805 Set the device origin of the associated wxDC so that the current logical point
806 becomes the new logical origin.
807 */
808 void SetLogicalOrigin(wxCoord x, wxCoord y);
809};
e54c96f1 810