2 * Copyright © 2012 Intel Corporation
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21 * DEALINGS IN THE SOFTWARE.
23 * Author: Daniel Stone <daniel@fooishbar.org>
26 /************************************************************
27 * Copyright (c) 1993 by Silicon Graphics Computer Systems, Inc.
29 * Permission to use, copy, modify, and distribute this
30 * software and its documentation for any purpose and without
31 * fee is hereby granted, provided that the above copyright
32 * notice appear in all copies and that both that copyright
33 * notice and this permission notice appear in supporting
34 * documentation, and that the name of Silicon Graphics not be
35 * used in advertising or publicity pertaining to distribution
36 * of the software without specific prior written permission.
37 * Silicon Graphics makes no representation about the suitability
38 * of this software for any purpose. It is provided "as is"
39 * without any express or implied warranty.
41 * SILICON GRAPHICS DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS
42 * SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
43 * AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL SILICON
44 * GRAPHICS BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL
45 * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
46 * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
47 * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH
48 * THE USE OR PERFORMANCE OF THIS SOFTWARE.
50 * ********************************************************/
56 #include "xkbcommon/xkbcommon.h"
57 #include "XKBcommonint.h"
62 * Returns the level to use for the given key and state, or -1 if invalid.
65 xkb_key_get_level(struct xkb_desc *xkb, struct xkb_state *state,
66 xkb_keycode_t key, unsigned int group)
68 struct xkb_key_type *type = XkbKeyType(xkb, key, group);
69 unsigned int active_mods = state->mods & type->mods.mask;
72 fprintf(stderr, "get_level: %s, %d entries, mods %x, mask %x (v%x r%x)\n",
73 type->name, type->map_count, state->mods, type->mods.mask,
74 type->mods.vmods, type->mods.real_mods);
76 for (i = 0; i < type->map_count; i++) {
77 if (!type->map[i].active)
79 fprintf(stderr, " type active, level %d (%s), mask %x (v%x r%x), active %x\n",
80 type->map[i].level, type->level_names[i], type->map[i].mods.mask,
81 type->map[i].mods.real_mods, type->map[i].mods.vmods, active_mods);
82 if (type->map[i].mods.mask == active_mods)
83 return type->map[i].level;
90 * Returns the group to use for the given key and state, or -1 if invalid,
91 * taking wrapping/clamping/etc into account.
94 xkb_key_get_group(struct xkb_desc *xkb, struct xkb_state *state,
97 unsigned int info = XkbKeyGroupInfo(xkb, key);
98 unsigned int num_groups = XkbKeyNumGroups(xkb, key);
99 int ret = state->group;
101 if (ret < XkbKeyNumGroups(xkb, key))
104 switch (XkbOutOfRangeGroupAction(info)) {
105 case XkbRedirectIntoRange:
106 ret = XkbOutOfRangeGroupInfo(info);
107 if (ret >= num_groups)
110 case XkbClampIntoRange:
111 ret = num_groups - 1;
113 case XkbWrapIntoRange:
123 * As below, but takes an explicit group/level rather than state.
126 xkb_key_get_syms_by_level(struct xkb_desc *xkb, xkb_keycode_t key, unsigned int group,
127 unsigned int level, xkb_keysym_t **syms_out)
129 *syms_out = &(XkbKeySymEntry(xkb, key, level, group));
130 if (**syms_out == NoSymbol)
141 * Provides the symbols to use for the given key and state. Returns the
142 * number of symbols pointed to in syms_out.
145 xkb_key_get_syms(struct xkb_desc *xkb, struct xkb_state *state,
146 xkb_keycode_t key, xkb_keysym_t **syms_out)
151 if (!xkb || !state || key < xkb->min_key_code || key > xkb->max_key_code)
154 group = xkb_key_get_group(xkb, state, key);
157 level = xkb_key_get_level(xkb, state, key, group);
161 return xkb_key_get_syms_by_level(xkb, key, group, level, syms_out);