2004-10-19 13:40:30 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
2005-01-18 21:14:27 +00:00
|
|
|
// Name: wx/palmos/printdlg.h
|
2004-10-19 13:40:30 +00:00
|
|
|
// Purpose: wxPrintDialog, wxPageSetupDialog classes
|
2005-01-18 21:14:27 +00:00
|
|
|
// Author: William Osborne - minimal working wxPalmOS port
|
2004-10-19 13:40:30 +00:00
|
|
|
// Modified by:
|
|
|
|
// Created: 10/13/04
|
2005-01-18 21:14:27 +00:00
|
|
|
// RCS-ID: $Id$
|
2004-10-19 13:40:30 +00:00
|
|
|
// Copyright: (c) William Osborne
|
|
|
|
// Licence: wxWindows licence
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_PRINTDLG_H_
|
|
|
|
#define _WX_PRINTDLG_H_
|
|
|
|
|
|
|
|
#if wxUSE_PRINTING_ARCHITECTURE
|
|
|
|
|
|
|
|
#include "wx/dialog.h"
|
|
|
|
#include "wx/cmndata.h"
|
|
|
|
|
|
|
|
class WXDLLEXPORT wxDC;
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
// wxPrinterDialog: the common dialog for printing.
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class WXDLLEXPORT wxPrintDialog : public wxDialog
|
|
|
|
{
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxPrintDialog)
|
|
|
|
|
|
|
|
public:
|
|
|
|
wxPrintDialog();
|
|
|
|
wxPrintDialog(wxWindow *parent, wxPrintDialogData* data = NULL);
|
|
|
|
wxPrintDialog(wxWindow *parent, wxPrintData* data);
|
|
|
|
virtual ~wxPrintDialog();
|
|
|
|
|
|
|
|
bool Create(wxWindow *parent, wxPrintDialogData* data = NULL);
|
|
|
|
virtual int ShowModal();
|
|
|
|
|
|
|
|
wxPrintDialogData& GetPrintDialogData() { return m_printDialogData; }
|
|
|
|
wxPrintData& GetPrintData() { return m_printDialogData.GetPrintData(); }
|
|
|
|
virtual wxDC *GetPrintDC();
|
|
|
|
|
|
|
|
private:
|
|
|
|
wxPrintDialogData m_printDialogData;
|
|
|
|
wxDC* m_printerDC;
|
|
|
|
bool m_destroyDC;
|
|
|
|
wxWindow* m_dialogParent;
|
|
|
|
|
|
|
|
DECLARE_NO_COPY_CLASS(wxPrintDialog)
|
|
|
|
};
|
|
|
|
|
|
|
|
class WXDLLEXPORT wxPageSetupDialog: public wxDialog
|
|
|
|
{
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxPageSetupDialog)
|
|
|
|
|
|
|
|
public:
|
|
|
|
wxPageSetupDialog();
|
|
|
|
wxPageSetupDialog(wxWindow *parent, wxPageSetupData *data = NULL);
|
|
|
|
virtual ~wxPageSetupDialog();
|
|
|
|
|
|
|
|
bool Create(wxWindow *parent, wxPageSetupData *data = NULL);
|
|
|
|
virtual int ShowModal();
|
|
|
|
|
|
|
|
wxPageSetupData& GetPageSetupData() { return m_pageSetupData; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
wxPageSetupData m_pageSetupData;
|
|
|
|
wxWindow* m_dialogParent;
|
|
|
|
|
|
|
|
DECLARE_NO_COPY_CLASS(wxPageSetupDialog)
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // wxUSE_PRINTING_ARCHITECTURE
|
|
|
|
|
|
|
|
#endif
|
|
|
|
// _WX_PRINTDLG_H_
|