summaryrefslogtreecommitdiff
path: root/include/wlhangul.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/wlhangul.h')
-rw-r--r--include/wlhangul.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/include/wlhangul.h b/include/wlhangul.h
new file mode 100644
index 0000000..0d62431
--- /dev/null
+++ b/include/wlhangul.h
@@ -0,0 +1,26 @@
+#ifndef WLHANGUL_H
+#define WLHANGUL_H
+
+#include <hangul.h>
+#include <stdbool.h>
+#include <wayland-client-core.h>
+
+struct wlhangul_state {
+ struct wl_display *display;
+ struct zwp_input_method_manager_v2 *input_method_manager;
+
+ bool running;
+
+ struct wl_list seats;
+};
+
+struct wlhangul_seat {
+ struct wl_list link;
+ struct wl_seat *wl_seat;
+ struct wlhangul_state *state;
+
+ HangulInputContext *input_context;
+ struct zwp_input_method_v2 *input_method;
+};
+
+#endif