1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 13:37:45 +00:00

LibGUI: Add a new Window::is_maximized method

This commit is contained in:
Hüseyin ASLITÜRK 2020-06-18 13:31:29 +03:00 committed by Andreas Kling
parent 5950736efa
commit 12671e38e7
2 changed files with 10 additions and 0 deletions

View file

@ -64,6 +64,8 @@ public:
bool is_fullscreen() const { return m_fullscreen; }
void set_fullscreen(bool);
bool is_maximized() const;
bool is_frameless() const { return m_frameless; }
void set_frameless(bool frameless) { m_frameless = frameless; }