Applied patches for #15184 (wxRichTextAction fix for when the command identifier...
[wxWidgets.git] / interface / wx / dcps.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: dcps.h
3 // Purpose: interface of wxPostScriptDC
4 // Author: wxWidgets team
5 // RCS-ID: $Id$
6 // Licence: wxWindows licence
7 /////////////////////////////////////////////////////////////////////////////
8
9 /**
10 @class wxPostScriptDC
11
12 This defines the wxWidgets Encapsulated PostScript device context, which
13 can write PostScript files on any platform. See wxDC for descriptions of
14 the member functions.
15
16 @library{wxbase}
17 @category{dc}
18 */
19 class wxPostScriptDC : public wxDC
20 {
21 public:
22 wxPostScriptDC();
23
24 /**
25 Constructs a PostScript printer device context from a wxPrintData object.
26 */
27 wxPostScriptDC(const wxPrintData& printData);
28
29 };
30