Add return value the xkb_keysym_get_name
[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  *
58  * Permission is hereby granted, free of charge, to any person obtaining a
59  * copy of this software and associated documentation files (the "Software"),
60  * to deal in the Software without restriction, including without limitation
61  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
62  * and/or sell copies of the Software, and to permit persons to whom the
63  * Software is furnished to do so, subject to the following conditions:
64  *
65  * The above copyright notice and this permission notice (including the next
66  * paragraph) shall be included in all copies or substantial portions of the
67  * Software.
68  *
69  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
70  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
71  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
72  * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
73  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
74  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
75  * DEALINGS IN THE SOFTWARE.
76  *
77  * Author: Daniel Stone <daniel@fooishbar.org>
78  */
79
80 #ifndef _XKBCOMMON_H_
81 #define _XKBCOMMON_H_
82
83 #include <stdint.h>
84 #include <stdio.h>
85 #include <stdarg.h>
86
87 #include <xkbcommon/xkbcommon-names.h>
88 #include <xkbcommon/xkbcommon-keysyms.h>
89
90 #ifdef __cplusplus
91 extern "C" {
92 #endif
93
94 /**
95  * @file
96  * @brief Main libxkbcommon API.
97  */
98
99 /**
100  * @struct xkb_context
101  * @brief Opaque top level library context object.
102  *
103  * The context contains various general library data and state, like
104  * logging level and include paths.
105  * Objects are created in a specific context, and multiple contexts may
106  * coexist simultaneously. Objects from different contexts are completely
107  * separated and do not share any memory or state.
108  * A context is created, accessed, manipulated and destroyed through the
109  * xkb_context_*() API.
110  */
111 struct xkb_context;
112
113 /**
114  * @struct xkb_keymap
115  * @brief Opaque compiled XKB keymap object.
116  *
117  * The keymap object holds all of the static keyboard information obtained
118  * from compiling XKB files.
119  * A keymap is immutable after it is created (besides reference counts, etc.);
120  * if you need to change it, you must create a new one.
121  * A keymap object is created, accessed and destroyed through the
122  * xkb_keymap_*() API.
123  */
124 struct xkb_keymap;
125
126 /**
127  * @struct xkb_state
128  * @brief Opaque XKB keyboard state object.
129  *
130  * State objects contain the active state of a keyboard (or keyboards), such
131  * as the currently effective layout and the active modifiers. It acts as a
132  * simple state machine, wherein key presses and releases are the input, and
133  * key symbols (keysyms) are the output.
134  * A state object is created, accessed, manipulated and destroyed through the
135  * xkb_state_*() API.
136  */
137 struct xkb_state;
138
139 typedef uint32_t xkb_keycode_t;
140 typedef uint32_t xkb_keysym_t;
141 typedef uint32_t xkb_mod_index_t;
142 typedef uint32_t xkb_mod_mask_t;
143 typedef uint32_t xkb_layout_index_t;
144 typedef uint32_t xkb_layout_mask_t;
145 typedef uint32_t xkb_level_index_t;
146 typedef uint32_t xkb_led_index_t;
147 typedef uint32_t xkb_led_mask_t;
148
149 #define XKB_MOD_INVALID     (0xffffffff)
150 #define XKB_LAYOUT_INVALID  (0xffffffff)
151 #define XKB_KEYCODE_INVALID (0xffffffff)
152 #define XKB_LEVEL_INVALID   (0xffffffff)
153 #define XKB_LED_INVALID     (0xffffffff)
154
155 #define XKB_KEYCODE_MAX     (0xffffffff - 1)
156 #define xkb_keycode_is_legal_ext(kc) (kc <= XKB_KEYCODE_MAX)
157 #define xkb_keycode_is_legal_x11(kc) (kc >= 8 && kc <= 255)
158
159 /**
160  * @brief Names to compile a keymap with, also known as RMLVO.
161  *
162  * These names together are the primary identifier for a keymap.
163  * If any of the members is NULL or an empty string (""), a default value is
164  * used.
165  */
166 struct xkb_rule_names {
167     /** The rules file to use. The rules file describes how to interpret
168      *  the values of the model, layout, variant and options fields. */
169     const char *rules;
170     /** The keyboard model by which to interpret keycodes and LEDs. */
171     const char *model;
172     /** A comma seperated list of layouts (languages) to include in the
173      *  keymap. */
174     const char *layout;
175     /** A comma seperated list of variants, one per layout, which may
176      *  modify or augment the respective layout in various ways. */
177     const char *variant;
178     /** A comma seprated list of options, through which the user specifies
179      *  non-layout related preferences, like which key combinations are used
180      *  for switching layouts, or which key is the Compose key. */
181     const char *options;
182 };
183
184 /**
185  * @defgroup keysyms Keysyms
186  * @brief Utility functions related to keysyms.
187  *
188  * @{
189  */
190
191 /**
192  * @brief Get the name of a keysym.
193  *
194  * @param[in]  keysym The keysym.
195  * @param[out] buffer A string buffer to write the name into.
196  * @param[in]  size   Size of the buffer.
197  *
198  * @remark Named keysyms are found in the xkbcommon/xkbcommon-keysyms.h
199  * header file. Their name does not include the XKB_KEY_ prefix.
200  * The name of Unicode keysyms is "U<codepoint>", e.g. "Ua1b2".
201  * The name of other unnamed keysyms is the hexadecimal representation of
202  * their value, e.g. "0xabcd1234".
203  * An invalid keysym is returned as "Invalid".
204  *
205  * @warning If the buffer passed is too small, the string is truncated
206  * (though still NUL-terminated); a size of at least 32 bytes is recommended.
207  *
208  * @returns The number of bytes in the name, excluding the NUL byte, if
209  * keysym is valid.  Otherwise, -1 is returned.
210  *
211  * @remark You may check if truncation has occured by comparing the return
212  * value with the length of buffer, similarly to the snprintf(3) function.
213  */
214 int
215 xkb_keysym_get_name(xkb_keysym_t keysym, char *buffer, size_t size);
216
217 /**
218  * @brief Get a keysym from its name.
219  *
220  * @param name The name of a keysym. See remarks in
221  * xkb_keysym_get_name(); this function will accept any name returned by that
222  * function.
223  *
224  * @remark The lookup is case-sensitive.
225  *
226  * @returns The keysym, if name is valid.  Otherwise, XKB_KEY_NoSymbol is
227  * returned.
228  */
229 xkb_keysym_t
230 xkb_keysym_from_name(const char *name);
231
232 /**
233  * @brief Get the Unicode/UTF-8 representation of a keysym.
234  *
235  * @param[in]  keysym The keysym.
236  * @param[out] buffer A buffer to write the UTF-8 string into.
237  * @param[in]  size   The size of buffer.  Must be at least 7.
238  *
239  * @returns The number of bytes written to the buffer.  A return value of
240  * 0 means that the keysym does not have a known printable Unicode
241  * representation.  A return value of -1 means that the buffer was too small.
242  */
243 int
244 xkb_keysym_to_utf8(xkb_keysym_t keysym, char *buffer, size_t size);
245
246 /**
247  * @brief Get the Unicode/UTF-32 representation of a keysym.
248  *
249  * @param keysym The keysym.
250  *
251  * @returns The Unicode/UTF-32 representation of keysym, which is also
252  * compatible with UCS-4.  A return value of 0 means the keysym does not
253  * have a known printable Unicode representation.
254  */
255 uint32_t
256 xkb_keysym_to_utf32(xkb_keysym_t keysym);
257
258 /** @} */
259
260 /**
261  * @defgroup context Library Context
262  * @brief Creating, destroying and using library contexts.
263  *
264  * Every keymap compilation request must have a context associated with
265  * it.  The context keeps around state such as the include path.
266  *
267  * @{
268  */
269
270 /** @brief Flags for context creation. */
271 enum xkb_context_flags {
272     /** Create this context with an empty include path. */
273     XKB_CONTEXT_NO_DEFAULT_INCLUDES = (1 << 0),
274 };
275
276 /**
277  * @brief Create a new context.
278  *
279  * @param flags Optional flags for the context, or 0.
280  *
281  * @returns A new context, or NULL on failure.
282  *
283  * @remark If successful, the caller holds a reference on the context, and
284  * must call xkb_context_unref() when finished.
285  *
286  * @remark The user may set some environment variables to affect default
287  * values in the context. See e.g. xkb_context_set_log_level() and
288  * xkb_context_set_log_verbosity().
289  */
290 struct xkb_context *
291 xkb_context_new(enum xkb_context_flags flags);
292
293 /**
294  * @brief Take a new reference on a context.
295  * @param context The context to reference.
296  * @returns The passed in context.
297  */
298 struct xkb_context *
299 xkb_context_ref(struct xkb_context *context);
300
301 /**
302  * @brief Release a reference on a context, and possibly free it.
303  * @param context The context to unreference.
304  */
305 void
306 xkb_context_unref(struct xkb_context *context);
307
308 /**
309  * @brief Append a new entry to the context's include path.
310  * @returns 1 on success, or 0 if the include path could not be added or is
311  * inaccessible.
312  */
313 int
314 xkb_context_include_path_append(struct xkb_context *context, const char *path);
315
316 /**
317  * @brief Append the default include paths to the context's include path.
318  * @returns 1 on success, or 0 if the primary include path could not be added.
319  */
320 int
321 xkb_context_include_path_append_default(struct xkb_context *context);
322
323 /**
324  * @brief Reset the context's include path to the default.
325  *
326  * Removes all entries from the context's include path, and inserts the
327  * default paths.
328  *
329  * @returns 1 on success, or 0 if the primary include path could not be added.
330  */
331 int
332 xkb_context_include_path_reset_defaults(struct xkb_context *context);
333
334 /**
335  * @brief Remove all entries from the context's include path.
336  */
337 void
338 xkb_context_include_path_clear(struct xkb_context *context);
339
340 /**
341  * @brief Get the number of paths in the context's include path.
342  * @returns The number of paths in the context's include path.
343  */
344 unsigned int
345 xkb_context_num_include_paths(struct xkb_context *context);
346
347 /**
348  * @brief Get a specific include path from the context's include path.
349  * @returns The include path at the specified index within the context, or
350  * NULL if the index is invalid.
351  */
352 const char *
353 xkb_context_include_path_get(struct xkb_context *context, unsigned int index);
354
355 /**
356  * @brief Store custom user data in the context.
357  *
358  * This may be useful in conjuction with xkb_context_set_log_fn() or other
359  * callbacks.
360  */
361 void
362 xkb_context_set_user_data(struct xkb_context *context, void *user_data);
363
364 /**
365  * @brief Retrieves stored user data from the context.
366  *
367  * @returns The stored user data.  If the user data wasn't set, or the
368  * passed in context is NULL, returns NULL.
369  *
370  * This may be useful to access private user data from callbacks like a
371  * custom logging function.
372  **/
373 void *
374 xkb_context_get_user_data(struct xkb_context *context);
375
376 /** @} */
377
378 /**
379  * @defgroup logging Logging Handling
380  * @brief Manipulating how logging from this library is handled.
381  *
382  * @{
383  */
384
385 /** @brief Specifies a logging level. */
386 enum xkb_log_level {
387     XKB_LOG_LEVEL_CRITICAL = 10, /**< Log critical internal errors only. */
388     XKB_LOG_LEVEL_ERROR = 20,    /**< Log all errors. */
389     XKB_LOG_LEVEL_WARNING = 30,  /**< Log warnings and errors. */
390     XKB_LOG_LEVEL_INFO = 40,     /**< Log information, warnings, and errors. */
391     XKB_LOG_LEVEL_DEBUG = 50,    /**< Log everything. */
392 };
393
394 /**
395  * @brief Set the current logging level.
396  *
397  * @param context The context in which to set the logging level.
398  * @param level   The logging level to use.  Only messages from this level
399  * and below will be logged.
400  *
401  * The default level is XKB_LOG_LEVEL_ERROR.  The environment variable
402  * XKB_LOG, if set in the time the context was created, overrides the default
403  * value.  It may be specified as a level number or name.
404  */
405 void
406 xkb_context_set_log_level(struct xkb_context *context,
407                           enum xkb_log_level level);
408
409 /**
410  * @brief Get the current logging level.
411  * @returns The current logging level.
412  */
413 enum xkb_log_level
414 xkb_context_get_log_level(struct xkb_context *context);
415
416 /**
417  * @brief Sets the current logging verbosity.
418  *
419  * The library can generate a number of warnings which are not helpful to
420  * ordinary users of the library.  The verbosity may be increased if more
421  * information is desired (e.g. when developing a new keymap).
422  *
423  * The default verbosity is 0.  The environment variable XKB_VERBOSITY, if
424  * set in the time the context was created, overrdies the default value.
425  *
426  * @param context   The context in which to use the set verbosity.
427  * @param verbosity The verbosity to use.  Currently used values are
428  * 1 to 10, higher values being more verbose.  0 would result in no verbose
429  * messages being logged.
430  *
431  * @remark Most verbose messages are of level XKB_LOG_LEVEL_WARNING or lower.
432  */
433 void
434 xkb_context_set_log_verbosity(struct xkb_context *context, int verbosity);
435
436 /**
437  * @brief Get the current logging verbosity of the context.
438  * @returns The current logging verbosity.
439  */
440 int
441 xkb_context_get_log_verbosity(struct xkb_context *context);
442
443 /**
444  * @brief Set a custom function to handle logging messages.
445  *
446  * @param context The context in which to use the set logging function.
447  * @param log_fn  The function that will be called for logging messages.
448  * Passing NULL restores the default function, which logs to stderr.
449  *
450  * By default, log messages from this library are printed to stderr.  This
451  * function allows you to replace the default behavior with a custom
452  * handler.  The handler is only called with messages which match the
453  * current logging level and verbosity settings for the context.
454  * level is the logging level of the message.  format and args are the
455  * same as in the vprintf(3) function.
456  *
457  * You may use xkb_context_set_user_data() on the context, and then call
458  * xkb_context_get_user_data() from within the logging function to provide
459  * it with additional private context.
460  */
461 void
462 xkb_context_set_log_fn(struct xkb_context *context,
463                        void (*log_fn)(struct xkb_context *context,
464                                       enum xkb_log_level level,
465                                       const char *format, va_list args));
466
467 /** @} */
468
469 /**
470  * @defgroup keymap Keymap Creation
471  * @brief Creating and destroying XKB keymaps.
472  *
473  * @{
474  */
475
476 /** @brief Flags for keymap compilation. */
477 enum xkb_keymap_compile_flags {
478     /** Apparently you can't have empty enums.  What a drag. */
479     XKB_MAP_COMPILE_PLACEHOLDER = 0,
480 };
481
482 /**
483  * @brief Create a keymap from RMLVO names.
484  *
485  * The primary keymap entry point: creates a new XKB keymap from a set of
486  * RMLVO (Rules + Model + Layouts + Variants + Options) names.
487  *
488  * You should almost certainly be using this and nothing else to create
489  * keymaps.
490  *
491  * @param context The context in which to create the keymap.
492  * @param names   The RMLVO names to use.
493  * @param flags   Optional flags for the keymap, or 0.
494  *
495  * @returns A keymap compiled according to the RMLVO names, or NULL if
496  * the compilation failed.
497  *
498  * @sa xkb_rule_names
499  */
500 struct xkb_keymap *
501 xkb_keymap_new_from_names(struct xkb_context *context,
502                           const struct xkb_rule_names *names,
503                           enum xkb_keymap_compile_flags flags);
504
505 /** @brief The possible keymap text formats. */
506 enum xkb_keymap_format {
507     /** The current/classic XKB text format, as generated by xkbcomp -xkb. */
508     XKB_KEYMAP_FORMAT_TEXT_V1 = 1,
509 };
510
511 /**
512  * @brief Create a keymap from an XKB keymap file.
513  *
514  * @param context The context in which to create the keymap.
515  * @param file    The XKB keymap file to compile.
516  * @param format  The text format of the XKB keymap file to compile.
517  * @param flags   Optional flags for the keymap, or 0.
518  *
519  * @returns A keymap compiled from the given XKB keymap file, or NULL of
520  * the compilation failed.
521  *
522  * @remark The file must contain an entire XKB keymap.  For example, in the
523  * XKB_KEYMAP_FORMAT_TEXT_V1 format, this means the file must contain one
524  * top level '%xkb_keymap' section, which in turn contains other required
525  * sections.
526  */
527 struct xkb_keymap *
528 xkb_keymap_new_from_file(struct xkb_context *context, FILE *file,
529                          enum xkb_keymap_format format,
530                          enum xkb_keymap_compile_flags flags);
531
532 /**
533  * @brief Create a keymap from an XKB keymap given as a string.
534  *
535  * This is just like xkb_keymap_new_from_file(), but instead of a file, gets
536  * the XKB keymap as one enormous string.
537  *
538  * @see xkb_keymap_new_from_string()
539  */
540 struct xkb_keymap *
541 xkb_keymap_new_from_string(struct xkb_context *context, const char *string,
542                            enum xkb_keymap_format format,
543                            enum xkb_keymap_compile_flags flags);
544
545 /**
546  * @brief Take a new reference on a keymap.
547  * @param keymap The keymap to reference.
548  * @returns The passed in keymap.
549  */
550 struct xkb_keymap *
551 xkb_keymap_ref(struct xkb_keymap *keymap);
552
553 /**
554  * @brief Release a reference on a keymap, and possibly free it.
555  * @param keymap The keymap to unreference. If the reference count reaches
556  * zero, the keymap is freed.
557  */
558 void
559 xkb_keymap_unref(struct xkb_keymap *keymap);
560
561 /**
562  * @brief Get the compiled keymap as a string.
563  *
564  * @returns The compiled keymap as a NUL-terminated string, or NULL if
565  * unsuccessful.
566  *
567  * The returned string may be fed back into xkb_map_new_from_string() to get
568  * the exact same keymap (possibly in another process, etc.).
569  *
570  * @remark The returned string is dynamically allocated and should be freed
571  * by the caller.
572  */
573 char *
574 xkb_keymap_get_as_string(struct xkb_keymap *keymap);
575
576 /** @} */
577
578 /**
579  * @defgroup components XKB State Components
580  * @brief Enumeration of state components in a keymap.
581  *
582  * @{
583  */
584
585 /**
586  * Returns the number of modifiers active in the keymap.
587  */
588 xkb_mod_index_t
589 xkb_keymap_num_mods(struct xkb_keymap *keymap);
590
591 /**
592  * Returns the name of the modifier specified by 'idx', or NULL if invalid.
593  */
594 const char *
595 xkb_keymap_mod_get_name(struct xkb_keymap *keymap, xkb_mod_index_t idx);
596
597 /**
598  * Returns the index of the modifier specified by 'name', or XKB_MOD_INVALID.
599  */
600 xkb_mod_index_t
601 xkb_keymap_mod_get_index(struct xkb_keymap *keymap, const char *name);
602
603 /**
604  * Returns the number of groups active in the keymap.
605  */
606 xkb_layout_index_t
607 xkb_keymap_num_layouts(struct xkb_keymap *keymap);
608
609 /**
610  * Returns the name of the group specified by 'idx', or NULL if invalid.
611  */
612 const char *
613 xkb_keymap_layout_get_name(struct xkb_keymap *keymap, xkb_layout_index_t idx);
614
615 /**
616  * Returns the index of the layout specified by 'name', or XKB_LAYOUT_INVALID.
617  */
618 xkb_layout_index_t
619 xkb_keymap_layout_get_index(struct xkb_keymap *keymap, const char *name);
620
621 /**
622  * Returns the number of layouts active for the specified key.
623  */
624 xkb_layout_index_t
625 xkb_keymap_num_layouts_for_key(struct xkb_keymap *keymap, xkb_keycode_t key);
626
627 /**
628  * Returns the number of levels active for the specified key and layout.
629  */
630 xkb_level_index_t
631 xkb_keymap_num_levels_for_key(struct xkb_keymap *keymap, xkb_keycode_t key,
632                               xkb_layout_index_t layout);
633
634 /**
635  * Returns the number of LEDs in the given map.
636  */
637 xkb_led_index_t
638 xkb_keymap_num_leds(struct xkb_keymap *keymap);
639
640 /**
641  * Returns the name of the LED specified by 'idx', or NULL if invalid.
642  */
643 const char *
644 xkb_keymap_led_get_name(struct xkb_keymap *keymap, xkb_led_index_t idx);
645
646 /**
647  * Returns the index of the LED specified by 'name', or XKB_LED_INVALID.
648  */
649 xkb_led_index_t
650 xkb_keymap_led_get_index(struct xkb_keymap *keymap, const char *name);
651
652 /**
653  * Returns 1 if the key should repeat, or 0 otherwise.
654  */
655 int
656 xkb_keymap_key_repeats(struct xkb_keymap *keymap, xkb_keycode_t key);
657
658 /** @} */
659
660 /**
661  * @defgroup state XKB State Objects
662  * @brief Creating, destroying and manipulating keyboard state objects.
663  *
664  * @{
665  */
666
667 /**
668  * Returns a new XKB state object for use with the given keymap, or NULL on
669  * failure.
670  */
671 struct xkb_state *
672 xkb_state_new(struct xkb_keymap *keymap);
673
674 /**
675  * Takes a new reference on a state object.
676  */
677 struct xkb_state *
678 xkb_state_ref(struct xkb_state *state);
679
680 /**
681  * Unrefs and potentially deallocates a state object; the caller must not
682  * use the state object after calling this.
683  */
684 void
685 xkb_state_unref(struct xkb_state *state);
686
687 /**
688  * Get the keymap from which the state object was created.  Does not take
689  * a new reference on the map; you must explicitly reference it yourself
690  * if you plan to use it beyond the lifetime of the state.
691  */
692 struct xkb_keymap *
693 xkb_state_get_keymap(struct xkb_state *state);
694
695 /** @brief Specifies the direction of the key (press / release). */
696 enum xkb_key_direction {
697     XKB_KEY_UP,   /**< The key was released. */
698     XKB_KEY_DOWN, /**< The key was pressed. */
699 };
700
701 /**
702  * Updates a state object to reflect the given key being pressed or released.
703  */
704 void
705 xkb_state_update_key(struct xkb_state *state, xkb_keycode_t key,
706                      enum xkb_key_direction direction);
707
708 /**
709  * Gives the symbols obtained from pressing a particular key with the given
710  * state.  *syms_out will be set to point to an array of keysyms, with the
711  * return value being the number of symbols in *syms_out.  If the return
712  * value is 0, *syms_out will be set to NULL, as there are no symbols produced
713  * by this event.
714  */
715 int
716 xkb_state_key_get_syms(struct xkb_state *state, xkb_keycode_t key,
717                        const xkb_keysym_t **syms_out);
718
719 /**
720  * Returns the layout number that would be active for a particular key with
721  * the given state.
722  */
723 xkb_layout_index_t
724 xkb_state_key_get_layout(struct xkb_state *state, xkb_keycode_t key);
725
726 /**
727  * Returns the level number that would be active for a particular key with
728  * the given state and layout number, usually obtained from
729  * xkb_state_key_get_layout.
730  */
731 xkb_level_index_t
732 xkb_state_key_get_level(struct xkb_state *state, xkb_keycode_t key,
733                         xkb_layout_index_t layout);
734
735 /**
736  * Gives the symbols obtained from pressing a particular key with the given
737  * layout and level.  *syms_out will be set to point to an array of keysyms,
738  * with the return value being the number of symbols in *syms_out.  If the
739  * return value is 0, *syms_out will be set to NULL, as there are no symbols
740  * produced by this event.
741  */
742 int
743 xkb_keymap_key_get_syms_by_level(struct xkb_keymap *keymap,
744                                  xkb_keycode_t key,
745                                  xkb_layout_index_t layout,
746                                  xkb_level_index_t level,
747                                  const xkb_keysym_t **syms_out);
748
749 /**
750  * Modifier and group types for state objects.  This enum is bitmaskable,
751  * e.g. (XKB_STATE_DEPRESSED | XKB_STATE_LATCHED) is valid to exclude
752  * locked modifiers.
753  */
754 enum xkb_state_component {
755     /** A key holding this modifier or group is currently physically
756      *  depressed; also known as 'base'. */
757     XKB_STATE_DEPRESSED = (1 << 0),
758     /** Modifier or group is latched, i.e. will be unset after the next
759      *  non-modifier key press. */
760     XKB_STATE_LATCHED = (1 << 1),
761     /** Modifier or group is locked, i.e. will be unset after the key
762      *  provoking the lock has been pressed again. */
763     XKB_STATE_LOCKED = (1 << 2),
764     /** Combinatination of depressed, latched, and locked. */
765     XKB_STATE_EFFECTIVE =
766         (XKB_STATE_DEPRESSED | XKB_STATE_LATCHED | XKB_STATE_LOCKED),
767 };
768
769 /**
770  * Match flags for xkb_state_mod_indices_are_active and
771  * xkb_state_mod_names_are_active, specifying how the conditions for a
772  * successful match.  XKB_STATE_MATCH_NON_EXCLUSIVE is bitmaskable with
773  * the other modes.
774  */
775 enum xkb_state_match {
776     /** Returns true if any of the modifiers are active. */
777     XKB_STATE_MATCH_ANY = (1 << 0),
778     /** Returns true if all of the modifiers are active. */
779     XKB_STATE_MATCH_ALL = (1 << 1),
780     /** Makes matching non-exclusive, i.e. will not return false if a
781      *  modifier not specified in the arguments is active. */
782     XKB_STATE_MATCH_NON_EXCLUSIVE = (1 << 16),
783 };
784
785 /**
786  * Updates a state object from a set of explicit masks.  This entrypoint is
787  * really only for window systems and the like, where a master process
788  * holds an xkb_state, then serializes it over a wire protocol, and clients
789  * then use the serialization to feed in to their own xkb_state.
790  *
791  * All parameters must always be passed, or the resulting state may be
792  * incoherent.
793  *
794  * The serialization is lossy and will not survive round trips; it must only
795  * be used to feed slave state objects, and must not be used to update the
796  * master state.
797  *
798  * Please do not use this unless you fit the description above.
799  */
800 void
801 xkb_state_update_mask(struct xkb_state *state, xkb_mod_mask_t base_mods,
802                       xkb_mod_mask_t latched_mods, xkb_mod_mask_t locked_mods,
803                       xkb_layout_index_t base_group,
804                       xkb_layout_index_t latched_group,
805                       xkb_layout_index_t locked_group);
806
807 /**
808  * The counterpart to xkb_state_update_mask, to be used on the server side
809  * of serialization.  Returns a xkb_mod_mask_t representing the given
810  * component(s) of the state.
811  *
812  * This function should not be used in regular clients; please use the
813  * xkb_state_mod_*_is_active or xkb_state_foreach_active_mod API instead.
814  *
815  * Can return NULL on failure.
816  */
817 xkb_mod_mask_t
818 xkb_state_serialize_mods(struct xkb_state *state,
819                          enum xkb_state_component component);
820
821 /**
822  * The group equivalent of xkb_state_serialize_mods: please see its
823  * documentation.
824  */
825 xkb_layout_index_t
826 xkb_state_serialize_layout(struct xkb_state *state,
827                            enum xkb_state_component component);
828
829 /**
830  * Returns 1 if the modifier specified by 'name' is active in the manner
831  * specified by 'type', 0 if it is unset, or -1 if the modifier does not
832  * exist in the map.
833  */
834 int
835 xkb_state_mod_name_is_active(struct xkb_state *state, const char *name,
836                              enum xkb_state_component type);
837
838 /**
839  * Returns 1 if the modifiers specified by the varargs (NULL-terminated
840  * strings, with a NULL sentinel) are active in the manner specified by
841  * 'match', 0 otherwise, or -1 if any of the modifiers do not exist in
842  * the map.
843  */
844 int
845 xkb_state_mod_names_are_active(struct xkb_state *state,
846                                enum xkb_state_component type,
847                                enum xkb_state_match match,
848                                ...);
849
850 /**
851  * Returns 1 if the modifier specified by 'idx' is active in the manner
852  * specified by 'type', 0 if it is unset, or -1 if the modifier does not
853  * exist in the current map.
854  */
855 int
856 xkb_state_mod_index_is_active(struct xkb_state *state, xkb_mod_index_t idx,
857                               enum xkb_state_component type);
858
859 /**
860  * Returns 1 if the modifiers specified by the varargs (of type
861  * xkb_mod_index_t, with a XKB_MOD_INVALID sentinel) are active in the
862  * manner specified by 'match' and 'type', 0 otherwise, or -1 if any of
863  * the modifiers do not exist in the map.
864  */
865 int
866 xkb_state_mod_indices_are_active(struct xkb_state *state,
867                                  enum xkb_state_component type,
868                                  enum xkb_state_match match,
869                                  ...);
870
871 /**
872  * Returns 1 if the modifier specified by 'idx' is used in the
873  * translation of the keycode 'key' to the key symbols obtained by
874  * pressing it (as in xkb_key_get_syms), given the current state.
875  * Returns 0 otherwise.
876  */
877 int
878 xkb_state_mod_index_is_consumed(struct xkb_state *state, xkb_keycode_t key,
879                                 xkb_mod_index_t idx);
880
881 /**
882  * Takes the given modifier mask, and removes all modifiers which are
883  * marked as 'consumed' (see xkb_key_mod_index_is_consumed definition)
884  * for that particular key.
885  */
886 xkb_mod_mask_t
887 xkb_state_mod_mask_remove_consumed(struct xkb_state *state, xkb_keycode_t key,
888                                    xkb_mod_mask_t mask);
889
890 /**
891  * Returns 1 if the group specified by 'name' is active in the manner
892  * specified by 'type', 0 if it is unset, or -1 if the group does not
893  * exist in the current map.
894  */
895 int
896 xkb_state_layout_name_is_active(struct xkb_state *state, const char *name,
897                                 enum xkb_state_component type);
898
899 /**
900  * Returns 1 if the group specified by 'idx' is active in the manner
901  * specified by 'type', 0 if it is unset, or -1 if the group does not
902  * exist in the current map.
903  */
904 int
905 xkb_state_layout_index_is_active(struct xkb_state *state,
906                                  xkb_layout_index_t idx,
907                                  enum xkb_state_component type);
908
909 /**
910  * Returns 1 if the LED specified by 'name' is active, 0 if it is unset, or
911  * -1 if the LED does not exist in the current map.
912  */
913 int
914 xkb_state_led_name_is_active(struct xkb_state *state, const char *name);
915
916 /**
917  * Returns 1 if the LED specified by 'idx' is active, 0 if it is unset, or
918  * -1 if the LED does not exist in the current map.
919  */
920 int
921 xkb_state_led_index_is_active(struct xkb_state *state, xkb_led_index_t idx);
922
923 /** @} */
924
925 /* Leave this include last, so it can pick up our types, etc. */
926 #include <xkbcommon/xkbcommon-compat.h>
927
928 #ifdef __cplusplus
929 } /* extern "C" */
930 #endif
931
932 #endif /* _XKBCOMMON_H_ */