]> git.saurik.com Git - wxWidgets.git/blob - docs/latex/wx/postscpt.tex
Many changes to the printing classes.
[wxWidgets.git] / docs / latex / wx / postscpt.tex
1 \section{\class{wxPostScriptDC}}\label{wxpostscriptdc}
2
3 This defines the wxWindows Encapsulated PostScript device context,
4 which can write PostScript files on any platform. See \helpref{wxDC}{wxdc} for
5 descriptions of the member functions.
6
7 \wxheading{Derived from}
8
9 \helpref{wxDC}{wxdc}\\
10 \helpref{wxObject}{wxobject}
11
12 \wxheading{Include files}
13
14 <wx/dcps.h>
15
16 \membersection{wxPostScriptDC::wxPostScriptDC}
17
18 \func{}{wxPostScriptDC}{\param{const wxPrintData\&}{ printData}}
19
20 Constructs a PostScript printer device context from a \helpref{wxPrintData}{wxprintdata} object.
21
22 \func{}{wxPostScriptDC}{\param{const wxString\& }{output}, \param{bool }{interactive = TRUE},\\
23 \param{wxWindow *}{parent}}
24
25 Constructor. {\it output} is an optional file for printing to, and if
26 \rtfsp{\it interactive} is TRUE a dialog box will be displayed for adjusting
27 various parameters. {\it parent} is the parent of the printer dialog box.
28
29 Use the {\it Ok} member to test whether the constructor was successful
30 in creating a useable device context.
31
32 See \helpref{Printer settings}{printersettings} for functions to set and
33 get PostScript printing settings.
34
35 This constructor and the global printer settings are now deprecated;
36 use the wxPrintData constructor instead.
37
38 \membersection{wxPostScriptDC::GetStream}
39
40 \func{ostream *}{GetStream}{\void}
41
42 Returns the stream currently being used to write PostScript output. Use this
43 to insert any PostScript code that is outside the scope of wxPostScriptDC.
44
45