Logo ROOT   6.30.04
Reference Guide
 All Namespaces Files Pages
TGHtmlTokens.h
Go to the documentation of this file.
1 // $Id$
2 // Author: Valeriy Onuchin 03/05/2007
3 
4 /*************************************************************************
5  * Copyright (C) 1995-2001, Rene Brun, Fons Rademakers and Reiner Rohlfs *
6  * All rights reserved. *
7  * *
8  * For the licensing terms see $ROOTSYS/LICENSE. *
9  * For the list of contributors see $ROOTSYS/README/CREDITS. *
10  *************************************************************************/
11 
12 /**************************************************************************
13 
14  HTML widget for xclass. Based on tkhtml 1.28
15  Copyright (C) 1997-2000 D. Richard Hipp <drh@acm.org>
16  Copyright (C) 2002-2003 Hector Peraza.
17 
18  This library is free software; you can redistribute it and/or
19  modify it under the terms of the GNU Library General Public
20  License as published by the Free Software Foundation; either
21  version 2 of the License, or (at your option) any later version.
22 
23  This library is distributed in the hope that it will be useful,
24  but WITHOUT ANY WARRANTY; without even the implied warranty of
25  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
26  Library General Public License for more details.
27 
28  You should have received a copy of the GNU Library General Public
29  License along with this library; if not, write to the Free
30  Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
31 
32 **************************************************************************/
33 
34 #ifndef ROOT_TGHtmlTokens
35 #define ROOT_TGHtmlTokens
36 
37 // NOTE: this list was generated automatically. If you make any
38 // modifications to it, you'll have to modify also the OHtmlTokenMap.cc
39 // file accordingly.
40 
41 enum {
42  Html_Text = 1,
43  Html_Space,
44  Html_Unknown,
45  Html_Block,
46  Html_A,
47  Html_EndA,
48  Html_ADDRESS,
49  Html_EndADDRESS,
50  Html_APPLET,
51  Html_EndAPPLET,
52  Html_AREA,
53  Html_B,
54  Html_EndB,
55  Html_BASE,
56  Html_BASEFONT,
57  Html_EndBASEFONT,
58  Html_BGSOUND,
59  Html_BIG,
60  Html_EndBIG,
61  Html_BLOCKQUOTE,
62  Html_EndBLOCKQUOTE,
63  Html_BODY,
64  Html_EndBODY,
65  Html_BR,
66  Html_CAPTION,
67  Html_EndCAPTION,
68  Html_CENTER,
69  Html_EndCENTER,
70  Html_CITE,
71  Html_EndCITE,
72  Html_CODE,
73  Html_EndCODE,
74  Html_COMMENT,
75  Html_EndCOMMENT,
76  Html_DD,
77  Html_EndDD,
78  Html_DFN,
79  Html_EndDFN,
80  Html_DIR,
81  Html_EndDIR,
82  Html_DIV,
83  Html_EndDIV,
84  Html_DL,
85  Html_EndDL,
86  Html_DT,
87  Html_EndDT,
88  Html_EM,
89  Html_EndEM,
90  Html_EMBED,
91  Html_FONT,
92  Html_EndFONT,
93  Html_FORM,
94  Html_EndFORM,
95  Html_FRAME,
96  Html_EndFRAME,
97  Html_FRAMESET,
98  Html_EndFRAMESET,
99  Html_H1,
100  Html_EndH1,
101  Html_H2,
102  Html_EndH2,
103  Html_H3,
104  Html_EndH3,
105  Html_H4,
106  Html_EndH4,
107  Html_H5,
108  Html_EndH5,
109  Html_H6,
110  Html_EndH6,
111  Html_HR,
112  Html_HTML,
113  Html_EndHTML,
114  Html_I,
115  Html_EndI,
116  Html_IFRAME,
117  Html_IMG,
118  Html_INPUT,
119  Html_ISINDEX,
120  Html_KBD,
121  Html_EndKBD,
122  Html_LI,
123  Html_EndLI,
124  Html_LINK,
125  Html_LISTING,
126  Html_EndLISTING,
127  Html_MAP,
128  Html_EndMAP,
129  Html_MARQUEE,
130  Html_EndMARQUEE,
131  Html_MENU,
132  Html_EndMENU,
133  Html_META,
134  Html_NEXTID,
135  Html_NOBR,
136  Html_EndNOBR,
137  Html_NOEMBED,
138  Html_EndNOEMBED,
139  Html_NOFRAMES,
140  Html_EndNOFRAMES,
141  Html_NOSCRIPT,
142  Html_EndNOSCRIPT,
143  Html_OL,
144  Html_EndOL,
145  Html_OPTION,
146  Html_EndOPTION,
147  Html_P,
148  Html_EndP,
149  Html_PARAM,
150  Html_EndPARAM,
151  Html_PLAINTEXT,
152  Html_PRE,
153  Html_EndPRE,
154  Html_S,
155  Html_EndS,
156  Html_SAMP,
157  Html_EndSAMP,
158  Html_SCRIPT,
159  Html_SELECT,
160  Html_EndSELECT,
161  Html_SMALL,
162  Html_EndSMALL,
163  Html_STRIKE,
164  Html_EndSTRIKE,
165  Html_STRONG,
166  Html_EndSTRONG,
167  Html_STYLE,
168  Html_SUB,
169  Html_EndSUB,
170  Html_SUP,
171  Html_EndSUP,
172  Html_TABLE,
173  Html_EndTABLE,
174  Html_TD,
175  Html_EndTD,
176  Html_TEXTAREA,
177  Html_EndTEXTAREA,
178  Html_TH,
179  Html_EndTH,
180  Html_TITLE,
181  Html_EndTITLE,
182  Html_TR,
183  Html_EndTR,
184  Html_TT,
185  Html_EndTT,
186  Html_U,
187  Html_EndU,
188  Html_UL,
189  Html_EndUL,
190  Html_VAR,
191  Html_EndVAR,
192  Html_WBR,
193  Html_XMP,
194  Html_EndXMP,
195  Html__TypeCount
196 };
197 
198 #define Html_TypeCount (Html__TypeCount - 1)
199 #define HTML_MARKUP_COUNT (Html__TypeCount - 5)
200 #define HTML_MARKUP_HASH_SIZE (Html__TypeCount + 11)
201 
202 #endif // ROOT_TGHtmlTokens