]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/html/htmltag.h
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxHtmlTag class (represents single tag)
4 // Author: Vaclav Slavik
5 // Copyright: (c) 1999 Vaclav Slavik
6 // Licence: wxWindows Licence
7 /////////////////////////////////////////////////////////////////////////////
21 //--------------------------------------------------------------------------------
23 // !! INTERNAL STRUCTURE !! Do not use in your program!
24 // This structure contains information on positions of tags
25 // in the string being parsed
26 //--------------------------------------------------------------------------------
30 // this is "pos" value passed to wxHtmlTag's constructor.
31 // it is position of '<' character of the tag
33 // end positions for the tag:
34 // end1 is '<' of ending tag,
35 // end2 is '>' or both are
36 // -1 if there is no ending tag for this one...
37 // or -2 if this is ending tag </...>
44 class wxHtmlTagsCache
: public wxObject
46 DECLARE_DYNAMIC_CLASS(wxHtmlTagsCache
)
54 wxHtmlTagsCache() : wxObject() {m_CacheSize
= 0; m_Cache
= NULL
;}
55 wxHtmlTagsCache(const wxString
& source
);
56 ~wxHtmlTagsCache() {free(m_Cache
);}
58 void QueryTag(int at
, int* end1
, int* end2
);
59 // Finds parameters for tag starting at at and fills the variables
64 //--------------------------------------------------------------------------------
66 // This represents single tag. It is used as internal structure
68 //--------------------------------------------------------------------------------
70 class WXDLLEXPORT wxHtmlTag
: public wxObject
72 DECLARE_CLASS(wxHtmlTag
)
75 wxString m_Name
, m_Params
;
76 int m_Begin
, m_End1
, m_End2
;
80 wxHtmlTag(const wxString
& source
, int pos
, int end_pos
, wxHtmlTagsCache
* cache
);
81 // constructs wxHtmlTag object based on HTML tag.
82 // The tag begins (with '<' character) at position pos in source
83 // end_pos is position where parsing ends (usually end of document)
85 inline wxString
GetName() const {return m_Name
;};
86 // Returns tag's name in uppercase.
88 bool HasParam(const wxString
& par
) const;
89 // Returns TRUE if the tag has given parameter. Parameter
90 // should always be in uppercase.
91 // Example : <IMG SRC="test.jpg"> HasParam("SRC") returns TRUE
93 wxString
GetParam(const wxString
& par
, bool with_commas
= FALSE
) const;
94 // Returns value of the param. Value is in uppercase unless it is
96 // Example : <P align=right> GetParam("ALIGN") returns (RIGHT)
97 // <P IMG SRC="WhaT.jpg"> GetParam("SRC") returns (WhaT.jpg)
98 // (or ("WhaT.jpg") if with_commas == TRUE)
100 void ScanParam(const wxString
& par
, char *format
, ...) const;
101 // Scans param like scanf() functions family do.
102 // Example : ScanParam("COLOR", "\"#%X\"", &clr);
103 // This is always with with_commas=FALSE
105 inline const wxString
& GetAllParams() const {return m_Params
;};
106 // Returns string containing all params.
108 inline bool IsEnding() const {return m_Ending
;};
109 // return TRUE if this is ending tag (</something>) or FALSE
110 // if it isn't (<something>)
112 inline bool HasEnding() const {return m_End1
>= 0;};
113 // return TRUE if this is ending tag (</something>) or FALSE
114 // if it isn't (<something>)
116 inline int GetBeginPos() const {return m_Begin
;};
117 // returns beginning position of _internal_ block of text
118 // See explanation (returned value is marked with *):
119 // bla bla bla <MYTAG>* bla bla intenal text</MYTAG> bla bla
120 inline int GetEndPos1() const {return m_End1
;};
121 // returns ending position of _internal_ block of text.
122 // bla bla bla <MYTAG> bla bla intenal text*</MYTAG> bla bla
123 inline int GetEndPos2() const {return m_End2
;};
124 // returns end position 2 :
125 // bla bla bla <MYTAG> bla bla internal text</MYTAG>* bla bla
133 #endif // __HTMLTAG_H__