1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 11:27:35 +00:00

LibGUI/WindowServer: Add set_maximized IPC call

Add an IPC call to enable the client to manually maximize it's own
window.
This commit is contained in:
Marcus Nilsson 2021-06-06 21:50:06 +02:00 committed by Andreas Kling
parent a00d154522
commit 2f7dc29ab7
5 changed files with 18 additions and 0 deletions

View file

@ -40,6 +40,7 @@ public:
void set_fullscreen(bool);
bool is_maximized() const;
void set_maximized(bool);
bool is_frameless() const { return m_frameless; }
void set_frameless(bool);