X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/704a4b7524e05d7bf4d208eb1b30be9989abef4c..559fe022dbd5d4d961402b5c973e5225fa91f17f:/docs/latex/wx/httag.tex diff --git a/docs/latex/wx/httag.tex b/docs/latex/wx/httag.tex index 40b1da9983..12bacbb808 100644 --- a/docs/latex/wx/httag.tex +++ b/docs/latex/wx/httag.tex @@ -3,20 +3,17 @@ % htmltag.tex at 14/Mar/99 20:13:37 % - \section{\class{wxHtmlTag}}\label{wxhtmltag} This class represents single HTML tag. It is used by \helpref{tag handlers}{handlers}. - \wxheading{Derived from} wxObject \latexignore{\rtfignore{\wxheading{Members}}} - \membersection{wxHtmlTag::wxHtmlTag}\label{wxhtmltagwxhtmltag} \func{}{wxHtmlTag}{\param{const wxString\& }{source}, \param{int }{pos}, \param{int }{end\_pos}, \param{wxHtmlTagsCache* }{cache}} @@ -25,26 +22,61 @@ Constructor. You'll probably never have to construct wxHtmlTag object yourself. Feel free to ignore the constructor parameters... (have a look at lib/htmlparser.cpp if you're interested in creating it) -\membersection{wxHtmlTag::GetName}\label{wxhtmltaggetname} +\membersection{wxHtmlTag::GetAllParams}\label{wxhtmltaggetallparams} -\constfunc{wxString}{GetName}{\void} +\constfunc{const wxString\&}{GetAllParams}{\void} -Returns tag's name. The name is always in uppercase and it doesn't contain -'<' or '/' characters. (So the name of {\tt } tag is "FONT" -and name of {\tt } is "TABLE") +Returns string with all params. +Example : tag contains {\tt }. Call to +tag.GetAllParams() would return {\tt SIZE=+2 COLOR="\#000000"}. -\membersection{wxHtmlTag::HasParam}\label{wxhtmltaghasparam} +\membersection{wxHtmlTag::GetBeginPos}\label{wxhtmltaggetbeginpos} -\constfunc{bool}{HasParam}{\param{const wxString\& }{par}} +\constfunc{int}{GetBeginPos}{\void} -Returns TRUE if the tag has parameter of the given name. -Example : {\tt } has two parameters named -"SIZE" and "COLOR". +Returns beginning position of the text {\it between} this tag and paired +ending tag. +See explanation (returned position is marked with '^'): -\wxheading{Parameters} +\begin{verbatim} +bla bla bla bla bla intenal text bla bla + ^ +\end{verbatim} -\docparam{par}{the parameter you're looking for. It must {\it always} be in uppercase!} +\membersection{wxHtmlTag::GetEndPos1}\label{wxhtmltaggetendpos1} + +\constfunc{int}{GetEndPos1}{\void} + +Returns ending position of the text {\it between} this tag and paired +ending tag. +See explanation (returned position is marked with '^'): + +\begin{verbatim} +bla bla bla bla bla intenal text bla bla + ^ +\end{verbatim} + +\membersection{wxHtmlTag::GetEndPos2}\label{wxhtmltaggetendpos2} + +\constfunc{int}{GetEndPos2}{\void} + +Returns ending position 2 of the text {\it between} this tag and paired +ending tag. +See explanation (returned position is marked with '^'): + +\begin{verbatim} +bla bla bla bla bla intenal text bla bla + ^ +\end{verbatim} + +\membersection{wxHtmlTag::GetName}\label{wxhtmltaggetname} + +\constfunc{wxString}{GetName}{\void} + +Returns tag's name. The name is always in uppercase and it doesn't contain +'<' or '/' characters. (So the name of {\tt } tag is "FONT" +and name of {\tt } is "TABLE") \membersection{wxHtmlTag::GetParam}\label{wxhtmltaggetparam} @@ -73,46 +105,6 @@ dummy = tag.GetParam("COLOR", TRUE); // dummy == "\"#0000FF\"" -- see the difference!! \end{verbatim} - - -\membersection{wxHtmlTag::ScanParam}\label{wxhtmltagscanparam} - -\constfunc{wxString}{ScanParam}{\param{const wxString\& }{par}, \param{const char *}{format}, fuck} - -This method scans given parameter. Usage is exatly the same as sscanf's -usage except that you don't pass string but param name as the first parameter. - -\wxheading{Parameters} - -\docparam{par}{The name of tag you wanna query (in uppercase)} - -\docparam{format}{scanf()-like format string.} - -\wxheading{Cygwin and Mingw32} - -If you're using Cygwin beta 20 or Mingw32 compiler please remember -that ScanParam() is only partially implemented!! The problem is -that under Cygnus' GCC vsscanf() function is not implemented. I workarounded -this in a way which causes that you can use only one parameter in ... -(and only one \% in {\it format}) - -\membersection{wxHtmlTag::GetAllParams}\label{wxhtmltaggetallparams} - -\constfunc{const wxString\&}{GetAllParams}{\void} - -Returns string with all params. - -Example : tag contains {\tt }. Call to -tag.GetAllParams() would return {\tt SIZE=+2 COLOR="\#000000"}. - -\membersection{wxHtmlTag::IsEnding}\label{wxhtmltagisending} - -\constfunc{bool}{IsEnding}{\void} - -Returns TRUE if this tag is ending one. -({\tt } is ending tag, {\tt } is not) - - \membersection{wxHtmlTag::HasEnding}\label{wxhtmltaghasending} \constfunc{bool}{HasEnding}{\void} @@ -134,43 +126,44 @@ In this example tags HTML and BODY have ending tags, first P and BR doesn't have ending tag while the second P has. The third P tag (which is ending itself) of course doesn't have ending tag. -\membersection{wxHtmlTag::GetBeginPos}\label{wxhtmltaggetbeginpos} +\membersection{wxHtmlTag::HasParam}\label{wxhtmltaghasparam} -\constfunc{int}{GetBeginPos}{\void} +\constfunc{bool}{HasParam}{\param{const wxString\& }{par}} -Returns beginning position of the text {\it between} this tag and paired -ending tag. -See explanation (returned position is marked with '^'): +Returns TRUE if the tag has parameter of the given name. +Example : {\tt } has two parameters named +"SIZE" and "COLOR". -\begin{verbatim} -bla bla bla bla bla intenal text bla bla - ^ -\end{verbatim} +\wxheading{Parameters} -\membersection{wxHtmlTag::GetEndPos1}\label{wxhtmltaggetendpos1} +\docparam{par}{the parameter you're looking for. It must {\it always} be in uppercase!} -\constfunc{int}{GetEndPos1}{\void} +\membersection{wxHtmlTag::IsEnding}\label{wxhtmltagisending} -Returns ending position of the text {\it between} this tag and paired -ending tag. -See explanation (returned position is marked with '^'): +\constfunc{bool}{IsEnding}{\void} -\begin{verbatim} -bla bla bla bla bla intenal text bla bla - ^ -\end{verbatim} +Returns TRUE if this tag is ending one. +({\tt } is ending tag, {\tt } is not) -\membersection{wxHtmlTag::GetEndPos2}\label{wxhtmltaggetendpos2} +\membersection{wxHtmlTag::ScanParam}\label{wxhtmltagscanparam} -\constfunc{int}{GetEndPos2}{\void} +\constfunc{wxString}{ScanParam}{\param{const wxString\& }{par}, \param{const char *}{format}, fuck} -Returns ending position 2 of the text {\it between} this tag and paired -ending tag. -See explanation (returned position is marked with '^'): +This method scans given parameter. Usage is exatly the same as sscanf's +usage except that you don't pass string but param name as the first parameter. -\begin{verbatim} -bla bla bla bla bla intenal text bla bla - ^ -\end{verbatim} +\wxheading{Parameters} + +\docparam{par}{The name of tag you wanna query (in uppercase)} + +\docparam{format}{scanf()-like format string.} + +\wxheading{Cygwin and Mingw32} + +If you're using Cygwin beta 20 or Mingw32 compiler please remember +that ScanParam() is only partially implemented!! The problem is +that under Cygnus' GCC vsscanf() function is not implemented. I workarounded +this in a way which causes that you can use only one parameter in ... +(and only one \% in {\it format})