делаю
event = xcb_poll_for_event(...)
....
const xcb_key_release_event_t *key = (const xcb_key_release_event_t *)event;
switch (key->detail){кнопки...}
как из кодов key->detail сделать коды ASCII как в javascript или в виндовс
без подключения x11 (оно deprecated и на С++)
только Си
в доках стоит «TODO: Talk about getting the ASCII code from the key code.»
прочие интернет туториалы останавливаются на
You might expect that detail would identify the key using ASCII or Unicode. Alas, this is not the case. To determine the pressed key, an application needs to call functions from the xcb_keysyms.h header. These functions aren’t documented and I can find few examples of their use. Therefore, this article won’t explain them in any detail.
единственное что удалось нагуглить из qt5 чтото похожее на рабочее решение
тоесть мне проще вручную кнопочки забиндить по кодам чем искать чтото готовое?