]>
Commit | Line | Data |
---|---|---|
8cf73271 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 |
8cf73271 SC |
12 | ///////////////////////////////////////////////////////////////////////////// |
13 | ||
14 | #ifndef _WX_PRINTDLG_H_ | |
15 | #define _WX_PRINTDLG_H_ | |
16 | ||
8cf73271 SC |
17 | #include "wx/dialog.h" |
18 | #include "wx/cmndata.h" | |
c061373d | 19 | #include "wx/printdlg.h" |
8850cbd3 | 20 | #include "wx/prntbase.h" |
8850cbd3 | 21 | |
8cf73271 | 22 | /* |
08680429 RR |
23 | * wxMacPrintDialog |
24 | * The Mac dialog for printing | |
8cf73271 SC |
25 | */ |
26 | ||
27 | class WXDLLEXPORT wxDC; | |
c061373d | 28 | class WXDLLEXPORT wxMacPrintDialog: public wxPrintDialogBase |
8cf73271 | 29 | { |
c061373d RR |
30 | public: |
31 | wxMacPrintDialog(); | |
32 | wxMacPrintDialog(wxWindow *parent, wxPrintDialogData* data = NULL); | |
33 | wxMacPrintDialog(wxWindow *parent, wxPrintData* data ); | |
34 | ~wxMacPrintDialog(); | |
8cf73271 SC |
35 | |
36 | bool Create(wxWindow *parent, wxPrintDialogData* data = NULL); | |
c061373d | 37 | virtual int ShowModal(); |
8cf73271 | 38 | |
c061373d RR |
39 | virtual wxPrintDialogData& GetPrintDialogData() { return m_printDialogData; } |
40 | virtual wxPrintData& GetPrintData() { return m_printDialogData.GetPrintData(); } | |
41 | virtual wxDC *GetPrintDC(); | |
8cf73271 | 42 | |
c061373d RR |
43 | private: |
44 | wxPrintDialogData m_printDialogData; | |
45 | wxDC* m_printerDC; | |
46 | bool m_destroyDC; | |
47 | wxWindow* m_dialogParent; | |
48 | ||
49 | private: | |
50 | DECLARE_DYNAMIC_CLASS(wxPrintDialog) | |
8cf73271 SC |
51 | }; |
52 | ||
08680429 RR |
53 | /* |
54 | * wxMacPageSetupDialog | |
55 | * The Mac page setup dialog | |
56 | */ | |
8cf73271 | 57 | |
08680429 RR |
58 | class WXDLLEXPORT wxMacPageSetupDialog: public wxPageSetupDialogBase |
59 | { | |
60 | public: | |
61 | wxMacPageSetupDialog(wxWindow *parent, wxPageSetupDialogData *data = NULL); | |
62 | ~wxMacPageSetupDialog(); | |
8cf73271 | 63 | |
08680429 RR |
64 | virtual wxPageSetupData& GetPageSetupDialogData(); |
65 | ||
66 | bool Create(wxWindow *parent, wxPageSetupDialogData *data = NULL); | |
67 | virtual int ShowModal(); | |
68 | ||
69 | private: | |
70 | wxPageSetupDialogData m_pageSetupData; | |
71 | wxWindow* m_dialogParent; | |
72 | ||
73 | private: | |
74 | DECLARE_DYNAMIC_CLASS_NO_COPY(wxMacPageSetupDialog) | |
8cf73271 SC |
75 | }; |
76 | ||
77 | #endif | |
78 | // _WX_PRINTDLG_H_ |