]>
Commit | Line | Data |
---|---|---|
1 | #ifndef _WX_PRINTDLG_H_BASE_ | |
2 | #define _WX_PRINTDLG_H_BASE_ | |
3 | ||
4 | #if defined(__WXMSW__) | |
5 | #include "wx/msw/printdlg.h" | |
6 | #elif defined(__WXMOTIF__) | |
7 | #include "wx/generic/prntdlgg.h" | |
8 | #elif defined(__WXGTK__) | |
9 | #include "wx/generic/prntdlgg.h" | |
10 | #elif defined(__WXMAC__) | |
11 | #include "wx/mac/printdlg.h" | |
12 | #elif defined(__WXPM__) | |
13 | #include "wx/generic/prntdlgg.h" | |
14 | #elif defined(__WXSTUBS__) | |
15 | #include "wx/generic/prntdlgg.h" | |
16 | #endif | |
17 | ||
18 | #if !defined(__WXMSW__) && !defined(__WXMAC__) | |
19 | #define wxPrintDialog wxGenericPrintDialog | |
20 | #define sm_classwxPrintDialog sm_classwxGenericPrintDialog | |
21 | ||
22 | #define wxPrintSetupDialog wxGenericPrintSetupDialog | |
23 | #define sm_classwxPrintSetupDialog sm_classwxGenericPrintSetupDialog | |
24 | ||
25 | #define wxPageSetupDialog wxGenericPageSetupDialog | |
26 | #define sm_classwxPageSetupDialog sm_classwxGenericPageSetupDialog | |
27 | #endif | |
28 | ||
29 | #endif | |
30 | // _WX_PRINTDLG_H_BASE_ |