diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-04-02 02:34:09 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-04-02 02:34:09 +0200 |
commit | 6673284b06298cf54af5c46e5bdeeffa6e561c86 (patch) | |
tree | 0a6e324ad1b989f64f94c89c96635f6472e6f1df /LibGUI/GWindow.h | |
parent | 94c68dc55a10208cfabb2ee785e697c319931ee4 (diff) | |
download | serenity-6673284b06298cf54af5c46e5bdeeffa6e561c86.zip |
LibGUI: Switch to a resizing cursor when hovering or using a GSplitter.
Also expose the various standard cursors on WSWindowManager so they can
be reused by the override mechanism.
Diffstat (limited to 'LibGUI/GWindow.h')
-rw-r--r-- | LibGUI/GWindow.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/LibGUI/GWindow.h b/LibGUI/GWindow.h index 86ee57bcaa..81cb417606 100644 --- a/LibGUI/GWindow.h +++ b/LibGUI/GWindow.h @@ -12,6 +12,8 @@ enum class GStandardCursor { None = 0, Arrow, IBeam, + ResizeHorizontal, + ResizeVertical, }; class GWindow : public GObject { |