[PATCH 4/4] Load an XKB keymap and state in the compositor
Daniel Stone
daniel at fooishbar.org
Tue May 1 12:37:12 PDT 2012
Not used yet, but will be in future commits.
Signed-off-by: Daniel Stone <daniel at fooishbar.org>
---
src/compositor.c | 23 +++++++++++++++++++++++
src/compositor.h | 3 +++
2 files changed, 26 insertions(+)
diff --git a/src/compositor.c b/src/compositor.c
index a7e62a6..086a650 100644
--- a/src/compositor.c
+++ b/src/compositor.c
@@ -2564,6 +2564,12 @@ weston_compositor_shutdown(struct weston_compositor *ec)
static int weston_compositor_xkb_init(struct weston_compositor *ec,
struct xkb_rule_names *names)
{
+ ec->xkb_info.context = xkb_context_new();
+ if (ec->xkb_info.context == NULL) {
+ fprintf(stderr, "failed to create XKB context\n");
+ return -1;
+ }
+
ec->xkb_info.names = *names;
if (!ec->xkb_info.names.rules)
ec->xkb_info.names.rules = strdup("evdev");
@@ -2572,11 +2578,28 @@ static int weston_compositor_xkb_init(struct weston_compositor *ec,
if (!ec->xkb_info.names.layout)
ec->xkb_info.names.layout = strdup("us");
+ ec->xkb_info.keymap = xkb_map_new_from_names(ec->xkb_info.context,
+ &ec->xkb_info.names);
+ if (ec->xkb_info.keymap == NULL) {
+ fprintf(stderr, "failed to compile XKB keymap\n");
+ return -1;
+ }
+
+ ec->xkb_info.state = xkb_state_new(ec->xkb_info.keymap);
+ if (ec->xkb_info.state == NULL) {
+ fprintf(stderr, "failed to initialise XKB state\n");
+ return -1;
+ }
+
return 0;
}
static void weston_compositor_xkb_destroy(struct weston_compositor *ec)
{
+ xkb_state_unref(ec->xkb_info.state);
+ xkb_map_unref(ec->xkb_info.keymap);
+ xkb_context_unref(ec->xkb_info.context);
+
free(ec->xkb_info.names.rules);
free(ec->xkb_info.names.model);
free(ec->xkb_info.names.layout);
diff --git a/src/compositor.h b/src/compositor.h
index 0b73575..d5792b3 100644
--- a/src/compositor.h
+++ b/src/compositor.h
@@ -269,6 +269,9 @@ struct weston_compositor {
struct {
struct xkb_rule_names names;
+ struct xkb_context *context;
+ struct xkb_keymap *keymap;
+ struct xkb_state *state;
} xkb_info;
};
--
1.7.10
More information about the wayland-devel
mailing list