initial commit
Signed-off-by: Peter Siegmund <mars3142@noreply.mars3142.dev>
This commit is contained in:
110
libs/wxWidgets-3.3.1/include/wx/osx/printdlg.h
Normal file
110
libs/wxWidgets-3.3.1/include/wx/osx/printdlg.h
Normal file
@@ -0,0 +1,110 @@
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// Name: wx/osx/printdlg.h
|
||||
// Purpose: wxPrintDialog, wxPageSetupDialog classes.
|
||||
// Use generic, PostScript version if no
|
||||
// platform-specific implementation.
|
||||
// Author: Stefan Csomor
|
||||
// Created: 1998-01-01
|
||||
// Copyright: (c) Stefan Csomor
|
||||
// Licence: wxWindows licence
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#ifndef _WX_PRINTDLG_H_
|
||||
#define _WX_PRINTDLG_H_
|
||||
|
||||
#include "wx/dialog.h"
|
||||
#include "wx/cmndata.h"
|
||||
#include "wx/printdlg.h"
|
||||
#include "wx/prntbase.h"
|
||||
|
||||
/*
|
||||
* wxMacPrintDialog
|
||||
* The Mac dialog for printing
|
||||
*/
|
||||
|
||||
class WXDLLIMPEXP_FWD_CORE wxDC;
|
||||
class WXDLLIMPEXP_CORE wxMacPrintDialog: public wxPrintDialogBase
|
||||
{
|
||||
public:
|
||||
wxMacPrintDialog();
|
||||
wxMacPrintDialog(wxWindow *parent, wxPrintDialogData* data = nullptr);
|
||||
wxMacPrintDialog(wxWindow *parent, wxPrintData* data );
|
||||
virtual ~wxMacPrintDialog();
|
||||
|
||||
bool Create(wxWindow *parent, wxPrintDialogData* data = nullptr);
|
||||
virtual int ShowModal() override;
|
||||
|
||||
virtual wxPrintDialogData& GetPrintDialogData() override { return m_printDialogData; }
|
||||
virtual wxPrintData& GetPrintData() override { return m_printDialogData.GetPrintData(); }
|
||||
virtual wxDC *GetPrintDC() override;
|
||||
|
||||
private:
|
||||
wxPrintDialogData m_printDialogData;
|
||||
wxDC* m_printerDC;
|
||||
bool m_destroyDC;
|
||||
wxWindow* m_dialogParent;
|
||||
|
||||
private:
|
||||
wxDECLARE_DYNAMIC_CLASS(wxPrintDialog);
|
||||
};
|
||||
|
||||
/*
|
||||
* wxMacPageSetupDialog
|
||||
* The Mac page setup dialog
|
||||
*/
|
||||
|
||||
class WXDLLIMPEXP_CORE wxMacPageSetupDialog: public wxPageSetupDialogBase
|
||||
{
|
||||
public:
|
||||
wxMacPageSetupDialog(wxWindow *parent, wxPageSetupDialogData *data = nullptr);
|
||||
virtual ~wxMacPageSetupDialog();
|
||||
|
||||
virtual wxPageSetupDialogData& GetPageSetupDialogData() override;
|
||||
|
||||
bool Create(wxWindow *parent, wxPageSetupDialogData *data = nullptr);
|
||||
virtual int ShowModal() override;
|
||||
|
||||
private:
|
||||
wxPageSetupDialogData m_pageSetupData;
|
||||
wxWindow* m_dialogParent;
|
||||
|
||||
private:
|
||||
wxDECLARE_DYNAMIC_CLASS_NO_COPY(wxMacPageSetupDialog);
|
||||
};
|
||||
|
||||
class WXDLLIMPEXP_FWD_CORE wxTextCtrl;
|
||||
|
||||
/*
|
||||
* wxMacPageMarginsDialog
|
||||
* A Mac dialog for setting the page margins separately from page setup since
|
||||
* (native) wxMacPageSetupDialog doesn't let you set margins.
|
||||
*/
|
||||
|
||||
class WXDLLIMPEXP_CORE wxMacPageMarginsDialog : public wxDialog
|
||||
{
|
||||
public:
|
||||
wxMacPageMarginsDialog(wxFrame* parent, wxPageSetupDialogData* data);
|
||||
bool TransferToWindow();
|
||||
bool TransferDataFromWindow() override;
|
||||
|
||||
virtual wxPageSetupDialogData& GetPageSetupDialogData() { return *m_pageSetupDialogData; }
|
||||
|
||||
private:
|
||||
wxPageSetupDialogData* m_pageSetupDialogData;
|
||||
|
||||
wxPoint m_MinMarginTopLeft;
|
||||
wxPoint m_MinMarginBottomRight;
|
||||
wxTextCtrl *m_LeftMargin;
|
||||
wxTextCtrl *m_TopMargin;
|
||||
wxTextCtrl *m_RightMargin;
|
||||
wxTextCtrl *m_BottomMargin;
|
||||
|
||||
void GetMinMargins();
|
||||
bool CheckValue(wxTextCtrl* textCtrl, int *value, int minValue, const wxString& name);
|
||||
|
||||
private:
|
||||
wxDECLARE_DYNAMIC_CLASS_NO_COPY(wxMacPageMarginsDialog);
|
||||
};
|
||||
|
||||
|
||||
#endif // _WX_PRINTDLG_H_
|
||||
Reference in New Issue
Block a user