]>
Commit | Line | Data |
---|---|---|
bd330a69 | 1 | \section{wxHTML overview}\label{wxhtml} |
605d715d | 2 | |
7ff14117 | 3 | The wxHTML library provides classes for parsing and displaying HTML. |
704a4b75 | 4 | |
bd330a69 JS |
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}. | |
7ff14117 | 7 | |
22d6efa8 JS |
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 | |
7ff14117 | 10 | database searching. There is a \helpref{wxFileSystem}{wxfilesystem} |
22d6efa8 | 11 | class which allows you to use your own virtual file systems. |
704a4b75 VS |
12 | |
13 | wxHtmlWindow supports tag handlers. This means that you can easily | |
22d6efa8 | 14 | extend wxHtml library with new, unsupported tags. Not only that, |
bd330a69 | 15 | you can even use your own application-specific tags! |
9ecce691 | 16 | See {\tt src/html/m\_*.cpp} files for details. |
704a4b75 | 17 | |
bd330a69 JS |
18 | There is a generic wxHtmlParser class, |
19 | independent of wxHtmlWindow. | |
704a4b75 | 20 | |
8771a323 | 21 | \input htmlstrt.tex |
704a4b75 VS |
22 | \input htmlprn.tex |
23 | \input htmlhlpf.tex | |
24 | \input htmlfilt.tex | |
25 | \input htmlcell.tex | |
26 | \input htmlhand.tex | |
42d306a0 | 27 | \input htmltags.tex |
22d6efa8 | 28 |