]>
git.saurik.com Git - wxWidgets.git/blob - interface/wx/printdlg.h
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: interface of wxPrintDialog
4 // Author: wxWidgets team
6 // Licence: wxWindows license
7 /////////////////////////////////////////////////////////////////////////////
12 This class represents the print and print setup common dialogs.
13 You may obtain a wxPrinterDC device context from a successfully dismissed
19 @see @ref overview_printing, @ref overview_cmndlg_print
21 class wxPrintDialog
: public wxDialog
27 Pass a parent window, and optionally a pointer to a block of print
28 data, which will be copied to the print dialog's print data.
30 @see wxPrintDialogData
32 wxPrintDialog(wxWindow
* parent
, wxPrintDialogData
* data
= NULL
);
37 If GetPrintDC() has not been called, the device context obtained by
38 the dialog (if any) will be deleted.
40 virtual ~wxPrintDialog();
43 Returns the device context created by the print dialog, if any.
45 When this function has been called, the ownership of the device context
46 is transferred to the application, so it must then be deleted
49 virtual wxDC
* GetPrintDC();
52 Returns the @ref overview_printing_printdata "print dialog data" associated
53 with the print dialog.
55 virtual wxPrintDialogData
& GetPrintDialogData();
58 Shows the dialog, returning @c wxID_OK if the user pressed OK, and @c
59 wxID_CANCEL otherwise.
61 After this function is called, a device context may be retrievable using
64 virtual int ShowModal();
70 @class wxPageSetupDialog
72 This class represents the page setup common dialog.
74 The page setup dialog contains controls for paper size (letter, A4, A5 etc.),
75 orientation (landscape or portrait), and, only under Windows currently,
76 controls for setting left, top, right and bottom margin sizes in millimetres.
78 The exact appearance of this dialog varies among the platforms as a native
79 dialog is used when available (currently the case for all major platforms).
81 When the dialog has been closed, you need to query the wxPageSetupDialogData
82 object associated with the dialog.
84 Note that the OK and Cancel buttons do not destroy the dialog; this must be done
90 @see @ref overview_printing, wxPrintDialog, wxPageSetupDialogData
92 class wxPageSetupDialog
: public wxDialog
98 Pass a parent window, and optionally a pointer to a block of page
99 setup data, which will be copied to the print dialog's internal data.
101 wxPageSetupDialog(wxWindow
* parent
, wxPageSetupDialogData
* data
= NULL
);
106 virtual ~wxPageSetupDialog();
109 Returns the wxPageSetupDialogData object associated with the dialog.
111 wxPageSetupDialogData
& GetPageSetupData();
114 Shows the dialog, returning @c wxID_OK if the user pressed OK, and
115 @c wxID_CANCEL otherwise.