08680429a2
Added a few clean-ups. Added native GNOME page setup dialog. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@30669 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
99 lines
2.7 KiB
C++
99 lines
2.7 KiB
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: printdlg.h
|
|
// Purpose: wxPrintDialog, wxPageSetupDialog classes.
|
|
// Use generic, PostScript version if no
|
|
// platform-specific implementation.
|
|
// Author: Stefan Csomor
|
|
// Modified by:
|
|
// Created: 1998-01-01
|
|
// RCS-ID: $Id$
|
|
// Copyright: (c) Stefan Csomor
|
|
// Licence: wxWindows licence
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef _WX_PRINTDLG_H_
|
|
#define _WX_PRINTDLG_H_
|
|
|
|
#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
|
|
#pragma interface "printdlg.h"
|
|
#endif
|
|
|
|
#include "wx/dialog.h"
|
|
#include "wx/cmndata.h"
|
|
#include "wx/printdlg.h"
|
|
#include "wx/prntbase.h"
|
|
|
|
//----------------------------------------------------------------------------
|
|
// wxMacPrintNativeData
|
|
//----------------------------------------------------------------------------
|
|
|
|
class WXDLLEXPORT wxMacPrintNativeData: public wxPrintNativeDataBase
|
|
{
|
|
public:
|
|
wxMacPrintNativeData() {};
|
|
virtual ~wxMacPrintNativeData() {};
|
|
|
|
virtual bool TransferTo( wxPrintData &data ) { return true; }
|
|
virtual bool TransferFrom( const wxPrintData &data ) { return true; }
|
|
|
|
virtual bool Ok() const { return true; }
|
|
};
|
|
|
|
/*
|
|
* wxMacPrintDialog
|
|
* The Mac dialog for printing
|
|
*/
|
|
|
|
class WXDLLEXPORT wxDC;
|
|
class WXDLLEXPORT wxMacPrintDialog: public wxPrintDialogBase
|
|
{
|
|
public:
|
|
wxMacPrintDialog();
|
|
wxMacPrintDialog(wxWindow *parent, wxPrintDialogData* data = NULL);
|
|
wxMacPrintDialog(wxWindow *parent, wxPrintData* data );
|
|
~wxMacPrintDialog();
|
|
|
|
bool Create(wxWindow *parent, wxPrintDialogData* data = NULL);
|
|
virtual int ShowModal();
|
|
|
|
virtual wxPrintDialogData& GetPrintDialogData() { return m_printDialogData; }
|
|
virtual wxPrintData& GetPrintData() { return m_printDialogData.GetPrintData(); }
|
|
virtual wxDC *GetPrintDC();
|
|
|
|
private:
|
|
wxPrintDialogData m_printDialogData;
|
|
wxDC* m_printerDC;
|
|
bool m_destroyDC;
|
|
wxWindow* m_dialogParent;
|
|
|
|
private:
|
|
DECLARE_DYNAMIC_CLASS(wxPrintDialog)
|
|
};
|
|
|
|
/*
|
|
* wxMacPageSetupDialog
|
|
* The Mac page setup dialog
|
|
*/
|
|
|
|
class WXDLLEXPORT wxMacPageSetupDialog: public wxPageSetupDialogBase
|
|
{
|
|
public:
|
|
wxMacPageSetupDialog(wxWindow *parent, wxPageSetupDialogData *data = NULL);
|
|
~wxMacPageSetupDialog();
|
|
|
|
virtual wxPageSetupData& GetPageSetupDialogData();
|
|
|
|
bool Create(wxWindow *parent, wxPageSetupDialogData *data = NULL);
|
|
virtual int ShowModal();
|
|
|
|
private:
|
|
wxPageSetupDialogData m_pageSetupData;
|
|
wxWindow* m_dialogParent;
|
|
|
|
private:
|
|
DECLARE_DYNAMIC_CLASS_NO_COPY(wxMacPageSetupDialog)
|
|
};
|
|
|
|
#endif
|
|
// _WX_PRINTDLG_H_
|