summaryrefslogtreecommitdiff
path: root/xkbcommon.map
diff options
context:
space:
mode:
authorJaroslaw Kubik <jarek@froglogic.com>2020-02-12 23:44:42 +0100
committerRan Benita <ran234@gmail.com>2020-02-24 09:54:09 +0200
commit0345aba082c83e9950f9dd8b7ea3bf91fe566a02 (patch)
treedf668811fa129e0af1151544525ebc76f7200243 /xkbcommon.map
parent1b23a650abf09a8bbebc566900d0e22a58a826d3 (diff)
downloadxorg-lib-libxkbcommon-0345aba082c83e9950f9dd8b7ea3bf91fe566a02.tar.gz
Support translation Unicode codepoints to keysyms
In order to support features like auto-type and UI automation, the relevant tools need to be able to invert the keycode->keysym->text transformation. In order to facilitate that, a new API was added. It allows querying the keysyms that correspond to particular Unicode codepoints. For all practical purposes, it can be thought of as an inverse of xkb_keysym_to_utf32().
Diffstat (limited to 'xkbcommon.map')
-rw-r--r--xkbcommon.map5
1 files changed, 5 insertions, 0 deletions
diff --git a/xkbcommon.map b/xkbcommon.map
index f28f68f..eede3e7 100644
--- a/xkbcommon.map
+++ b/xkbcommon.map
@@ -103,3 +103,8 @@ global:
xkb_keysym_to_lower;
xkb_keysym_to_upper;
} V_0.7.0;
+
+V_0.11.0 {
+global:
+ xkb_utf32_to_keysym;
+} V_0.8.0;