initial commit
Signed-off-by: Peter Siegmund <mars3142@noreply.mars3142.dev>
This commit is contained in:
120
libs/wxWidgets-3.3.1/include/wx/printdlg.h
Normal file
120
libs/wxWidgets-3.3.1/include/wx/printdlg.h
Normal file
@@ -0,0 +1,120 @@
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// Name: wx/printdlg.h
|
||||
// Purpose: Base header and class for print dialogs
|
||||
// Author: Julian Smart
|
||||
// Created:
|
||||
// Copyright: (c) Julian Smart
|
||||
// Licence: wxWindows Licence
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#ifndef _WX_PRINTDLG_H_BASE_
|
||||
#define _WX_PRINTDLG_H_BASE_
|
||||
|
||||
#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 dialog for printing
|
||||
// ---------------------------------------------------------------------------
|
||||
|
||||
class WXDLLIMPEXP_CORE wxPrintDialogBase : public wxDialog
|
||||
{
|
||||
public:
|
||||
wxPrintDialogBase() = default;
|
||||
wxPrintDialogBase(wxWindow *parent,
|
||||
wxWindowID id = wxID_ANY,
|
||||
const wxString &title = wxEmptyString,
|
||||
const wxPoint &pos = wxDefaultPosition,
|
||||
const wxSize &size = wxDefaultSize,
|
||||
long style = wxDEFAULT_DIALOG_STYLE);
|
||||
|
||||
virtual wxPrintDialogData& GetPrintDialogData() = 0;
|
||||
virtual wxPrintData& GetPrintData() = 0;
|
||||
virtual wxDC *GetPrintDC() = 0;
|
||||
|
||||
private:
|
||||
wxDECLARE_ABSTRACT_CLASS(wxPrintDialogBase);
|
||||
wxDECLARE_NO_COPY_CLASS(wxPrintDialogBase);
|
||||
};
|
||||
|
||||
// ---------------------------------------------------------------------------
|
||||
// wxPrintDialog: the dialog for printing.
|
||||
// ---------------------------------------------------------------------------
|
||||
|
||||
class WXDLLIMPEXP_CORE wxPrintDialog : public wxObject
|
||||
{
|
||||
public:
|
||||
wxPrintDialog(wxWindow *parent, wxPrintDialogData* data = nullptr);
|
||||
wxPrintDialog(wxWindow *parent, wxPrintData* data);
|
||||
virtual ~wxPrintDialog();
|
||||
|
||||
virtual int ShowModal();
|
||||
|
||||
virtual wxPrintDialogData& GetPrintDialogData();
|
||||
virtual wxPrintData& GetPrintData();
|
||||
virtual wxDC *GetPrintDC();
|
||||
|
||||
private:
|
||||
wxPrintDialogBase *m_pimpl;
|
||||
|
||||
private:
|
||||
wxDECLARE_DYNAMIC_CLASS(wxPrintDialog);
|
||||
wxDECLARE_NO_COPY_CLASS(wxPrintDialog);
|
||||
};
|
||||
|
||||
// ---------------------------------------------------------------------------
|
||||
// wxPageSetupDialogBase: interface for the page setup dialog
|
||||
// ---------------------------------------------------------------------------
|
||||
|
||||
class WXDLLIMPEXP_CORE wxPageSetupDialogBase: public wxDialog
|
||||
{
|
||||
public:
|
||||
wxPageSetupDialogBase() = default;
|
||||
wxPageSetupDialogBase(wxWindow *parent,
|
||||
wxWindowID id = wxID_ANY,
|
||||
const wxString &title = wxEmptyString,
|
||||
const wxPoint &pos = wxDefaultPosition,
|
||||
const wxSize &size = wxDefaultSize,
|
||||
long style = wxDEFAULT_DIALOG_STYLE);
|
||||
|
||||
virtual wxPageSetupDialogData& GetPageSetupDialogData() = 0;
|
||||
|
||||
private:
|
||||
wxDECLARE_ABSTRACT_CLASS(wxPageSetupDialogBase);
|
||||
wxDECLARE_NO_COPY_CLASS(wxPageSetupDialogBase);
|
||||
};
|
||||
|
||||
// ---------------------------------------------------------------------------
|
||||
// wxPageSetupDialog: the page setup dialog
|
||||
// ---------------------------------------------------------------------------
|
||||
|
||||
class WXDLLIMPEXP_CORE wxPageSetupDialog: public wxObject
|
||||
{
|
||||
public:
|
||||
wxPageSetupDialog(wxWindow *parent, wxPageSetupDialogData *data = nullptr);
|
||||
virtual ~wxPageSetupDialog();
|
||||
|
||||
int ShowModal();
|
||||
wxPageSetupDialogData& GetPageSetupDialogData();
|
||||
// old name
|
||||
wxPageSetupDialogData& GetPageSetupData();
|
||||
|
||||
private:
|
||||
wxPageSetupDialogBase *m_pimpl;
|
||||
|
||||
private:
|
||||
wxDECLARE_DYNAMIC_CLASS(wxPageSetupDialog);
|
||||
wxDECLARE_NO_COPY_CLASS(wxPageSetupDialog);
|
||||
};
|
||||
|
||||
#endif
|
||||
|
||||
#endif
|
||||
// _WX_PRINTDLG_H_BASE_
|
||||
Reference in New Issue
Block a user