1998-05-20 10:01:55 -04:00
|
|
|
#ifndef __PRINTH_BASE__
|
|
|
|
#define __PRINTH_BASE__
|
|
|
|
|
1998-07-10 10:15:17 -04:00
|
|
|
#if defined(__WXMSW__)
|
1998-05-20 10:01:55 -04:00
|
|
|
#include "wx/msw/printwin.h"
|
|
|
|
|
|
|
|
#ifndef wxPrinter
|
|
|
|
#define wxPrinter wxWindowsPrinter
|
|
|
|
#endif
|
|
|
|
#ifndef wxPrintPreview
|
|
|
|
#define wxPrintPreview wxWindowsPrintPreview
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#else
|
|
|
|
#include "wx/generic/printps.h"
|
|
|
|
|
|
|
|
#ifndef wxPrinter
|
|
|
|
#define wxPrinter wxPostScriptPrinter
|
|
|
|
#endif
|
|
|
|
#ifndef wxPrintPreview
|
|
|
|
#define wxPrintPreview wxPostScriptPrintPreview
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
// __PRINTH_BASE__
|