Organize xkbcomp/ header files
[platform/upstream/libxkbcommon.git] / src / xkbcomp / keycodes.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_KEYCODES_H
28 #define XKBCOMP_KEYCODES_H
29
30 static inline unsigned long
31 KeyNameToLong(const char name[XkbKeyNameLength])
32 {
33     return
34         (((unsigned long)name[0]) << 24) |
35         (((unsigned long)name[1]) << 16) |
36         (((unsigned long)name[2]) << 8)  |
37         (((unsigned long)name[3]) << 0);
38 }
39
40 static inline void
41 LongToKeyName(unsigned long val, char name[XkbKeyNameLength])
42 {
43     name[0] = ((val >> 24) & 0xff);
44     name[1] = ((val >> 16) & 0xff);
45     name[2] = ((val >> 8) & 0xff);
46     name[3] = ((val >> 0) & 0xff);
47 }
48
49 static inline const char *
50 LongKeyNameText(unsigned long val)
51 {
52     char buf[XkbKeyNameLength];
53     LongToKeyName(val, buf);
54     return KeyNameText(buf);
55 }
56
57 struct xkb_key *
58 FindNamedKey(struct xkb_keymap *keymap, unsigned long name,
59              bool use_aliases, xkb_keycode_t start_from);
60
61 bool
62 FindKeyNameForAlias(struct xkb_keymap *keymap, unsigned long lname,
63                     unsigned long *real_name);
64
65 #endif