Add some explanations on consumed modifiers
[platform/upstream/libxkbcommon.git] / xkbcommon / xkbcommon.h
1 /*
2  * Copyright 1985, 1987, 1990, 1998  The Open Group
3  * Copyright 2008  Dan Nicholson
4  *
5  * Permission is hereby granted, free of charge, to any person obtaining a
6  * copy of this software and associated documentation files (the "Software"),
7  * to deal in the Software without restriction, including without limitation
8  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9  * and/or sell copies of the Software, and to permit persons to whom the
10  * Software is furnished to do so, subject to the following conditions:
11  *
12  * The above copyright notice and this permission notice shall be included in
13  * all copies or substantial portions of the Software.
14  *
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 THE
18  * AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
19  * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
20  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
21  *
22  * Except as contained in this notice, the names of the authors or their
23  * institutions shall not be used in advertising or otherwise to promote the
24  * sale, use or other dealings in this Software without prior written
25  * authorization from the authors.
26  */
27
28 /************************************************************
29  * Copyright (c) 1993 by Silicon Graphics Computer Systems, Inc.
30  *
31  * Permission to use, copy, modify, and distribute this
32  * software and its documentation for any purpose and without
33  * fee is hereby granted, provided that the above copyright
34  * notice appear in all copies and that both that copyright
35  * notice and this permission notice appear in supporting
36  * documentation, and that the name of Silicon Graphics not be
37  * used in advertising or publicity pertaining to distribution
38  * of the software without specific prior written permission.
39  * Silicon Graphics makes no representation about the suitability
40  * of this software for any purpose. It is provided "as is"
41  * without any express or implied warranty.
42  *
43  * SILICON GRAPHICS DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS
44  * SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
45  * AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL SILICON
46  * GRAPHICS BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL
47  * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
48  * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
49  * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION  WITH
50  * THE USE OR PERFORMANCE OF THIS SOFTWARE.
51  *
52  ********************************************************/
53
54 /*
55  * Copyright © 2009-2012 Daniel Stone
56  * Copyright © 2012 Intel Corporation
57  * Copyright © 2012 Ran Benita
58  *
59  * Permission is hereby granted, free of charge, to any person obtaining a
60  * copy of this software and associated documentation files (the "Software"),
61  * to deal in the Software without restriction, including without limitation
62  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
63  * and/or sell copies of the Software, and to permit persons to whom the
64  * Software is furnished to do so, subject to the following conditions:
65  *
66  * The above copyright notice and this permission notice (including the next
67  * paragraph) shall be included in all copies or substantial portions of the
68  * Software.
69  *
70  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
71  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
72  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
73  * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
74  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
75  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
76  * DEALINGS IN THE SOFTWARE.
77  *
78  * Author: Daniel Stone <daniel@fooishbar.org>
79  */
80
81 #ifndef _XKBCOMMON_H_
82 #define _XKBCOMMON_H_
83
84 #include <stdint.h>
85 #include <stdio.h>
86 #include <stdarg.h>
87
88 #include <xkbcommon/xkbcommon-names.h>
89 #include <xkbcommon/xkbcommon-keysyms.h>
90
91 #ifdef __cplusplus
92 extern "C" {
93 #endif
94
95 /**
96  * @file
97  * Main libxkbcommon API.
98  */
99
100 /**
101  * @struct xkb_context
102  * Opaque top level library context object.
103  *
104  * The context contains various general library data and state, like
105  * logging level and include paths.
106  * Objects are created in a specific context, and multiple contexts may
107  * coexist simultaneously. Objects from different contexts are completely
108  * separated and do not share any memory or state.
109  * A context is created, accessed, manipulated and destroyed through the
110  * xkb_context_*() API.
111  */
112 struct xkb_context;
113
114 /**
115  * @struct xkb_keymap
116  * Opaque compiled keymap object.
117  *
118  * The keymap object holds all of the static keyboard information obtained
119  * from compiling XKB files.
120  *
121  * A keymap is immutable after it is created (besides reference counts, etc.);
122  * if you need to change it, you must create a new one.
123  *
124  * A keymap object is created, accessed and destroyed through the
125  * xkb_keymap_*() API.
126  */
127 struct xkb_keymap;
128
129 /**
130  * @struct xkb_state
131  * Opaque keyboard state object.
132  *
133  * State objects contain the active state of a keyboard (or keyboards), such
134  * as the currently effective layout and the active modifiers. It acts as a
135  * simple state machine, wherein key presses and releases are the input, and
136  * key symbols (keysyms) are the output.
137  *
138  * A state object is created, accessed, manipulated and destroyed through the
139  * xkb_state_*() API.
140  */
141 struct xkb_state;
142
143 /**
144  * A number used to represent a physical key on a keyboard.
145  *
146  * A standard PC-compatible keyboard might have 102 keys.  An appropriate
147  * keymap would assign each of them a keycode, by which the user should
148  * refer to the key throughout the library.
149  *
150  * Historically, the X11 protocol, and consequentially the XKB protocol,
151  * assign only 8 bits for keycodes.  This limits the number of different
152  * keys that can be used simultaneously in a single keymap to 256
153  * (disregarding other limitations).  This library does not share this limit;
154  * keycodes beyond 255 ('extended keycodes') are not treated specially.
155  * Keymaps and applications which are compatible with X11 should not use
156  * these keycodes.
157  *
158  * @todo Explain how keycodes are mapped to scancodes.
159  *
160  * @sa xkb_keycode_is_legal_ext() xkb_keycode_is_legal_x11()
161  */
162 typedef uint32_t xkb_keycode_t;
163
164 /**
165  * A number used to represent the symbols visible on the keycaps of a
166  * keyboard.
167  *
168  * A key, represented by a keycode, may generate different symbols according
169  * to keyboard state.  For example, on a QWERTY keyboard, pressing the key
170  * labled \<A\> generates the symbol 'a'.  If the Shift key is held, it
171  * generates the symbol 'A'.  If a different layout is used, say Greek,
172  * it generates the symbol 'α'.  And so on.
173  *
174  * Each such symbol is represented by a keysym.  Note that keysyms are
175  * somewhat more general, in that they can also represent some "function",
176  * such as "Left" or "Right" for the arrow keys.  For more information,
177  * see:
178  * http://www.x.org/releases/X11R7.7/doc/xproto/x11protocol.html#keysym_encoding
179  *
180  * Specifically named keysyms can be found in the
181  * xkbcommon/xkbcommon-keysyms.h header file.  Their name does not include
182  * the XKB_KEY_ prefix.
183  *
184  * Besides those, any Unicode/ISO 10646 character in the range U0100 to
185  * U10FFFF can be represented by a keysym value in the range 0x01000100 to
186  * 0x0110FFFF.  The name of Unicode keysyms is "U<codepoint>", e.g. "Ua1b2".
187  *
188  * The name of other unnamed keysyms is the hexadecimal representation of
189  * their value, e.g. "0xabcd1234".
190  *
191  * Keysym names are case-sensitive.
192  */
193 typedef uint32_t xkb_keysym_t;
194
195 /**
196  * Index of a modifier.
197  *
198  * @todo Explain what are modifiers.
199  *
200  * Modifier indexes are consecutive.  The first modifier has index 0.
201  *
202  * Each modifier must have a name, and the names are unique.  Therefore, it
203  * is safe to use the name as a unique identifier for a modifier.  Modifier
204  * names are case-sensitive.
205  *
206  * @sa xkb_keymap_num_mods()
207  */
208 typedef uint32_t xkb_mod_index_t;
209 /** A mask of modifier indexes. */
210 typedef uint32_t xkb_mod_mask_t;
211
212 /**
213  * Index of a keyboard layout.
214  *
215  * @todo Explain what are layouts.
216  *
217  * Layout indexes are consecutive.  The first layout has index 0.
218  *
219  * Each layout is not required to have a name, and the names are not
220  * guarenteed to be unique (though they are usually provided and unique).
221  * Therefore, it is not safe to use the name as a unique identifier for a
222  * layout.  Layout names are case-sensitive.
223  *
224  * Layouts are also called "groups" by XKB.
225  *
226  * @sa xkb_keymap_num_layouts() xkb_keymap_num_layouts_for_key()
227  */
228 typedef uint32_t xkb_layout_index_t;
229 /** A mask of layout indexes. */
230 typedef uint32_t xkb_layout_mask_t;
231
232 /**
233  * Index of a shift level.
234  *
235  * @todo Explain what are shift levels.
236  */
237 typedef uint32_t xkb_level_index_t;
238
239 /**
240  * Index of a keyboard LED.
241  *
242  * @todo Explain what are LEDs.
243  *
244  * LED indexes are non-consecutive.  The first LED has index 0.
245  *
246  * LED names are case-sensitive.
247  *
248  * Each LED must have a name, and the names are unique. Therefore,
249  * it is safe to use the name as a unique identifier for a LED.
250  *
251  * @warning A given keymap may specify an exact index for a given LED.
252  * Therefore, LED indexing is not necessarily sequential, as opposed to
253  * modifiers and layouts.  This means that when iterating over the LEDs
254  * in a keymap using e.g. xkb_keymap_num_leds(), some indexes might be
255  * invalid.  Given such an index, functions like xkb_keymap_led_get_name()
256  * will return NULL, and xkb_state_led_index_is_active() will return -1.
257  *
258  * LEDs are also called "indicators" by XKB.
259  *
260  * @sa xkb_keymap_num_leds()
261  */
262 typedef uint32_t xkb_led_index_t;
263 /** A mask of LED indexes. */
264 typedef uint32_t xkb_led_mask_t;
265
266 #define XKB_MOD_INVALID     (0xffffffff)
267 #define XKB_LAYOUT_INVALID  (0xffffffff)
268 #define XKB_KEYCODE_INVALID (0xffffffff)
269 #define XKB_LEVEL_INVALID   (0xffffffff)
270 #define XKB_LED_INVALID     (0xffffffff)
271
272 #define XKB_KEYCODE_MAX     (0xffffffff - 1)
273
274 /**
275  * Test whether a value is a valid extended keycode.
276  * @sa xkb_keycode_t
277  **/
278 #define xkb_keycode_is_legal_ext(key) (key <= XKB_KEYCODE_MAX)
279
280 /**
281  * Test whether a value is a valid X11 keycode.
282  * @sa xkb_keycode_t
283  */
284 #define xkb_keycode_is_legal_x11(key) (key >= 8 && key <= 255)
285
286 /**
287  * Names to compile a keymap with, also known as RMLVO.
288  *
289  * These names together are the primary identifier for a keymap.
290  * If any of the members is NULL or an empty string (""), a default value is
291  * used.  It is recommended to use the system default by passing NULL for
292  * unspecified values, instead of providing your own defaults.
293  */
294 struct xkb_rule_names {
295     /** The rules file to use. The rules file describes how to interpret
296      *  the values of the model, layout, variant and options fields. */
297     const char *rules;
298     /** The keyboard model by which to interpret keycodes and LEDs. */
299     const char *model;
300     /** A comma seperated list of layouts (languages) to include in the
301      *  keymap. */
302     const char *layout;
303     /** A comma seperated list of variants, one per layout, which may
304      *  modify or augment the respective layout in various ways. */
305     const char *variant;
306     /** A comma seprated list of options, through which the user specifies
307      *  non-layout related preferences, like which key combinations are used
308      *  for switching layouts, or which key is the Compose key. */
309     const char *options;
310 };
311
312 /**
313  * @defgroup keysyms Keysyms
314  * Utility functions related to keysyms.
315  *
316  * @{
317  */
318
319 /**
320  * Get the name of a keysym.
321  *
322  * For a description of how keysyms are named, see @ref xkb_keysym_t.
323  *
324  * @param[in]  keysym The keysym.
325  * @param[out] buffer A string buffer to write the name into.
326  * @param[in]  size   Size of the buffer.
327  *
328  * @warning If the buffer passed is too small, the string is truncated
329  * (though still NUL-terminated); a size of at least 64 bytes is recommended.
330  *
331  * @returns The number of bytes in the name, excluding the NUL byte. If
332  * the keysym is invalid, returns -1.
333  *
334  * You may check if truncation has occured by comparing the return value
335  * with the length of buffer, similarly to the snprintf(3) function.
336  *
337  * @sa xkb_keysym_t
338  */
339 int
340 xkb_keysym_get_name(xkb_keysym_t keysym, char *buffer, size_t size);
341
342 /** Flags for xkb_keysym_from_name(). */
343 enum xkb_keysym_flags {
344     /** Find keysym by case-insensitive search. */
345     XKB_KEYSYM_CASE_INSENSITIVE = (1 << 0),
346 };
347
348 /**
349  * Get a keysym from its name.
350  *
351  * @param name The name of a keysym. See remarks in xkb_keysym_get_name();
352  * this function will accept any name returned by that function.
353  * @param flags A set of flags controlling how the search is done. If
354  * invalid flags are passed, this will fail with XKB_KEY_NoSymbol.
355  *
356  * If you use the XKB_KEYSYM_CASE_INSENSITIVE flag and two keysym names
357  * differ only by case, then the lower-case keysym is returned.  For
358  * instance, for KEY_a and KEY_A, this function would return KEY_a for the
359  * case-insensitive search.  If this functionality is needed, it is
360  * recommended to first call this function without this flag; and if that
361  * fails, only then to try with this flag, while possibly warning the user
362  * he had misspelled the name, and might get wrong results.
363  *
364  * @returns The keysym. If the name is invalid, returns XKB_KEY_NoSymbol.
365  *
366  * @sa xkb_keysym_t
367  */
368 xkb_keysym_t
369 xkb_keysym_from_name(const char *name, enum xkb_keysym_flags flags);
370
371 /**
372  * Get the Unicode/UTF-8 representation of a keysym.
373  *
374  * @param[in]  keysym The keysym.
375  * @param[out] buffer A buffer to write the UTF-8 string into.
376  * @param[in]  size   The size of buffer.  Must be at least 7.
377  *
378  * @returns The number of bytes written to the buffer.  If the keysym does
379  * not have a Unicode representation, returns 0.  If the buffer is too small,
380  * returns -1.
381  */
382 int
383 xkb_keysym_to_utf8(xkb_keysym_t keysym, char *buffer, size_t size);
384
385 /**
386  * Get the Unicode/UTF-32 representation of a keysym.
387  *
388  * @returns The Unicode/UTF-32 representation of keysym, which is also
389  * compatible with UCS-4.  If the keysym does not have a Unicode
390  * representation, returns 0.
391  */
392 uint32_t
393 xkb_keysym_to_utf32(xkb_keysym_t keysym);
394
395 /** @} */
396
397 /**
398  * @defgroup context Library Context
399  * Creating, destroying and using library contexts.
400  *
401  * Every keymap compilation request must have a context associated with
402  * it.  The context keeps around state such as the include path.
403  *
404  * @{
405  */
406
407 /** Flags for context creation. */
408 enum xkb_context_flags {
409     /** Create this context with an empty include path. */
410     XKB_CONTEXT_NO_DEFAULT_INCLUDES = (1 << 0),
411 };
412
413 /**
414  * Create a new context.
415  *
416  * @param flags Optional flags for the context, or 0.
417  *
418  * @returns A new context, or NULL on failure.
419  *
420  * The user may set some environment variables to affect default values in
421  * the context. See e.g. xkb_context_set_log_level() and
422  * xkb_context_set_log_verbosity().
423  *
424  * @memberof xkb_context
425  */
426 struct xkb_context *
427 xkb_context_new(enum xkb_context_flags flags);
428
429 /**
430  * Take a new reference on a context.
431  *
432  * @returns The passed in context.
433  *
434  * @memberof xkb_context
435  */
436 struct xkb_context *
437 xkb_context_ref(struct xkb_context *context);
438
439 /**
440  * Release a reference on a context, and possibly free it.
441  *
442  * @param context The context.  If it is NULL, this function does nothing.
443  *
444  * @memberof xkb_context
445  */
446 void
447 xkb_context_unref(struct xkb_context *context);
448
449 /**
450  * Store custom user data in the context.
451  *
452  * This may be useful in conjuction with xkb_context_set_log_fn() or other
453  * callbacks.
454  *
455  * @memberof xkb_context
456  */
457 void
458 xkb_context_set_user_data(struct xkb_context *context, void *user_data);
459
460 /**
461  * Retrieves stored user data from the context.
462  *
463  * @returns The stored user data.  If the user data wasn't set, or the
464  * passed in context is NULL, returns NULL.
465  *
466  * This may be useful to access private user data from callbacks like a
467  * custom logging function.
468  *
469  * @memberof xkb_context
470  **/
471 void *
472 xkb_context_get_user_data(struct xkb_context *context);
473
474 /** @} */
475
476 /**
477  * @defgroup include-path Include Paths
478  * Manipulating the include paths in a context.
479  *
480  * The include paths are the file-system paths that are searched when an
481  * include statement is encountered during keymap compilation.
482  * In most cases, the default include paths are sufficient.
483  *
484  * @{
485  */
486
487 /**
488  * Append a new entry to the context's include path.
489  *
490  * @returns 1 on success, or 0 if the include path could not be added or is
491  * inaccessible.
492  *
493  * @memberof xkb_context
494  */
495 int
496 xkb_context_include_path_append(struct xkb_context *context, const char *path);
497
498 /**
499  * Append the default include paths to the context's include path.
500  *
501  * @returns 1 on success, or 0 if the primary include path could not be added.
502  *
503  * @memberof xkb_context
504  */
505 int
506 xkb_context_include_path_append_default(struct xkb_context *context);
507
508 /**
509  * Reset the context's include path to the default.
510  *
511  * Removes all entries from the context's include path, and inserts the
512  * default paths.
513  *
514  * @returns 1 on success, or 0 if the primary include path could not be added.
515  *
516  * @memberof xkb_context
517  */
518 int
519 xkb_context_include_path_reset_defaults(struct xkb_context *context);
520
521 /**
522  * Remove all entries from the context's include path.
523  *
524  * @memberof xkb_context
525  */
526 void
527 xkb_context_include_path_clear(struct xkb_context *context);
528
529 /**
530  * Get the number of paths in the context's include path.
531  *
532  * @memberof xkb_context
533  */
534 unsigned int
535 xkb_context_num_include_paths(struct xkb_context *context);
536
537 /**
538  * Get a specific include path from the context's include path.
539  *
540  * @returns The include path at the specified index.  If the index is
541  * invalid, returns NULL.
542  *
543  * @memberof xkb_context
544  */
545 const char *
546 xkb_context_include_path_get(struct xkb_context *context, unsigned int index);
547
548 /** @} */
549
550 /**
551  * @defgroup logging Logging Handling
552  * Manipulating how logging from this library is handled.
553  *
554  * @{
555  */
556
557 /** Specifies a logging level. */
558 enum xkb_log_level {
559     XKB_LOG_LEVEL_CRITICAL = 10, /**< Log critical internal errors only. */
560     XKB_LOG_LEVEL_ERROR = 20,    /**< Log all errors. */
561     XKB_LOG_LEVEL_WARNING = 30,  /**< Log warnings and errors. */
562     XKB_LOG_LEVEL_INFO = 40,     /**< Log information, warnings, and errors. */
563     XKB_LOG_LEVEL_DEBUG = 50,    /**< Log everything. */
564 };
565
566 /**
567  * Set the current logging level.
568  *
569  * @param context The context in which to set the logging level.
570  * @param level   The logging level to use.  Only messages from this level
571  * and below will be logged.
572  *
573  * The default level is XKB_LOG_LEVEL_ERROR.  The environment variable
574  * XKB_LOG_LEVEL, if set in the time the context was created, overrides the
575  * default value.  It may be specified as a level number or name.
576  *
577  * @memberof xkb_context
578  */
579 void
580 xkb_context_set_log_level(struct xkb_context *context,
581                           enum xkb_log_level level);
582
583 /**
584  * Get the current logging level.
585  *
586  * @memberof xkb_context
587  */
588 enum xkb_log_level
589 xkb_context_get_log_level(struct xkb_context *context);
590
591 /**
592  * Sets the current logging verbosity.
593  *
594  * The library can generate a number of warnings which are not helpful to
595  * ordinary users of the library.  The verbosity may be increased if more
596  * information is desired (e.g. when developing a new keymap).
597  *
598  * The default verbosity is 0.  The environment variable XKB_LOG_VERBOSITY,
599  * if set in the time the context was created, overrides the default value.
600  *
601  * @param context   The context in which to use the set verbosity.
602  * @param verbosity The verbosity to use.  Currently used values are
603  * 1 to 10, higher values being more verbose.  0 would result in no verbose
604  * messages being logged.
605  *
606  * Most verbose messages are of level XKB_LOG_LEVEL_WARNING or lower.
607  *
608  * @memberof xkb_context
609  */
610 void
611 xkb_context_set_log_verbosity(struct xkb_context *context, int verbosity);
612
613 /**
614  * Get the current logging verbosity of the context.
615  *
616  * @memberof xkb_context
617  */
618 int
619 xkb_context_get_log_verbosity(struct xkb_context *context);
620
621 /**
622  * Set a custom function to handle logging messages.
623  *
624  * @param context The context in which to use the set logging function.
625  * @param log_fn  The function that will be called for logging messages.
626  * Passing NULL restores the default function, which logs to stderr.
627  *
628  * By default, log messages from this library are printed to stderr.  This
629  * function allows you to replace the default behavior with a custom
630  * handler.  The handler is only called with messages which match the
631  * current logging level and verbosity settings for the context.
632  * level is the logging level of the message.  format and args are the
633  * same as in the vprintf(3) function.
634  *
635  * You may use xkb_context_set_user_data() on the context, and then call
636  * xkb_context_get_user_data() from within the logging function to provide
637  * it with additional private context.
638  *
639  * @memberof xkb_context
640  */
641 void
642 xkb_context_set_log_fn(struct xkb_context *context,
643                        void (*log_fn)(struct xkb_context *context,
644                                       enum xkb_log_level level,
645                                       const char *format, va_list args));
646
647 /** @} */
648
649 /**
650  * @defgroup keymap Keymap Creation
651  * Creating and destroying keymaps.
652  *
653  * @{
654  */
655
656 /** Flags for keymap compilation. */
657 enum xkb_keymap_compile_flags {
658     /** Apparently you can't have empty enums.  What a drag. */
659     XKB_MAP_COMPILE_PLACEHOLDER = 0,
660 };
661
662 /**
663  * Create a keymap from RMLVO names.
664  *
665  * The primary keymap entry point: creates a new XKB keymap from a set of
666  * RMLVO (Rules + Model + Layouts + Variants + Options) names.
667  *
668  * You should almost certainly be using this and nothing else to create
669  * keymaps.
670  *
671  * @param context The context in which to create the keymap.
672  * @param names   The RMLVO names to use.
673  * @param flags   Optional flags for the keymap, or 0.
674  *
675  * @returns A keymap compiled according to the RMLVO names, or NULL if
676  * the compilation failed.
677  *
678  * @sa xkb_rule_names
679  * @memberof xkb_keymap
680  */
681 struct xkb_keymap *
682 xkb_keymap_new_from_names(struct xkb_context *context,
683                           const struct xkb_rule_names *names,
684                           enum xkb_keymap_compile_flags flags);
685
686 /** The possible keymap text formats. */
687 enum xkb_keymap_format {
688     /** The current/classic XKB text format, as generated by xkbcomp -xkb. */
689     XKB_KEYMAP_FORMAT_TEXT_V1 = 1,
690 };
691
692 /**
693  * Create a keymap from a keymap file.
694  *
695  * @param context The context in which to create the keymap.
696  * @param file    The keymap file to compile.
697  * @param format  The text format of the keymap file to compile.
698  * @param flags   Optional flags for the keymap, or 0.
699  *
700  * @returns A keymap compiled from the given XKB keymap file, or NULL if
701  * the compilation failed.
702  *
703  * The file must contain a complete keymap.  For example, in the
704  * XKB_KEYMAP_FORMAT_TEXT_V1 format, this means the file must contain one
705  * top level '%xkb_keymap' section, which in turn contains other required
706  * sections.
707  *
708  * @memberof xkb_keymap
709  */
710 struct xkb_keymap *
711 xkb_keymap_new_from_file(struct xkb_context *context, FILE *file,
712                          enum xkb_keymap_format format,
713                          enum xkb_keymap_compile_flags flags);
714
715 /**
716  * Create a keymap from a keymap string.
717  *
718  * This is just like xkb_keymap_new_from_file(), but instead of a file, gets
719  * the keymap as one enormous string.
720  *
721  * @see xkb_keymap_new_from_string()
722  * @memberof xkb_keymap
723  */
724 struct xkb_keymap *
725 xkb_keymap_new_from_string(struct xkb_context *context, const char *string,
726                            enum xkb_keymap_format format,
727                            enum xkb_keymap_compile_flags flags);
728
729 /**
730  * Take a new reference on a keymap.
731  *
732  * @returns The passed in keymap.
733  *
734  * @memberof xkb_keymap
735  */
736 struct xkb_keymap *
737 xkb_keymap_ref(struct xkb_keymap *keymap);
738
739 /**
740  * Release a reference on a keymap, and possibly free it.
741  *
742  * @param keymap The keymap.  If it is NULL, this function does nothing.
743  *
744  * @memberof xkb_keymap
745  */
746 void
747 xkb_keymap_unref(struct xkb_keymap *keymap);
748
749 /**
750  * Get the keymap as a string in the format from which it was created.
751  * @sa xkb_keymap_get_as_string()
752  **/
753 #define XKB_KEYMAP_USE_ORIGINAL_FORMAT ((enum xkb_keymap_format) -1)
754
755 /**
756  * Get the compiled keymap as a string.
757  *
758  * @param keymap The keymap to get as a string.
759  * @param format The keymap format to use for the string.  You can pass
760  * in the special value XKB_KEYMAP_USE_ORIGINAL_FORMAT to use the format
761  * from which the keymap was originally created.
762  *
763  * @returns The keymap as a NUL-terminated string, or NULL if unsuccessful.
764  *
765  * The returned string may be fed back into xkb_map_new_from_string() to get
766  * the exact same keymap (possibly in another process, etc.).
767  *
768  * The returned string is dynamically allocated and should be freed by the
769  * caller.
770  *
771  * @memberof xkb_keymap
772  */
773 char *
774 xkb_keymap_get_as_string(struct xkb_keymap *keymap,
775                          enum xkb_keymap_format format);
776
777 /** @} */
778
779 /**
780  * @defgroup components Keymap Components
781  * Enumeration of state components in a keymap.
782  *
783  * @{
784  */
785
786 /**
787  * Get the number of modifiers in the keymap.
788  *
789  * @sa xkb_mod_index_t
790  * @memberof xkb_keymap
791  */
792 xkb_mod_index_t
793 xkb_keymap_num_mods(struct xkb_keymap *keymap);
794
795 /**
796  * Get the name of a modifier by index.
797  *
798  * @returns The name.  If the index is invalid, returns NULL.
799  *
800  * @sa xkb_mod_index_t
801  * @memberof xkb_keymap
802  */
803 const char *
804 xkb_keymap_mod_get_name(struct xkb_keymap *keymap, xkb_mod_index_t idx);
805
806 /**
807  * Get the index of a modifier by name.
808  *
809  * @returns The index.  If no modifier with this name exists, returns
810  * XKB_MOD_INVALID.
811  *
812  * @sa xkb_mod_index_t
813  * @memberof xkb_keymap
814  */
815 xkb_mod_index_t
816 xkb_keymap_mod_get_index(struct xkb_keymap *keymap, const char *name);
817
818 /**
819  * Get the number of layouts in the keymap.
820  *
821  * @sa xkb_layout_index_t xkb_rule_names xkb_keymap_num_layouts_for_key()
822  * @memberof xkb_keymap
823  */
824 xkb_layout_index_t
825 xkb_keymap_num_layouts(struct xkb_keymap *keymap);
826
827 /**
828  * Get the name of a layout by index.
829  *
830  * @returns The name.  If the index is invalid, or the layout does not have
831  * a name, returns NULL.
832  *
833  * @sa xkb_layout_index_t
834  * @memberof xkb_keymap
835  */
836 const char *
837 xkb_keymap_layout_get_name(struct xkb_keymap *keymap, xkb_layout_index_t idx);
838
839 /**
840  * Get the index of a layout by name.
841  *
842  * @returns The index.  If no layout exists with this name, returns
843  * XKB_LAYOUT_INVALID.  If more than one layout in the keymap has this name,
844  * returns the lowest index among them.
845  *
846  * @memberof xkb_keymap
847  */
848 xkb_layout_index_t
849 xkb_keymap_layout_get_index(struct xkb_keymap *keymap, const char *name);
850
851 /**
852  * Get the number of layouts for a specific key.
853  *
854  * This number can be different from xkb_keymap_num_layouts(), but is always
855  * smaller.  It is the appropriate value to use when iterating over the
856  * layouts of a key.
857  *
858  * @sa xkb_layout_index_t
859  * @memberof xkb_keymap
860  */
861 xkb_layout_index_t
862 xkb_keymap_num_layouts_for_key(struct xkb_keymap *keymap, xkb_keycode_t key);
863
864 /**
865  * Get the number of shift levels for a specific key and layout.
866  *
867  * @sa xkb_level_index_t
868  * @memberof xkb_keymap
869  */
870 xkb_level_index_t
871 xkb_keymap_num_levels_for_key(struct xkb_keymap *keymap, xkb_keycode_t key,
872                               xkb_layout_index_t layout);
873
874 /**
875  * Get the keysyms obtained from pressing a key in a given layout and
876  * shift level.
877  *
878  * This function is like xkb_state_key_get_syms(), only the layout and
879  * shift level are not derived from the keyboard state but are instead
880  * specified explicitly.
881  *
882  * @param[in] keymap    The keymap.
883  * @param[in] key       The keycode of the key.
884  * @param[in] layout    The layout for which to get the keysyms. This must
885  * be smaller than:
886  * @code xkb_keymap_num_layouts_for_key(keymap, key) @endcode
887  * Usually it would be:
888  * @code xkb_state_key_get_layout(state, key) @endcode
889  * @param[in] level     The shift level in the layout for which to get the
890  * keysyms. This must be smaller than:
891  * @code xkb_keymap_num_layouts_for_key(keymap, key) @endcode
892  * usually it would be:
893  * @code xkb_state_key_get_level(state, key, layout) @endcode
894  * @param[out] syms_out An immutible array of keysyms corresponding the
895  * key in the given layout and shift level.
896  *
897  * @returns The number of keysyms in the syms_out array.  If no keysyms
898  * are produced by the key in the given layout and shift level, returns 0
899  * and sets syms_out to NULL.
900  *
901  * @sa xkb_state_key_get_syms()
902  * @memberof xkb_keymap
903  */
904 int
905 xkb_keymap_key_get_syms_by_level(struct xkb_keymap *keymap,
906                                  xkb_keycode_t key,
907                                  xkb_layout_index_t layout,
908                                  xkb_level_index_t level,
909                                  const xkb_keysym_t **syms_out);
910
911 /**
912  * Get the number of LEDs in the keymap.
913  *
914  * @warning The range [ 0...xkb_keymap_num_leds() ) includes all of the LEDs
915  * in the keymap, but may also contain inactive LEDs.  When iterating over
916  * this range, you need the handle this case when calling functions such as
917  * xkb_keymap_led_get_name() or xkb_state_led_index_is_active().
918  *
919  * @sa xkb_led_index_t
920  * @memberof xkb_keymap
921  */
922 xkb_led_index_t
923 xkb_keymap_num_leds(struct xkb_keymap *keymap);
924
925 /**
926  * Get the name of a LED by index.
927  *
928  * @returns The name.  If the index is invalid, returns NULL.
929  *
930  * @memberof xkb_keymap
931  */
932 const char *
933 xkb_keymap_led_get_name(struct xkb_keymap *keymap, xkb_led_index_t idx);
934
935 /**
936  * Get the index of a LED by name.
937  *
938  * @returns The index.  If no LED with this name exists, returns
939  * XKB_LED_INVALID.
940  *
941  * @memberof xkb_keymap
942  */
943 xkb_led_index_t
944 xkb_keymap_led_get_index(struct xkb_keymap *keymap, const char *name);
945
946 /**
947  * Determine whether a key should repeat or not.
948  *
949  * A keymap may specify different repeat behaviors for different keys.
950  * Most keys should generally exhibit repeat behavior; for example, holding
951  * the 'a' key down in a text editor should normally insert a single 'a'
952  * character every few milliseconds, until the key is released.  However,
953  * there are keys which should not or do not need to be repeated.  For
954  * example, repeating modifier keys such as Left/Right Shift or Caps Lock
955  * is not generally useful or desired.
956  *
957  * @returns 1 if the key should repeat, 0 otherwise.
958  *
959  * @memberof xkb_keymap
960  */
961 int
962 xkb_keymap_key_repeats(struct xkb_keymap *keymap, xkb_keycode_t key);
963
964 /** @} */
965
966 /**
967  * @defgroup state Keyboard State
968  * Creating, destroying and manipulating keyboard state objects.
969  *
970  * @{
971  */
972
973 /**
974  * Create a new keyboard state object for a keymap.
975  *
976  * @param keymap The keymap for which to create the state.
977  *
978  * @returns A new keyboard state object, or NULL on failure.
979  *
980  * @memberof xkb_state
981  */
982 struct xkb_state *
983 xkb_state_new(struct xkb_keymap *keymap);
984
985 /**
986  * Take a new reference on a keyboard state object.
987  *
988  * @returns The passed in object.
989  *
990  * @memberof xkb_state
991  */
992 struct xkb_state *
993 xkb_state_ref(struct xkb_state *state);
994
995 /**
996  * Release a reference on a keybaord state object, and possibly free it.
997  *
998  * @param state The state.  If it is NULL, this function does nothing.
999  *
1000  * @memberof xkb_state
1001  */
1002 void
1003 xkb_state_unref(struct xkb_state *state);
1004
1005 /**
1006  * Get the keymap from which a keyboard state object was created.
1007  *
1008  * @returns The keymap which was used in xkb_state_new() to create this
1009  * state object.
1010  *
1011  * This function does not take a new reference on the keymap; you must
1012  * explicitly reference it yourself if you plan to use it beyond the
1013  * lifetime of the state.
1014  *
1015  * @memberof xkb_state
1016  */
1017 struct xkb_keymap *
1018 xkb_state_get_keymap(struct xkb_state *state);
1019
1020 /** Specifies the direction of the key (press / release). */
1021 enum xkb_key_direction {
1022     XKB_KEY_UP,   /**< The key was released. */
1023     XKB_KEY_DOWN, /**< The key was pressed. */
1024 };
1025
1026 /**
1027  * Modifier and layout types for state objects.  This enum is bitmaskable,
1028  * e.g. (XKB_STATE_MODS_DEPRESSED | XKB_STATE_MODS_LATCHED) is valid to
1029  * exclude locked modifiers.
1030  *
1031  * In XKB, the DEPRESSED components are also known as 'base'.
1032  */
1033 enum xkb_state_component {
1034     /** Depressed modifiers, i.e. a key is physically holding them. */
1035     XKB_STATE_MODS_DEPRESSED = (1 << 0),
1036     /** Latched modifiers, i.e. will be unset after the next non-modifier
1037      *  key press. */
1038     XKB_STATE_MODS_LATCHED = (1 << 1),
1039     /** Locked modifiers, i.e. will be unset after the key provoking the
1040      *  lock has been pressed again. */
1041     XKB_STATE_MODS_LOCKED = (1 << 2),
1042     /** Effective modifiers, i.e. currently active and affect key
1043      *  processing (derived from the other state components). */
1044     XKB_STATE_MODS_EFFECTIVE = (1 << 3),
1045     /** Depressed layout, i.e. a key is physically holding it. */
1046     XKB_STATE_LAYOUT_DEPRESSED = (1 << 4),
1047     /** Latched layout, i.e. will be unset after the next non-modifier
1048      *  key press. */
1049     XKB_STATE_LAYOUT_LATCHED = (1 << 5),
1050     /** Locked layout, i.e. will be unset after the key provoking the lock
1051      *  has been pressed again. */
1052     XKB_STATE_LAYOUT_LOCKED = (1 << 6),
1053     /** Effective layout, i.e. currently active and affects key processing
1054      *  (derived from the other state components). */
1055     XKB_STATE_LAYOUT_EFFECTIVE = (1 << 7),
1056     /** LEDs (derived from the other state components). */
1057     XKB_STATE_LEDS = (1 << 8),
1058 };
1059
1060 /**
1061  * Update the keyboard state to reflect a given key being pressed or
1062  * released.
1063  *
1064  * @returns A mask of state components that have changed as a result of
1065  * the update.  If nothing in the state has changed, returns 0.
1066  *
1067  * @memberof xkb_state
1068  */
1069 enum xkb_state_component
1070 xkb_state_update_key(struct xkb_state *state, xkb_keycode_t key,
1071                      enum xkb_key_direction direction);
1072
1073 /**
1074  * Get the keysyms obtained from pressing a particular key in a given
1075  * keyboard state.
1076  *
1077  * Get the keysyms for a key according to the current active layout,
1078  * modifiers and shift level for the key, as determined by a keyboard
1079  * state.
1080  *
1081  * @param[in]  state    The keyboard state object.
1082  * @param[in]  key      The keycode of the key.
1083  * @param[out] syms_out An immutible array of keysyms corresponding the
1084  * key in the given keyboard state.
1085  *
1086  * As an extension to XKB, this function can return more than one keysym.
1087  * If you do not want to handle this case, you can use
1088  * xkb_state_key_get_one_sym().
1089  *
1090  * @returns The number of keysyms in the syms_out array.  If no keysyms
1091  * are produced by the key in the given keyboard state, returns 0 and sets
1092  * syms_out to NULL.
1093  *
1094  * @memberof xkb_state
1095  */
1096 int
1097 xkb_state_key_get_syms(struct xkb_state *state, xkb_keycode_t key,
1098                        const xkb_keysym_t **syms_out);
1099
1100 /**
1101  * Get the single keysym obtained from pressing a particular key in a
1102  * given keyboard state.
1103  *
1104  * This function is similar to xkb_state_key_get_syms(), but with a
1105  * simplified interface for users which cannot or do not want to handle
1106  * the case where multiple keysyms are returned.
1107  *
1108  * @returns The keysym.  If the key does not have exactly one keysym,
1109  * returns XKB_KEY_NoSymbol
1110  *
1111  * @sa xkb_state_key_get_syms()
1112  * @memberof xkb_state
1113  */
1114 xkb_keysym_t
1115 xkb_state_key_get_one_sym(struct xkb_state *state, xkb_keycode_t key);
1116
1117 /**
1118  * Get the effective layout index for a key in a given keyboard state.
1119  *
1120  * @returns The layout index for the key in the given keyboard state.  If
1121  * the given keycode is invalid, or if the key is not included in any
1122  * layout at all, returns XKB_LAYOUT_INVALID.
1123  *
1124  * @invariant If the returned layout is valid, the following always holds:
1125  * @code
1126  * xkb_state_key_get_layout(state, key) < xkb_keymap_num_layouts_for_key(keymap, key)
1127  * @endcode
1128  *
1129  * @memberof xkb_state
1130  */
1131 xkb_layout_index_t
1132 xkb_state_key_get_layout(struct xkb_state *state, xkb_keycode_t key);
1133
1134 /**
1135  * Get the effective shift level for a key in a given keyboard state and
1136  * layout.
1137  *
1138  * @param state The keyboard state.
1139  * @param key The keycode of the key.
1140  * @param layout The layout for which to get the shift level.  This must be
1141  * smaller than:
1142  * @code xkb_keymap_num_layouts_for_key(keymap, key) @endcode
1143  * usually it would be:
1144  * @code xkb_state_key_get_layout(state, key) @endcode
1145  *
1146  * @return The shift level index.  If the key or layout are invalid,
1147  * returns XKB_LEVEL_INVALID.
1148  *
1149  * @invariant If the returned level is valid, the following always holds:
1150  * @code
1151  * xkb_state_key_get_level(state, key, layout) < xkb_keymap_num_levels_for_key(keymap, key, layout)
1152  * @endcode
1153  *
1154  * @memberof xkb_state
1155  */
1156 xkb_level_index_t
1157 xkb_state_key_get_level(struct xkb_state *state, xkb_keycode_t key,
1158                         xkb_layout_index_t layout);
1159
1160 /**
1161  * Match flags for xkb_state_mod_indices_are_active and
1162  * xkb_state_mod_names_are_active, specifying how the conditions for a
1163  * successful match.  XKB_STATE_MATCH_NON_EXCLUSIVE is bitmaskable with
1164  * the other modes.
1165  */
1166 enum xkb_state_match {
1167     /** Returns true if any of the modifiers are active. */
1168     XKB_STATE_MATCH_ANY = (1 << 0),
1169     /** Returns true if all of the modifiers are active. */
1170     XKB_STATE_MATCH_ALL = (1 << 1),
1171     /** Makes matching non-exclusive, i.e. will not return false if a
1172      *  modifier not specified in the arguments is active. */
1173     XKB_STATE_MATCH_NON_EXCLUSIVE = (1 << 16),
1174 };
1175
1176 /**
1177  * Update a keyboard state from a set of explicit masks.
1178  *
1179  * This entrypoint is really only for window systems and the like, where a
1180  * master process holds an xkb_state, then serializes it over a wire
1181  * protocol, and clients then use the serialization to feed in to their own
1182  * xkb_state.
1183  *
1184  * All parameters must always be passed, or the resulting state may be
1185  * incoherent.
1186  *
1187  * The serialization is lossy and will not survive round trips; it must only
1188  * be used to feed slave state objects, and must not be used to update the
1189  * master state.
1190  *
1191  * Please do not use this unless you fit the description above.
1192  *
1193  * @returns A mask of state components that have changed as a result of
1194  * the update.  If nothing in the state has changed, returns 0.
1195  *
1196  * @memberof xkb_state
1197  */
1198 enum xkb_state_component
1199 xkb_state_update_mask(struct xkb_state *state,
1200                       xkb_mod_mask_t depressed_mods,
1201                       xkb_mod_mask_t latched_mods,
1202                       xkb_mod_mask_t locked_mods,
1203                       xkb_layout_index_t depressed_layout,
1204                       xkb_layout_index_t latched_layout,
1205                       xkb_layout_index_t locked_layout);
1206
1207 /**
1208  * The counterpart to xkb_state_update_mask for modifiers, to be used on
1209  * the server side of serialization.
1210  *
1211  * @param state      The keyboard state.
1212  * @param components A mask of the modifier state components to serialize.
1213  * State components other than XKB_STATE_MODS_* are ignored.
1214  * If XKB_STATE_MODS_EFFECTIVE is included, all other state components are
1215  * ignored.
1216  *
1217  * @returns A xkb_mod_mask_t representing the given components of the
1218  * modifier state.
1219  *
1220  * This function should not be used in regular clients; please use the
1221  * xkb_state_mod_*_is_active API instead.
1222  *
1223  * @memberof xkb_state
1224  */
1225 xkb_mod_mask_t
1226 xkb_state_serialize_mods(struct xkb_state *state,
1227                          enum xkb_state_component components);
1228
1229 /**
1230  * The counterpart to xkb_state_update_mask for layouts, to be used on
1231  * the server side of serialization.
1232  *
1233  * @param state      The keyboard state.
1234  * @param components A mask of the layout state components to serialize.
1235  * State components other than XKB_STATE_LAYOUT_* are ignored.
1236  * If XKB_STATE_LAYOUT_EFFECTIVE is included, all other state components are
1237  * ignored.
1238  *
1239  * @returns A layout index representing the given components of the
1240  * layout state.
1241  *
1242  * This function should not be used in regular clients; please use the
1243  * xkb_state_layout_*_is_active API instead.
1244  *
1245  * @memberof xkb_state
1246  */
1247 xkb_layout_index_t
1248 xkb_state_serialize_layout(struct xkb_state *state,
1249                            enum xkb_state_component components);
1250
1251 /**
1252  * Test whether a modifier is active in a given keyboard state by name.
1253  *
1254  * @returns 1 if the modifier is active, 0 if it is not.  If the modifier
1255  * name does not exist in the keymap, returns -1.
1256  *
1257  * @memberof xkb_state
1258  */
1259 int
1260 xkb_state_mod_name_is_active(struct xkb_state *state, const char *name,
1261                              enum xkb_state_component type);
1262
1263 /**
1264  * Test whether a set of modifiers are active in a given keyboard state by
1265  * name.
1266  *
1267  * @param state The keyboard state.
1268  * @param type  The component of the state against which to match the
1269  * given modifiers.
1270  * @param match The manner by which to match the state against the
1271  * given modifiers.
1272  * @param ...   The set of of modifier names to test, terminated by a NULL
1273  * argument (sentinel).
1274  *
1275  * @returns 1 if the modifiers are active, 0 if they are not.  If any of
1276  * the modifier names do not exist in the keymap, returns -1.
1277  *
1278  * @memberof xkb_state
1279  */
1280 int
1281 xkb_state_mod_names_are_active(struct xkb_state *state,
1282                                enum xkb_state_component type,
1283                                enum xkb_state_match match,
1284                                ...);
1285
1286 /**
1287  * Test whether a modifier is active in a given keyboard state by index.
1288  *
1289  * @returns 1 if the modifier is active, 0 if it is not.  If the modifier
1290  * index is invalid in the keymap, returns -1.
1291  *
1292  * @memberof xkb_state
1293  */
1294 int
1295 xkb_state_mod_index_is_active(struct xkb_state *state, xkb_mod_index_t idx,
1296                               enum xkb_state_component type);
1297
1298 /**
1299  * Test whether a set of modifiers are active in a given keyboard state by
1300  * index.
1301  *
1302  * @param state The keyboard state.
1303  * @param type  The component of the state against which to match the
1304  * given modifiers.
1305  * @param match The manner by which to match the state against the
1306  * given modifiers.
1307  * @param ...   The set of of modifier indexes to test, terminated by a
1308  * XKB_MOD_INVALID argument (sentinel).
1309  *
1310  * @returns 1 if the modifiers are active, 0 if they are not.  If any of
1311  * the modifier indexes are invalid in the keymap, returns -1.
1312  *
1313  * @memberof xkb_state
1314  */
1315 int
1316 xkb_state_mod_indices_are_active(struct xkb_state *state,
1317                                  enum xkb_state_component type,
1318                                  enum xkb_state_match match,
1319                                  ...);
1320
1321 /**
1322  * Test whether a modifier is consumed by keyboard state translation for
1323  * a key.
1324  *
1325  * Some functions, like xkb_state_key_get_syms(), look at the state of
1326  * the modifiers in the keymap and derive from it the correct shift level
1327  * to use for the key.  For example, in a US layout, pressing the key
1328  * labeled \<A\> while the Shift modifier is active, generates the keysym 'A'.
1329  * In this case, the Shift modifier is said to be consumed.  However, the
1330  * Num Lock modifier does not affect this translation at all, even if it
1331  * active, so it is not consumed by this translation.
1332  *
1333  * It may be desireable for some application to not reuse consumed modifiers
1334  * for further processing, e.g. for hotkeys or keyboard shortcuts. To
1335  * understand why, consider some requirements from a standard shortcut
1336  * mechanism, and how they are implemented:
1337  *
1338  * 1. The shortcut's modifiers must match exactly to the state. For example,
1339  *    it is possible to bind separate actions to \<Alt\>\<Tab\> and to
1340  *    \<Alt\>\<Shift\>\<Tab\>. Further, if only \<Alt\>\<Tab\> is bound to
1341  *    an action, pressing \<Alt\>\<Shift\>\<Tab\> should not trigger the
1342  *    shortcut.
1343  *    Effectively, this means that the modifiers are compared using the
1344  *    equality operator (==).
1345  * 2. Only relevant modifiers are considered for the matching. For example,
1346  *    Caps Lock and Num Lock should not generally affect the matching, e.g.
1347  *    when matching \<Alt\>\<Tab\> against the state, it does not matter
1348  *    whether Num Lock is active or not. These relevant, or significant,
1349  *    modifiers usually include Alt, Control, Shift, Super and similar.
1350  *    Effectively, this means that non-significant modifiers are masked out,
1351  *    before doing the comparison as described above.
1352  * 3. The matching must be independent of the layout/keymap. For example,
1353  *    the \<Plus\> (+) symbol is found on the first level on some layouts,
1354  *    and requires holding Shift on others. If you simply bind the action
1355  *    to the \<Plus\> keysym, it would work for the unshifted kind, but
1356  *    not for the others, because the match against Shift would fail. If
1357  *    you bind the action to \<Shift\>\<Plus\>, only the shifted kind would
1358  *    work. So what is needed is to recognize that Shift is used up in the
1359  *    translation of the keysym itself, and therefore should not be included
1360  *    in the matching.
1361  *    Effectively, this means that consumed modifiers (Shift in this example)
1362  *    are masked out as well, before doing the comparison.
1363  *
1364  * To summarize, this is how the matching would be performed:
1365  * @code
1366  *   (keysym == shortcut_keysym) &&
1367  *   ((state_modifiers & ~consumed_modifiers & significant_modifiers) == shortcut_modifiers)
1368  * @endcode
1369  *
1370  * @c state_modifiers are the modifiers reported by
1371  * xkb_state_mod_index_is_active() and similar functions.
1372  * @c consumed_modifiers are the modifiers reported by
1373  * xkb_state_mod_index_is_consumed().
1374  * @c significant_modifiers are decided upon by the application/toolkit/user;
1375  * it is up to them to decide whether these are configurable or hard-coded.
1376  *
1377  * @returns 1 if the modifier is consumed, 0 if it is not.  If the modifier
1378  * index is not valid in the keymap, returns -1.
1379  *
1380  * @sa xkb_state_mod_mask_remove_consumed()
1381  * @memberof xkb_state
1382  */
1383 int
1384 xkb_state_mod_index_is_consumed(struct xkb_state *state, xkb_keycode_t key,
1385                                 xkb_mod_index_t idx);
1386
1387 /**
1388  * Remove consumed modifiers from a modifier mask for a key.
1389  *
1390  * Takes the given modifier mask, and removes all modifiers which are
1391  * consumed for that particular key (as in xkb_state_mod_index_is_consumed()).
1392  *
1393  * @sa xkb_state_mod_index_is_consumed()
1394  * @memberof xkb_state
1395  */
1396 xkb_mod_mask_t
1397 xkb_state_mod_mask_remove_consumed(struct xkb_state *state, xkb_keycode_t key,
1398                                    xkb_mod_mask_t mask);
1399
1400 /**
1401  * Test whether a layout is active in a given keyboard state by name.
1402  *
1403  * @returns 1 if the layout is active, 0 if it is not.  If no layout with
1404  * this name exists in the keymap, return -1.
1405  *
1406  * If multiple layouts in the keymap have this name, the one with the lowest
1407  * index is tested.
1408  *
1409  * @sa xkb_layout_index_t
1410  * @memberof xkb_state
1411  */
1412 int
1413 xkb_state_layout_name_is_active(struct xkb_state *state, const char *name,
1414                                 enum xkb_state_component type);
1415
1416 /**
1417  * Test whether a layout is active in a given keyboard state by index.
1418  *
1419  * @returns 1 if the layout is active, 0 if it is not.  If the layout index
1420  * is not valid in the keymap, returns -1.
1421  *
1422  * @sa xkb_layout_index_t
1423  * @memberof xkb_state
1424  */
1425 int
1426 xkb_state_layout_index_is_active(struct xkb_state *state,
1427                                  xkb_layout_index_t idx,
1428                                  enum xkb_state_component type);
1429
1430 /**
1431  * Test whether a LED is active in a given keyboard state by name.
1432  *
1433  * @returns 1 if the LED is active, 0 if it not.  If no LED with this name
1434  * exists in the keymap, returns -1.
1435  *
1436  * @sa xkb_led_index_t
1437  * @memberof xkb_state
1438  */
1439 int
1440 xkb_state_led_name_is_active(struct xkb_state *state, const char *name);
1441
1442 /**
1443  * Test whether a LED is active in a given keyboard state by index.
1444  *
1445  * @returns 1 if the LED is active, 0 if it not.  If the LED index is not
1446  * valid in the keymap, returns -1.
1447  *
1448  * @sa xkb_led_index_t
1449  * @memberof xkb_state
1450  */
1451 int
1452 xkb_state_led_index_is_active(struct xkb_state *state, xkb_led_index_t idx);
1453
1454 /** @} */
1455
1456 /* Leave this include last, so it can pick up our types, etc. */
1457 #include <xkbcommon/xkbcommon-compat.h>
1458
1459 #ifdef __cplusplus
1460 } /* extern "C" */
1461 #endif
1462
1463 #endif /* _XKBCOMMON_H_ */