2009-01-17 05:43:43 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
2011-03-19 20:14:35 -04:00
|
|
|
// Name: wx/osx/printmac.h
|
2009-01-17 05:43:43 -05:00
|
|
|
// Purpose: wxWindowsPrinter, wxWindowsPrintPreview classes
|
|
|
|
// Author: Julian Smart
|
|
|
|
// Modified by:
|
|
|
|
// 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
|
|
|
|
*/
|
2009-08-21 06:41:26 -04:00
|
|
|
|
2009-01-17 05:43:43 -05:00
|
|
|
class WXDLLIMPEXP_CORE wxMacPrinter: public wxPrinterBase
|
|
|
|
{
|
2015-04-23 07:49:01 -04:00
|
|
|
wxDECLARE_DYNAMIC_CLASS(wxMacPrinter);
|
2009-01-17 05:43:43 -05:00
|
|
|
|
2015-04-23 07:49:01 -04:00
|
|
|
public:
|
2009-01-17 05:43:43 -05:00
|
|
|
wxMacPrinter(wxPrintDialogData *data = NULL);
|
|
|
|
virtual ~wxMacPrinter();
|
|
|
|
|
|
|
|
virtual bool Print(wxWindow *parent,
|
|
|
|
wxPrintout *printout,
|
2019-04-05 14:08:53 -04:00
|
|
|
bool prompt = true) wxOVERRIDE;
|
|
|
|
virtual wxDC* PrintDialog(wxWindow *parent) wxOVERRIDE;
|
|
|
|
virtual bool Setup(wxWindow *parent) wxOVERRIDE;
|
2009-01-17 05:43:43 -05:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* wxPrintPreview
|
|
|
|
* Programmer creates an object of this class to preview a wxPrintout.
|
|
|
|
*/
|
2009-08-21 06:41:26 -04:00
|
|
|
|
2009-01-17 05:43:43 -05:00
|
|
|
class WXDLLIMPEXP_CORE wxMacPrintPreview: public wxPrintPreviewBase
|
|
|
|
{
|
2015-04-23 07:49:01 -04:00
|
|
|
wxDECLARE_CLASS(wxMacPrintPreview);
|
2009-01-17 05:43:43 -05:00
|
|
|
|
2015-04-23 07:49:01 -04:00
|
|
|
public:
|
2009-01-17 05:43:43 -05:00
|
|
|
wxMacPrintPreview(wxPrintout *printout,
|
|
|
|
wxPrintout *printoutForPrinting = NULL,
|
|
|
|
wxPrintDialogData *data = NULL);
|
|
|
|
wxMacPrintPreview(wxPrintout *printout,
|
|
|
|
wxPrintout *printoutForPrinting,
|
|
|
|
wxPrintData *data);
|
|
|
|
virtual ~wxMacPrintPreview();
|
|
|
|
|
2019-04-05 14:08:53 -04:00
|
|
|
virtual bool Print(bool interactive) wxOVERRIDE;
|
|
|
|
virtual void DetermineScaling() wxOVERRIDE;
|
2009-01-17 05:43:43 -05:00
|
|
|
};
|
|
|
|
|
2008-06-11 12:30:48 -04:00
|
|
|
#endif
|
2009-01-17 05:43:43 -05:00
|
|
|
// _WX_PRINTWIN_H_
|