1998-05-20 14:25:30 +00:00
|
|
|
\section{\class{wxPostScriptDC}}\label{wxpostscriptdc}
|
|
|
|
|
2004-05-04 08:27:20 +00:00
|
|
|
This defines the wxWidgets Encapsulated PostScript device context,
|
1998-05-20 14:25:30 +00:00
|
|
|
which can write PostScript files on any platform. See \helpref{wxDC}{wxdc} for
|
|
|
|
descriptions of the member functions.
|
|
|
|
|
|
|
|
\wxheading{Derived from}
|
|
|
|
|
|
|
|
\helpref{wxDC}{wxdc}\\
|
|
|
|
\helpref{wxObject}{wxobject}
|
|
|
|
|
1999-02-15 20:41:29 +00:00
|
|
|
\wxheading{Include files}
|
|
|
|
|
|
|
|
<wx/dcps.h>
|
|
|
|
|
1998-05-20 14:25:30 +00:00
|
|
|
\membersection{wxPostScriptDC::wxPostScriptDC}
|
|
|
|
|
1999-03-25 23:06:01 +00:00
|
|
|
\func{}{wxPostScriptDC}{\param{const wxPrintData\&}{ printData}}
|
|
|
|
|
|
|
|
Constructs a PostScript printer device context from a \helpref{wxPrintData}{wxprintdata} object.
|
|
|
|
|
2003-01-18 00:16:34 +00:00
|
|
|
\func{}{wxPostScriptDC}{\param{const wxString\& }{output}, \param{bool }{interactive = true},\\
|
1998-05-20 14:25:30 +00:00
|
|
|
\param{wxWindow *}{parent}}
|
|
|
|
|
|
|
|
Constructor. {\it output} is an optional file for printing to, and if
|
2003-01-18 00:16:34 +00:00
|
|
|
\rtfsp{\it interactive} is true a dialog box will be displayed for adjusting
|
1998-05-20 14:25:30 +00:00
|
|
|
various parameters. {\it parent} is the parent of the printer dialog box.
|
|
|
|
|
|
|
|
Use the {\it Ok} member to test whether the constructor was successful
|
2002-06-07 20:15:28 +00:00
|
|
|
in creating a usable device context.
|
1998-05-20 14:25:30 +00:00
|
|
|
|
|
|
|
See \helpref{Printer settings}{printersettings} for functions to set and
|
|
|
|
get PostScript printing settings.
|
|
|
|
|
1999-03-25 23:06:01 +00:00
|
|
|
This constructor and the global printer settings are now deprecated;
|
|
|
|
use the wxPrintData constructor instead.
|
|
|
|
|
1998-05-20 14:25:30 +00:00
|
|
|
|
2000-08-03 21:43:30 +00:00
|
|
|
\membersection{wxPostScriptDC::SetResolution}\label{wxpostscriptdcsetresolution}
|
1998-05-20 14:25:30 +00:00
|
|
|
|
2000-08-03 21:43:30 +00:00
|
|
|
\func{static void}{SetResolution}{\param{int}{ ppi}}
|
|
|
|
|
|
|
|
Set resolution (in pixels per inch) that will be used in PostScript
|
|
|
|
output. Default is 720ppi.
|
|
|
|
|
|
|
|
\membersection{wxPostScriptDC::GetResolution}\label{wxpostscriptdcgetresolution}
|
|
|
|
|
|
|
|
\func{static int}{GetResolution}{\void}
|
|
|
|
|
|
|
|
Return resolution used in PostScript output. See
|
|
|
|
\helpref{SetResolution}{wxpostscriptdcsetresolution}.
|
2001-04-25 15:38:00 +00:00
|
|
|
|