]> git.saurik.com Git - wxWidgets.git/blame - include/wx/html/htmltag.h
remove warnings of intentionally unreachable code
[wxWidgets.git] / include / wx / html / htmltag.h
CommitLineData
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
6acba9a7
VS
20class WXDLLIMPEXP_CORE wxColour;
21class WXDLLIMPEXP_HTML wxHtmlEntitiesParser;
8bd72d90 22
97494971 23//-----------------------------------------------------------------------------
5526e819 24// wxHtmlTagsCache
97494971
VS
25// - internal wxHTML class, do not use!
26//-----------------------------------------------------------------------------
5526e819 27
97494971 28struct wxHtmlCacheItem;
5526e819 29
6acba9a7 30class WXDLLIMPEXP_HTML wxHtmlTagsCache : public wxObject
5526e819
VS
31{
32 DECLARE_DYNAMIC_CLASS(wxHtmlTagsCache)
33
97494971
VS
34private:
35 wxHtmlCacheItem *m_Cache;
36 int m_CacheSize;
37 int m_CachePos;
5526e819 38
97494971
VS
39public:
40 wxHtmlTagsCache() : wxObject() {m_CacheSize = 0; m_Cache = NULL;}
41 wxHtmlTagsCache(const wxString& source);
d3c7fc99 42 virtual ~wxHtmlTagsCache() {free(m_Cache);}
5526e819 43
97494971
VS
44 // Finds parameters for tag starting at at and fills the variables
45 void QueryTag(int at, int* end1, int* end2);
22f3361e
VZ
46
47 DECLARE_NO_COPY_CLASS(wxHtmlTagsCache)
5526e819
VS
48};
49
50
5526e819
VS
51//--------------------------------------------------------------------------------
52// wxHtmlTag
53// This represents single tag. It is used as internal structure
54// by wxHtmlParser.
55//--------------------------------------------------------------------------------
56
6acba9a7 57class WXDLLIMPEXP_HTML wxHtmlTag : public wxObject
5526e819
VS
58{
59 DECLARE_CLASS(wxHtmlTag)
60
6c62a62b 61protected:
97494971
VS
62 // constructs wxHtmlTag object based on HTML tag.
63 // The tag begins (with '<' character) at position pos in source
64 // end_pos is position where parsing ends (usually end of document)
6c62a62b
VS
65 wxHtmlTag(wxHtmlTag *parent,
66 const wxString& source, int pos, int end_pos,
8bd72d90 67 wxHtmlTagsCache *cache,
6c62a62b
VS
68 wxHtmlEntitiesParser *entParser);
69 friend class wxHtmlParser;
70public:
d3c7fc99 71 virtual ~wxHtmlTag();
6c62a62b
VS
72
73 wxHtmlTag *GetParent() const {return m_Parent;}
74 wxHtmlTag *GetFirstSibling() const;
75 wxHtmlTag *GetLastSibling() const;
76 wxHtmlTag *GetChildren() const { return m_FirstChild; }
77 wxHtmlTag *GetPreviousSibling() const { return m_Prev; }
78 wxHtmlTag *GetNextSibling() const {return m_Next; }
79 // Return next tag, as if tree had been flattened
80 wxHtmlTag *GetNextTag() const;
97494971
VS
81
82 // Returns tag's name in uppercase.
83 inline wxString GetName() const {return m_Name;}
84
6953da00 85 // Returns true if the tag has given parameter. Parameter
97494971 86 // should always be in uppercase.
6953da00 87 // Example : <IMG SRC="test.jpg"> HasParam("SRC") returns true
97494971
VS
88 bool HasParam(const wxString& par) const;
89
90 // Returns value of the param. Value is in uppercase unless it is
91 // enclosed with "
92 // Example : <P align=right> GetParam("ALIGN") returns (RIGHT)
93 // <P IMG SRC="WhaT.jpg"> GetParam("SRC") returns (WhaT.jpg)
6953da00
WS
94 // (or ("WhaT.jpg") if with_commas == true)
95 wxString GetParam(const wxString& par, bool with_commas = false) const;
97494971 96
04dbb646 97 // Convenience functions:
8bd72d90
VS
98 bool GetParamAsColour(const wxString& par, wxColour *clr) const;
99 bool GetParamAsInt(const wxString& par, int *clr) const;
100
101 // Scans param like scanf() functions family does.
97494971 102 // Example : ScanParam("COLOR", "\"#%X\"", &clr);
6953da00 103 // This is always with with_commas=false
97494971
VS
104 // Returns number of scanned values
105 // (like sscanf() does)
106 // NOTE: unlike scanf family, this function only accepts
107 // *one* parameter !
90350682 108 int ScanParam(const wxString& par, const wxChar *format, void *param) const;
97494971
VS
109
110 // Returns string containing all params.
8bd72d90 111 wxString GetAllParams() const;
97494971 112
6953da00 113 // return true if this there is matching ending tag
97494971
VS
114 inline bool HasEnding() const {return m_End1 >= 0;}
115
116 // returns beginning position of _internal_ block of text
117 // See explanation (returned value is marked with *):
118 // bla bla bla <MYTAG>* bla bla intenal text</MYTAG> bla bla
119 inline int GetBeginPos() const {return m_Begin;}
120 // returns ending position of _internal_ block of text.
121 // bla bla bla <MYTAG> bla bla intenal text*</MYTAG> bla bla
122 inline int GetEndPos1() const {return m_End1;}
123 // returns end position 2 :
124 // bla bla bla <MYTAG> bla bla internal text</MYTAG>* bla bla
125 inline int GetEndPos2() const {return m_End2;}
126
127private:
8bd72d90 128 wxString m_Name;
97494971 129 int m_Begin, m_End1, m_End2;
8bd72d90 130 wxArrayString m_ParamNames, m_ParamValues;
6c62a62b
VS
131
132 // DOM tree relations:
133 wxHtmlTag *m_Next;
134 wxHtmlTag *m_Prev;
135 wxHtmlTag *m_FirstChild, *m_LastChild;
136 wxHtmlTag *m_Parent;
22f3361e
VZ
137
138 DECLARE_NO_COPY_CLASS(wxHtmlTag)
69941f05 139};
5526e819
VS
140
141
142
143
5526e819
VS
144
145#endif
69941f05
VS
146
147#endif // _WX_HTMLTAG_H_
148