summaryrefslogtreecommitdiff
path: root/src/parse.h
blob: 88b111888f69ea0ae9b70e0c7f1dd32a5a3b63d0 (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
/*****************************************************************************/
/*

Copyright 1989, 1998  The Open Group

Permission to use, copy, modify, distribute, and sell this software and its
documentation for any purpose is hereby granted without fee, provided that
the above copyright notice appear in all copies and that both that
copyright notice and this permission notice appear in supporting
documentation.

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Except as contained in this notice, the name of The Open Group shall not be
used in advertising or otherwise to promote the sale, use or other dealings
in this Software without prior written authorization from The Open Group.

*/
/**       Copyright 1988 by Evans & Sutherland Computer Corporation,        **/
/**                          Salt Lake City, Utah                           **/
/**                        Cambridge, Massachusetts                         **/
/**                                                                         **/
/**                           All Rights Reserved                           **/
/**                                                                         **/
/**    Permission to use, copy, modify, and distribute this software and    **/
/**    its documentation  for  any  purpose  and  without  fee is hereby    **/
/**    granted, provided that the above copyright notice appear  in  all    **/
/**    copies and that both  that  copyright  notice  and  this  permis-    **/
/**    sion  notice appear in supporting  documentation,  and  that  the    **/
/**    name of Evans & Sutherland not be used in advertising    **/
/**    in publicity pertaining to distribution of the  software  without    **/
/**    specific, written prior permission.                                  **/
/**                                                                         **/
/**    EVANS & SUTHERLAND DISCLAIMs ALL WARRANTIES WITH REGARD    **/
/**    TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES  OF  MERCHANT-    **/
/**    ABILITY  AND  FITNESS,  IN  NO  EVENT SHALL EVANS & SUTHERLAND    **/
/**    BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL  DAM-    **/
/**    AGES OR  ANY DAMAGES WHATSOEVER  RESULTING FROM LOSS OF USE, DATA    **/
/**    OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER    **/
/**    TORTIOUS ACTION, ARISING OUT OF OR IN  CONNECTION  WITH  THE  USE    **/
/**    OR PERFORMANCE OF THIS SOFTWARE.                                     **/
/*****************************************************************************/

/**********************************************************************
 *
 * .twmrc parsing externs
 *
 *  8-Apr-88 Tom LaStrange        Initial Version.
 *
 **********************************************************************/

#ifndef PARSE_H
#define PARSE_H

#include "list.h"
#include "gram.h"

/*
 * POSIX does not say where yyparse() is declared.  bison puts it in its
 * generated header, while byacc does not.  This chunk helps with portability.
 */
#if !(defined(YYDEBUG) && defined(YY_YY_GRAM_H_INCLUDED)) && !defined(YYBYACC)
extern int yyparse(void);
#endif

/*
 * Some versions of byacc and flex declare yylex().  This chunk fixes that.
 */
#if !(defined(YYBYACC) || defined(YYLEX_DECL))
#define YY_DECL int yylex (void)
YY_DECL;
#endif

extern void assign_var_savecolor(void);
extern int do_single_keyword(int keyword);
extern int do_string_keyword(int keyword, char *s);
extern int do_number_keyword(int keyword, int num);
extern name_list **do_colorlist_keyword(int keyword, int colormode, char *s);
extern int do_color_keyword(int keyword, int colormode, char *s);
extern void do_string_savecolor(int colormode, char *s);
extern void do_var_savecolor(int key);
extern int ParseTwmrc(char *filename);
extern int parse_keyword(char *s, int *nump);
extern void TwmOutput(int c);
extern void twmUnput(int c);
extern void do_squeeze_entry(name_list ** list, char *name, int justify,
                             int num, int denom);

extern int (*twmInputFunc) (void);
extern int ConstrainedMoveTime;
extern unsigned char *defTwmrc[];
extern int mods;

#define F_NOP                   0
#define F_BEEP                  1
#define F_RESTART               2
#define F_QUIT                  3
#define F_FOCUS                 4
#define F_REFRESH               5
#define F_WINREFRESH            6
#define F_DELTASTOP             7
#define F_MOVE                  8
#define F_POPUP                 9
#define F_FORCEMOVE             10
#define F_AUTORAISE             11
#define F_IDENTIFY              12
#define F_ICONIFY               13
#define F_DEICONIFY             14
#define F_UNFOCUS               15
#define F_RESIZE                16
#define F_ZOOM                  17
#define F_LEFTZOOM              18
#define F_RIGHTZOOM             19
#define F_TOPZOOM               20
#define F_BOTTOMZOOM            21
#define F_HORIZOOM              22
#define F_FULLZOOM              23
#define F_RAISE                 24
#define F_RAISELOWER            25
#define F_LOWER                 26
#define F_DESTROY               27
#define F_DELETE                28
#define F_SAVEYOURSELF          29
#define F_VERSION               30
#define F_TITLE                 31
#define F_RIGHTICONMGR          32
#define F_LEFTICONMGR           33
#define F_UPICONMGR             34
#define F_DOWNICONMGR           35
#define F_FORWICONMGR           36
#define F_BACKICONMGR           37
#define F_NEXTICONMGR           38
#define F_PREVICONMGR           39
#define F_SORTICONMGR           40
#define F_CIRCLEUP              41
#define F_CIRCLEDOWN            42
#define F_CUTFILE               43
#define F_SHOWLIST              44
#define F_HIDELIST              45

#define F_MENU                  101     /* string */
#define F_WARPNEXT              112     /* string */
#define F_WARPPREV              113     /* string */
#define F_WARPTO                102     /* string */
#define F_WARPTOICONMGR         103     /* string */
#define F_WARPRING              104     /* string */
#define F_FILE                  105     /* string */
#define F_EXEC                  106     /* string */
#define F_CUT                   107     /* string */
#define F_FUNCTION              108     /* string */
#define F_WARPTOSCREEN          109     /* string */
#define F_COLORMAP              110     /* string */
#define F_PRIORITY              111     /* string */
#define F_STARTWM               114     /* string */

#define D_NORTH                 1
#define D_SOUTH                 2
#define D_EAST                  3
#define D_WEST                  4

#endif /* PARSE_H */