2012-11-18 22:06:50 +04:00
|
|
|
/*
|
|
|
|
* Copyright © 2012 Intel Corporation
|
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, distribute, and sell this software and
|
|
|
|
* its documentation for any purpose is hereby granted without fee, provided
|
|
|
|
* that the above copyright notice appear in all copies and that both that
|
|
|
|
* copyright notice and this permission notice appear in supporting
|
|
|
|
* documentation, and that the name of the copyright holders not be used in
|
|
|
|
* advertising or publicity pertaining to distribution of the software
|
|
|
|
* without specific, written prior permission. The copyright holders make
|
|
|
|
* no representations about the suitability of this software for any
|
|
|
|
* purpose. It is provided "as is" without express or implied warranty.
|
|
|
|
*
|
|
|
|
* THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS
|
|
|
|
* SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
|
|
|
* FITNESS, IN NO EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
|
|
* SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER
|
|
|
|
* RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF
|
|
|
|
* CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
|
|
|
|
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2012-11-27 22:41:48 +04:00
|
|
|
#include <unistd.h>
|
|
|
|
#include <sys/mman.h>
|
|
|
|
|
2012-11-18 22:06:50 +04:00
|
|
|
|
|
|
|
#include <linux/input.h>
|
|
|
|
|
|
|
|
#include "window.h"
|
|
|
|
#include "input-method-client-protocol.h"
|
|
|
|
|
|
|
|
enum compose_state {
|
|
|
|
state_normal,
|
|
|
|
state_compose
|
|
|
|
};
|
|
|
|
|
|
|
|
struct compose_seq {
|
|
|
|
uint32_t keys[4];
|
|
|
|
|
|
|
|
const char *text;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct simple_im {
|
|
|
|
struct input_method *input_method;
|
|
|
|
struct input_method_context *context;
|
2012-11-27 22:47:16 +04:00
|
|
|
struct xkb_context *xkb_context;
|
2012-11-27 23:07:22 +04:00
|
|
|
struct wl_display *display;
|
|
|
|
struct wl_registry *registry;
|
2012-11-18 22:06:50 +04:00
|
|
|
struct wl_keyboard *keyboard;
|
|
|
|
struct keyboard_input *keyboard_input;
|
|
|
|
enum compose_state compose_state;
|
|
|
|
struct compose_seq compose_seq;
|
|
|
|
};
|
|
|
|
|
|
|
|
static const struct compose_seq compose_seqs[] = {
|
|
|
|
{ { XKB_KEY_quotedbl, XKB_KEY_A, 0 }, "Ä" },
|
|
|
|
{ { XKB_KEY_quotedbl, XKB_KEY_O, 0 }, "Ö" },
|
|
|
|
{ { XKB_KEY_quotedbl, XKB_KEY_U, 0 }, "Ü" },
|
|
|
|
{ { XKB_KEY_quotedbl, XKB_KEY_a, 0 }, "ä" },
|
|
|
|
{ { XKB_KEY_quotedbl, XKB_KEY_o, 0 }, "ö" },
|
|
|
|
{ { XKB_KEY_quotedbl, XKB_KEY_u, 0 }, "ü" },
|
|
|
|
{ { XKB_KEY_apostrophe, XKB_KEY_A, 0 }, "Á" },
|
|
|
|
{ { XKB_KEY_apostrophe, XKB_KEY_a, 0 }, "á" },
|
|
|
|
{ { XKB_KEY_O, XKB_KEY_C, 0 }, "©" },
|
|
|
|
{ { XKB_KEY_O, XKB_KEY_R, 0 }, "®" },
|
|
|
|
{ { XKB_KEY_s, XKB_KEY_s, 0 }, "ß" },
|
|
|
|
};
|
|
|
|
|
|
|
|
static const uint32_t ignore_keys_on_compose[] = {
|
|
|
|
XKB_KEY_Shift_L,
|
|
|
|
XKB_KEY_Shift_R
|
|
|
|
};
|
|
|
|
|
2012-11-27 22:41:48 +04:00
|
|
|
typedef void (*keyboard_input_key_handler_t)(struct keyboard_input *keyboard_input,
|
2012-11-27 22:57:27 +04:00
|
|
|
uint32_t serial,
|
2012-11-27 22:41:48 +04:00
|
|
|
uint32_t time, uint32_t key, uint32_t unicode,
|
|
|
|
enum wl_keyboard_key_state state, void *data);
|
|
|
|
|
|
|
|
struct keyboard_input {
|
|
|
|
struct xkb_context *xkb_context;
|
|
|
|
|
|
|
|
uint32_t modifiers;
|
|
|
|
|
|
|
|
struct xkb_keymap *keymap;
|
|
|
|
struct xkb_state *state;
|
|
|
|
xkb_mod_mask_t control_mask;
|
|
|
|
xkb_mod_mask_t alt_mask;
|
|
|
|
xkb_mod_mask_t shift_mask;
|
|
|
|
|
|
|
|
void *user_data;
|
|
|
|
keyboard_input_key_handler_t key_handler;
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct keyboard_input*
|
|
|
|
keyboard_input_create(struct xkb_context *xkb_context)
|
|
|
|
{
|
|
|
|
struct keyboard_input *keyboard_input;
|
|
|
|
|
|
|
|
keyboard_input = calloc(1, sizeof *keyboard_input);
|
|
|
|
keyboard_input->xkb_context = xkb_context;
|
|
|
|
|
|
|
|
return keyboard_input;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
keyboard_input_handle_keymap(struct keyboard_input *keyboard_input,
|
|
|
|
uint32_t format, int fd, uint32_t size)
|
|
|
|
{
|
|
|
|
char *map_str;
|
|
|
|
|
|
|
|
if (format != WL_KEYBOARD_KEYMAP_FORMAT_XKB_V1) {
|
|
|
|
close(fd);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
map_str = mmap(NULL, size, PROT_READ, MAP_SHARED, fd, 0);
|
|
|
|
if (map_str == MAP_FAILED) {
|
|
|
|
close(fd);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
keyboard_input->keymap = xkb_map_new_from_string(keyboard_input->xkb_context,
|
|
|
|
map_str,
|
|
|
|
XKB_KEYMAP_FORMAT_TEXT_V1,
|
|
|
|
0);
|
|
|
|
|
|
|
|
munmap(map_str, size);
|
|
|
|
close(fd);
|
|
|
|
|
|
|
|
if (!keyboard_input->keymap) {
|
|
|
|
fprintf(stderr, "failed to compile keymap\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
keyboard_input->state = xkb_state_new(keyboard_input->keymap);
|
|
|
|
if (!keyboard_input->state) {
|
|
|
|
fprintf(stderr, "failed to create XKB state\n");
|
|
|
|
xkb_map_unref(keyboard_input->keymap);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
keyboard_input->control_mask =
|
|
|
|
1 << xkb_map_mod_get_index(keyboard_input->keymap, "Control");
|
|
|
|
keyboard_input->alt_mask =
|
|
|
|
1 << xkb_map_mod_get_index(keyboard_input->keymap, "Mod1");
|
|
|
|
keyboard_input->shift_mask =
|
|
|
|
1 << xkb_map_mod_get_index(keyboard_input->keymap, "Shift");
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
keyboard_input_handle_key(struct keyboard_input *keyboard_input,
|
|
|
|
uint32_t serial, uint32_t time,
|
|
|
|
uint32_t key, uint32_t state_w)
|
|
|
|
{
|
|
|
|
uint32_t code;
|
|
|
|
uint32_t num_syms;
|
|
|
|
const xkb_keysym_t *syms;
|
|
|
|
xkb_keysym_t sym;
|
|
|
|
enum wl_keyboard_key_state state = state_w;
|
|
|
|
|
|
|
|
if (!keyboard_input->state)
|
|
|
|
return;
|
|
|
|
|
|
|
|
code = key + 8;
|
|
|
|
num_syms = xkb_key_get_syms(keyboard_input->state, code, &syms);
|
|
|
|
|
|
|
|
sym = XKB_KEY_NoSymbol;
|
|
|
|
if (num_syms == 1)
|
|
|
|
sym = syms[0];
|
|
|
|
|
|
|
|
if (keyboard_input->key_handler)
|
2012-11-27 22:57:27 +04:00
|
|
|
(*keyboard_input->key_handler)(keyboard_input, serial, time, key, sym,
|
2012-11-27 22:41:48 +04:00
|
|
|
state, keyboard_input->user_data);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
keyboard_input_handle_modifiers(struct keyboard_input *keyboard_input,
|
|
|
|
uint32_t serial, uint32_t mods_depressed,
|
|
|
|
uint32_t mods_latched, uint32_t mods_locked,
|
|
|
|
uint32_t group)
|
|
|
|
{
|
|
|
|
xkb_mod_mask_t mask;
|
|
|
|
|
|
|
|
xkb_state_update_mask(keyboard_input->state, mods_depressed, mods_latched,
|
|
|
|
mods_locked, 0, 0, group);
|
|
|
|
mask = xkb_state_serialize_mods(keyboard_input->state,
|
|
|
|
XKB_STATE_DEPRESSED |
|
|
|
|
XKB_STATE_LATCHED);
|
|
|
|
|
|
|
|
keyboard_input->modifiers = 0;
|
|
|
|
if (mask & keyboard_input->control_mask)
|
|
|
|
keyboard_input->modifiers |= MOD_CONTROL_MASK;
|
|
|
|
if (mask & keyboard_input->alt_mask)
|
|
|
|
keyboard_input->modifiers |= MOD_ALT_MASK;
|
|
|
|
if (mask & keyboard_input->shift_mask)
|
|
|
|
keyboard_input->modifiers |= MOD_SHIFT_MASK;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
keyboard_input_set_user_data(struct keyboard_input *keyboard_input, void *data)
|
|
|
|
{
|
|
|
|
keyboard_input->user_data = data;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
keyboard_input_set_key_handler(struct keyboard_input *keyboard_input,
|
|
|
|
keyboard_input_key_handler_t handler)
|
|
|
|
{
|
|
|
|
keyboard_input->key_handler = handler;
|
|
|
|
}
|
|
|
|
|
2012-11-18 22:06:50 +04:00
|
|
|
static void
|
|
|
|
input_method_context_surrounding_text(void *data,
|
|
|
|
struct input_method_context *context,
|
|
|
|
const char *text,
|
|
|
|
uint32_t cursor,
|
|
|
|
uint32_t anchor)
|
|
|
|
{
|
|
|
|
fprintf(stderr, "Surrounding text updated: %s\n", text);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
input_method_context_reset(void *data,
|
|
|
|
struct input_method_context *context)
|
|
|
|
{
|
|
|
|
struct simple_im *keyboard = data;
|
|
|
|
|
|
|
|
fprintf(stderr, "Reset pre-edit buffer\n");
|
|
|
|
|
|
|
|
keyboard->compose_state = state_normal;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct input_method_context_listener input_method_context_listener = {
|
|
|
|
input_method_context_surrounding_text,
|
|
|
|
input_method_context_reset
|
|
|
|
};
|
|
|
|
|
|
|
|
static void
|
|
|
|
input_method_keyboard_keymap(void *data,
|
|
|
|
struct wl_keyboard *wl_keyboard,
|
|
|
|
uint32_t format,
|
|
|
|
int32_t fd,
|
|
|
|
uint32_t size)
|
|
|
|
{
|
|
|
|
struct simple_im *keyboard = data;
|
|
|
|
|
|
|
|
keyboard_input_handle_keymap(keyboard->keyboard_input, format, fd, size);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
input_method_keyboard_key(void *data,
|
|
|
|
struct wl_keyboard *wl_keyboard,
|
|
|
|
uint32_t serial,
|
|
|
|
uint32_t time,
|
|
|
|
uint32_t key,
|
|
|
|
uint32_t state_w)
|
|
|
|
{
|
|
|
|
struct simple_im *keyboard = data;
|
|
|
|
|
|
|
|
keyboard_input_handle_key(keyboard->keyboard_input, serial,
|
|
|
|
time, key, state_w);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
input_method_keyboard_modifiers(void *data,
|
|
|
|
struct wl_keyboard *wl_keyboard,
|
|
|
|
uint32_t serial,
|
|
|
|
uint32_t mods_depressed,
|
|
|
|
uint32_t mods_latched,
|
|
|
|
uint32_t mods_locked,
|
|
|
|
uint32_t group)
|
|
|
|
{
|
|
|
|
struct simple_im *keyboard = data;
|
|
|
|
struct input_method_context *context = keyboard->context;
|
|
|
|
|
|
|
|
keyboard_input_handle_modifiers(keyboard->keyboard_input, serial,
|
|
|
|
mods_depressed, mods_latched, mods_locked, group);
|
|
|
|
|
|
|
|
input_method_context_modifiers(context, serial,
|
|
|
|
mods_depressed, mods_depressed,
|
|
|
|
mods_latched, group);
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct wl_keyboard_listener input_method_keyboard_listener = {
|
|
|
|
input_method_keyboard_keymap,
|
|
|
|
NULL, /* enter */
|
|
|
|
NULL, /* leave */
|
|
|
|
input_method_keyboard_key,
|
|
|
|
input_method_keyboard_modifiers
|
|
|
|
};
|
|
|
|
|
|
|
|
static void
|
|
|
|
input_method_activate(void *data,
|
|
|
|
struct input_method *input_method,
|
|
|
|
struct input_method_context *context)
|
|
|
|
{
|
|
|
|
struct simple_im *keyboard = data;
|
|
|
|
|
|
|
|
if (keyboard->context)
|
|
|
|
input_method_context_destroy(keyboard->context);
|
|
|
|
|
|
|
|
keyboard->compose_state = state_normal;
|
|
|
|
|
|
|
|
keyboard->context = context;
|
|
|
|
input_method_context_add_listener(context,
|
|
|
|
&input_method_context_listener,
|
|
|
|
keyboard);
|
|
|
|
keyboard->keyboard = input_method_context_grab_keyboard(context);
|
|
|
|
wl_keyboard_add_listener(keyboard->keyboard,
|
|
|
|
&input_method_keyboard_listener,
|
|
|
|
keyboard);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
input_method_deactivate(void *data,
|
|
|
|
struct input_method *input_method,
|
|
|
|
struct input_method_context *context)
|
|
|
|
{
|
|
|
|
struct simple_im *keyboard = data;
|
|
|
|
|
|
|
|
if (!keyboard->context)
|
|
|
|
return;
|
|
|
|
|
|
|
|
input_method_context_destroy(keyboard->context);
|
|
|
|
keyboard->context = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct input_method_listener input_method_listener = {
|
|
|
|
input_method_activate,
|
|
|
|
input_method_deactivate
|
|
|
|
};
|
|
|
|
|
|
|
|
static void
|
2012-11-27 23:07:22 +04:00
|
|
|
registry_handle_global(void *data, struct wl_registry *registry,
|
|
|
|
uint32_t name, const char *interface, uint32_t version)
|
2012-11-18 22:06:50 +04:00
|
|
|
{
|
|
|
|
struct simple_im *keyboard = data;
|
|
|
|
|
|
|
|
if (!strcmp(interface, "input_method")) {
|
|
|
|
keyboard->input_method =
|
2012-11-27 23:07:22 +04:00
|
|
|
wl_registry_bind(registry, name,
|
|
|
|
&input_method_interface, 1);
|
|
|
|
input_method_add_listener(keyboard->input_method,
|
|
|
|
&input_method_listener, keyboard);
|
2012-11-18 22:06:50 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-11-27 23:07:22 +04:00
|
|
|
static const struct wl_registry_listener registry_listener = {
|
|
|
|
registry_handle_global
|
|
|
|
};
|
|
|
|
|
2012-11-18 22:06:50 +04:00
|
|
|
static int
|
|
|
|
compare_compose_keys(const void *c1, const void *c2)
|
|
|
|
{
|
|
|
|
const struct compose_seq *cs1 = c1;
|
|
|
|
const struct compose_seq *cs2 = c2;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; cs1->keys[i] != 0 && cs2->keys[i] != 0; i++) {
|
|
|
|
if (cs1->keys[i] != cs2->keys[i])
|
|
|
|
return cs1->keys[i] - cs2->keys[i];
|
|
|
|
}
|
|
|
|
|
|
|
|
if (cs1->keys[i] == cs2->keys[i]
|
|
|
|
|| cs1->keys[i] == 0)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
return cs1->keys[i] - cs2->keys[i];
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
simple_im_key_handler(struct keyboard_input *keyboard_input,
|
2012-11-27 22:57:27 +04:00
|
|
|
uint32_t serial, uint32_t time, uint32_t key, uint32_t sym,
|
2012-11-18 22:06:50 +04:00
|
|
|
enum wl_keyboard_key_state state, void *data)
|
|
|
|
{
|
|
|
|
struct simple_im *keyboard = data;
|
|
|
|
struct input_method_context *context = keyboard->context;
|
|
|
|
char text[64];
|
|
|
|
|
|
|
|
if (sym == XKB_KEY_Multi_key &&
|
|
|
|
state == WL_KEYBOARD_KEY_STATE_RELEASED &&
|
|
|
|
keyboard->compose_state == state_normal) {
|
|
|
|
keyboard->compose_state = state_compose;
|
|
|
|
memset(&keyboard->compose_seq, 0, sizeof(struct compose_seq));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (keyboard->compose_state == state_compose) {
|
|
|
|
uint32_t i = 0;
|
|
|
|
struct compose_seq *cs;
|
|
|
|
|
|
|
|
if (state == WL_KEYBOARD_KEY_STATE_PRESSED)
|
|
|
|
return;
|
|
|
|
|
|
|
|
for (i = 0; i < sizeof(ignore_keys_on_compose) / sizeof(ignore_keys_on_compose[0]); i++) {
|
|
|
|
if (sym == ignore_keys_on_compose[i]) {
|
2012-11-27 22:57:27 +04:00
|
|
|
input_method_context_key(context, serial, time, key, state);
|
2012-11-18 22:06:50 +04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; keyboard->compose_seq.keys[i] != 0; i++);
|
|
|
|
|
|
|
|
keyboard->compose_seq.keys[i] = sym;
|
|
|
|
|
|
|
|
cs = bsearch (&keyboard->compose_seq, compose_seqs,
|
|
|
|
sizeof(compose_seqs) / sizeof(compose_seqs[0]),
|
|
|
|
sizeof(compose_seqs[0]), compare_compose_keys);
|
|
|
|
|
|
|
|
if (cs) {
|
|
|
|
if (cs->keys[i + 1] == 0) {
|
|
|
|
input_method_context_preedit_string(keyboard->context,
|
|
|
|
"", 0);
|
|
|
|
input_method_context_commit_string(keyboard->context,
|
|
|
|
cs->text,
|
|
|
|
strlen(cs->text));
|
|
|
|
keyboard->compose_state = state_normal;
|
|
|
|
} else {
|
|
|
|
uint32_t j = 0, idx = 0;
|
|
|
|
|
|
|
|
for (; j <= i; j++) {
|
|
|
|
idx += xkb_keysym_to_utf8(cs->keys[j], text + idx, sizeof(text) - idx);
|
|
|
|
}
|
|
|
|
|
|
|
|
input_method_context_preedit_string(keyboard->context,
|
|
|
|
text,
|
|
|
|
strlen(text));
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
uint32_t j = 0, idx = 0;
|
|
|
|
|
|
|
|
for (; j <= i; j++) {
|
|
|
|
idx += xkb_keysym_to_utf8(keyboard->compose_seq.keys[j], text + idx, sizeof(text) - idx);
|
|
|
|
}
|
|
|
|
input_method_context_preedit_string(keyboard->context,
|
|
|
|
"", 0);
|
|
|
|
input_method_context_commit_string(keyboard->context,
|
|
|
|
text,
|
|
|
|
strlen(text));
|
|
|
|
keyboard->compose_state = state_normal;
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (xkb_keysym_to_utf8(sym, text, sizeof(text)) <= 0) {
|
2012-11-27 22:57:27 +04:00
|
|
|
input_method_context_key(context, serial, time, key, state);
|
2012-11-18 22:06:50 +04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (state == WL_KEYBOARD_KEY_STATE_PRESSED)
|
|
|
|
return;
|
|
|
|
|
|
|
|
input_method_context_commit_string(keyboard->context,
|
|
|
|
text,
|
|
|
|
strlen(text));
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
struct simple_im simple_im;
|
2012-11-27 23:07:22 +04:00
|
|
|
int ret = 0;
|
2012-11-18 22:06:50 +04:00
|
|
|
|
|
|
|
memset(&simple_im, 0, sizeof(simple_im));
|
|
|
|
|
2012-11-27 23:07:22 +04:00
|
|
|
simple_im.display = wl_display_connect(NULL);
|
2012-11-18 22:06:50 +04:00
|
|
|
if (simple_im.display == NULL) {
|
2012-11-27 23:07:22 +04:00
|
|
|
fprintf(stderr, "failed to connect to server: %m\n");
|
2012-11-18 22:06:50 +04:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2012-11-27 23:07:22 +04:00
|
|
|
simple_im.registry = wl_display_get_registry(simple_im.display);
|
|
|
|
wl_registry_add_listener(simple_im.registry,
|
|
|
|
®istry_listener, &simple_im);
|
|
|
|
wl_display_roundtrip(simple_im.display);
|
|
|
|
if (simple_im.input_method == NULL) {
|
|
|
|
fprintf(stderr, "No input_method global\n");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
2012-11-27 22:47:16 +04:00
|
|
|
simple_im.xkb_context = xkb_context_new(0);
|
|
|
|
if (simple_im.xkb_context == NULL) {
|
|
|
|
fprintf(stderr, "Failed to create XKB context\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2012-11-18 22:06:50 +04:00
|
|
|
simple_im.context = NULL;
|
2012-11-27 22:47:16 +04:00
|
|
|
simple_im.keyboard_input = keyboard_input_create(simple_im.xkb_context);
|
2012-11-18 22:06:50 +04:00
|
|
|
keyboard_input_set_user_data(simple_im.keyboard_input, &simple_im);
|
|
|
|
keyboard_input_set_key_handler(simple_im.keyboard_input, simple_im_key_handler);
|
|
|
|
|
2012-11-27 23:07:22 +04:00
|
|
|
while (ret != -1)
|
|
|
|
ret = wl_display_dispatch(simple_im.display);
|
2012-11-18 22:06:50 +04:00
|
|
|
|
2012-11-27 23:07:22 +04:00
|
|
|
if (ret == -1) {
|
|
|
|
fprintf(stderr, "Dispatch error: %m\n");
|
|
|
|
exit(1);
|
|
|
|
}
|
2012-11-18 22:06:50 +04:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|