]>
git.saurik.com Git - wxWidgets.git/blob - interface/html/htmltag.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: html/htmltag.h
3 // Purpose: documentation for wxHtmlTag class
4 // Author: wxWidgets team
6 // Licence: wxWindows license
7 /////////////////////////////////////////////////////////////////////////////
11 @headerfile htmltag.h wx/html/htmltag.h
13 This class represents a single HTML tag.
14 It is used by @ref overview_handlers "tag handlers".
23 Constructor. You will probably never have to construct a wxHtmlTag object
24 yourself. Feel free to ignore the constructor parameters.
25 Have a look at src/html/htmlpars.cpp if you're interested in creating it.
27 wxHtmlTag(wxHtmlTag
* parent
, const wxString
& source
, int pos
,
28 int end_pos
, wxHtmlTagsCache
* cache
,
29 wxHtmlEntitiesParser
* entParser
);
32 Returns a string containing all parameters.
34 Example : tag contains @c FONT SIZE=+2 COLOR="#000000". Call to
35 tag.GetAllParams() would return @c SIZE=+2 COLOR="#000000".
37 const wxString
GetAllParams();
40 Returns beginning position of the text @e between this tag and paired
42 See explanation (returned position is marked with '|'):
47 Returns ending position of the text @e between this tag and paired
49 See explanation (returned position is marked with '|'):
54 Returns ending position 2 of the text @e between this tag and paired
56 See explanation (returned position is marked with '|'):
61 Returns tag's name. The name is always in uppercase and it doesn't contain
62 '' or '/' characters. (So the name of @c FONT SIZE=+2 tag is "FONT"
63 and name of @c /table is "TABLE")
68 Returns the value of the parameter. You should check whether the
69 parameter exists or not (use wxHtmlTag::HasParam) first.
75 @true if you want to get quotes as well. See example.
77 wxString
GetParam(const wxString
& par
, bool with_quotes
= @
false);
80 Interprets tag parameter @e par as colour specification and saves its value
81 into wxColour variable pointed by @e clr.
83 Returns @true on success and @false if @e par is not colour specification or
84 if the tag has no such parameter.
86 bool GetParamAsColour(const wxString
& par
, wxColour
* clr
);
89 Interprets tag parameter @e par as an integer and saves its value
90 into int variable pointed by @e value.
92 Returns @true on success and @false if @e par is not an integer or
93 if the tag has no such parameter.
95 bool GetParamAsInt(const wxString
& par
, int * value
);
98 Returns @true if this tag is paired with ending tag, @false otherwise.
100 See the example of HTML document:
101 In this example tags HTML and BODY have ending tags, first P and BR
102 doesn't have ending tag while the second P has. The third P tag (which
103 is ending itself) of course doesn't have ending tag.
108 Returns @true if the tag has a parameter of the given name.
109 Example : @c FONT SIZE=+2 COLOR="#FF00FF" has two parameters named
113 the parameter you're looking for.
115 bool HasParam(const wxString
& par
);
118 This method scans the given parameter. Usage is exactly the same as sscanf's
119 usage except that you don't pass a string but a parameter name as the first
121 and you can only retrieve one value (i.e. you can use only one "%" element
125 The name of the tag you want to query
128 scanf()-like format string.
131 pointer to a variable to store the value in
133 wxString
ScanParam(const wxString
& par
, const wxChar
* format
,