]> git.saurik.com Git - wxWidgets.git/blame - include/wx/motif/dcprint.h
added wxArtProvider::InsertProvider to accompany PushProvider
[wxWidgets.git] / include / wx / motif / dcprint.h
CommitLineData
9b6dbb09 1/////////////////////////////////////////////////////////////////////////////
925f7740 2// Name: wx/motif/dcprint.h
9b6dbb09
JS
3// Purpose: wxPrinterDC class
4// Author: Julian Smart
5// Modified by:
6// Created: 17/09/98
7// RCS-ID: $Id$
8// Copyright: (c) Julian Smart
925f7740 9// Licence: wxWindows licence
9b6dbb09
JS
10/////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_DCPRINT_H_
13#define _WX_DCPRINT_H_
14
9b6dbb09
JS
15#include "wx/dc.h"
16
17class WXDLLEXPORT wxPrinterDC: public wxDC
18{
83df96d6
JS
19public:
20 DECLARE_CLASS(wxPrinterDC)
925f7740 21
83df96d6 22 // Create a printer DC
96be256b 23 wxPrinterDC(const wxString& driver, const wxString& device, const wxString& output, bool interactive = true, int orientation = wxPORTRAIT);
925f7740 24
83df96d6 25 ~wxPrinterDC();
9b6dbb09
JS
26};
27
28#endif
83df96d6 29// _WX_DCPRINT_H_