]> git.saurik.com Git - wxWidgets.git/blobdiff - docs/latex/wx/htmlhand.tex
On wxMac don't call Refresh from FullPaint as that is the biggest
[wxWidgets.git] / docs / latex / wx / htmlhand.tex
index 5017dd593ef20966988f4a0ec989b86d12d6dbff..de833c17d96d71d827c434d13d63431887a8ad92 100644 (file)
@@ -1,4 +1,4 @@
-\section{Tag Handlers}\label{handlers}
+\subsection{Tag Handlers}\label{handlers}
 
 The wxHTML library provides architecture of pluggable {\it tag handlers}.
 Tag handler is class that understands particular HTML tag (or tags) and is
@@ -43,7 +43,7 @@ Then you must define handlers and one module.
 The handler is derived from \helpref{wxHtmlWinTagHandler}{wxhtmlwintaghandler}
 (or directly from \helpref{wxHtmlTagHandler}{wxhtmltaghandler})
 
-You can use set of macros to define the handler (see src/mod\_*.cpp files
+You can use set of macros to define the handler (see src/html/m\_*.cpp files
 for details). Handler definition must start with {\bf TAG\_HANDLER\_BEGIN} macro
 and end with {\bf TAG\_HANDLER\_END} macro. I strongly recommend to have a look
 at {\it include/wxhtml/mod\_templ.h} file. Otherwise you won't understand
@@ -54,7 +54,7 @@ the structure of macros. See macros reference:
 Starts handler definition. {\it name} is handler identifier (in fact
 part of class name), {\it tags} is string containing list of tags
 supported by this handler (in uppercase). This macro derives new class from
-wxHtmlWinTagHandler and implements it'
+wxHtmlWinTagHandler and implements it i
 \helpref{GetSupportedTags}{wxhtmltaghandlergetsupportedtags} method.
 
 Example: TAG\_HANDLER\_BEGIN(FONTS, "B,I,U,T")
@@ -113,7 +113,6 @@ TAG_HANDLER_END(TITLE)
 
 Ends definition of tag handler {\it name}. 
 
-
 \wxheading{Tags Modules}
 
 You can use set of 3 macros TAGS\_MODULE\_BEGIN, TAGS\_MODULE\_ADD and