Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-03-03 | Detect the "Logo" (Windows/Apple/whatever) key and use it for window resize. | Andreas Kling | |
This will be comfortable enough while I'm still developing with emulators. QEMU keeps eating my "Alt" key presses and it's making things difficult. | |||
2019-03-02 | LibGUI+WindowServer: Add app-global keyboard shortcuts. | Andreas Kling | |
This patch adds a GShortcut class. Each GAction can have a GShortcut which will cause the event loop to listen for that key combination app-globally and activate the event in case it's pressed. The shortcut will also be displayed when the action is added to a menu. Use this to hook up Alt+Up with the "open parent directory" action in the FileManager app. :^) |