diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-02-20 15:34:55 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-02-20 15:34:55 +0100 |
commit | 59b8183c4b36abcd6e93f268896be43150265241 (patch) | |
tree | 9f19da4561e92abe158e70bca8ac33b623b34838 /LibGUI/GEventLoop.h | |
parent | a9911fca80254bb571dfe96419772d726ceb92cf (diff) | |
download | serenity-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.h | 1 |
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&); |