I have a given keycode and would like to find out which keysym would be generated if I press the key now, taking into account which modifiers are pressed and so on. I tried to use:
KeySym keycodeToKeysym(KeyCode code) {
XkbStateRec xkbState;
XkbGetState(QX11Info::display(), XKbUseCoreKbd, &xkbState);
XkbKeycodeToKeysym(QX11Info::display(), code, xkbState.group, level);
}
However I have no idea from where to get the level and which in which format this is.
How can I find out the current level? Is the way I get the group correct?