]>
Commit | Line | Data |
---|---|---|
34138703 JS |
1 | #ifndef _WX_PRINTDLG_H_BASE_ |
2 | #define _WX_PRINTDLG_H_BASE_ | |
c801d85f | 3 | |
12bdd77c | 4 | #if defined(__WXUNIVERSAL__) && (!defined(__WXMSW__) || wxUSE_POSTSCRIPT_ARCHITECTURE_IN_MSW) |
2b5f62a0 VZ |
5 | #include "wx/generic/prntdlgg.h" |
6 | #elif defined(__WXMSW__) | |
c801d85f | 7 | #include "wx/msw/printdlg.h" |
2049ba38 | 8 | #elif defined(__WXMOTIF__) |
c801d85f | 9 | #include "wx/generic/prntdlgg.h" |
2049ba38 | 10 | #elif defined(__WXGTK__) |
c801d85f | 11 | #include "wx/generic/prntdlgg.h" |
83df96d6 JS |
12 | #elif defined(__WXX11__) |
13 | #include "wx/generic/prntdlgg.h" | |
95543830 VS |
14 | #elif defined(__WXMGL__) |
15 | #include "wx/generic/prntdlgg.h" | |
34138703 | 16 | #elif defined(__WXMAC__) |
42ff6409 | 17 | #include "wx/mac/printdlg.h" |
1777b9bb | 18 | #elif defined(__WXPM__) |
cdf1e714 | 19 | #include "wx/generic/prntdlgg.h" |
42ff6409 JS |
20 | #endif |
21 | ||
12bdd77c | 22 | #if (defined(__WXUNIVERSAL__) && (!defined(__WXMSW__) || wxUSE_POSTSCRIPT_ARCHITECTURE_IN_MSW) ) || (!defined(__WXMSW__) && !defined(__WXMAC__)) |
42ff6409 | 23 | #define wxPrintDialog wxGenericPrintDialog |
42ff6409 JS |
24 | |
25 | #define wxPrintSetupDialog wxGenericPrintSetupDialog | |
42ff6409 JS |
26 | |
27 | #define wxPageSetupDialog wxGenericPageSetupDialog | |
c801d85f KB |
28 | #endif |
29 | ||
30 | #endif | |
34138703 | 31 | // _WX_PRINTDLG_H_BASE_ |