summaryrefslogtreecommitdiff
path: root/otk/eventhandler.cc
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-01-09 22:54:31 +0000
committerDana Jansens <danakj@orodu.net>2003-01-09 22:54:31 +0000
commit345d957e1ea577480f807b892b73c3f52fe913d2 (patch)
tree489dd8d159f22bbc3828ad094ced5288eb582628 /otk/eventhandler.cc
parentb1739374a61d0c33270bafe84da9d787e79c0686 (diff)
new python callbacks data, infrastructure. going to rework bindings code. cvs wont work for shit now. but thats life.
Diffstat (limited to 'otk/eventhandler.cc')
-rw-r--r--otk/eventhandler.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/otk/eventhandler.cc b/otk/eventhandler.cc
index d61189e4..7e1ad745 100644
--- a/otk/eventhandler.cc
+++ b/otk/eventhandler.cc
@@ -91,6 +91,10 @@ void OtkEventHandler::handle(const XEvent &e)
if (e.type == otk::OBDisplay::shapeEventBase())
return shapeHandler((*(XShapeEvent*)&e));
#endif // SHAPE
+#ifdef XKB
+ if (e.type == otk::OBDisplay::xkbEventBase())
+ return xkbHandler((*(XkbEvent*)&e));
+#endif // XKB
;
}
}