Auto-Type: Support multiple Xkb layouts

Completely rewritten XCB Auto-Type keymap system.

 - supports multiple simultaneous layouts
 - prefers current layout if it has all keysyms available
 - removed hardcoded KeySymMap
 - removed clunky custom KeySym emulation

Biggest breaking change is removing KeySym emulation for keys that
do not exist in any of the layouts currently in use. It would be
possible to make it work but if you are trying to type syms that
are not available in any of your layouts you are abusing it. It
also adds unnecessary complexity and opens up timing issues when
the keymap is modified on-the-fly. Now we are just reading it.

This also workarounds a Qt related issue where QX11Info::display()
returns a connection to X server that fails to receive updated
keymap data when client settings change. We use our own connection
now to get it working.
This commit is contained in:
Toni Spets 2021-03-08 20:37:00 +02:00 committed by Jonathan White
parent 2423bede60
commit 4d07507739
15 changed files with 120 additions and 348 deletions

View file

@ -48,9 +48,6 @@ public:
return false;
}
signals:
void keymapChanged();
private:
explicit NixUtils(QObject* parent = nullptr);
~NixUtils() override;