]> git.saurik.com Git - wxWidgets.git/blame - interface/wx/dcps.h
wxMessageBox off the main thread lost result code.
[wxWidgets.git] / interface / wx / dcps.h
CommitLineData
23324ae1
FM
1/////////////////////////////////////////////////////////////////////////////
2// Name: dcps.h
e54c96f1 3// Purpose: interface of wxPostScriptDC
23324ae1 4// Author: wxWidgets team
526954c5 5// Licence: wxWindows licence
23324ae1
FM
6/////////////////////////////////////////////////////////////////////////////
7
8/**
9 @class wxPostScriptDC
7c913512 10
3a7fb603
BP
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.
7c913512 14
23324ae1
FM
15 @library{wxbase}
16 @category{dc}
17*/
18class wxPostScriptDC : public wxDC
19{
20public:
9a077460
RD
21 wxPostScriptDC();
22
3a7fb603 23 /**
f910f4d5 24 Constructs a PostScript printer device context from a wxPrintData object.
3a7fb603
BP
25 */
26 wxPostScriptDC(const wxPrintData& printData);
f910f4d5 27
23324ae1
FM
28};
29