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