libxkbcommon 1.7.0
|
Macros | |
#define | XKB_KEYSYM_MAX 0x1fffffff |
Typedefs | |
typedef uint32_t | xkb_keysym_t |
Enumerations | |
enum | xkb_keysym_flags { XKB_KEYSYM_NO_FLAGS = 0 , XKB_KEYSYM_CASE_INSENSITIVE = (1 << 0) } |
Functions | |
int | xkb_keysym_get_name (xkb_keysym_t keysym, char *buffer, size_t size) |
xkb_keysym_t | xkb_keysym_from_name (const char *name, enum xkb_keysym_flags flags) |
int | xkb_keysym_to_utf8 (xkb_keysym_t keysym, char *buffer, size_t size) |
uint32_t | xkb_keysym_to_utf32 (xkb_keysym_t keysym) |
xkb_keysym_t | xkb_utf32_to_keysym (uint32_t ucs) |
xkb_keysym_t | xkb_keysym_to_upper (xkb_keysym_t ks) |
xkb_keysym_t | xkb_keysym_to_lower (xkb_keysym_t ks) |
Utility functions related to keysyms (short for “key symbols”).
Capitalization transformation. If the Caps Lock modifier is active and was not consumed by the translation process, a single keysym is transformed to its upper-case form (if applicable). Similarly, the UTF-8/UTF-32 string produced is capitalized.
This is described in: https://www.x.org/releases/current/doc/kbproto/xkbproto.html#Interpreting_the_Lock_Modifier
Control transformation. If the Control modifier is active and was not consumed by the translation process, the string produced is transformed to its matching ASCII control character (if applicable). Keysyms are not affected.
This is described in: https://www.x.org/releases/current/doc/kbproto/xkbproto.html#Interpreting_the_Control_Modifier
#define XKB_KEYSYM_MAX 0x1fffffff |
typedef uint32_t xkb_keysym_t |
A number used to represent the symbols generated from a key on a keyboard.
A key, represented by a keycode, may generate different symbols according to keyboard state. For example, on a QWERTY keyboard, pressing the key labled <A> generates the symbol ‘a’. If the Shift key is held, it generates the symbol ‘A’. If a different layout is used, say Greek, it generates the symbol ‘α’. And so on.
Each such symbol is represented by a keysym (short for “key symbol”). Note that keysyms are somewhat more general, in that they can also represent some “function”, such as “Left” or “Right” for the arrow keys. For more information, see: Appendix A “KEYSYM Encoding” of the X Window System Protocol.
Specifically named keysyms can be found in the xkbcommon/xkbcommon-keysyms.h header file. Their name does not include the XKB_KEY_
prefix.
Besides those, any Unicode/ISO 10646 character in the range U+0100 to U+10FFFF can be represented by a keysym value in the range 0x01000100 to 0x0110FFFF. The name of Unicode keysyms is U<codepoint>
, e.g. UA1B2
.
The name of other unnamed keysyms is the hexadecimal representation of their value, e.g. 0xabcd1234
.
Keysym names are case-sensitive.
enum xkb_keysym_flags |
Flags for xkb_keysym_from_name().
Enumerator | |
---|---|
XKB_KEYSYM_NO_FLAGS | Do not apply any flags. |
XKB_KEYSYM_CASE_INSENSITIVE | Find keysym by case-insensitive search. |
int xkb_keysym_get_name | ( | xkb_keysym_t | keysym, |
char * | buffer, | ||
size_t | size ) |
Get the name of a keysym.
For a description of how keysyms are named, see xkb_keysym_t.
[in] | keysym | The keysym. |
[out] | buffer | A string buffer to write the name into. |
[in] | size | Size of the buffer. |
You may check if truncation has occurred by comparing the return value with the length of buffer, similarly to the snprintf(3) function.
xkb_keysym_t xkb_keysym_from_name | ( | const char * | name, |
enum xkb_keysym_flags | flags ) |
Get a keysym from its name.
name | The name of a keysym. See remarks in xkb_keysym_get_name(); this function will accept any name returned by that function. |
flags | A set of flags controlling how the search is done. If invalid flags are passed, this will fail with XKB_KEY_NoSymbol. |
If you use the XKB_KEYSYM_CASE_INSENSITIVE flag and two keysym names differ only by case, then the lower-case keysym name is returned. For instance, for KEY_a and KEY_A, this function would return KEY_a for the case-insensitive search. If this functionality is needed, it is recommended to first call this function without this flag; and if that fails, only then to try with this flag, while possibly warning the user he had misspelled the name, and might get wrong results.
Case folding is done according to the C locale; the current locale is not consulted.
int xkb_keysym_to_utf8 | ( | xkb_keysym_t | keysym, |
char * | buffer, | ||
size_t | size ) |
Get the Unicode/UTF-8 representation of a keysym.
[in] | keysym | The keysym. |
[out] | buffer | A buffer to write the UTF-8 string into. |
[in] | size | The size of buffer. Must be at least 7. |
This function does not perform any Keysym Transformations. Therefore, prefer to use xkb_state_key_get_utf8() if possible.
uint32_t xkb_keysym_to_utf32 | ( | xkb_keysym_t | keysym | ) |
Get the Unicode/UTF-32 representation of a keysym.
This function does not perform any Keysym Transformations. Therefore, prefer to use xkb_state_key_get_utf32() if possible.
xkb_keysym_t xkb_utf32_to_keysym | ( | uint32_t | ucs | ) |
Get the keysym corresponding to a Unicode/UTF-32 codepoint.
This function is the inverse of xkb_keysym_to_utf32. In cases where a single codepoint corresponds to multiple keysyms, returns the keysym with the lowest value.
Unicode codepoints which do not have a special (legacy) keysym encoding use a direct encoding scheme. These keysyms don't usually have an associated keysym constant (XKB_KEY_*).
For noncharacter Unicode codepoints and codepoints outside of the defined Unicode planes this function returns XKB_KEY_NoSymbol.
xkb_keysym_t xkb_keysym_to_upper | ( | xkb_keysym_t | ks | ) |
Convert a keysym to its uppercase form.
If there is no such form, the keysym is returned unchanged.
The conversion rules may be incomplete; prefer to work with the Unicode representation instead, when possible.
xkb_keysym_t xkb_keysym_to_lower | ( | xkb_keysym_t | ks | ) |
Convert a keysym to its lowercase form.
The conversion rules may be incomplete; prefer to work with the Unicode representation instead, when possible.