wxWidgets/include/wx/os2/printos2.h
Dimitri Schoolwerth 80fdcdb90e No changes, synchronised source names that appear commented at the top of files with the actual path to the files.
Fixed commented names (path, filename, and extension) of files in include/ and src/. Prepended the names in src/ with "src/" everywhere, while starting those in include/wx/ with "wx/".

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@67254 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2011-03-20 00:14:35 +00:00

59 lines
1.5 KiB
C++

/////////////////////////////////////////////////////////////////////////////
// Name: wx/os2/printos2.h
// Purpose: wxOS2Printer, wxOS2PrintPreview classes
// Author: David Webster
// Modified by:
// Created: 10/14/99
// RCS-ID: $Id$
// Copyright: (c) David Webster
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
#ifndef _WX_PRINT_H_
#define _WX_PRINT_H_
#include "wx/prntbase.h"
#if wxUSE_PRINTING_ARCHITECTURE
/*
* Represents the printer: manages printing a wxPrintout object
*/
class WXDLLIMPEXP_CORE wxOS2Printer: public wxPrinterBase
{
DECLARE_DYNAMIC_CLASS(wxOS2Printer)
public:
wxOS2Printer(wxPrintDialogData *data = NULL);
virtual ~wxOS2Printer();
virtual bool Print(wxWindow *parent, wxPrintout *printout, bool prompt = true);
virtual wxDC* PrintDialog(wxWindow *parent);
virtual bool Setup(wxWindow *parent);
private:
};
/*
* wxOS2PrintPreview
* Programmer creates an object of this class to preview a wxPrintout.
*/
class WXDLLIMPEXP_CORE wxOS2PrintPreview: public wxPrintPreviewBase
{
DECLARE_CLASS(wxOS2PrintPreview)
public:
wxOS2PrintPreview(wxPrintout *printout, wxPrintout *printoutForPrinting = NULL, wxPrintDialogData *data = NULL);
wxOS2PrintPreview(wxPrintout *printout, wxPrintout *printoutForPrinting, wxPrintData *data);
virtual ~wxOS2PrintPreview();
virtual bool Print(bool interactive);
virtual void DetermineScaling();
};
#endif // wxUSE_PRINTING_ARCHITECTURE
#endif
// _WX_PRINT_H_