1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 15:17:36 +00:00

LibGUI+WindowServer: Add Window::set_always_on_top()

This commit is contained in:
demostanis 2022-10-09 10:57:44 +02:00 committed by Sam Atkins
parent 50e74de279
commit 63a18aa89e
5 changed files with 21 additions and 0 deletions

View file

@ -232,6 +232,8 @@ public:
void set_blocks_emoji_input(bool b) { m_blocks_emoji_input = b; }
bool blocks_emoji_input() const { return m_blocks_emoji_input; }
void set_always_on_top(bool always_on_top = true);
protected:
Window(Core::Object* parent = nullptr);
virtual void wm_event(WMEvent&);