build: drop the include/ directory
[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 Daniel Stone
56  *
57  * Permission is hereby granted, free of charge, to any person obtaining a
58  * copy of this software and associated documentation files (the "Software"),
59  * to deal in the Software without restriction, including without limitation
60  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
61  * and/or sell copies of the Software, and to permit persons to whom the
62  * Software is furnished to do so, subject to the following conditions:
63  *
64  * The above copyright notice and this permission notice (including the next
65  * paragraph) shall be included in all copies or substantial portions of the
66  * Software.
67  *
68  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
69  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
70  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
71  * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
72  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
73  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
74  * DEALINGS IN THE SOFTWARE.
75  *
76  * Author: Daniel Stone <daniel@fooishbar.org>
77  */
78
79 #ifndef _XKBCOMMON_H_
80 #define _XKBCOMMON_H_
81
82 #include <stddef.h>
83 #include <stdint.h>
84 #include <stdio.h>
85
86 #include <xkbcommon/xkbcommon-names.h>
87 #include <xkbcommon/xkbcommon-keysyms.h>
88
89 typedef uint32_t xkb_keycode_t;
90 typedef uint32_t xkb_keysym_t;
91 typedef uint32_t xkb_mod_index_t;
92 typedef uint32_t xkb_mod_mask_t;
93 typedef uint32_t xkb_group_index_t;
94 typedef uint32_t xkb_led_index_t;
95
96 #define XKB_MOD_INVALID     (0xffffffff)
97 #define XKB_GROUP_INVALID   (0xffffffff)
98 #define XKB_KEYCODE_INVALID (0xffffffff)
99 #define XKB_LED_INVALID     (0xffffffff)
100
101 #define XKB_KEYCODE_MAX     (0xffffffff - 1)
102 #define xkb_keycode_is_legal_ext(kc) (kc <= XKB_KEYCODE_MAX)
103 #define xkb_keycode_is_legal_x11(kc) (kc >= 8 && kc <= 255)
104
105 /**
106  * Names to compile a keymap with, also known as RMLVO.  These names together
107  * should be the primary identifier for a keymap.
108  */
109 struct xkb_rule_names {
110     const char *rules;
111     const char *model;
112     const char *layout;
113     const char *variant;
114     const char *options;
115 };
116
117 /**
118  * Opaque context object; may only be created, accessed, manipulated and
119  * destroyed through the xkb_context_*() API.
120  */
121 struct xkb_context;
122
123 /**
124  * Opaque keymap object; may only be created, accessed, manipulated and
125  * destroyed through the xkb_state_*() API.
126  */
127 struct xkb_keymap;
128
129 /**
130  * Opaque state object; may only be created, accessed, manipulated and
131  * destroyed through the xkb_state_*() API.
132  */
133 struct xkb_state;
134
135 #ifdef __cplusplus
136 extern "C" {
137 #endif
138
139 /*
140  * Returns the name for a keysym as a string; will return unknown Unicode
141  * codepoints as "Ua1b2", and other unknown keysyms as "0xabcd1234".
142  * If the buffer passed is too small, the string is truncated; a size of
143  * at least 32 bytes is recommended.
144  */
145 void
146 xkb_keysym_get_name(xkb_keysym_t ks, char *buffer, size_t size);
147
148 /*
149  * See xkb_keysym_get_name comments: this function will accept any string
150  * from that function.
151  */
152 xkb_keysym_t
153 xkb_keysym_from_name(const char *s);
154
155 /**
156  * Return the printable representation of the keystring in Unicode/UTF-8.
157  * The buffer passed must be at least 7 bytes long.  The return value
158  * is the number of bytes written to the buffer.  A return value of zero
159  * means that the keysym does not have a known printable Unicode
160  * representation, and a return value of -1 means that the buffer was too
161  * small to contain the return.
162  */
163 int
164 xkb_keysym_to_utf8(xkb_keysym_t keysym, char *buffer, size_t size);
165
166 /**
167  * Returns the Unicode/UTF-32 representation of the provided keysym, which is
168  * also compatible with UCS-4.  A return value of zero means the keysym does
169  * not have a known printable Unicode representation.
170  */
171 uint32_t
172 xkb_keysym_to_utf32(xkb_keysym_t keysym);
173
174 /**
175  * @defgroup context XKB contexts
176  * Every keymap compilation request must have an XKB context associated with
177  * it.  The context keeps around state such as the include path.
178  *
179  * @{
180  */
181
182 enum xkb_context_flags {
183     /** Create this context with an empty include path. */
184     XKB_CONTEXT_NO_DEFAULT_INCLUDES = 1,
185 };
186
187 /**
188  * Returns a new XKB context, or NULL on failure.  If successful, the caller
189  * holds a reference on the context, and must free it when finished with
190  * xkb_context_unref().
191  */
192 struct xkb_context *
193 xkb_context_new(enum xkb_context_flags flags);
194
195 /**
196  * Appends a new entry to the include path used for keymap compilation.
197  * Returns 1 on success, or 0 if the include path could not be added or is
198  * inaccessible.
199  */
200 int
201 xkb_context_include_path_append(struct xkb_context *context, const char *path);
202
203 /**
204  * Appends the default include paths to the context's current include path.
205  * Returns 1 on success, or 0 if the primary include path could not be
206  * added.
207  */
208 int
209 xkb_context_include_path_append_default(struct xkb_context *context);
210
211 /**
212  * Removes all entries from the context's include path, and inserts the
213  * default paths.  Returns 1 on success, or 0 if the primary include path
214  * could not be added.
215  */
216 int
217 xkb_context_include_path_reset_defaults(struct xkb_context *context);
218
219 /**
220  * Removes all entries from the context's include path.
221  */
222 void
223 xkb_context_include_path_clear(struct xkb_context *context);
224
225 /**
226  * Returns the number of include paths currently active in the context.
227  */
228 unsigned int
229 xkb_context_num_include_paths(struct xkb_context *context);
230
231 /**
232  * Returns the include path at the specified index within the context.
233  */
234 const char *
235 xkb_context_include_path_get(struct xkb_context *context, unsigned int index);
236
237 /**
238  * Takes a new reference on an XKB context.
239  */
240 struct xkb_context *
241 xkb_context_ref(struct xkb_context *context);
242
243 /**
244  * Releases a reference on an XKB context, and possibly frees it.
245  */
246 void
247 xkb_context_unref(struct xkb_context *context);
248
249 /** @} */
250
251 /**
252  * @defgroup map Keymap management
253  * These utility functions allow you to create and deallocate XKB keymaps.
254  *
255  * @{
256  */
257
258 enum xkb_map_compile_flags {
259     /** Apparently you can't have empty enums.  What a drag. */
260     XKB_MAP_COMPILE_PLACEHOLDER = 0,
261 };
262
263 /**
264  * The primary keymap entry point: creates a new XKB keymap from a set of
265  * RMLVO (Rules + Model + Layout + Variant + Option) names.
266  *
267  * You should almost certainly be using this and nothing else to create
268  * keymaps.
269  */
270 struct xkb_keymap *
271 xkb_map_new_from_names(struct xkb_context *context,
272                        const struct xkb_rule_names *names,
273                        enum xkb_map_compile_flags flags);
274
275 enum xkb_keymap_format {
276     /** The current/classic XKB text format, as generated by xkbcomp -xkb. */
277     XKB_KEYMAP_FORMAT_TEXT_V1 = 1,
278 };
279
280 /**
281  * Creates an XKB keymap from a full text XKB keymap passed into the
282  * file.
283  */
284 struct xkb_keymap *
285 xkb_map_new_from_file(struct xkb_context *context, FILE *file,
286                       enum xkb_keymap_format format,
287                       enum xkb_map_compile_flags flags);
288
289 /**
290  * Creates an XKB keymap from a full text XKB keymap serialized into one
291  * enormous string.
292  */
293 struct xkb_keymap *
294 xkb_map_new_from_string(struct xkb_context *context, const char *string,
295                         enum xkb_keymap_format format,
296                         enum xkb_map_compile_flags flags);
297
298 /**
299  * Returns the compiled XKB map as a string which can later be fed back into
300  * xkb_map_new_from_string to return the exact same keymap.
301  */
302 char *
303 xkb_map_get_as_string(struct xkb_keymap *keymap);
304
305 /**
306  * Takes a new reference on a keymap.
307  */
308 struct xkb_keymap *
309 xkb_map_ref(struct xkb_keymap *keymap);
310
311 /**
312  * Releases a reference on a keymap.
313  */
314 void
315 xkb_map_unref(struct xkb_keymap *keymap);
316
317 /** @} */
318
319 /**
320  * @defgroup components XKB state components
321  * Allows enumeration of state components such as modifiers and groups within
322  * the current keymap.
323  *
324  * @{
325  */
326
327 /**
328  * Returns the number of modifiers active in the keymap.
329  */
330 xkb_mod_index_t
331 xkb_map_num_mods(struct xkb_keymap *keymap);
332
333 /**
334  * Returns the name of the modifier specified by 'idx', or NULL if invalid.
335  */
336 const char *
337 xkb_map_mod_get_name(struct xkb_keymap *keymap, xkb_mod_index_t idx);
338
339 /**
340  * Returns the index of the modifier specified by 'name', or XKB_MOD_INVALID.
341  */
342 xkb_mod_index_t
343 xkb_map_mod_get_index(struct xkb_keymap *keymap, const char *name);
344
345 /**
346  * Returns the number of groups active in the keymap.
347  */
348 xkb_group_index_t
349 xkb_map_num_groups(struct xkb_keymap *keymap);
350
351 /**
352  * Returns the name of the group specified by 'idx', or NULL if invalid.
353  */
354 const char *
355 xkb_map_group_get_name(struct xkb_keymap *keymap, xkb_group_index_t idx);
356
357 /**
358  * Returns the index of the group specified by 'name', or XKB_GROUP_INVALID.
359  */
360 xkb_group_index_t
361 xkb_map_group_get_index(struct xkb_keymap *keymap, const char *name);
362
363 /**
364  * Returns the number of groups active for the specified key.
365  */
366 xkb_group_index_t
367 xkb_key_num_groups(struct xkb_keymap *keymap, xkb_keycode_t key);
368
369 /**
370  * Returns 1 if the key should repeat, or 0 otherwise.
371  */
372 int
373 xkb_key_repeats(struct xkb_keymap *keymap, xkb_keycode_t key);
374
375 /**
376  * Returns the number of LEDs in the given map.
377  */
378 xkb_led_index_t
379 xkb_map_num_leds(struct xkb_keymap *keymap);
380
381 /**
382  * Returns the name of the LED specified by 'idx', or NULL if invalid.
383  */
384 const char *
385 xkb_map_led_get_name(struct xkb_keymap *keymap, xkb_led_index_t idx);
386
387 /**
388  * Returns the index of the LED specified by 'name', or XKB_LED_INVALID.
389  */
390 xkb_led_index_t
391 xkb_map_led_get_index(struct xkb_keymap *keymap, const char *name);
392
393 /** @} */
394
395 /**
396  * @defgroup state XKB state objects
397  * Creation, destruction and manipulation of keyboard state objects,
398  * representing modifier and group state.
399  *
400  * @{
401  */
402
403 /**
404  * Returns a new XKB state object for use with the given keymap, or NULL on
405  * failure.
406  */
407 struct xkb_state *
408 xkb_state_new(struct xkb_keymap *keymap);
409
410 /**
411  * Takes a new reference on a state object.
412  */
413 struct xkb_state *
414 xkb_state_ref(struct xkb_state *state);
415
416 /**
417  * Unrefs and potentially deallocates a state object; the caller must not
418  * use the state object after calling this.
419  */
420 void
421 xkb_state_unref(struct xkb_state *state);
422
423 /**
424  * Get the keymap from which the state object was created.  Does not take
425  * a new reference on the map; you must explicitly reference it yourself
426  * if you plan to use it beyond the lifetime of the state.
427  */
428 struct xkb_keymap *
429 xkb_state_get_map(struct xkb_state *state);
430
431 enum xkb_key_direction {
432     XKB_KEY_UP,
433     XKB_KEY_DOWN,
434 };
435
436 /**
437  * Updates a state object to reflect the given key being pressed or released.
438  */
439 void
440 xkb_state_update_key(struct xkb_state *state, xkb_keycode_t key,
441                      enum xkb_key_direction direction);
442
443 /**
444  * Gives the symbols obtained from pressing a particular key with the given
445  * state.  *syms_out will be set to point to an array of keysyms, with the
446  * return value being the number of symbols in *syms_out.  If the return
447  * value is 0, *syms_out will be set to NULL, as there are no symbols produced
448  * by this event.
449  *
450  * This should be called before xkb_state_update_key.
451  */
452 int
453 xkb_key_get_syms(struct xkb_state *state, xkb_keycode_t key,
454                  const xkb_keysym_t **syms_out);
455
456 /**
457  * Modifier and group types for state objects.  This enum is bitmaskable,
458  * e.g. (XKB_STATE_DEPRESSED | XKB_STATE_LATCHED) is valid to exclude
459  * locked modifiers.
460  */
461 enum xkb_state_component {
462     /** A key holding this modifier or group is currently physically
463      *  depressed; also known as 'base'. */
464     XKB_STATE_DEPRESSED = (1 << 0),
465     /** Modifier or group is latched, i.e. will be unset after the next
466      *  non-modifier key press. */
467     XKB_STATE_LATCHED = (1 << 1),
468     /** Modifier or group is locked, i.e. will be unset after the key
469      *  provoking the lock has been pressed again. */
470     XKB_STATE_LOCKED = (1 << 2),
471     /** Combinatination of depressed, latched, and locked. */
472     XKB_STATE_EFFECTIVE =
473         (XKB_STATE_DEPRESSED | XKB_STATE_LATCHED | XKB_STATE_LOCKED),
474 };
475
476 /**
477  * Match flags for xkb_state_mod_indices_are_active and
478  * xkb_state_mod_names_are_active, specifying how the conditions for a
479  * successful match.  XKB_STATE_MATCH_NON_EXCLUSIVE is bitmaskable with
480  * the other modes.
481  */
482 enum xkb_state_match {
483     /** Returns true if any of the modifiers are active. */
484     XKB_STATE_MATCH_ANY = (1 << 0),
485     /** Returns true if all of the modifiers are active. */
486     XKB_STATE_MATCH_ALL = (1 << 1),
487     /** Makes matching non-exclusive, i.e. will not return false if a
488      *  modifier not specified in the arguments is active. */
489     XKB_STATE_MATCH_NON_EXCLUSIVE = (1 << 16),
490 };
491
492 /**
493  * Updates a state object from a set of explicit masks.  This entrypoint is
494  * really only for window systems and the like, where a master process
495  * holds an xkb_state, then serializes it over a wire protocol, and clients
496  * then use the serialization to feed in to their own xkb_state.
497  *
498  * All parameters must always be passed, or the resulting state may be
499  * incoherent.
500  *
501  * The serialization is lossy and will not survive round trips; it must only
502  * be used to feed slave state objects, and must not be used to update the
503  * master state.
504  *
505  * Please do not use this unless you fit the description above.
506  */
507 void
508 xkb_state_update_mask(struct xkb_state *state, xkb_mod_mask_t base_mods,
509                       xkb_mod_mask_t latched_mods, xkb_mod_mask_t locked_mods,
510                       xkb_group_index_t base_group,
511                       xkb_group_index_t latched_group,
512                       xkb_group_index_t locked_group);
513
514 /**
515  * The counterpart to xkb_state_update_mask, to be used on the server side
516  * of serialization.  Returns a xkb_mod_mask_t representing the given
517  * component(s) of the state.
518  *
519  * This function should not be used in regular clients; please use the
520  * xkb_state_mod_*_is_active or xkb_state_foreach_active_mod API instead.
521  *
522  * Can return NULL on failure.
523  */
524 xkb_mod_mask_t
525 xkb_state_serialize_mods(struct xkb_state *state,
526                          enum xkb_state_component component);
527
528 /**
529  * The group equivalent of xkb_state_serialize_mods: please see its
530  * documentation.
531  */
532 xkb_group_index_t
533 xkb_state_serialize_group(struct xkb_state *state,
534                           enum xkb_state_component component);
535
536 /**
537  * Returns 1 if the modifier specified by 'name' is active in the manner
538  * specified by 'type', 0 if it is unset, or -1 if the modifier does not
539  * exist in the map.
540  */
541 int
542 xkb_state_mod_name_is_active(struct xkb_state *state, const char *name,
543                              enum xkb_state_component type);
544
545 /**
546  * Returns 1 if the modifiers specified by the varargs (treated as
547  * NULL-terminated pointers to strings) are active in the manner
548  * specified by 'match', 0 otherwise, or -1 if any of the modifiers
549  * do not exist in the map.
550  */
551 int
552 xkb_state_mod_names_are_active(struct xkb_state *state,
553                                enum xkb_state_component type,
554                                enum xkb_state_match match,
555                                ...);
556
557 /**
558  * Returns 1 if the modifier specified by 'idx' is active in the manner
559  * specified by 'type', 0 if it is unset, or -1 if the modifier does not
560  * exist in the current map.
561  */
562 int
563 xkb_state_mod_index_is_active(struct xkb_state *state, xkb_mod_index_t idx,
564                               enum xkb_state_component type);
565
566 /**
567  * Returns 1 if the modifiers specified by the varargs (treated as
568  * xkb_mod_index_t, terminated with XKB_MOD_INVALID) are active in the manner
569  * specified by 'match' and 'type', 0 otherwise, or -1 if the modifier does not
570  * exist in the current map.
571  */
572 int
573 xkb_state_mod_indices_are_active(struct xkb_state *state,
574                                  enum xkb_state_component type,
575                                  enum xkb_state_match match,
576                                  ...);
577
578 /**
579  * Returns 1 if the group specified by 'name' is active in the manner
580  * specified by 'type', 0 if it is unset, or -1 if the group does not
581  * exist in the current map.
582  */
583 int
584 xkb_state_group_name_is_active(struct xkb_state *state, const char *name,
585                                enum xkb_state_component type);
586
587 /**
588  * Returns 1 if the group specified by 'idx' is active in the manner
589  * specified by 'type', 0 if it is unset, or -1 if the group does not
590  * exist in the current map.
591  */
592 int
593 xkb_state_group_index_is_active(struct xkb_state *state,
594                                 xkb_group_index_t idx,
595                                 enum xkb_state_component type);
596
597 /**
598  * Returns 1 if the LED specified by 'name' is active, 0 if it is unset, or
599  * -1 if the LED does not exist in the current map.
600  */
601 int
602 xkb_state_led_name_is_active(struct xkb_state *state, const char *name);
603
604 /**
605  * Returns 1 if the LED specified by 'idx' is active, 0 if it is unset, or
606  * -1 if the LED does not exist in the current map.
607  */
608 int
609 xkb_state_led_index_is_active(struct xkb_state *state, xkb_led_index_t idx);
610
611 /** @} */
612
613 #ifdef __cplusplus
614 } /* extern "C" */
615 #endif
616
617 #endif /* _XKBCOMMON_H_ */