]> git.saurik.com Git - wxWidgets.git/blame - docs/latex/wx/hteasypr.tex
splitter in bin format
[wxWidgets.git] / docs / latex / wx / hteasypr.tex
CommitLineData
3ce369e6
VS
1%
2% automatically generated by HelpGen from
3% htmprint.h at 17/Oct/99 12:48:02
4%
5
3ce369e6
VS
6\section{\class{wxHtmlEasyPrinting}}\label{wxhtmleasyprinting}
7
3ce369e6 8This class provides very simple interface to printing
448af9a4
JS
9architecture. It allows you to print HTML documents using
10only a few commands.
3ce369e6
VS
11
12\wxheading{Note}
448af9a4
JS
13
14Do not create this class on the stack only. You should create an instance on app
3ce369e6
VS
15startup and use this instance for all printing operations. The reason is that
16this class stores various settings in it.
17
3ce369e6
VS
18\wxheading{Derived from}
19
20\helpref{wxObject}{wxobject}
21
3ce369e6
VS
22\latexignore{\rtfignore{\wxheading{Members}}}
23
3ce369e6
VS
24\membersection{wxHtmlEasyPrinting::wxHtmlEasyPrinting}\label{wxhtmleasyprintingwxhtmleasyprinting}
25
26\func{}{wxHtmlEasyPrinting}{\param{const wxString\& }{name = "Printing"}, \param{wxFrame* }{parent\_frame = NULL}}
27
28Constructor.
29
30\wxheading{Parameters}
31
32\docparam{name}{Name of the printing. Used by preview frames and setup dialogs.}
33
34\docparam{parent\_frame}{pointer to the frame that will own preview frame and setup dialogs. May be NULL.}
35
36
3ce369e6
VS
37\membersection{wxHtmlEasyPrinting::PreviewFile}\label{wxhtmleasyprintingpreviewfile}
38
39\func{void}{PreviewFile}{\param{const wxString\& }{htmlfile}}
40
41Previews HTML file.
42
3ce369e6
VS
43\membersection{wxHtmlEasyPrinting::PreviewText}\label{wxhtmleasyprintingpreviewtext}
44
45\func{void}{PreviewText}{\param{const wxString\& }{htmltext}, \param{const wxString\& }{basepath = wxEmptyString}}
46
47Previews HTML text (not file!).
48
49\wxheading{Parameters}
50
51\docparam{htmltext}{HTML text.}
52
53\docparam{basepath}{base directory (html string would be stored there if it was in
54file). It is used to determine path for loading images, for example.}
55
3ce369e6
VS
56\membersection{wxHtmlEasyPrinting::PrintFile}\label{wxhtmleasyprintingprintfile}
57
58\func{void}{PrintFile}{\param{const wxString\& }{htmlfile}}
59
60Prints HTML file.
61
3ce369e6
VS
62\membersection{wxHtmlEasyPrinting::PrintText}\label{wxhtmleasyprintingprinttext}
63
64\func{void}{PrintText}{\param{const wxString\& }{htmltext}, \param{const wxString\& }{basepath = wxEmptyString}}
65
66Prints HTML text (not file!).
67
68\wxheading{Parameters}
69
70\docparam{htmltext}{HTML text.}
71
72\docparam{basepath}{base directory (html string would be stored there if it was in
73file). It is used to determine path for loading images, for example.}
74
3ce369e6
VS
75\membersection{wxHtmlEasyPrinting::PrinterSetup}\label{wxhtmleasyprintingprintersetup}
76
77\func{void}{PrinterSetup}{\void}
78
79Displays printer setup dialog and allows the user to modify settings.
80
3ce369e6
VS
81\membersection{wxHtmlEasyPrinting::PageSetup}\label{wxhtmleasyprintingpagesetup}
82
83\func{void}{PageSetup}{\void}
84
85Displays page setup dialog and allows the user to modify settings.
86
3ce369e6
VS
87\membersection{wxHtmlEasyPrinting::SetHeader}\label{wxhtmleasyprintingsetheader}
88
89\func{void}{SetHeader}{\param{const wxString\& }{header}, \param{int }{pg = wxPAGE\_ALL}}
90
91Sets page header.
92
93\wxheading{Parameters}
94
95\docparam{header}{HTML text to be used as header. You can use macros in it:
448af9a4
JS
96
97\begin{itemize}\itemsep=0pt
3ce369e6
VS
98\item @PAGENUM@ is replaced by page number
99\item @PAGESCNT@ is replaced by total number of pages
100\end{itemize}
101}
102
103\docparam{pg}{one of wxPAGE\_ODD, wxPAGE\_EVEN and wxPAGE\_ALL constants.}
104
3ce369e6
VS
105\membersection{wxHtmlEasyPrinting::SetFooter}\label{wxhtmleasyprintingsetfooter}
106
107\func{void}{SetFooter}{\param{const wxString\& }{footer}, \param{int }{pg = wxPAGE\_ALL}}
108
109Sets page footer.
110
111\wxheading{Parameters}
112
113\docparam{footer}{HTML text to be used as footer. You can use macros in it:
448af9a4
JS
114
115\begin{itemize}\itemsep=0pt
3ce369e6
VS
116\item @PAGENUM@ is replaced by page number
117\item @PAGESCNT@ is replaced by total number of pages
118\end{itemize}
119}
120
3ce369e6
VS
121\docparam{pg}{one of wxPAGE\_ODD, wxPAGE\_EVEN and wxPAGE\_ALL constants.}
122
3ce369e6
VS
123\membersection{wxHtmlEasyPrinting::GetPrintData}\label{wxhtmleasyprintinggetprintdata}
124
125\func{wxPrintData*}{GetPrintData}{\void}
126
127Returns pointer to \helpref{wxPrintData}{wxprintdata} instance used by this class. You can
128set its parameters (via SetXXXX methods).
129
130\membersection{wxHtmlEasyPrinting::GetPageSetupData}\label{wxhtmleasyprintinggetpagesetupdata}
131
132\func{wxPageSetupDialogData*}{GetPageSetupData}{\void}
133
448af9a4 134Returns a pointer to \helpref{wxPageSetupDialogData}{wxpagesetupdialogdata} instance used by
3ce369e6 135this class. You can set its parameters (via SetXXXX methods).
448af9a4 136