aboutsummaryrefslogtreecommitdiff
path: root/src/hyper/token.h
blob: 24a3c3f3af413c68857415b8915a98324128c828 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
/*
   Copyright (C) 1991-2002, The Numerical Algorithms Group Ltd.
   All rights reserved.
   Copyright (C) 2007-2008, Gabriel Dos Reis.
   All right reserved.

   Redistribution and use in source and binary forms, with or without
   modification, are permitted provided that the following conditions are
   met:

       - Redistributions of source code must retain the above copyright
         notice, this list of conditions and the following disclaimer.

       - Redistributions in binary form must reproduce the above copyright
         notice, this list of conditions and the following disclaimer in
         the documentation and/or other materials provided with the
         distribution.

       - Neither the name of The Numerical Algorithms Group Ltd. nor the
         names of its contributors may be used to endorse or promote products
         derived from this software without specific prior written permission.

   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
   IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
   TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
   PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
   OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
   EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
   PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
   PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
   LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
   NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
   SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/

#ifndef _TOKEN_H_
#define _TOKEN_H_ 1

#include "openaxiom-c-macros.h"
#include <stdio.h>

/*
 Here are a couple of flags added for whitespace stuff. They tell
      punctuation if there was space in front of it or not
*/

#define FRONTSPACE 0001
#define BACKSPACE  0002

/* HyperDoc parser tokens */

typedef struct Token {
   int type;              /* token type.  One of those listed below */
   char *id;                  /* string value if type == Identifier */
} Token;

/*
    User tokens. ie, these can be found on a page
*/

#define Word                  1
#define Page                  2
#define Lispcommandquit       3
#define BoldFace              4
#define Link                  5
#define Downlink              6
#define Beginscroll           7
#define Spadcommand           8
#define NoLines               9
#define Env                  10
#define Par                  11
#define Center               12
#define Begin                13
#define Beginitems           14
#define Item                 15
#define Table                16
#define Box                  17
#define Tab                  18
#define Space                19
#define Indent               20
#define Horizontalline       21
#define Newline              22
#define Enditems             23
#define Returnbutton         24
#define Memolink             25
#define Upbutton             26
#define Endscroll            27
#define Thispage             28
#define Returnto             29
#define Free                 30
#define Bound                31
#define Lisplink             32
#define Unixlink             33
#define Mbox                 34
#define Inputstring          35
#define StringValue          36
#define Spadlink             37
#define Inputbitmap          38
#define Inputpixmap          39
#define Unixcommand          40
#define Emphasize            41
#define Lispcommand          42
#define LispMemoLink         43
#define LispDownLink         44
#define Spadcall             45
#define Spadcallquit         46
#define Spaddownlink         47
#define Spadmemolink         48
#define Qspadcall            49
#define Qspadcallquit        50
#define SimpleBox            51
#define Radioboxes           52
#define BoxValue             53
#define VSpace               54
#define HSpace               55
#define NewCommand           56
#define WindowId             57
#define Beep                 58
#define Quitbutton           59
#define Begintitems          60
#define Titem                61
#define End                  62
#define It                   63
#define Sl                   64
#define Tt                   65
#define Rm                   66
#define Ifcond               67
#define Else                 68
#define Fi                   69
#define Newcond              70
#define Setcond              71
#define Button               72
#define Windowlink           73
#define Haslisp              74
#define Hasup                75
#define Hasreturn            76
#define Hasreturnto          77
#define Lastwindow           78
#define Endtitems            79
#define Lispwindowlink       80
#define Beginpile            81
#define Endpile              82
#define Nextline             83
#define Pastebutton          84
#define Color                85
#define Helppage             86
#define Patch                87
#define Radiobox             88
#define ifrecond             89
#define Math                 90
#define Mitem                91
#define Pagename             92
#define Examplenumber        93
#define Replacepage          94
#define Inputimage           95
#define Spadgraph            96
#define Indentrel            97
#define Controlbitmap        98

#define NumberUserTokens     98


extern char *token_table[];


/* places from which input may be read */
#define FromFile        1
#define FromString      2
#define FromSpadSocket  3
#define FromUnixFD      4

extern FILE *unixfd;

/*
 * Here are the system tokens. These are used internally to help
 * with parsing and displaying of text
 */

#define SystemTokens   1001
#define Lbrace         1001
#define Rbrace         1002
#define Macro          1003
#define Group          1004
#define Scrollbar      1005
#define Pound          1006
#define Lsquarebrace   1007
#define Rsquarebrace   1008
#define Punctuation    1009
#define Dash           1010
#define Tableitem      1011
#define Scrollingnode  1012
#define Headernode     1013
#define Footernode     1014
#define Verbatim       1015
#define Scroll         1016
#define Dollar         1017
#define Percent        1018
#define Carrot         1019
#define Underscore     1020
#define Tilde          1021
#define Cond           1022
#define Noop           1023
#define Description    1024
#define Icorrection    1025
#define Boxcond        1026
#define Unkeyword      1027
#define Titlenode      1028
#define Paste          1029
#define Spadsrc        1030
#define Helpbutton     1031
#define Spadsrctxt     1032


/*
 * Here are the tokens used to mark the end to some sort of group of
 * tokens. ie, the tokens found in a centerline command
 */

#define Endtokens      2000
#define End1           2001
#define End2           2002
#define Endbutton      2003
#define Endlink        2004
#define Endheader      2005
#define Endfooter      2006
#define Endscrolling   2007
#define Endgroup       2008
#define Endarg         2009
#define Endbox         2010
#define Endmbox        2011
#define Endspadcommand 2012
#define Endpix         2013
#define Endmacro       2014
#define Endparameter   2015
#define Endtable       2016
#define Endtableitem   2017
#define End3           2018
#define Endif          2019
#define Enddescription 2020
#define Endinputbox    2021
#define Endtitle       2022
#define Endpastebutton 2023

#define Endtypes       3000
#define Endpage        3002
#define EndScroll      3007        /* had to use a S because Endscroll is
                                       already a keyword      */

#define Endcenter      3012
#define EndItems       3014        /* Same thing here as EndScroll except
                                          with the i          */
#define EndTitems      3060        /* Ibid for the T          */
#define Endpatch       3087
#define Endverbatim    4015
#define Endmath        4016
#define Endpaste       4029
#define Endspadsrc     4030

#endif