]>
Commit | Line | Data |
---|---|---|
4e28924c | 1 | \chapter{wxHTML Notes}\label{wxhtml} |
605d715d | 2 | |
b453e1b2 RR |
3 | \setheader{{\it CHAPTER \thechapter}}{}{}{}{}{{\it CHAPTER \thechapter}}% |
4 | \setfooter{\thepage}{}{}{}{}{\thepage}% | |
5 | ||
7ff14117 | 6 | This addendum is written by Vaclav Slavik, the author of the wxHTML library. |
704a4b75 | 7 | |
7ff14117 | 8 | The wxHTML library provides classes for parsing and displaying HTML. |
704a4b75 | 9 | |
f6bcfd97 BP |
10 | (It is not intended to be a high-end HTML browser. If you are looking for |
11 | something like that try \urlref{http://www.mozilla.org}{http://www.mozilla.org}) | |
7ff14117 | 12 | |
22d6efa8 JS |
13 | wxHTML can be used as a generic rich text viewer - for example to display |
14 | a nice About Box (like those of GNOME apps) or to display the result of | |
7ff14117 | 15 | database searching. There is a \helpref{wxFileSystem}{wxfilesystem} |
22d6efa8 | 16 | class which allows you to use your own virtual file systems. |
704a4b75 VS |
17 | |
18 | wxHtmlWindow supports tag handlers. This means that you can easily | |
22d6efa8 | 19 | extend wxHtml library with new, unsupported tags. Not only that, |
704a4b75 | 20 | you can even use your own application specific tags! |
22d6efa8 | 21 | See lib/mod\_*.cpp files for details. |
704a4b75 | 22 | |
f6bcfd97 | 23 | There is a generic (i.e. independent on wxHtmlWindow) wxHtmlParser class. |
704a4b75 | 24 | |
8771a323 | 25 | \input htmlstrt.tex |
704a4b75 VS |
26 | \input htmlprn.tex |
27 | \input htmlhlpf.tex | |
28 | \input htmlfilt.tex | |
29 | \input htmlcell.tex | |
30 | \input htmlhand.tex | |
42d306a0 | 31 | \input htmltags.tex |
22d6efa8 | 32 |