Allocate xkb_component_names on stack
[platform/upstream/libxkbcommon.git] / src / xkbcomp / ast-build.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 XKBCOMP_AST_BUILD_H
28 #define XKBCOMP_AST_BUILD_H
29
30 ParseCommon *
31 AppendStmt(ParseCommon *to, ParseCommon *append);
32
33 ExprDef *
34 ExprCreate(enum expr_op_type op, enum expr_value_type type);
35
36 ExprDef *
37 ExprCreateUnary(enum expr_op_type op, enum expr_value_type type,
38                 ExprDef *child);
39
40 ExprDef *
41 ExprCreateBinary(enum expr_op_type op, ExprDef *left, ExprDef *right);
42
43 KeycodeDef *
44 KeycodeCreate(char keyName[XkbKeyNameLength], unsigned long value);
45
46 KeyAliasDef *
47 KeyAliasCreate(char keyName[XkbKeyNameLength], char real[XkbKeyNameLength]);
48
49 VModDef *
50 VModCreate(xkb_atom_t name, ExprDef *value);
51
52 VarDef *
53 VarCreate(ExprDef *name, ExprDef *value);
54
55 VarDef *
56 BoolVarCreate(xkb_atom_t nameToken, unsigned set);
57
58 InterpDef *
59 InterpCreate(char *sym, ExprDef *match);
60
61 KeyTypeDef *
62 KeyTypeCreate(xkb_atom_t name, VarDef *body);
63
64 SymbolsDef *
65 SymbolsCreate(char keyName[XkbKeyNameLength], ExprDef *symbols);
66
67 GroupCompatDef *
68 GroupCompatCreate(int group, ExprDef *def);
69
70 ModMapDef *
71 ModMapCreate(uint32_t modifier, ExprDef *keys);
72
73 IndicatorMapDef *
74 IndicatorMapCreate(xkb_atom_t name, VarDef *body);
75
76 IndicatorNameDef *
77 IndicatorNameCreate(int ndx, ExprDef *name, bool virtual);
78
79 ExprDef *
80 ActionCreate(xkb_atom_t name, ExprDef *args);
81
82 ExprDef *
83 CreateMultiKeysymList(ExprDef *list);
84
85 ExprDef *
86 CreateKeysymList(char *sym);
87
88 ExprDef *
89 AppendMultiKeysymList(ExprDef *list, ExprDef *append);
90
91 ExprDef *
92 AppendKeysymList(ExprDef *list, char *sym);
93
94 IncludeStmt *
95 IncludeCreate(struct xkb_context *ctx, char *str, enum merge_mode merge);
96
97 XkbFile *
98 XkbFileCreate(struct xkb_context *ctx, enum xkb_file_type type, char *name,
99               ParseCommon *defs, unsigned flags);
100
101 void
102 FreeStmt(ParseCommon *stmt);
103
104 #endif