2 % automatically generated by HelpGen from
3 % htmlwindow.tex at 14/Mar/99 20:13:37
6 \section{\class{wxHtmlWindow
}}\label{wxhtmlwindow
}
8 wxHtmlWindow is probably the only class you will directly use
9 unless you want to do something special (like adding new tag
10 handlers or MIME filters)
12 Purpose of this class is to display HTML page (either local
13 file or downloaded via HTTP protocol) in a window. Width
14 of window is constant - given in constructor - virtual height
15 is changed dynamicly depending on page size.
16 Once the window is created you can set it's content by calling
17 \helpref{SetPage(text)
}{wxhtmlwindowsetpage
} or
18 \helpref{LoadPage(filename)
}{wxhtmlwindowloadpage
}.
20 \wxheading{Derived from
}
24 \wxheading{Include files
}
28 \membersection{wxHtmlWindow::wxHtmlWindow
}\label{wxhtmlwindowwxhtmlwindow
}
30 \func{}{wxHtmlWindow
}{\void}
34 \func{}{wxHtmlWindow
}{\param{wxWindow
}{*parent
},
\param{wxWindowID
}{id = -
1},
\param{const wxPoint\&
}{pos = wxDefaultPosition
},
\param{const wxSize\&
}{size = wxDefaultSize
},
\param{long
}{style = wxHW_SCROLLBAR_AUTO
},
\param{const wxString\&
}{name = "htmlWindow"
}}
36 Constructor. The parameters are same as in wxScrollWindow ctor.
37 (Too lazy to
document it once again... :-)
39 \wxheading{Parameters
}
41 \docparam{style
}{wxHW
\_SCROLLBAR\_NEVER, or wxHW
\_SCROLLBAR\_AUTO.
42 Affects appearance of vertical scrollbar in the window.
}
44 \membersection{wxHtmlWindow::AddFilter
}\label{wxhtmlwindowaddfilter
}
46 \func{static void
}{AddFilter
}{\param{wxHtmlFilter
}{*filter
}}
48 Adds
\helpref{input filter
}{filters
} to the static list of available
49 filters. These filters are present by default:
52 \item {\tt text/html
} MIME type
53 \item {\tt image/*
} MIME types
54 \item Plain Text filter (this filter is used if no other filter matches)
57 \membersection{wxHtmlWindow::GetInternalRepresentation
}\label{wxhtmlwindowgetinternalrepresentation
}
59 \constfunc{wxHtmlContainerCell*
}{GetInternalRepresentation
}{\void}
61 Returns pointer to the top-level container.
63 See also:
\helpref{Cells Overview
}{cells
},
64 \helpref{Printing Overview
}{printing
}
66 \membersection{wxHtmlWindow::GetOpenedPage
}\label{wxhtmlwindowgetopenedpage
}
68 \func{wxString
}{GetOpenedPage
}{\void}
70 Returns full location of the opened page. If no page is opened or if the displayed page wasn't
71 produced by call to LoadPage, empty string is returned.
73 \membersection{wxHtmlWindow::GetRelatedFrame
}\label{wxhtmlwindowgetrelatedframe
}
75 \constfunc{wxFrame*
}{GetRelatedFrame
}{\void}
77 Returns the related frame.
79 \membersection{wxHtmlWindow::HistoryBack
}\label{wxhtmlwindowhistoryback
}
81 \func{bool
}{HistoryBack
}{\void}
83 Moves back to the previous page. (each page displayed using
84 \helpref{LoadPage
}{wxhtmlwindowloadpage
} is stored in history list.)
86 \membersection{wxHtmlWindow::HistoryClear
}\label{wxhtmlwindowhistoryclear
}
88 \func{void
}{HistoryClear
}{\void}
92 \membersection{wxHtmlWindow::HistoryForward
}\label{wxhtmlwindowhistoryforward
}
94 \func{bool
}{HistoryForward
}{\void}
96 Moves to next page in history.
98 \membersection{wxHtmlWindow::LoadPage
}\label{wxhtmlwindowloadpage
}
100 \func{bool
}{LoadPage
}{\param{const wxString\&
}{location
}}
102 Unlike SetPage this function first loads HTML page from
{\it location
}
103 and then displays it. See example:
106 htmlwin -> SetPage("help/myproject/index.htm");
109 \wxheading{Parameters
}
111 \docparam{location
}{The address of
document. See
\helpref{wxFileSystem
}{wxfilesystem
} for details on address format and behaviour of "opener".
}
113 \wxheading{Return value
}
115 FALSE if an error occured, TRUE otherwise
117 \membersection{wxHtmlWindow::OnLinkClicked
}\label{wxhtmlwindowonlinkclicked
}
119 \func{virtual void
}{OnLinkClicked
}{\param{const wxString\&
}{link
}}
121 Called when user clicks on hypertext link. Default behaviour is to call
122 \helpref{LoadPage
}{wxhtmlwindowloadpage
} and do nothing else.
124 \membersection{wxHtmlWindow::ReadCustomization
}\label{wxhtmlwindowreadcustomization
}
126 \func{virtual void
}{ReadCustomization
}{\param{wxConfigBase
}{*cfg
},
\param{wxString
}{path = wxEmptyString
}}
128 This reads custom settings from wxConfig. It uses the path 'path'
129 if given, otherwise it saves info into currently selected path.
130 The values are stored in sub-path
{\tt wxHtmlWindow
}
132 Read values : all things set by SetFonts, SetBorders.
134 \wxheading{Parameters
}
136 \docparam{cfg
}{wxConfig from which you wanna read configuration
}
138 \docparam{path
}{Optional path in config tree. If not given current path is used.
}
140 \membersection{wxHtmlWindow::SetBorders
}\label{wxhtmlwindowsetborders
}
142 \func{void
}{SetBorders
}{\param{int
}{b
}}
144 This function sets the space between border of window and HTML contents. See image:
148 \wxheading{Parameters
}
150 \docparam{b
}{indentation from borders in pixels
}
152 \membersection{wxHtmlWindow::SetFonts
}\label{wxhtmlwindowsetfonts
}
154 \func{void
}{SetFonts
}{\param{wxString
}{normal
\_face},
\param{int
}{normal
\_italic\_mode},
\param{wxString
}{fixed
\_face},
\param{int
}{fixed
\_italic\_mode},
\param{const int
}{*sizes
}}
156 This function sets font sizes and faces.
158 \wxheading{Parameters
}
160 \docparam{normal_face
}{This is face name for normal (i.e. non-fixed) font.
161 It can be either empty string (then the default face is choosen) or
162 platform-specific face name. Examples are "helvetica" under Unix or
163 "Times New Roman" under Windows.
}
165 \docparam{normal_italic_mode
}{This is either wxSLANT or wxITALIC.
167 italic (<I>..</I>) text is handled. See wxFont documentation for
168 details. For example you should use wxSLANT in conjuction with
169 "helvetica" face or wxITALIC with "times" face.
}
171 \docparam{fixed_face
}{The same thing for fixed face ( <TT>..</TT> )
}
173 \docparam{fixed_italic_mode
}{The same thing for fixed face.
}
175 \docparam{sizes
}{This is an array of
7 items of
{\it int
} type.
176 The values represent size of font with HTML size from -
2 to +
4
177 ( <FONT SIZE=-
2> to <FONT SIZE=+
4> )
}
184 SetFonts("", wxSLANT, "", wxSLANT,
{10,
12,
14,
16,
19,
24,
32});
190 SetFonts("", wxSLANT, "", wxSLANT,
{7,
8,
10,
12,
16,
22,
30});
193 Athough it seems different the fact is that the fonts are of approximately
194 same size under both platforms (due to wxMSW / wxGTK inconsistency)
196 \membersection{wxHtmlWindow::SetPage
}\label{wxhtmlwindowsetpage
}
198 \func{bool
}{SetPage
}{\param{const wxString\&
}{source
}}
200 Sets HTML page and display it. This won't
{\bf load
} the page!!
201 It will display the
{\it source
}. See example:
204 htmlwin -> SetPage("<html><body>Hello, world!</body></html>");
207 If you want to load
document from some location use
208 \helpref{LoadPage
}{wxhtmlwindowloadpage
} instead.
210 \wxheading{Parameters
}
212 \docparam{source
}{The HTML
document source to be displayed.
}
214 \wxheading{Return value
}
216 FALSE if an error occured, TRUE otherwise
218 \membersection{wxHtmlWindow::SetRelatedFrame
}\label{wxhtmlwindowsetrelatedframe
}
220 \func{void
}{SetRelatedFrame
}{\param{wxFrame*
}{frame
},
\param{const wxString\&
}{format
}}
222 Sets frame in which page title will be displayed.
{\it format
} is format of
223 frame title, e.g. "HtmlHelp : \%s". It must contain exactly one \%s. This
224 \%s is substituted with HTML page title.
226 \membersection{wxHtmlWindow::SetRelatedStatusBar
}\label{wxhtmlwindowsetrelatedstatusbar
}
228 \func{void
}{SetRelatedStatusBar
}{\param{int
}{bar
}}
230 {\bf After
} calling
\helpref{SetRelatedFrame
}{wxhtmlwindowsetrelatedframe
},
231 this sets statusbar slot where messages will be displayed.
232 (Default is -
1 = no messages.)
234 \wxheading{Parameters
}
236 \docparam{bar
}{statusbar slot number (
0..n)
}
238 \membersection{wxHtmlWindow::WriteCustomization
}\label{wxhtmlwindowwritecustomization
}
240 \func{virtual void
}{WriteCustomization
}{\param{wxConfigBase
}{*cfg
},
\param{wxString
}{path = wxEmptyString
}}
242 Saves custom settings into wxConfig. It uses the path 'path'
243 if given, otherwise it saves info into currently selected path.
244 Regardless path is given or not the function creates sub-path
247 Saved values : all things set by SetFonts, SetBorders.
249 \wxheading{Parameters
}
251 \docparam{cfg
}{wxConfig to which you wanna save configuration
}
253 \docparam{path
}{Optional path in config tree. If not given current path is used.
}