]>
Commit | Line | Data |
---|---|---|
34138703 JS |
1 | #ifndef _WX_PRINTDLG_H_BASE_ |
2 | #define _WX_PRINTDLG_H_BASE_ | |
c801d85f | 3 | |
2049ba38 | 4 | #if defined(__WXMSW__) |
c801d85f | 5 | #include "wx/msw/printdlg.h" |
2049ba38 | 6 | #elif defined(__WXMOTIF__) |
c801d85f | 7 | #include "wx/generic/prntdlgg.h" |
2049ba38 | 8 | #elif defined(__WXGTK__) |
c801d85f | 9 | #include "wx/generic/prntdlgg.h" |
34138703 JS |
10 | #elif defined(__WXQT__) |
11 | #include "wx/generic/prntdlgg.h" | |
12 | #elif defined(__WXMAC__) | |
42ff6409 JS |
13 | #include "wx/mac/printdlg.h" |
14 | #elif defined(__WXSTUBS__) | |
34138703 | 15 | #include "wx/generic/prntdlgg.h" |
42ff6409 JS |
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 | |
c801d85f KB |
27 | #endif |
28 | ||
29 | #endif | |
34138703 | 30 | // _WX_PRINTDLG_H_BASE_ |