| 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(__WXQT__) |
| 11 | #include "wx/generic/prntdlgg.h" |
| 12 | #elif defined(__WXMAC__) |
| 13 | #include "wx/mac/printdlg.h" |
| 14 | #elif defined(__WXPM__) |
| 15 | #include "wx/os2/printdlg.h" |
| 16 | #elif defined(__WXSTUBS__) |
| 17 | #include "wx/generic/prntdlgg.h" |
| 18 | #endif |
| 19 | |
| 20 | #if !defined(__WXMSW__) && !defined(__WXMAC__) && !defined(__WXPM__) |
| 21 | #define wxPrintDialog wxGenericPrintDialog |
| 22 | #define sm_classwxPrintDialog sm_classwxGenericPrintDialog |
| 23 | |
| 24 | #define wxPrintSetupDialog wxGenericPrintSetupDialog |
| 25 | #define sm_classwxPrintSetupDialog sm_classwxGenericPrintSetupDialog |
| 26 | |
| 27 | #define wxPageSetupDialog wxGenericPageSetupDialog |
| 28 | #define sm_classwxPageSetupDialog sm_classwxGenericPageSetupDialog |
| 29 | #endif |
| 30 | |
| 31 | #endif |
| 32 | // _WX_PRINTDLG_H_BASE_ |