summaryrefslogtreecommitdiff
path: root/LibGUI/GWindow.h
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-04-02 02:34:09 +0200
committerAndreas Kling <awesomekling@gmail.com>2019-04-02 02:34:09 +0200
commit6673284b06298cf54af5c46e5bdeeffa6e561c86 (patch)
tree0a6e324ad1b989f64f94c89c96635f6472e6f1df /LibGUI/GWindow.h
parent94c68dc55a10208cfabb2ee785e697c319931ee4 (diff)
downloadserenity-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.h2
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 {