1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: interface of wxPreviewControlBar
4 // Author: wxWidgets team
6 // Licence: wxWindows licence
7 /////////////////////////////////////////////////////////////////////////////
11 wxPRINTER_NO_ERROR
= 0,
16 #define wxPREVIEW_PRINT 1
17 #define wxPREVIEW_PREVIOUS 2
18 #define wxPREVIEW_NEXT 4
19 #define wxPREVIEW_ZOOM 8
20 #define wxPREVIEW_FIRST 16
21 #define wxPREVIEW_LAST 32
22 #define wxPREVIEW_GOTO 64
24 #define wxPREVIEW_DEFAULT (wxPREVIEW_PREVIOUS|wxPREVIEW_NEXT|wxPREVIEW_ZOOM\
25 |wxPREVIEW_FIRST|wxPREVIEW_GOTO|wxPREVIEW_LAST)
28 #define wxID_PREVIEW_CLOSE 1
29 #define wxID_PREVIEW_NEXT 2
30 #define wxID_PREVIEW_PREVIOUS 3
31 #define wxID_PREVIEW_PRINT 4
32 #define wxID_PREVIEW_ZOOM 5
33 #define wxID_PREVIEW_FIRST 6
34 #define wxID_PREVIEW_LAST 7
35 #define wxID_PREVIEW_GOTO 8
36 #define wxID_PREVIEW_ZOOM_IN 9
37 #define wxID_PREVIEW_ZOOM_OUT 10
41 @class wxPreviewControlBar
43 This is the default implementation of the preview control bar, a panel
44 with buttons and a zoom control.
46 You can derive a new class from this and override some or all member functions
47 to change the behaviour and appearance; or you can leave it as it is.
52 @see wxPreviewFrame, wxPreviewCanvas, wxPrintPreview
54 class wxPreviewControlBar
: public wxPanel
61 The @a buttons parameter may be a combination of the following, using the bitwise
65 @flag{wxPREVIEW_PRINT}
66 Create a print button.
68 Create a next page button.
69 @flag{wxPREVIEW_PREVIOUS}
70 Create a previous page button.
72 Create a zoom control.
73 @flag{wxPREVIEW_DEFAULT}
74 Equivalent to a combination of @c wxPREVIEW_PREVIOUS, @c wxPREVIEW_NEXT
75 and @c wxPREVIEW_ZOOM.
78 wxPreviewControlBar(wxPrintPreview
* preview
,
81 const wxPoint
& pos
= wxDefaultPosition
,
82 const wxSize
& size
= wxDefaultSize
,
84 const wxString
& name
= "panel");
89 virtual ~wxPreviewControlBar();
92 Creates buttons, according to value of the button style flags.
96 virtual void CreateButtons();
99 Gets the print preview object associated with the control bar.
101 virtual wxPrintPreviewBase
* GetPrintPreview() const;
104 Gets the current zoom setting in percent.
106 virtual int GetZoomControl();
109 Sets the zoom control.
111 virtual void SetZoomControl(int percent
);
118 @class wxPreviewCanvas
120 A preview canvas is the default canvas used by the print preview
121 system to display the preview.
126 @see wxPreviewFrame, wxPreviewControlBar, wxPrintPreview
128 class wxPreviewCanvas
: public wxScrolledWindow
134 wxPreviewCanvas(wxPrintPreview
* preview
, wxWindow
* parent
,
135 const wxPoint
& pos
= wxDefaultPosition
,
136 const wxSize
& size
= wxDefaultSize
,
138 const wxString
& name
= "canvas");
143 virtual ~wxPreviewCanvas();
146 Calls wxPrintPreview::PaintPage() to refresh the canvas.
148 void OnPaint(wxPaintEvent
& event
);
152 Preview frame modality kind.
154 The elements of this enum can be used with wxPreviewFrame::Initialize() to
155 indicate how should the preview frame be shown.
159 enum wxPreviewFrameModalityKind
162 Disable all the other top level windows while the preview frame is shown.
164 This is the default behaviour.
166 wxPreviewFrame_AppModal
,
169 Disable only the parent window while the preview frame is shown.
171 wxPreviewFrame_WindowModal
,
174 Show the preview frame non-modally and don't disable any other windows.
176 wxPreviewFrame_NonModal
180 @class wxPreviewFrame
182 This class provides the default method of managing the print preview interface.
183 Member functions may be overridden to replace functionality, or the
184 class may be used without derivation.
189 @see wxPreviewCanvas, wxPreviewControlBar, wxPrintPreview
191 class wxPreviewFrame
: public wxFrame
197 Pass a print preview object plus other normal frame arguments.
198 The print preview object will be destroyed by the frame when it closes.
200 wxPreviewFrame(wxPrintPreviewBase
* preview
, wxWindow
* parent
,
201 const wxString
& title
= "Print Preview",
202 const wxPoint
& pos
= wxDefaultPosition
,
203 const wxSize
& size
= wxDefaultSize
,
204 long style
= wxDEFAULT_FRAME_STYLE
,
205 const wxString
& name
= wxFrameNameStr
);
210 virtual ~wxPreviewFrame();
213 Creates a wxPreviewCanvas.
215 Override this function to allow a user-defined preview canvas object
218 virtual void CreateCanvas();
221 Creates a wxPreviewControlBar.
223 Override this function to allow a user-defined preview control bar object
226 virtual void CreateControlBar();
229 Initializes the frame elements and prepares for showing it.
231 Calling this method is equivalent to calling InitializeWithModality()
232 with wxPreviewFrame_AppModal argument, please see its documentation for
235 Please notice that this function is virtual mostly for backwards
236 compatibility only, there is no real need to override it as it's never
237 called by wxWidgets itself.
239 virtual void Initialize();
242 Initializes the frame elements and prepares for showing it with the
245 This method creates the frame elements by calling CreateCanvas() and
246 CreateControlBar() methods (which may be overridden to customize them)
247 and prepares to show the frame according to the value of @a kind
249 - If it is wxPreviewFrame_AppModal, all the other application
250 windows will be disabled when this frame is shown. This is the same
251 behaviour as that of simple Initialize().
252 - If it is wxPreviewFrame_WindowModal, only the parent window of
253 the preview frame will be disabled when it is shown.
254 - And if it is wxPreviewFrame_NonModal, no windows at all will be
255 disabled while the preview is shown.
257 Notice that this function (or Initialize()) must be called by the
258 application prior to showing the frame but you still must call @c
259 Show(true) to actually show it afterwards.
262 The modality kind of preview frame.
266 virtual void InitializeWithModality(wxPreviewFrameModalityKind kind
);
269 Enables any disabled frames in the application, and deletes the print preview
270 object, implicitly deleting any printout objects associated with the print
273 void OnCloseWindow(wxCloseEvent
& event
);
279 @class wxPrintPreview
281 Objects of this class manage the print preview process. The object is passed
282 a wxPrintout object, and the wxPrintPreview object itself is passed to
283 a wxPreviewFrame object. Previewing is started by initializing and showing
284 the preview frame. Unlike wxPrinter::Print(), flow of control returns to the
285 application immediately after the frame is shown.
288 The preview shown is only exact on Windows. On other platforms, the wxDC
289 used for preview is different from what is used for printing and the
290 results may be significantly different, depending on how is the output
291 created. In particular, printing code relying on wxDC::GetTextExtent()
292 heavily (for example, wxHtmlEasyPrinting and other wxHTML classes do) is
293 affected. It is recommended to use native preview functionality on
294 platforms that offer it (OS X, GTK+).
299 @see @ref overview_printing, wxPrinterDC, wxPrintDialog, wxPrintout, wxPrinter,
300 wxPreviewCanvas, wxPreviewControlBar, wxPreviewFrame
302 class wxPrintPreview
: public wxObject
308 Pass a printout object, an optional printout object to be used for actual
309 printing, and the address of an optional block of printer data, which will
310 be copied to the print preview object's print data.
312 If @a printoutForPrinting is non-@NULL, a @b "Print..." button will be placed on
313 the preview frame so that the user can print directly from the preview interface.
316 Do not explicitly delete the printout objects once this constructor has been
317 called, since they will be deleted in the wxPrintPreview destructor.
318 The same does not apply to the @a data argument.
320 Use IsOk() to check whether the wxPrintPreview object was created correctly.
322 wxPrintPreview(wxPrintout
* printout
,
323 wxPrintout
* printoutForPrinting
= NULL
,
324 wxPrintDialogData
* data
= NULL
);
325 wxPrintPreview(wxPrintout
* printout
,
326 wxPrintout
* printoutForPrinting
,
332 Deletes both print preview objects, so do not destroy these objects
338 Gets the preview window used for displaying the print preview image.
340 virtual wxPreviewCanvas
* GetCanvas() const;
343 Gets the page currently being previewed.
345 virtual int GetCurrentPage() const;
348 Gets the frame used for displaying the print preview canvas
351 virtual wxFrame
* GetFrame() const;
354 Returns the maximum page number.
356 virtual int GetMaxPage() const;
359 Returns the minimum page number.
361 virtual int GetMinPage() const;
364 Gets the preview printout object associated with the wxPrintPreview object.
366 virtual wxPrintout
* GetPrintout() const;
369 Gets the printout object to be used for printing from within the preview
371 or @NULL if none exists.
373 virtual wxPrintout
* GetPrintoutForPrinting() const;
376 Returns @true if the wxPrintPreview is valid, @false otherwise.
378 It could return @false if there was a problem initializing the printer
379 device context (current printer not set, for example).
381 virtual bool IsOk() const;
384 This refreshes the preview window with the preview image.
385 It must be called from the preview window's OnPaint member.
387 The implementation simply blits the preview bitmap onto
388 the canvas, creating a new preview bitmap if none exists.
390 virtual bool PaintPage(wxPreviewCanvas
* canvas
, wxDC
& dc
);
393 Invokes the print process using the second wxPrintout object
394 supplied in the wxPrintPreview constructor.
395 Will normally be called by the @b Print... panel item on the
396 preview frame's control bar.
398 Returns @false in case of error -- call wxPrinter::GetLastError()
399 to get detailed information about the kind of the error.
401 virtual bool Print(bool prompt
);
404 Renders a page into a wxMemoryDC. Used internally by wxPrintPreview.
406 virtual bool RenderPage(int pageNum
);
409 Sets the window to be used for displaying the print preview image.
411 virtual void SetCanvas(wxPreviewCanvas
* window
);
414 Sets the current page to be previewed.
416 virtual bool SetCurrentPage(int pageNum
);
419 Sets the frame to be used for displaying the print preview canvas
422 virtual void SetFrame(wxFrame
* frame
);
425 Associates a printout object with the wxPrintPreview object.
427 virtual void SetPrintout(wxPrintout
* printout
);
430 Sets the percentage preview zoom, and refreshes the preview canvas accordingly.
432 virtual void SetZoom(int percent
);
440 This class represents the Windows or PostScript printer, and is the vehicle
441 through which printing may be launched by an application.
443 Printing can also be achieved through using of lower functions and classes,
444 but this and associated classes provide a more convenient and general method
450 @see @ref overview_printing, wxPrinterDC, wxPrintDialog, wxPrintout, wxPrintPreview
452 class wxPrinter
: public wxObject
458 Pass an optional pointer to a block of print dialog data, which will be
459 copied to the printer object's local data.
461 @see wxPrintDialogData, wxPrintData
463 wxPrinter(wxPrintDialogData
* data
= NULL
);
466 Creates the default printing abort window, with a cancel button.
468 virtual wxPrintAbortDialog
* CreateAbortWindow(wxWindow
* parent
, wxPrintout
* printout
);
471 Returns @true if the user has aborted the print job.
473 bool GetAbort() const;
476 Return last error. Valid after calling Print(), PrintDialog() or
477 wxPrintPreview::Print().
479 These functions set last error to @c wxPRINTER_NO_ERROR if no error happened.
481 Returned value is one of the following:
484 @row2col{wxPRINTER_NO_ERROR, No error happened.}
485 @row2col{wxPRINTER_CANCELLED, The user cancelled printing.}
486 @row2col{wxPRINTER_ERROR, There was an error during printing.}
489 static wxPrinterError
GetLastError();
492 Returns the @ref overview_printing_printdata "print data" associated with
495 virtual wxPrintDialogData
& GetPrintDialogData() const;
498 Starts the printing process. Provide a parent window, a user-defined wxPrintout
499 object which controls the printing of a document, and whether the print dialog
500 should be invoked first.
502 Print() could return @false if there was a problem initializing the printer device
503 context (current printer not set, for example) or the user cancelled printing.
504 Call GetLastError() to get detailed information about the kind of the error.
506 virtual bool Print(wxWindow
* parent
, wxPrintout
* printout
,
510 Invokes the print dialog.
512 If successful (the user did not press Cancel and no error occurred),
513 a suitable device context will be returned; otherwise @NULL is returned;
514 call GetLastError() to get detailed information about the kind of the error.
517 The application must delete this device context to avoid a memory leak.
519 virtual wxDC
* PrintDialog(wxWindow
* parent
);
522 Default error-reporting function.
524 virtual void ReportError(wxWindow
* parent
, wxPrintout
* printout
,
525 const wxString
& message
);
528 Invokes the print setup dialog.
531 The setup dialog is obsolete from Windows 95, though retained
532 for backward compatibility.
534 virtual bool Setup(wxWindow
* parent
);
542 This class encapsulates the functionality of printing out an application document.
544 A new class must be derived and members overridden to respond to calls such as
545 OnPrintPage() and HasPage() and to render the print image onto an associated wxDC.
546 Instances of this class are passed to wxPrinter::Print() or
547 to a wxPrintPreview object to initiate printing or previewing.
549 Your derived wxPrintout is responsible for drawing both the preview image and
550 the printed page. If your windows' drawing routines accept an arbitrary DC as an
551 argument, you can re-use those routines within your wxPrintout subclass to draw
552 the printout image. You may also add additional drawing elements within your
553 wxPrintout subclass, like headers, footers, and/or page numbers. However, the
554 image on the printed page will often differ from the image drawn on the screen,
555 as will the print preview image -- not just in the presence of headers and
556 footers, but typically in scale. A high-resolution printer presents a much
557 larger drawing surface (i.e., a higher-resolution DC); a zoomed-out preview
558 image presents a much smaller drawing surface (lower-resolution DC). By using
559 the routines FitThisSizeToXXX() and/or MapScreenSizeToXXX() within your
560 wxPrintout subclass to set the user scale and origin of the associated DC, you
561 can easily use a single drawing routine to draw on your application's windows,
562 to create the print preview image, and to create the printed paper image, and
563 achieve a common appearance to the preview image and the printed page.
568 @see @ref overview_printing, wxPrinterDC, wxPrintDialog, wxPageSetupDialog,
569 wxPrinter, wxPrintPreview
571 class wxPrintout
: public wxObject
577 Pass an optional title argument - the current filename would be a
578 good idea. This will appear in the printing list (at least in MSW)
580 wxPrintout(const wxString
& title
= "Printout");
585 virtual ~wxPrintout();
588 Set the user scale and device origin of the wxDC associated with this wxPrintout
589 so that the given image size fits entirely within the page rectangle and the
590 origin is at the top left corner of the page rectangle.
592 On MSW and Mac, the page rectangle is the printable area of the page.
593 On other platforms and PostScript printing, the page rectangle is the entire paper.
595 Use this if you want your printed image as large as possible, but with the caveat
596 that on some platforms, portions of the image might be cut off at the edges.
598 void FitThisSizeToPage(const wxSize
& imageSize
);
601 Set the user scale and device origin of the wxDC associated with this wxPrintout
602 so that the given image size fits entirely within the page margins set in the
603 given wxPageSetupDialogData object.
605 This function provides the greatest consistency across all platforms because it
606 does not depend on having access to the printable area of the paper.
609 On Mac, the native wxPageSetupDialog does not let you set the page margins;
610 you'll have to provide your own mechanism, or you can use the Mac-only class
611 wxMacPageMarginsDialog.
613 void FitThisSizeToPageMargins(const wxSize
& imageSize
,
614 const wxPageSetupDialogData
& pageSetupData
);
617 Set the user scale and device origin of the wxDC associated with this wxPrintout
618 so that the given image size fits entirely within the paper and the origin is at
619 the top left corner of the paper.
621 Use this if you're managing your own page margins.
624 With most printers, the region around the edges of the paper are not
625 printable so that the edges of the image could be cut off.
628 void FitThisSizeToPaper(const wxSize
& imageSize
);
631 Returns the device context associated with the printout (given to the printout
632 at start of printing or previewing).
634 The application can use GetDC() to obtain a device context to draw on.
636 This will be a wxPrinterDC if printing under Windows or Mac, a wxPostScriptDC
637 if printing on other platforms, and a wxMemoryDC if previewing.
642 Return the rectangle corresponding to the page margins specified by the given
643 wxPageSetupDialogData object in the associated wxDC's logical coordinates for
644 the current user scale and device origin.
646 The page margins are specified with respect to the edges of the paper on all
649 wxRect
GetLogicalPageMarginsRect(const wxPageSetupDialogData
& pageSetupData
) const;
652 Return the rectangle corresponding to the page in the associated wxDC 's
653 logical coordinates for the current user scale and device origin.
655 On MSW and Mac, this will be the printable area of the paper.
656 On other platforms and PostScript printing, this will be the full paper
659 wxRect
GetLogicalPageRect() const;
662 Return the rectangle corresponding to the paper in the associated wxDC 's
663 logical coordinates for the current user scale and device origin.
665 wxRect
GetLogicalPaperRect() const;
668 Returns the number of pixels per logical inch of the printer device context.
670 Dividing the printer PPI by the screen PPI can give a suitable scaling factor
671 for drawing text onto the printer.
673 Remember to multiply this by a scaling factor to take the preview DC size into
675 Or you can just use the FitThisSizeToXXX() and MapScreenSizeToXXX routines below,
676 which do most of the scaling calculations for you.
679 In wxPerl this method takes no arguments and returns a
680 2-element list (w, h).
683 void GetPPIPrinter(int* w
, int* h
) const;
686 Returns the number of pixels per logical inch of the screen device context.
688 Dividing the printer PPI by the screen PPI can give a suitable scaling factor
689 for drawing text onto the printer.
691 If you are doing your own scaling, remember to multiply this by a scaling
692 factor to take the preview DC size into account.
695 In wxPerl this method takes no arguments and returns a
696 2-element list (w, h).
699 void GetPPIScreen(int* w
, int* h
) const;
702 Called by the framework to obtain information from the application about minimum
703 and maximum page values that the user can select, and the required page range to
706 By default this returns (1, 32000) for the page minimum and maximum values, and
707 (1, 1) for the required page range.
709 @a minPage must be greater than zero and @a maxPage must be greater
712 virtual void GetPageInfo(int* minPage
, int* maxPage
, int* pageFrom
,
716 Returns the size of the printer page in millimetres.
719 In wxPerl this method takes no arguments and returns a
720 2-element list (w, h).
723 void GetPageSizeMM(int* w
, int* h
) const;
726 Returns the size of the printer page in pixels, called the page rectangle.
728 The page rectangle has a top left corner at (0,0) and a bottom right corner at
729 (w,h). These values may not be the same as the values returned from
730 wxDC::GetSize(); if the printout is being used for
731 previewing, a memory device context is used, which uses a bitmap size reflecting
732 the current preview zoom. The application must take this discrepancy into
733 account if previewing is to be supported.
735 void GetPageSizePixels(int* w
, int* h
) const;
738 Returns the rectangle that corresponds to the entire paper in pixels, called the
741 This distinction between paper rectangle and page rectangle reflects the fact that
742 most printers cannot print all the way to the edge of the paper.
743 The page rectangle is a rectangle whose top left corner is at (0,0) and whose width
744 and height are given by wxDC::GetPageSizePixels().
746 On MSW and Mac, the page rectangle gives the printable area of the paper, while the
747 paper rectangle represents the entire paper, including non-printable borders.
748 Thus, the rectangle returned by wxDC::GetPaperRectPixels() will have a top left corner
749 whose coordinates are small negative numbers and the bottom right corner will have
750 values somewhat larger than the width and height given by wxDC::GetPageSizePixels().
752 On other platforms and for PostScript printing, the paper is treated as if its entire
753 area were printable, so this function will return the same rectangle as the page
756 wxRect
GetPaperRectPixels() const;
759 Returns the title of the printout.
761 @todo the python note here was wrong
763 virtual wxString
GetTitle() const;
766 Should be overridden to return @true if the document has this page, or @false
769 Returning @false signifies the end of the document. By default,
770 HasPage behaves as if the document has only one page.
772 virtual bool HasPage(int pageNum
);
775 Returns @true if the printout is currently being used for previewing.
779 virtual bool IsPreview() const;
782 Returns the associated preview object if any.
784 If this printout object is used for previewing, returns the associated
785 wxPrintPreview. Otherwise returns @NULL.
787 The returned pointer is not owned by the printout and must not be
794 wxPrintPreview
*GetPreview() const;
797 Set the user scale and device origin of the wxDC associated with this wxPrintout
798 so that one screen pixel maps to one device pixel on the DC.
799 That is, the user scale is set to (1,1) and the device origin is set to (0,0).
801 Use this if you want to do your own scaling prior to calling wxDC drawing calls,
802 for example, if your underlying model is floating-point and you want to achieve
803 maximum drawing precision on high-resolution printers.
805 You can use the GetLogicalXXXRect() routines below to obtain the paper rectangle,
806 page rectangle, or page margins rectangle to perform your own scaling.
809 While the underlying drawing model of Mac OS X is floating-point,
810 wxWidgets's drawing model scales from integer coordinates.
812 void MapScreenSizeToDevice();
815 This sets the user scale of the wxDC associated with this wxPrintout to the same
816 scale as MapScreenSizeToPaper() but sets the logical origin to the top left corner
817 of the page rectangle.
819 void MapScreenSizeToPage();
822 This sets the user scale of the wxDC associated with this wxPrintout to the same
823 scale as MapScreenSizeToPageMargins() but sets the logical origin to the top left
824 corner of the page margins specified by the given wxPageSetupDialogData object.
826 void MapScreenSizeToPageMargins(const wxPageSetupDialogData
& pageSetupData
);
829 Set the user scale and device origin of the wxDC associated with this wxPrintout
830 so that the printed page matches the screen size as closely as possible
831 and the logical origin is in the top left corner of the paper rectangle.
833 That is, a 100-pixel object on screen should appear at the same size on the
835 (It will, of course, be larger or smaller in the preview image, depending on the
838 Use this if you want WYSIWYG behaviour, e.g., in a text editor.
840 void MapScreenSizeToPaper();
843 Shift the device origin by an amount specified in logical coordinates.
845 void OffsetLogicalOrigin(wxCoord xoff
, wxCoord yoff
);
848 Called by the framework at the start of document printing. Return @false from
849 this function cancels the print job.
851 OnBeginDocument() is called once for every copy printed.
854 The base OnBeginDocument() must be called (and the return value
855 checked) from within the overridden function, since it calls wxDC::StartDoc().
857 virtual bool OnBeginDocument(int startPage
, int endPage
);
860 Called by the framework at the start of printing.
862 OnBeginPrinting() is called once for every print job
863 (regardless of how many copies are being printed).
865 virtual void OnBeginPrinting();
868 Called by the framework at the end of document printing.
870 OnEndDocument() is called once for every copy printed.
873 The base OnEndDocument() must be called from within the overridden function,
874 since it calls wxDC::EndDoc().
876 virtual void OnEndDocument();
879 Called by the framework at the end of printing.
881 OnEndPrinting is called once for every print job
882 (regardless of how many copies are being printed).
884 virtual void OnEndPrinting();
887 Called once by the framework before any other demands are made of the
890 This gives the object an opportunity to calculate the number of pages
891 in the document, for example.
893 virtual void OnPreparePrinting();
896 Called by the framework when a page should be printed. Returning @false cancels
899 virtual bool OnPrintPage(int pageNum
) = 0;
902 Set the device origin of the associated wxDC so that the current logical point
903 becomes the new logical origin.
905 void SetLogicalOrigin(wxCoord x
, wxCoord y
);
910 @class wxPrintAbortDialog
912 The dialog created by default by the print framework that enables aborting
913 the printing process.
915 class wxPrintAbortDialog
: public wxDialog
918 wxPrintAbortDialog(wxWindow
*parent
,
919 const wxString
& documentTitle
,
920 const wxPoint
& pos
= wxDefaultPosition
,
921 const wxSize
& size
= wxDefaultSize
,
922 long style
= wxDEFAULT_DIALOG_STYLE
,
923 const wxString
& name
= "dialog");
925 void SetProgress(int currentPage
, int totalPages
,
926 int currentCopy
, int totalCopies
);