initial commit
Signed-off-by: Peter Siegmund <mars3142@noreply.mars3142.dev>
This commit is contained in:
58
libs/wxWidgets-3.3.1/include/wx/osx/printmac.h
Normal file
58
libs/wxWidgets-3.3.1/include/wx/osx/printmac.h
Normal file
@@ -0,0 +1,58 @@
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// Name: wx/osx/printmac.h
|
||||
// Purpose: wxWindowsPrinter, wxWindowsPrintPreview classes
|
||||
// Author: Julian Smart
|
||||
// Created: 01/02/97
|
||||
// Copyright: (c) Julian Smart
|
||||
// Licence: wxWindows licence
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#ifndef _WX_PRINTWIN_H_
|
||||
#define _WX_PRINTWIN_H_
|
||||
|
||||
#include "wx/prntbase.h"
|
||||
|
||||
/*
|
||||
* Represents the printer: manages printing a wxPrintout object
|
||||
*/
|
||||
|
||||
class WXDLLIMPEXP_CORE wxMacPrinter: public wxPrinterBase
|
||||
{
|
||||
wxDECLARE_DYNAMIC_CLASS(wxMacPrinter);
|
||||
|
||||
public:
|
||||
wxMacPrinter(wxPrintDialogData *data = nullptr);
|
||||
virtual ~wxMacPrinter();
|
||||
|
||||
virtual bool Print(wxWindow *parent,
|
||||
wxPrintout *printout,
|
||||
bool prompt = true) override;
|
||||
virtual wxDC* PrintDialog(wxWindow *parent) override;
|
||||
virtual bool Setup(wxWindow *parent) override;
|
||||
|
||||
};
|
||||
|
||||
/*
|
||||
* wxPrintPreview
|
||||
* Programmer creates an object of this class to preview a wxPrintout.
|
||||
*/
|
||||
|
||||
class WXDLLIMPEXP_CORE wxMacPrintPreview: public wxPrintPreviewBase
|
||||
{
|
||||
wxDECLARE_CLASS(wxMacPrintPreview);
|
||||
|
||||
public:
|
||||
wxMacPrintPreview(wxPrintout *printout,
|
||||
wxPrintout *printoutForPrinting = nullptr,
|
||||
wxPrintDialogData *data = nullptr);
|
||||
wxMacPrintPreview(wxPrintout *printout,
|
||||
wxPrintout *printoutForPrinting,
|
||||
wxPrintData *data);
|
||||
virtual ~wxMacPrintPreview();
|
||||
|
||||
virtual bool Print(bool interactive) override;
|
||||
virtual void DetermineScaling() override;
|
||||
};
|
||||
|
||||
#endif
|
||||
// _WX_PRINTWIN_H_
|
||||
Reference in New Issue
Block a user