parse.h revision f66df612
13e747e6dSmrg/*****************************************************************************/
23e747e6dSmrg/*
33e747e6dSmrg
43e747e6dSmrgCopyright 1989, 1998  The Open Group
53e747e6dSmrg
63e747e6dSmrgPermission to use, copy, modify, distribute, and sell this software and its
73e747e6dSmrgdocumentation for any purpose is hereby granted without fee, provided that
83e747e6dSmrgthe above copyright notice appear in all copies and that both that
93e747e6dSmrgcopyright notice and this permission notice appear in supporting
103e747e6dSmrgdocumentation.
113e747e6dSmrg
123e747e6dSmrgThe above copyright notice and this permission notice shall be included in
133e747e6dSmrgall copies or substantial portions of the Software.
143e747e6dSmrg
153e747e6dSmrgTHE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
163e747e6dSmrgIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
173e747e6dSmrgFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
183e747e6dSmrgOPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
193e747e6dSmrgAN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
203e747e6dSmrgCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
213e747e6dSmrg
223e747e6dSmrgExcept as contained in this notice, the name of The Open Group shall not be
233e747e6dSmrgused in advertising or otherwise to promote the sale, use or other dealings
243e747e6dSmrgin this Software without prior written authorization from The Open Group.
253e747e6dSmrg
263e747e6dSmrg*/
273e747e6dSmrg/**       Copyright 1988 by Evans & Sutherland Computer Corporation,        **/
283e747e6dSmrg/**                          Salt Lake City, Utah                           **/
293e747e6dSmrg/**                        Cambridge, Massachusetts                         **/
303e747e6dSmrg/**                                                                         **/
313e747e6dSmrg/**                           All Rights Reserved                           **/
323e747e6dSmrg/**                                                                         **/
333e747e6dSmrg/**    Permission to use, copy, modify, and distribute this software and    **/
343e747e6dSmrg/**    its documentation  for  any  purpose  and  without  fee is hereby    **/
353e747e6dSmrg/**    granted, provided that the above copyright notice appear  in  all    **/
363e747e6dSmrg/**    copies and that both  that  copyright  notice  and  this  permis-    **/
373e747e6dSmrg/**    sion  notice appear in supporting  documentation,  and  that  the    **/
383e747e6dSmrg/**    name of Evans & Sutherland not be used in advertising    **/
393e747e6dSmrg/**    in publicity pertaining to distribution of the  software  without    **/
403e747e6dSmrg/**    specific, written prior permission.                                  **/
413e747e6dSmrg/**                                                                         **/
423e747e6dSmrg/**    EVANS & SUTHERLAND DISCLAIMs ALL WARRANTIES WITH REGARD    **/
433e747e6dSmrg/**    TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES  OF  MERCHANT-    **/
443e747e6dSmrg/**    ABILITY  AND  FITNESS,  IN  NO  EVENT SHALL EVANS & SUTHERLAND    **/
453e747e6dSmrg/**    BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL  DAM-    **/
463e747e6dSmrg/**    AGES OR  ANY DAMAGES WHATSOEVER  RESULTING FROM LOSS OF USE, DATA    **/
473e747e6dSmrg/**    OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER    **/
483e747e6dSmrg/**    TORTIOUS ACTION, ARISING OUT OF OR IN  CONNECTION  WITH  THE  USE    **/
493e747e6dSmrg/**    OR PERFORMANCE OF THIS SOFTWARE.                                     **/
503e747e6dSmrg/*****************************************************************************/
513e747e6dSmrg
523e747e6dSmrg/**********************************************************************
533e747e6dSmrg *
543e747e6dSmrg * .twmrc parsing externs
553e747e6dSmrg *
563e747e6dSmrg *  8-Apr-88 Tom LaStrange        Initial Version.
573e747e6dSmrg *
583e747e6dSmrg **********************************************************************/
593e747e6dSmrg
603e747e6dSmrg#ifndef _PARSE_
613e747e6dSmrg#define _PARSE_
623e747e6dSmrg
633e747e6dSmrg#include "list.h"
643e747e6dSmrg
65f66df612Smrgextern void assign_var_savecolor(void);
66f66df612Smrgextern int do_single_keyword(int keyword);
67f66df612Smrgextern int do_string_keyword(int keyword, char *s);
68f66df612Smrgextern int do_number_keyword(int keyword, int num);
69f66df612Smrgextern name_list **do_colorlist_keyword(int keyword, int colormode, char *s);
70f66df612Smrgextern int do_color_keyword(int keyword, int colormode, char *s);
71f66df612Smrgextern void do_string_savecolor(int colormode, char *s);
72f66df612Smrgextern void do_var_savecolor(int key);
73f66df612Smrgextern int ParseTwmrc(char *filename);
74f66df612Smrgextern int parse_keyword(char *s, int *nump);
75f66df612Smrgextern void TwmOutput(int c);
76f66df612Smrgextern void twmUnput(int c);
77f66df612Smrgextern void do_squeeze_entry(name_list ** list, char *name, int justify,
78f66df612Smrg                             int num, int denom);
79f66df612Smrg
80f66df612Smrgextern int (*twmInputFunc) (void);
813e747e6dSmrgextern int ConstrainedMoveTime;
823e747e6dSmrgextern unsigned char *defTwmrc[];
833e747e6dSmrgextern int mods;
843e747e6dSmrg
85f66df612Smrg#define F_NOP                   0
86f66df612Smrg#define F_BEEP                  1
87f66df612Smrg#define F_RESTART               2
88f66df612Smrg#define F_QUIT                  3
89f66df612Smrg#define F_FOCUS                 4
90f66df612Smrg#define F_REFRESH               5
91f66df612Smrg#define F_WINREFRESH            6
92f66df612Smrg#define F_DELTASTOP             7
93f66df612Smrg#define F_MOVE                  8
94f66df612Smrg#define F_POPUP                 9
95f66df612Smrg#define F_FORCEMOVE             10
96f66df612Smrg#define F_AUTORAISE             11
97f66df612Smrg#define F_IDENTIFY              12
98f66df612Smrg#define F_ICONIFY               13
99f66df612Smrg#define F_DEICONIFY             14
100f66df612Smrg#define F_UNFOCUS               15
101f66df612Smrg#define F_RESIZE                16
102f66df612Smrg#define F_ZOOM                  17
103f66df612Smrg#define F_LEFTZOOM              18
104f66df612Smrg#define F_RIGHTZOOM             19
105f66df612Smrg#define F_TOPZOOM               20
106f66df612Smrg#define F_BOTTOMZOOM            21
107f66df612Smrg#define F_HORIZOOM              22
108f66df612Smrg#define F_FULLZOOM              23
109f66df612Smrg#define F_RAISE                 24
110f66df612Smrg#define F_RAISELOWER            25
111f66df612Smrg#define F_LOWER                 26
112f66df612Smrg#define F_DESTROY               27
113f66df612Smrg#define F_DELETE                28
114f66df612Smrg#define F_SAVEYOURSELF          29
115f66df612Smrg#define F_VERSION               30
116f66df612Smrg#define F_TITLE                 31
117f66df612Smrg#define F_RIGHTICONMGR          32
118f66df612Smrg#define F_LEFTICONMGR           33
119f66df612Smrg#define F_UPICONMGR             34
120f66df612Smrg#define F_DOWNICONMGR           35
121f66df612Smrg#define F_FORWICONMGR           36
122f66df612Smrg#define F_BACKICONMGR           37
123f66df612Smrg#define F_NEXTICONMGR           38
124f66df612Smrg#define F_PREVICONMGR           39
125f66df612Smrg#define F_SORTICONMGR           40
126f66df612Smrg#define F_CIRCLEUP              41
127f66df612Smrg#define F_CIRCLEDOWN            42
128f66df612Smrg#define F_CUTFILE               43
129f66df612Smrg#define F_SHOWLIST              44
130f66df612Smrg#define F_HIDELIST              45
131f66df612Smrg
132f66df612Smrg#define F_MENU                  101     /* string */
133f66df612Smrg#define F_WARPNEXT              112     /* string */
134f66df612Smrg#define F_WARPPREV              113     /* string */
135f66df612Smrg#define F_WARPTO                102     /* string */
136f66df612Smrg#define F_WARPTOICONMGR         103     /* string */
137f66df612Smrg#define F_WARPRING              104     /* string */
138f66df612Smrg#define F_FILE                  105     /* string */
139f66df612Smrg#define F_EXEC                  106     /* string */
140f66df612Smrg#define F_CUT                   107     /* string */
141f66df612Smrg#define F_FUNCTION              108     /* string */
142f66df612Smrg#define F_WARPTOSCREEN          109     /* string */
143f66df612Smrg#define F_COLORMAP              110     /* string */
144f66df612Smrg#define F_PRIORITY              111     /* string */
145f66df612Smrg#define F_STARTWM               114     /* string */
146f66df612Smrg
147f66df612Smrg#define D_NORTH                 1
148f66df612Smrg#define D_SOUTH                 2
149f66df612Smrg#define D_EAST                  3
150f66df612Smrg#define D_WEST                  4
151f66df612Smrg
152f66df612Smrg#endif                          /* _PARSE_ */
153