summaryrefslogtreecommitdiff
path: root/Kernel/KeyCode.h
AgeCommit message (Collapse)Author
2019-04-23Kernel: Make the right shift key work.Andreas Kling
I never realized the right shift key wasn't hooked up since my left pinky always hovers over the left shift key, ready to rock.
2019-04-13Minesweeper: Add some menus.Andreas Kling
2019-03-03Detect 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-03LibGUI: Move shortcut actions from GEventLoop to GApplications.Andreas Kling
I'm gonna want to have nested event loops sooner or later, so let's not pollute GEventLoop with things that are meant to work globally. This patch also changes key events to pass around their modifiers as a bitfield all the way around the system instead of breaking them up.
2019-02-17Move WindowServer to userspace.Andreas Kling
This is a monster patch that required changing a whole bunch of things. There are performance and stability issues all over the place, but it works. Pretty cool, I have to admit :^)
2019-01-26LibGUI: Start bringing up GTextBox in the standalone world.Andreas Kling