xkb_keymap_key_get_syms_by_level

Get the keysyms obtained from pressing a key in a given layout and shift level.

This function is like xkb_state_key_get_syms(), only the layout and shift level are not derived from the keyboard state but are instead specified explicitly.

@paramin keymap The keymap. @paramin key The keycode of the key. @paramin layout The layout for which to get the keysyms. @paramin level The shift level in the layout for which to get the keysyms. This must be smaller than: @code xkb_keymap_num_levels_for_key(keymap, key) @endcode @paramout syms_out An immutable array of keysyms corresponding to the key in the given layout and shift level.

If @c layout is out of range for this key (that is, larger or equal to the value returned by xkb_keymap_num_layouts_for_key()), it is brought back into range in a manner consistent with xkb_state_key_get_layout().

@returns The number of keysyms in the syms_out array. If no keysyms are produced by the key in the given layout and shift level, returns 0 and sets syms_out to NULL.

@sa xkb_state_key_get_syms() @memberof xkb_keymap

extern (C)
int
xkb_keymap_key_get_syms_by_level

Meta