summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibGUI/Window.h
diff options
context:
space:
mode:
authorthankyouverycool <66646555+thankyouverycool@users.noreply.github.com>2022-08-22 13:54:38 -0400
committerAndreas Kling <kling@serenityos.org>2022-08-25 13:28:50 +0200
commit4c7f95e2f856303d068e1182b94a7a24ccc1636c (patch)
tree2c8fb243f9f618c8102c587139a573281ff7de89 /Userland/Libraries/LibGUI/Window.h
parent0d4fd4e2a66bf7d8224c6490c92bf133130923ac (diff)
downloadserenity-4c7f95e2f856303d068e1182b94a7a24ccc1636c.zip
LibGUI+WindowServer+Apps: Replace Accessory Windows
with the CaptureInput WindowMode. This mode will serve the same function as accessories: redirecting input while allowing parent windows to remain active.
Diffstat (limited to 'Userland/Libraries/LibGUI/Window.h')
-rw-r--r--Userland/Libraries/LibGUI/Window.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/Userland/Libraries/LibGUI/Window.h b/Userland/Libraries/LibGUI/Window.h
index bdf5c8b99e..7e68406129 100644
--- a/Userland/Libraries/LibGUI/Window.h
+++ b/Userland/Libraries/LibGUI/Window.h
@@ -124,9 +124,6 @@ public:
bool is_active() const;
bool is_active_input() const { return m_is_active_input; }
- bool is_accessory() const { return m_accessory; }
- void set_accessory(bool accessory) { m_accessory = accessory; }
-
void show();
void hide();
virtual void close();
@@ -306,7 +303,6 @@ private:
bool m_layout_pending { false };
bool m_visible_for_timer_purposes { true };
bool m_visible { false };
- bool m_accessory { false };
bool m_moved_by_client { false };
};