]>
Commit | Line | Data |
---|---|---|
a660d684 KB |
1 | \section{\class{wxPostScriptDC}}\label{wxpostscriptdc} |
2 | ||
fc2171bd | 3 | This defines the wxWidgets Encapsulated PostScript device context, |
a660d684 KB |
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 | ||
954b8ae6 JS |
12 | \wxheading{Include files} |
13 | ||
14 | <wx/dcps.h> | |
15 | ||
a660d684 KB |
16 | \membersection{wxPostScriptDC::wxPostScriptDC} |
17 | ||
7bcb11d3 JS |
18 | \func{}{wxPostScriptDC}{\param{const wxPrintData\&}{ printData}} |
19 | ||
20 | Constructs a PostScript printer device context from a \helpref{wxPrintData}{wxprintdata} object. | |
21 | ||
cc81d32f | 22 | \func{}{wxPostScriptDC}{\param{const wxString\& }{output}, \param{bool }{interactive = true},\\ |
a660d684 KB |
23 | \param{wxWindow *}{parent}} |
24 | ||
25 | Constructor. {\it output} is an optional file for printing to, and if | |
cc81d32f | 26 | \rtfsp{\it interactive} is true a dialog box will be displayed for adjusting |
a660d684 KB |
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 | |
2edb0bde | 30 | in creating a usable device context. |
a660d684 KB |
31 | |
32 | See \helpref{Printer settings}{printersettings} for functions to set and | |
33 | get PostScript printing settings. | |
34 | ||
7bcb11d3 JS |
35 | This constructor and the global printer settings are now deprecated; |
36 | use the wxPrintData constructor instead. | |
37 | ||
a660d684 | 38 | |
b64de916 | 39 | \membersection{wxPostScriptDC::SetResolution}\label{wxpostscriptdcsetresolution} |
a660d684 | 40 | |
b64de916 VS |
41 | \func{static void}{SetResolution}{\param{int}{ ppi}} |
42 | ||
43 | Set resolution (in pixels per inch) that will be used in PostScript | |
44 | output. Default is 720ppi. | |
45 | ||
46 | \membersection{wxPostScriptDC::GetResolution}\label{wxpostscriptdcgetresolution} | |
47 | ||
48 | \func{static int}{GetResolution}{\void} | |
49 | ||
50 | Return resolution used in PostScript output. See | |
51 | \helpref{SetResolution}{wxpostscriptdcsetresolution}. | |
a98f98ac | 52 |