Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.