]>
Commit | Line | Data |
---|---|---|
34138703 JS |
1 | #ifndef _WX_PRINT_H_BASE_ |
2 | #define _WX_PRINT_H_BASE_ | |
c801d85f | 3 | |
2049ba38 | 4 | #if defined(__WXMSW__) |
c801d85f KB |
5 | #include "wx/msw/printwin.h" |
6 | ||
7 | #ifndef wxPrinter | |
8 | #define wxPrinter wxWindowsPrinter | |
9 | #endif | |
10 | #ifndef wxPrintPreview | |
11 | #define wxPrintPreview wxWindowsPrintPreview | |
12 | #endif | |
13 | ||
14 | #else | |
15 | #include "wx/generic/printps.h" | |
16 | ||
17 | #ifndef wxPrinter | |
18 | #define wxPrinter wxPostScriptPrinter | |
42ff6409 | 19 | #define sm_classwxPrinter sm_classwxPostScriptPrinter |
c801d85f KB |
20 | #endif |
21 | #ifndef wxPrintPreview | |
22 | #define wxPrintPreview wxPostScriptPrintPreview | |
42ff6409 | 23 | #define sm_classwxPrintPreview sm_classwxPostScriptPrintPreview |
c801d85f KB |
24 | #endif |
25 | ||
26 | #endif | |
27 | ||
28 | ||
29 | #endif | |
34138703 | 30 | // _WX_PRINT_H_BASE_ |