]> git.saurik.com Git - wxWidgets.git/blob - include/wx/html/htmltag.h
Committing in .
[wxWidgets.git] / include / wx / html / htmltag.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: htmltag.h
3 // Purpose: wxHtmlTag class (represents single tag)
4 // Author: Vaclav Slavik
5 // RCS-ID: $Id$
6 // Copyright: (c) 1999 Vaclav Slavik
7 // Licence: wxWindows Licence
8 /////////////////////////////////////////////////////////////////////////////
9
10
11 #ifndef _WX_HTMLTAG_H_
12 #define _WX_HTMLTAG_H_
13
14 #ifdef __GNUG__
15 #pragma interface
16 #endif
17
18 #include "wx/defs.h"
19 #if wxUSE_HTML
20
21
22 //--------------------------------------------------------------------------------
23 // wxHtmlTagsCache
24 // !! INTERNAL STRUCTURE !! Do not use in your program!
25 // This structure contains information on positions of tags
26 // in the string being parsed
27 //--------------------------------------------------------------------------------
28
29 typedef struct {
30 int Key;
31 // this is "pos" value passed to wxHtmlTag's constructor.
32 // it is position of '<' character of the tag
33 int End1, End2;
34 // end positions for the tag:
35 // end1 is '<' of ending tag,
36 // end2 is '>' or both are
37 // -1 if there is no ending tag for this one...
38 // or -2 if this is ending tag </...>
39 wxChar *Name;
40 // name of this tag
41 } sCacheItem;
42
43
44
45 class wxHtmlTagsCache : public wxObject
46 {
47 DECLARE_DYNAMIC_CLASS(wxHtmlTagsCache)
48
49 private:
50 sCacheItem *m_Cache;
51 int m_CacheSize;
52 int m_CachePos;
53
54 public:
55 wxHtmlTagsCache() : wxObject() {m_CacheSize = 0; m_Cache = NULL;}
56 wxHtmlTagsCache(const wxString& source);
57 ~wxHtmlTagsCache() {free(m_Cache);}
58
59 void QueryTag(int at, int* end1, int* end2);
60 // Finds parameters for tag starting at at and fills the variables
61 };
62
63
64
65 //--------------------------------------------------------------------------------
66 // wxHtmlTag
67 // This represents single tag. It is used as internal structure
68 // by wxHtmlParser.
69 //--------------------------------------------------------------------------------
70
71 class WXDLLEXPORT wxHtmlTag : public wxObject
72 {
73 DECLARE_CLASS(wxHtmlTag)
74
75 public:
76 wxHtmlTag(const wxString& source, int pos, int end_pos, wxHtmlTagsCache* cache);
77 // constructs wxHtmlTag object based on HTML tag.
78 // The tag begins (with '<' character) at position pos in source
79 // end_pos is position where parsing ends (usually end of document)
80
81 inline wxString GetName() const {return m_Name;}
82 // Returns tag's name in uppercase.
83
84 bool HasParam(const wxString& par) const;
85 // Returns TRUE if the tag has given parameter. Parameter
86 // should always be in uppercase.
87 // Example : <IMG SRC="test.jpg"> HasParam("SRC") returns TRUE
88
89 wxString GetParam(const wxString& par, bool with_commas = FALSE) const;
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)
94 // (or ("WhaT.jpg") if with_commas == TRUE)
95
96 int ScanParam(const wxString& par, wxChar *format, void *param) const;
97 // Scans param like scanf() functions family do.
98 // Example : ScanParam("COLOR", "\"#%X\"", &clr);
99 // This is always with with_commas=FALSE
100 // Returns number of scanned values
101 // (like sscanf() does)
102 // NOTE: unlike scanf family, this function only accepts
103 // *one* parameter !
104
105 inline const wxString& GetAllParams() const {return m_Params;}
106 // Returns string containing all params.
107
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>)
111
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>)
115
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
126
127 private:
128 wxString m_Name, m_Params;
129 int m_Begin, m_End1, m_End2;
130 bool m_Ending;
131
132 };
133
134
135
136
137
138 #endif
139
140 #endif // _WX_HTMLTAG_H_
141