1999-11-18 23:13:14 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: printwin.h
|
|
|
|
// Purpose: wxWindowsPrinter, wxWindowsPrintPreview classes
|
|
|
|
// Author: Julian Smart
|
|
|
|
// Modified by:
|
|
|
|
// Created: 01/02/97
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) Julian Smart
|
2003-02-28 23:48:13 +00:00
|
|
|
// Licence: wxWindows licence
|
1999-11-18 23:13:14 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_PRINTWIN_H_
|
|
|
|
#define _WX_PRINTWIN_H_
|
|
|
|
|
2002-08-31 11:29:13 +00:00
|
|
|
#if defined(__GNUG__) && !defined(__APPLE__)
|
1999-11-18 23:13:14 +00:00
|
|
|
#pragma interface "printwin.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "wx/prntbase.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Represents the printer: manages printing a wxPrintout object
|
|
|
|
*/
|
|
|
|
|
|
|
|
class WXDLLEXPORT wxMacPrinter: public wxPrinterBase
|
|
|
|
{
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxMacPrinter)
|
|
|
|
|
|
|
|
public:
|
1999-12-03 14:30:39 +00:00
|
|
|
wxMacPrinter(wxPrintDialogData *data = NULL);
|
|
|
|
virtual ~wxMacPrinter();
|
1999-11-18 23:13:14 +00:00
|
|
|
|
1999-12-03 14:30:39 +00:00
|
|
|
virtual bool Print(wxWindow *parent,
|
|
|
|
wxPrintout *printout,
|
|
|
|
bool prompt = TRUE);
|
|
|
|
virtual wxDC* PrintDialog(wxWindow *parent);
|
1999-11-18 23:13:14 +00:00
|
|
|
virtual bool Setup(wxWindow *parent);
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* wxPrintPreview
|
|
|
|
* Programmer creates an object of this class to preview a wxPrintout.
|
|
|
|
*/
|
|
|
|
|
|
|
|
class WXDLLEXPORT wxMacPrintPreview: public wxPrintPreviewBase
|
|
|
|
{
|
|
|
|
DECLARE_CLASS(wxMacPrintPreview)
|
|
|
|
|
|
|
|
public:
|
1999-12-03 14:30:39 +00:00
|
|
|
wxMacPrintPreview(wxPrintout *printout,
|
|
|
|
wxPrintout *printoutForPrinting = NULL,
|
|
|
|
wxPrintDialogData *data = NULL);
|
|
|
|
wxMacPrintPreview(wxPrintout *printout,
|
|
|
|
wxPrintout *printoutForPrinting,
|
|
|
|
wxPrintData *data);
|
|
|
|
virtual ~wxMacPrintPreview();
|
1999-11-18 23:13:14 +00:00
|
|
|
|
|
|
|
virtual bool Print(bool interactive);
|
1999-12-03 14:30:39 +00:00
|
|
|
virtual void DetermineScaling();
|
1999-11-18 23:13:14 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
// _WX_PRINTWIN_H_
|