1998-08-15 00:23:28 +00:00
|
|
|
#ifndef _WX_PRINTDLG_H_BASE_
|
|
|
|
#define _WX_PRINTDLG_H_BASE_
|
1998-05-20 14:01:55 +00:00
|
|
|
|
2003-08-15 10:17:14 +00:00
|
|
|
#if defined(__WXUNIVERSAL__) && (!defined(__WXMSW__) || wxUSE_POSTSCRIPT_ARCHITECTURE_IN_MSW)
|
2002-12-04 14:11:26 +00:00
|
|
|
#include "wx/generic/prntdlgg.h"
|
|
|
|
#elif defined(__WXMSW__)
|
1998-05-20 14:01:55 +00:00
|
|
|
#include "wx/msw/printdlg.h"
|
1998-07-10 14:15:17 +00:00
|
|
|
#elif defined(__WXMOTIF__)
|
1998-05-20 14:01:55 +00:00
|
|
|
#include "wx/generic/prntdlgg.h"
|
1998-07-10 14:15:17 +00:00
|
|
|
#elif defined(__WXGTK__)
|
1998-05-20 14:01:55 +00:00
|
|
|
#include "wx/generic/prntdlgg.h"
|
2002-02-05 16:34:33 +00:00
|
|
|
#elif defined(__WXX11__)
|
|
|
|
#include "wx/generic/prntdlgg.h"
|
2002-07-15 22:55:14 +00:00
|
|
|
#elif defined(__WXMGL__)
|
|
|
|
#include "wx/generic/prntdlgg.h"
|
1998-08-15 00:23:28 +00:00
|
|
|
#elif defined(__WXMAC__)
|
1998-10-07 11:04:27 +00:00
|
|
|
#include "wx/mac/printdlg.h"
|
1999-07-28 03:38:12 +00:00
|
|
|
#elif defined(__WXPM__)
|
1999-10-12 22:49:24 +00:00
|
|
|
#include "wx/generic/prntdlgg.h"
|
1998-10-07 11:04:27 +00:00
|
|
|
#endif
|
|
|
|
|
2003-08-15 10:17:14 +00:00
|
|
|
#if (defined(__WXUNIVERSAL__) && (!defined(__WXMSW__) || wxUSE_POSTSCRIPT_ARCHITECTURE_IN_MSW) ) || (!defined(__WXMSW__) && !defined(__WXMAC__))
|
1998-10-07 11:04:27 +00:00
|
|
|
#define wxPrintDialog wxGenericPrintDialog
|
|
|
|
|
|
|
|
#define wxPrintSetupDialog wxGenericPrintSetupDialog
|
|
|
|
|
|
|
|
#define wxPageSetupDialog wxGenericPageSetupDialog
|
1998-05-20 14:01:55 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|
1998-08-15 00:23:28 +00:00
|
|
|
// _WX_PRINTDLG_H_BASE_
|