]> git.saurik.com Git - wxWidgets.git/blobdiff - docs/latex/wx/httaghnd.tex
Fix "depreciated" to "deprecated".
[wxWidgets.git] / docs / latex / wx / httaghnd.tex
index 95f221445d39a1c3e40ea9ed92601c3ef594c86a..0056d355a628d3a9bc573e90ae203729bab71774 100644 (file)
@@ -3,20 +3,21 @@
 % htmltaghandler.tex at 18/Mar/99 19:20:29
 %
 
-
 \section{\class{wxHtmlTagHandler}}\label{wxhtmltaghandler}
 
 \wxheading{Derived from}
 
-wxObject
+\helpref{wxObject}{wxobject}
+
+\wxheading{Include files}
+
+<wx/html/htmlpars.h>
 
 \wxheading{See Also}
 
 \helpref{Overview}{handlers},
 \helpref{wxHtmlTag}{wxhtmltag}
 
-
-
 \latexignore{\rtfignore{\wxheading{Members}}}
 
 \membersection{wxHtmlTagHandler::m\_Parser}\label{wxhtmltaghandlermparser}
@@ -32,13 +33,6 @@ it can't be accessed by user but can be accessed from derived classes.
 
 Constructor.
 
-\membersection{wxHtmlTagHandler::SetParser}\label{wxhtmltaghandlersetparser}
-
-\func{virtual void}{SetParser}{\param{wxHtmlParser }{*parser}}
-
-Assigns {\it parser} to this handler. Each {\bf instance} of handler 
-is guaranteed to be called only from the parser.
-
 \membersection{wxHtmlTagHandler::GetSupportedTags}\label{wxhtmltaghandlergetsupportedtags}
 
 \func{virtual wxString}{GetSupportedTags}{\void}
@@ -46,19 +40,18 @@ is guaranteed to be called only from the parser.
 Returns list of supported tags. The list is in uppercase and tags
 are delimited by ','. Example : {\tt "I,B,FONT,P" }
 
-
 \membersection{wxHtmlTagHandler::HandleTag}\label{wxhtmltaghandlerhandletag}
 
 \func{virtual bool}{HandleTag}{\param{const wxHtmlTag\& }{tag}}
 
 This is the core method of each handler. It is called each time
-one of supported tags is detected. {\it tag} contains all neccessary
+one of supported tags is detected. {\it tag} contains all necessary
 info (see \helpref{wxHtmlTag}{wxhtmltag} for details).
 
 \wxheading{Return value}
 
-TRUE if \helpref{ParseInner}{wxhtmltaghandlerparseinner} was called,
-FALSE otherwise.
+true if \helpref{ParseInner}{wxhtmltaghandlerparseinner} was called,
+false otherwise.
 
 \wxheading{Example}
 
@@ -73,19 +66,26 @@ bool MyHandler::HandleTag(const wxHtmlTag& tag)
 }
 \end{verbatim}
 
-You shouldn't call ParseInner if the tag is not paired with ending one.
-
+You shouldn't call ParseInner if the tag is not paired with an ending one.
 
 \membersection{wxHtmlTagHandler::ParseInner}\label{wxhtmltaghandlerparseinner}
 
 \func{void}{ParseInner}{\param{const wxHtmlTag\& }{tag}}
 
 This method calls parser's \helpref{DoParsing}{wxhtmlparserdoparsing} method
-for the string between this tag and paired ending tag:
+for the string between this tag and the paired ending tag:
 
 \begin{verbatim}
 ...<A HREF="x.htm">Hello, world!</A>...
 \end{verbatim}
 
-In this example, call to ParseInner (with {\it tag} pointing to A tag)
-will parse 'Hello, world!'
+In this example, a call to ParseInner (with {\it tag} pointing to A tag)
+will parse 'Hello, world!'.
+
+\membersection{wxHtmlTagHandler::SetParser}\label{wxhtmltaghandlersetparser}
+
+\func{virtual void}{SetParser}{\param{wxHtmlParser }{*parser}}
+
+Assigns {\it parser} to this handler. Each {\bf instance} of handler 
+is guaranteed to be called only from the parser.
+