Define our own None atom value
[platform/upstream/libxkbcommon.git] / src / xkbcomp / parseutils.h
1 /************************************************************
2  Copyright (c) 1994 by Silicon Graphics Computer Systems, Inc.
3
4  Permission to use, copy, modify, and distribute this
5  software and its documentation for any purpose and without
6  fee is hereby granted, provided that the above copyright
7  notice appear in all copies and that both that copyright
8  notice and this permission notice appear in supporting
9  documentation, and that the name of Silicon Graphics not be
10  used in advertising or publicity pertaining to distribution
11  of the software without specific prior written permission.
12  Silicon Graphics makes no representation about the suitability
13  of this software for any purpose. It is provided "as is"
14  without any express or implied warranty.
15
16  SILICON GRAPHICS DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS
17  SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
18  AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL SILICON
19  GRAPHICS BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL
20  DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
21  DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
22  OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION  WITH
23  THE USE OR PERFORMANCE OF THIS SOFTWARE.
24
25  ********************************************************/
26
27 #ifndef XKBPARSE_H
28 #define XKBPARSE_H 1
29
30 #include "xkbcomp.h"
31
32 extern char scanBuf[1024];
33 extern int scanInt;
34 extern unsigned long scanULong;
35 extern int lineNum;
36
37 extern XkbFile *rtrnValue;
38
39 extern ParseCommon *AppendStmt(ParseCommon * /* to */ ,
40                                ParseCommon *    /* append */
41     );
42
43 extern ExprDef *ExprCreate(unsigned /* op */ ,
44                            unsigned     /* type */
45     );
46
47 extern ExprDef *ExprCreateUnary(unsigned /* op */ ,
48                                 unsigned /* type */ ,
49                                 ExprDef *       /* child */
50     );
51
52 extern ExprDef *ExprCreateBinary(unsigned /* op */ ,
53                                  ExprDef * /* left */ ,
54                                  ExprDef *      /* right */
55     );
56
57 extern KeycodeDef *KeycodeCreate(char * /* name */ ,
58                                  unsigned long /* value */
59     );
60
61 extern KeyAliasDef *KeyAliasCreate(char * /* alias */ ,
62                                    char *       /* real */
63     );
64
65 extern VModDef *VModCreate(xkb_atom_t /* name */ ,
66                            ExprDef *    /* value */
67     );
68
69 extern VarDef *VarCreate(ExprDef * /* name */ ,
70                          ExprDef *      /* value */
71     );
72
73 extern VarDef *BoolVarCreate(xkb_atom_t /* nameToken */ ,
74                              unsigned   /* set */
75     );
76
77 extern InterpDef *InterpCreate(char * /* sym */ ,
78                                ExprDef *        /* match */
79     );
80
81 extern KeyTypeDef *KeyTypeCreate(xkb_atom_t /* name */ ,
82                                  VarDef *       /* body */
83     );
84
85 extern SymbolsDef *SymbolsCreate(char * /* keyName */ ,
86                                  ExprDef *      /* symbols */
87     );
88
89 extern GroupCompatDef *GroupCompatCreate(int /* group */ ,
90                                          ExprDef *      /* def */
91     );
92
93 extern ModMapDef *ModMapCreate(uint32_t /* modifier */ ,
94                                ExprDef *        /* keys */
95     );
96
97 extern IndicatorMapDef *IndicatorMapCreate(xkb_atom_t /* name */ ,
98                                            VarDef *     /* body */
99     );
100
101 extern IndicatorNameDef *IndicatorNameCreate(int /* ndx */ ,
102                                              ExprDef * /* name */ ,
103                                              Bool       /* virtual */
104     );
105
106 extern ExprDef *ActionCreate(xkb_atom_t /* name */ ,
107                              ExprDef *  /* args */
108     );
109
110 extern ExprDef *CreateKeysymList(char * /* sym */
111     );
112
113 extern ExprDef *AppendKeysymList(ExprDef * /* list */ ,
114                                  char * /* sym */
115     );
116
117 extern int LookupKeysym(char * /* str */ ,
118                         xkb_keysym_t *        /* sym_rtrn */
119     );
120
121 extern IncludeStmt *IncludeCreate(char * /* str */ ,
122                                   unsigned      /* merge */
123     );
124
125 extern unsigned StmtSetMerge(ParseCommon * /* stmt */ ,
126                              unsigned   /* merge */
127     );
128
129 #ifdef DEBUG
130 extern void PrintStmtAddrs(ParseCommon *        /* stmt */
131     );
132 #endif
133
134 extern int XKBParseFile(FILE * /* file */ ,
135                         XkbFile **      /* pRtrn */
136     );
137
138 extern int XKBParseString(const char *string, XkbFile ** pRtrn);
139
140 extern void CheckDefaultMap(XkbFile * maps);
141
142 extern XkbFile *CreateXKBFile(int /* type */ ,
143                               char * /* name */ ,
144                               ParseCommon * /* defs */ ,
145                               unsigned  /* flags */
146     );
147
148 extern void FreeXKBFile(XkbFile *file);
149
150 extern void yyerror(const char *        /* msg */
151     );
152
153 extern void setScanState(const char * /* file */ ,
154                          int     /* line */
155     );
156
157 extern void FreeStmt(ParseCommon * /* stmt */
158     );
159
160 #endif /* XKBPARSE_H */