1 /************************************************************
2 * Copyright (c) 1994 by Silicon Graphics Computer Systems, Inc.
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.
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.
25 ********************************************************/
30 InitVModInfo(VModInfo *info, struct xkb_keymap *keymap)
32 ClearVModInfo(info, keymap);
36 ClearVModInfo(VModInfo *info, struct xkb_keymap *keymap)
41 info->defined = info->available = 0;
43 for (i = 0; i < XkbNumVirtualMods; i++)
44 keymap->vmods[i] = XkbNoModifierMask;
46 for (i = 0, bit = 1; i < XkbNumVirtualMods; i++, bit <<= 1)
47 if (keymap->vmod_names[i])
51 /***====================================================================***/
54 * Handle one entry in the virtualModifiers line (e.g. NumLock).
55 * If the entry is e.g. NumLock=Mod1, stmt->value is not NULL, and the
56 * XkbServerMap's vmod is set to the given modifier. Otherwise, the vmod is 0.
58 * @param stmt The statement specifying the name and (if any the value).
59 * @param mergeMode Merge strategy (e.g. MERGE_OVERRIDE)
62 HandleVModDef(VModDef *stmt, struct xkb_keymap *keymap,
63 enum merge_mode mergeMode, VModInfo *info)
71 for (i = 0, bit = 1; i < XkbNumVirtualMods; i++, bit <<= 1) {
73 const char *str2 = "";
75 if (!(info->defined & bit)) {
82 if (!keymap->vmod_names[i])
85 if (!streq(keymap->vmod_names[i],
86 xkb_atom_text(keymap->ctx, stmt->name)))
89 info->available |= bit;
94 if (!ExprResolveModMask(keymap->ctx, stmt->value, &mask)) {
95 log_err(keymap->ctx, "Declaration of %s ignored\n",
96 xkb_atom_text(keymap->ctx, stmt->name));
100 if (mask == keymap->vmods[i])
103 str1 = ModMaskText(keymap->vmods[i], true);
104 if (mergeMode == MERGE_OVERRIDE) {
106 str1 = ModMaskText(mask, true);
109 log_warn(keymap->ctx,
110 "Virtual modifier %s defined multiple times; "
111 "Using %s, ignoring %s\n",
112 xkb_atom_text(keymap->ctx, stmt->name), str1, str2);
114 if (mergeMode == MERGE_OVERRIDE)
115 keymap->vmods[i] = mask;
122 "Too many virtual modifiers defined (maximum %d)\n",
127 info->defined |= (1 << nextFree);
128 info->available |= (1 << nextFree);
130 keymap->vmod_names[nextFree] = xkb_atom_text(keymap->ctx, stmt->name);
135 if (!ExprResolveModMask(keymap->ctx, stmt->value, &mask)) {
136 log_err(keymap->ctx, "Declaration of %s ignored\n",
137 xkb_atom_text(keymap->ctx, stmt->name));
141 keymap->vmods[nextFree] = mask;
146 * Returns the index of the given modifier in the keymap->vmod_names array.
148 * @param keymap Pointer to the xkb data structure.
149 * @param field The Atom of the modifier's name (e.g. Atom for LAlt)
150 * @param type Must be EXPR_TYPE_INT, otherwise return false.
151 * @param val_rtrn Set to the index of the modifier that matches.
153 * @return true on success, false otherwise. If false is returned, val_rtrn is
157 LookupVModIndex(const struct xkb_keymap *keymap, xkb_atom_t field,
158 enum expr_value_type type, xkb_mod_index_t *val_rtrn)
161 const char *name = xkb_atom_text(keymap->ctx, field);
163 if (type != EXPR_TYPE_INT)
166 /* For each named modifier, get the name and compare it to the one passed
167 * in. If we get a match, return the index of the modifier.
168 * The order of modifiers is the same as in the virtual_modifiers line in
169 * the xkb_types section.
171 for (i = 0; i < XkbNumVirtualMods; i++) {
172 if (keymap->vmod_names[i] && streq(keymap->vmod_names[i], name)) {
182 * Get the mask for the given (virtual or core) modifier and set
183 * val_rtrn.uval to the mask value.
185 * @param priv Pointer to xkb data structure.
186 * @param val_rtrn Member uval is set to the mask returned.
188 * @return true on success, false otherwise. If false is returned, val_rtrn is
192 LookupVModMask(struct xkb_context *ctx, const void *priv, xkb_atom_t field,
193 enum expr_value_type type, xkb_mod_mask_t *val_rtrn)
197 if (LookupModMask(ctx, NULL, field, type, val_rtrn)) {
200 else if (LookupVModIndex(priv, field, type, &ndx)) {
201 *val_rtrn = (1 << (XkbNumModifiers + ndx));
209 ResolveVirtualModifier(ExprDef *def, struct xkb_keymap *keymap,
210 xkb_mod_index_t *ndx_rtrn, VModInfo *info)
214 if (def->op == EXPR_IDENT) {
217 const char *name = xkb_atom_text(keymap->ctx, def->value.str);
219 for (i = 0, bit = 1; i < XkbNumVirtualMods; i++, bit <<= 1) {
220 if ((info->available & bit) && keymap->vmod_names[i] &&
221 streq(keymap->vmod_names[i], name)) {
228 if (!ExprResolveInteger(keymap->ctx, def, &val))
231 if (val < 0 || val >= XkbNumVirtualMods) {
233 "Illegal virtual modifier %d (must be 0..%d inclusive)\n",
234 val, XkbNumVirtualMods - 1);
238 *ndx_rtrn = (xkb_mod_index_t) val;