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
|
|
|
|
2004-10-16 22:11:48 +00:00
|
|
|
#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
|
|
|
|
#pragma interface "printdlg.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "wx/defs.h"
|
|
|
|
|
|
|
|
#if wxUSE_PRINTING_ARCHITECTURE
|
|
|
|
|
|
|
|
#include "wx/event.h"
|
|
|
|
#include "wx/dialog.h"
|
|
|
|
#include "wx/intl.h"
|
|
|
|
#include "wx/cmndata.h"
|
|
|
|
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
// wxPrintDialogBase: interface for the common dialog for printing.
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class WXDLLEXPORT wxPrintDialogBase : public wxDialog
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
wxPrintDialogBase() { }
|
2004-10-23 13:10:00 +00:00
|
|
|
wxPrintDialogBase(wxWindow *parent,
|
|
|
|
wxWindowID id = wxID_ANY,
|
|
|
|
const wxString &title = wxEmptyString,
|
|
|
|
const wxPoint &pos = wxDefaultPosition,
|
|
|
|
const wxSize &size = wxDefaultSize,
|
|
|
|
long style = wxDEFAULT_DIALOG_STYLE);
|
2004-10-16 22:11:48 +00:00
|
|
|
|
|
|
|
virtual int ShowModal() = 0;
|
|
|
|
|
|
|
|
virtual wxPrintDialogData& GetPrintDialogData() = 0;
|
|
|
|
virtual wxPrintData& GetPrintData() = 0;
|
|
|
|
virtual wxDC *GetPrintDC() = 0;
|
|
|
|
|
|
|
|
private:
|
|
|
|
DECLARE_ABSTRACT_CLASS(wxPrintDialogBase)
|
|
|
|
DECLARE_NO_COPY_CLASS(wxPrintDialogBase)
|
|
|
|
};
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
// wxPrintDialog: the common dialog for printing.
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class WXDLLEXPORT wxPrintDialog : public wxObject
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
wxPrintDialog(wxWindow *parent, wxPrintDialogData* data = NULL);
|
|
|
|
wxPrintDialog(wxWindow *parent, wxPrintData* data);
|
|
|
|
~wxPrintDialog();
|
|
|
|
|
|
|
|
virtual int ShowModal();
|
|
|
|
|
|
|
|
virtual wxPrintDialogData& GetPrintDialogData();
|
|
|
|
virtual wxPrintData& GetPrintData();
|
|
|
|
virtual wxDC *GetPrintDC();
|
|
|
|
|
|
|
|
private:
|
|
|
|
wxPrintDialogBase *m_pimpl;
|
|
|
|
|
|
|
|
private:
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxPrintDialog)
|
|
|
|
DECLARE_NO_COPY_CLASS(wxPrintDialog)
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
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"
|
2004-10-19 13:40:30 +00:00
|
|
|
#elif defined(__PALMOS__)
|
|
|
|
#include "wx/palmos/printdlg.h"
|
2002-12-04 14:11:26 +00:00
|
|
|
#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 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_
|