rofi/include/xkb-internal.h

32 lines
758 B
C
Raw Normal View History

#ifndef ROFI_XKB_INTERNAL_H
#define ROFI_XKB_INTERNAL_H
#include <xkbcommon/xkbcommon.h>
#include <xkbcommon/xkbcommon-compose.h>
struct xkb_stuff
{
2016-10-14 16:56:09 +00:00
/** connection to the X server*/
xcb_connection_t *xcb_connection;
2016-10-14 16:56:09 +00:00
/** Keyboard context */
struct xkb_context *context;
2016-10-14 16:56:09 +00:00
/** Flag indicating first event */
uint8_t first_event;
2016-10-14 16:56:09 +00:00
/** Keyboard device id */
int32_t device_id;
2016-10-14 16:56:09 +00:00
/** Current keymap */
struct xkb_keymap *keymap;
2016-10-14 16:56:09 +00:00
/** Keyboard state */
struct xkb_state *state;
2016-10-14 16:56:09 +00:00
/** Compose information */
struct
{
2016-10-14 16:56:09 +00:00
/** Compose table */
struct xkb_compose_table *table;
2016-10-14 16:56:09 +00:00
/** Compose state */
struct xkb_compose_state * state;
} compose;
};
#endif