XCB keyboard input, still unfinished

This commit is contained in:
Vadim Lopatin 2014-04-22 10:28:00 +04:00
parent 3611182e91
commit 2d4e14cee1
1 changed files with 5 additions and 0 deletions

View File

@ -773,6 +773,11 @@ version(linux) {
flags = convertKeyFlags(flags);
Log.d("processKeyEvent ", action, " converted key=", keyCode, " converted flags=", flags);
bool res = dispatchKeyEvent(new KeyEvent(action, keyCode, flags));
if (keyCode & 0x10000 && (keyCode & 0xF000) != 0xF000) {
dchar[1] text;
text[0] = keyCode & 0xFFFF;
res = dispatchKeyEvent(new KeyEvent(KeyAction.Text, keyCode, flags, cast(dstring)text)) || res;
}
if (res) {
Log.d("Calling update() after key event");
invalidate();