summaryrefslogtreecommitdiff
path: root/LibGUI/GEventLoop.h
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-02-20 15:34:55 +0100
committerAndreas Kling <awesomekling@gmail.com>2019-02-20 15:34:55 +0100
commit59b8183c4b36abcd6e93f268896be43150265241 (patch)
tree9f19da4561e92abe158e70bca8ac33b623b34838 /LibGUI/GEventLoop.h
parenta9911fca80254bb571dfe96419772d726ceb92cf (diff)
downloadserenity-59b8183c4b36abcd6e93f268896be43150265241.zip
WindowServer: Support resizing windows.
This is pretty limited and not entirely stable, but it does work! :^)
Diffstat (limited to 'LibGUI/GEventLoop.h')
-rw-r--r--LibGUI/GEventLoop.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/LibGUI/GEventLoop.h b/LibGUI/GEventLoop.h
index 9435018f81..881d253eb6 100644
--- a/LibGUI/GEventLoop.h
+++ b/LibGUI/GEventLoop.h
@@ -43,6 +43,7 @@ private:
void wait_for_event();
bool drain_messages_from_server();
void handle_paint_event(const WSAPI_ServerMessage&, GWindow&);
+ void handle_resize_event(const WSAPI_ServerMessage&, GWindow&);
void handle_mouse_event(const WSAPI_ServerMessage&, GWindow&);
void handle_key_event(const WSAPI_ServerMessage&, GWindow&);
void handle_window_activation_event(const WSAPI_ServerMessage&, GWindow&);