libxkbcommon
0.5.0
|
Data Structures | |
struct | xkb_compose_table |
struct | xkb_compose_state |
Enumerations | |
enum | xkb_compose_compile_flags { XKB_COMPOSE_COMPILE_NO_FLAGS = 0 } |
enum | xkb_compose_format { XKB_COMPOSE_FORMAT_TEXT_V1 = 1 } |
enum | xkb_compose_state_flags { XKB_COMPOSE_STATE_NO_FLAGS = 0 } |
enum | xkb_compose_status { XKB_COMPOSE_NOTHING, XKB_COMPOSE_COMPOSING, XKB_COMPOSE_COMPOSED, XKB_COMPOSE_CANCELLED } |
enum | xkb_compose_feed_result { XKB_COMPOSE_FEED_IGNORED, XKB_COMPOSE_FEED_ACCEPTED } |
Support for Compose and dead-keys.
<dead_acute> <a> : "á" aacute # LATIN SMALL LETTER A WITH ACUTE <Multi_key> <A> <T> : "@" at # COMMERCIAL ATWhen the user presses a key which produces the <dead_acute> keysym, nothing initially happens (thus the key is dubbed a "dead-key"). But when the user enters , "á" is "composed", in place of "a". If instead the user had entered a keysym which does not follow <dead_acute> in any compose sequence, the sequence is said to be "cancelled".Compose files define many such sequences. For a description of the common file format for Compose files, see the Compose(5) man page.A successfuly-composed sequence has two results: a keysym and a UTF-8 string. At least one of the two is defined for each sequence. If only a keysym is given, the keysym's string representation is used for the result string (using xkb_keysym_to_utf8()).This library provides low-level support for Compose file parsing and processing. Higher-level APIs (such as libX11's Xutf8LookupString(3)) may be built upon it, or it can be used directly.
locale
parameter. This will usually be the current locale (see locale(7) for more details). You may also want to allow the user to explicitly configure it, so he can use the Compose file of a given locale, but not use that locale for other things.enum xkb_compose_format |
enum xkb_compose_status |
Status of the Compose sequence state machine.
The effect of a keysym fed to xkb_compose_state_feed().
Enumerator | |
---|---|
XKB_COMPOSE_FEED_IGNORED |
The keysym had no effect - it did not affect the status. |
XKB_COMPOSE_FEED_ACCEPTED |
The keysym started, advanced or cancelled a sequence. |
|
read |
Create a compose table for a given locale.
The locale is used for searching the file-system for an appropriate Compose file. The search order is described in Compose(5). It is affected by the following environment variables: XCOMPOSEFILE, HOME, XLOCALEDIR.
context | The library context in which to create the compose table. |
locale | The current locale. See Compose Locale. |
flags | Optional flags for the compose table, or 0. |
|
read |
Create a new compose table from a Compose file.
context | The library context in which to create the compose table. |
file | The Compose file to compile. |
locale | The current locale. See Compose Locale. |
format | The text format of the Compose file to compile. |
flags | Optional flags for the compose table, or 0. |
|
read |
Create a new compose table from a memory buffer.
This is just like xkb_compose_table_new_from_file(), but instead of a file, gets the table as one enormous string.
|
read |
Take a new reference on a compose table.
void xkb_compose_table_unref | ( | struct xkb_compose_table * | table | ) |
Release a reference on a compose table, and possibly free it.
table | The object. If it is NULL, this function does nothing. |
|
read |
Create a new compose state object.
table | The compose table the state will use. |
flags | Optional flags for the compose state, or 0. |
|
read |
Take a new reference on a compose state object.
void xkb_compose_state_unref | ( | struct xkb_compose_state * | state | ) |
Release a reference on a compose state object, and possibly free it.
state | The object. If NULL, do nothing. |
|
read |
Get the compose table which a compose state object is using.
This function does not take a new reference on the compose table; you must explicitly reference it yourself if you plan to use it beyond the lifetime of the state.
enum xkb_compose_feed_result xkb_compose_state_feed | ( | struct xkb_compose_state * | state, |
xkb_keysym_t | keysym | ||
) |
Feed one keysym to the Compose sequence state machine.
This function can advance into a compose sequence, cancel a sequence, start a new sequence, or do nothing in particular . The resulting status may be observed with xkb_compose_state_get_status().
Some keysyms, such as keysysm for modifier keys, are ignored - they have no effect on the status or otherwise.
The following is a description of the possible status transitions, in the format CURRENT STATUS => NEXT STATUS, given a non-ignored input keysym keysym:
NOTHING or CANCELLED or COMPOSED => NOTHING if keysym does not start a sequence. COMPOSING if keysym starts a sequence. COMPOSED if keysym starts and terminates a single-keysym sequence. COMPOSING => COMPOSING if keysym advances any of the currently possible sequences but does not terminate any of them. COMPOSED if keysym terminates one of the currently possible sequences. CANCELLED if keysym does not advance any of the currently possible sequences.
The current Compose formats do not support multiple-keysyms. Therefore, if you are using a function such as xkb_state_key_get_syms() and it returns more than one keysym, consider feeding XKB_KEY_NoSymbol
instead.
state | The compose state object. |
keysym | A keysym, usually obtained after a key-press event, with a function such as xkb_state_key_get_one_sym(). |
void xkb_compose_state_reset | ( | struct xkb_compose_state * | state | ) |
Reset the Compose sequence state machine.
The status is set to XKB_COMPOSE_NOTHING, and the current sequence is discarded.
enum xkb_compose_status xkb_compose_state_get_status | ( | struct xkb_compose_state * | state | ) |
Get the current status of the compose state machine.
int xkb_compose_state_get_utf8 | ( | struct xkb_compose_state * | state, |
char * | buffer, | ||
size_t | size | ||
) |
Get the result Unicode/UTF-8 string for a composed sequence.
See Overview for more details. This function is only useful when the status is XKB_COMPOSE_COMPOSED.
[in] | state | The compose state. |
[out] | buffer | A buffer to write the string into. |
[in] | size | Size of the buffer. |
buffer
to the empty string (if possible). buffer
, similarly to the snprintf(3) function. You may safely pass NULL and 0 to buffer
and size
to find the required size (without the NUL-byte). xkb_keysym_t xkb_compose_state_get_one_sym | ( | struct xkb_compose_state * | state | ) |
Get the result keysym for a composed sequence.
See Overview for more details. This function is only useful when the status is XKB_COMPOSE_COMPOSED.