]>
Commit | Line | Data |
---|---|---|
5526e819 VS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: htmltag.h | |
3 | // Purpose: wxHtmlTag class (represents single tag) | |
4 | // Author: Vaclav Slavik | |
69941f05 | 5 | // RCS-ID: $Id$ |
5526e819 | 6 | // Copyright: (c) 1999 Vaclav Slavik |
65571936 | 7 | // Licence: wxWindows licence |
5526e819 VS |
8 | ///////////////////////////////////////////////////////////////////////////// |
9 | ||
69941f05 VS |
10 | #ifndef _WX_HTMLTAG_H_ |
11 | #define _WX_HTMLTAG_H_ | |
5526e819 | 12 | |
5526e819 | 13 | #include "wx/defs.h" |
04dbb646 | 14 | |
5526e819 VS |
15 | #if wxUSE_HTML |
16 | ||
04dbb646 | 17 | #include "wx/object.h" |
360b63dd | 18 | #include "wx/arrstr.h" |
04dbb646 | 19 | |
b5dbe15d VS |
20 | class WXDLLIMPEXP_FWD_CORE wxColour; |
21 | class WXDLLIMPEXP_FWD_HTML wxHtmlEntitiesParser; | |
8bd72d90 | 22 | |
97494971 | 23 | //----------------------------------------------------------------------------- |
5526e819 | 24 | // wxHtmlTagsCache |
97494971 VS |
25 | // - internal wxHTML class, do not use! |
26 | //----------------------------------------------------------------------------- | |
5526e819 | 27 | |
4fe7567d | 28 | class wxHtmlTagsCacheData; |
5526e819 | 29 | |
7da48d49 | 30 | class WXDLLIMPEXP_HTML wxHtmlTagsCache |
5526e819 | 31 | { |
97494971 | 32 | private: |
4fe7567d | 33 | wxHtmlTagsCacheData *m_Cache; |
b1a3a964 | 34 | int m_CachePos; |
4fe7567d VS |
35 | |
36 | wxHtmlTagsCacheData& Cache() { return *m_Cache; } | |
5526e819 | 37 | |
97494971 | 38 | public: |
4fe7567d | 39 | wxHtmlTagsCache() {m_Cache = NULL;} |
97494971 | 40 | wxHtmlTagsCache(const wxString& source); |
4fe7567d | 41 | virtual ~wxHtmlTagsCache(); |
5526e819 | 42 | |
97494971 | 43 | // Finds parameters for tag starting at at and fills the variables |
b1a3a964 VS |
44 | void QueryTag(const wxString::const_iterator& at, |
45 | const wxString::const_iterator& inputEnd, | |
46 | wxString::const_iterator *end1, | |
47 | wxString::const_iterator *end2, | |
48 | bool *hasEnding); | |
22f3361e VZ |
49 | |
50 | DECLARE_NO_COPY_CLASS(wxHtmlTagsCache) | |
5526e819 VS |
51 | }; |
52 | ||
53 | ||
5526e819 VS |
54 | //-------------------------------------------------------------------------------- |
55 | // wxHtmlTag | |
56 | // This represents single tag. It is used as internal structure | |
57 | // by wxHtmlParser. | |
58 | //-------------------------------------------------------------------------------- | |
59 | ||
7da48d49 | 60 | class WXDLLIMPEXP_HTML wxHtmlTag |
5526e819 | 61 | { |
6c62a62b | 62 | protected: |
97494971 VS |
63 | // constructs wxHtmlTag object based on HTML tag. |
64 | // The tag begins (with '<' character) at position pos in source | |
65 | // end_pos is position where parsing ends (usually end of document) | |
6c62a62b | 66 | wxHtmlTag(wxHtmlTag *parent, |
b1a3a964 VS |
67 | const wxString *source, |
68 | const wxString::const_iterator& pos, | |
69 | const wxString::const_iterator& end_pos, | |
8bd72d90 | 70 | wxHtmlTagsCache *cache, |
6c62a62b VS |
71 | wxHtmlEntitiesParser *entParser); |
72 | friend class wxHtmlParser; | |
73 | public: | |
7da48d49 | 74 | ~wxHtmlTag(); |
6c62a62b VS |
75 | |
76 | wxHtmlTag *GetParent() const {return m_Parent;} | |
77 | wxHtmlTag *GetFirstSibling() const; | |
78 | wxHtmlTag *GetLastSibling() const; | |
79 | wxHtmlTag *GetChildren() const { return m_FirstChild; } | |
80 | wxHtmlTag *GetPreviousSibling() const { return m_Prev; } | |
81 | wxHtmlTag *GetNextSibling() const {return m_Next; } | |
82 | // Return next tag, as if tree had been flattened | |
83 | wxHtmlTag *GetNextTag() const; | |
97494971 VS |
84 | |
85 | // Returns tag's name in uppercase. | |
86 | inline wxString GetName() const {return m_Name;} | |
87 | ||
6953da00 | 88 | // Returns true if the tag has given parameter. Parameter |
97494971 | 89 | // should always be in uppercase. |
6953da00 | 90 | // Example : <IMG SRC="test.jpg"> HasParam("SRC") returns true |
97494971 VS |
91 | bool HasParam(const wxString& par) const; |
92 | ||
93 | // Returns value of the param. Value is in uppercase unless it is | |
94 | // enclosed with " | |
95 | // Example : <P align=right> GetParam("ALIGN") returns (RIGHT) | |
96 | // <P IMG SRC="WhaT.jpg"> GetParam("SRC") returns (WhaT.jpg) | |
614f9713 VS |
97 | // (or ("WhaT.jpg") if with_quotes == true) |
98 | wxString GetParam(const wxString& par, bool with_quotes = false) const; | |
97494971 | 99 | |
04dbb646 | 100 | // Convenience functions: |
8bd72d90 VS |
101 | bool GetParamAsColour(const wxString& par, wxColour *clr) const; |
102 | bool GetParamAsInt(const wxString& par, int *clr) const; | |
103 | ||
104 | // Scans param like scanf() functions family does. | |
97494971 | 105 | // Example : ScanParam("COLOR", "\"#%X\"", &clr); |
614f9713 | 106 | // This is always with with_quotes=false |
97494971 VS |
107 | // Returns number of scanned values |
108 | // (like sscanf() does) | |
109 | // NOTE: unlike scanf family, this function only accepts | |
110 | // *one* parameter ! | |
d7640339 VS |
111 | int ScanParam(const wxString& par, const char *format, void *param) const; |
112 | int ScanParam(const wxString& par, const wchar_t *format, void *param) const; | |
97494971 VS |
113 | |
114 | // Returns string containing all params. | |
8bd72d90 | 115 | wxString GetAllParams() const; |
97494971 | 116 | |
b1a3a964 VS |
117 | // return true if there is matching ending tag |
118 | inline bool HasEnding() const {return m_hasEnding;} | |
97494971 | 119 | |
0e89a51a VS |
120 | // returns beginning position of _internal_ block of text as iterator |
121 | // into parser's source string (see wxHtmlParser::GetSource()) | |
97494971 VS |
122 | // See explanation (returned value is marked with *): |
123 | // bla bla bla <MYTAG>* bla bla intenal text</MYTAG> bla bla | |
b1a3a964 VS |
124 | wxString::const_iterator GetBeginIter() const |
125 | { return m_Begin; } | |
0e89a51a VS |
126 | // returns ending position of _internal_ block of text as iterator |
127 | // into parser's source string (see wxHtmlParser::GetSource()): | |
97494971 | 128 | // bla bla bla <MYTAG> bla bla intenal text*</MYTAG> bla bla |
61679695 | 129 | wxString::const_iterator GetEndIter1() const { return m_End1; } |
0e89a51a VS |
130 | // returns end position 2 as iterator |
131 | // into parser's source string (see wxHtmlParser::GetSource()): | |
97494971 | 132 | // bla bla bla <MYTAG> bla bla internal text</MYTAG>* bla bla |
61679695 | 133 | wxString::const_iterator GetEndIter2() const { return m_End2; } |
b1a3a964 VS |
134 | |
135 | #if WXWIN_COMPATIBILITY_2_8 | |
0e89a51a | 136 | // use GetBeginIter(), GetEndIter1() and GetEndIter2() instead |
b1a3a964 VS |
137 | wxDEPRECATED( inline int GetBeginPos() const ); |
138 | wxDEPRECATED( inline int GetEndPos1() const ); | |
139 | wxDEPRECATED( inline int GetEndPos2() const ); | |
140 | #endif // WXWIN_COMPATIBILITY_2_8 | |
97494971 VS |
141 | |
142 | private: | |
8bd72d90 | 143 | wxString m_Name; |
b1a3a964 VS |
144 | bool m_hasEnding; |
145 | wxString::const_iterator m_Begin, m_End1, m_End2; | |
8bd72d90 | 146 | wxArrayString m_ParamNames, m_ParamValues; |
b1a3a964 VS |
147 | #if WXWIN_COMPATIBILITY_2_8 |
148 | wxString::const_iterator m_sourceStart; | |
149 | #endif | |
6c62a62b VS |
150 | |
151 | // DOM tree relations: | |
152 | wxHtmlTag *m_Next; | |
153 | wxHtmlTag *m_Prev; | |
154 | wxHtmlTag *m_FirstChild, *m_LastChild; | |
155 | wxHtmlTag *m_Parent; | |
22f3361e VZ |
156 | |
157 | DECLARE_NO_COPY_CLASS(wxHtmlTag) | |
69941f05 | 158 | }; |
5526e819 VS |
159 | |
160 | ||
b1a3a964 VS |
161 | #if WXWIN_COMPATIBILITY_2_8 |
162 | inline int wxHtmlTag::GetBeginPos() const { return m_Begin - m_sourceStart; } | |
163 | inline int wxHtmlTag::GetEndPos1() const { return m_End1 - m_sourceStart; } | |
164 | inline int wxHtmlTag::GetEndPos2() const { return m_End2 - m_sourceStart; } | |
165 | #endif // WXWIN_COMPATIBILITY_2_8 | |
5526e819 VS |
166 | |
167 | ||
5526e819 | 168 | |
b1a3a964 VS |
169 | |
170 | #endif // wxUSE_HTML | |
69941f05 VS |
171 | |
172 | #endif // _WX_HTMLTAG_H_ | |
173 |