]>
Commit | Line | Data |
---|---|---|
1 | \section{wxHTML overview}\label{wxhtml} | |
2 | ||
3 | The wxHTML library provides classes for parsing and displaying HTML. | |
4 | ||
5 | It is not intended to be a high-end HTML browser. If you are looking for | |
6 | something like that try \urlref{http://www.mozilla.org}{http://www.mozilla.org}. | |
7 | ||
8 | wxHTML can be used as a generic rich text viewer - for example to display | |
9 | a nice About Box (like those of GNOME apps) or to display the result of | |
10 | database searching. There is a \helpref{wxFileSystem}{wxfilesystem} | |
11 | class which allows you to use your own virtual file systems. | |
12 | ||
13 | wxHtmlWindow supports tag handlers. This means that you can easily | |
14 | extend wxHtml library with new, unsupported tags. Not only that, | |
15 | you can even use your own application-specific tags! | |
16 | See {\tt src/html/m\_*.cpp} files for details. | |
17 | ||
18 | There is a generic wxHtmlParser class, | |
19 | independent of wxHtmlWindow. | |
20 | ||
21 | \input htmlstrt.tex | |
22 | \input htmlprn.tex | |
23 | \input htmlhlpf.tex | |
24 | \input htmlfilt.tex | |
25 | \input htmlcell.tex | |
26 | \input htmlhand.tex | |
27 | \input htmltags.tex | |
28 |