summaryrefslogtreecommitdiff
path: root/obt/keyboard.c
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2010-02-11 11:27:36 -0500
committerDana Jansens <danakj@orodu.net>2010-02-11 11:27:36 -0500
commit8f1ea42bb147e2a65cf43dfe7aea864d01faedcd (patch)
tree3fe6d9e2c8ba3e2b8abf188fb144dd1c7ca4ddd4 /obt/keyboard.c
parent6e280e9f532d5c2424bb4165f1e9a886740c1bc3 (diff)
add interface in obt to create an Input Context for a window
Diffstat (limited to 'obt/keyboard.c')
-rw-r--r--obt/keyboard.c38
1 files changed, 38 insertions, 0 deletions
diff --git a/obt/keyboard.c b/obt/keyboard.c
index bd7ec7b6..bd5d5dfd 100644
--- a/obt/keyboard.c
+++ b/obt/keyboard.c
@@ -22,6 +22,12 @@
#include <X11/Xlib.h>
#include <X11/keysym.h>
+struct _ObtIC
+{
+ guint ref;
+ XIC xic;
+};
+
/* These masks are constants and the modifier keys are bound to them as
anyone sees fit:
ShiftMask (1<<0), LockMask (1<<1), ControlMask (1<<2), Mod1Mask (1<<3),
@@ -291,3 +297,35 @@ gunichar obt_keyboard_keycode_to_unichar(guint keycode)
g_free(key);
return unikey;
}
+
+ObtIC* obt_keyboard_context_new(Window w)
+{
+ ObtIC *ic = NULL;
+
+ if (w != None) {
+ ic = g_new(ObtIC, 1);
+ ic->ref = 1;
+ ic->xic = NULL;
+
+ if (xim)
+ ic->xic = XCreateIC(xim,
+ XNInputStyle, xim_style,
+ XNClientWindow, w,
+ XNFocusWindow, w,
+ NULL);
+ }
+ return ic;
+}
+
+void obt_keyboard_context_ref(ObtIC *ic)
+{
+ ++ic->ref;
+}
+
+void obt_keyboard_context_unref(ObtIC *ic)
+{
+ if (--ic->ref < 1) {
+ XDestroyIC(ic->xic);
+ g_free(ic);
+ }
+}