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