]>
Commit | Line | Data |
---|---|---|
52479aef SC |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: printdlg.h | |
3 | // Purpose: wxPrintDialog, wxPageSetupDialog classes. | |
4 | // Use generic, PostScript version if no | |
5 | // platform-specific implementation. | |
6 | // Author: Stefan Csomor | |
7 | // Modified by: | |
8 | // Created: 1998-01-01 | |
9 | // RCS-ID: $Id$ | |
10 | // Copyright: (c) Stefan Csomor | |
65571936 | 11 | // Licence: wxWindows licence |
52479aef SC |
12 | ///////////////////////////////////////////////////////////////////////////// |
13 | ||
14 | #ifndef _WX_PRINTDLG_H_ | |
15 | #define _WX_PRINTDLG_H_ | |
16 | ||
52479aef SC |
17 | #include "wx/dialog.h" |
18 | #include "wx/cmndata.h" | |
19 | ||
20 | /* | |
21 | * wxPrinterDialog | |
22 | * The common dialog for printing. | |
23 | */ | |
24 | ||
25 | class WXDLLEXPORT wxDC; | |
26 | class WXDLLEXPORT wxPrintDialog: public wxDialog | |
27 | { | |
28 | DECLARE_DYNAMIC_CLASS(wxPrintDialog) | |
29 | ||
30 | public: | |
31 | wxPrintDialog(); | |
32 | wxPrintDialog(wxWindow *parent, wxPrintDialogData* data = NULL); | |
33 | wxPrintDialog(wxWindow *parent, wxPrintData* data ); | |
d3c7fc99 | 34 | virtual ~wxPrintDialog(); |
52479aef SC |
35 | |
36 | bool Create(wxWindow *parent, wxPrintDialogData* data = NULL); | |
37 | virtual int ShowModal(); | |
38 | ||
39 | wxPrintDialogData& GetPrintDialogData() { return m_printDialogData; } | |
40 | wxPrintData& GetPrintData() { return m_printDialogData.GetPrintData(); } | |
41 | virtual wxDC *GetPrintDC(); | |
42 | ||
43 | private: | |
44 | wxPrintDialogData m_printDialogData; | |
45 | wxDC* m_printerDC; | |
46 | bool m_destroyDC; | |
47 | wxWindow* m_dialogParent; | |
48 | }; | |
49 | ||
50 | class WXDLLEXPORT wxPageSetupDialog: public wxDialog | |
51 | { | |
52 | DECLARE_DYNAMIC_CLASS(wxPageSetupDialog) | |
53 | ||
54 | public: | |
55 | wxPageSetupDialog(); | |
56 | wxPageSetupDialog(wxWindow *parent, wxPageSetupData *data = NULL); | |
d3c7fc99 | 57 | virtual ~wxPageSetupDialog(); |
52479aef SC |
58 | |
59 | bool Create(wxWindow *parent, wxPageSetupData *data = NULL); | |
60 | virtual int ShowModal(); | |
61 | ||
62 | inline wxPageSetupData& GetPageSetupData() { return m_pageSetupData; } | |
63 | private: | |
64 | wxPageSetupData m_pageSetupData; | |
65 | wxWindow* m_dialogParent; | |
66 | }; | |
67 | ||
68 | #endif | |
69 | // _WX_PRINTDLG_H_ |