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