1998-05-20 14:01:55 +00:00
|
|
|
#ifndef __PRINTH_BASE__
|
|
|
|
#define __PRINTH_BASE__
|
|
|
|
|
1998-07-10 14:15:17 +00:00
|
|
|
#if defined(__WXMSW__)
|
1998-05-20 14:01:55 +00: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__
|