8850cbd3c3
data into native dirs and cleaning up the code. The native part of wxPrintData is now created via the wxPrintFactory. I moved the code for PostScript to /src/generic/prntdlgg. and for MSW to its the respective dir. I only made wxMac compile, but it already has a native print data class, which should be easy to merge. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@29947 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
109 lines
3.1 KiB
C++
109 lines
3.1 KiB
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: printdlg.h
|
|
// Purpose: wxPrintDialog, wxPageSetupDialog classes
|
|
// Author: Julian Smart
|
|
// Modified by:
|
|
// Created: 01/02/97
|
|
// RCS-ID: $Id$
|
|
// Copyright: (c) Julian Smart
|
|
// Licence: wxWindows licence
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef _WX_PRINTDLG_H_
|
|
#define _WX_PRINTDLG_H_
|
|
|
|
#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
|
|
#pragma interface "printdlg.h"
|
|
#endif
|
|
|
|
#if wxUSE_PRINTING_ARCHITECTURE
|
|
|
|
#include "wx/dialog.h"
|
|
#include "wx/cmndata.h"
|
|
#include "wx/prntbase.h"
|
|
#include "wx/printdlg.h"
|
|
|
|
class WXDLLEXPORT wxDC;
|
|
|
|
//----------------------------------------------------------------------------
|
|
// wxWindowsPrintNativeData
|
|
//----------------------------------------------------------------------------
|
|
|
|
class WXDLLEXPORT wxWindowsPrintNativeData: public wxPrintNativeDataBase
|
|
{
|
|
public:
|
|
wxWindowsPrintNativeData();
|
|
virtual ~wxWindowsPrintNativeData();
|
|
|
|
virtual bool ConvertTo( wxPrintData &data );
|
|
virtual bool ConvertFrom( const wxPrintData &data );
|
|
|
|
virtual bool Ok() const;
|
|
|
|
void* GetNativeData() const { return m_devMode; }
|
|
void SetNativeData(void* data) { m_devMode = data; }
|
|
void* GetNativeDataDevNames() const { return m_devNames; }
|
|
void SetNativeDataDevNames(void* data) { m_devNames = data; }
|
|
|
|
private:
|
|
void* m_devMode;
|
|
void* m_devNames;
|
|
|
|
private:
|
|
DECLARE_DYNAMIC_CLASS(wxWindowsPrintNativeData)
|
|
};
|
|
|
|
// ---------------------------------------------------------------------------
|
|
// wxPrinterDialog: the common dialog for printing.
|
|
// ---------------------------------------------------------------------------
|
|
|
|
class WXDLLEXPORT wxWindowsPrintDialog : public wxPrintDialogBase
|
|
{
|
|
public:
|
|
wxWindowsPrintDialog(wxWindow *parent, wxPrintDialogData* data = NULL);
|
|
wxWindowsPrintDialog(wxWindow *parent, wxPrintData* data);
|
|
virtual ~wxWindowsPrintDialog();
|
|
|
|
bool Create(wxWindow *parent, wxPrintDialogData* data = NULL);
|
|
virtual int ShowModal();
|
|
|
|
wxPrintDialogData& GetPrintDialogData() { return m_printDialogData; }
|
|
wxPrintData& GetPrintData() { return m_printDialogData.GetPrintData(); }
|
|
virtual wxDC *GetPrintDC();
|
|
|
|
wxPrintDialogData m_printDialogData;
|
|
wxDC* m_printerDC;
|
|
bool m_destroyDC;
|
|
wxWindow* m_dialogParent;
|
|
|
|
private:
|
|
DECLARE_NO_COPY_CLASS(wxWindowsPrintDialog)
|
|
DECLARE_CLASS(wxWindowsPrintDialog)
|
|
};
|
|
|
|
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_
|