mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-12-13 09:50:36 +00:00
LibGUI: Add Window::window_type()
We already have Window::set_window_type(), so a getter for m_window_type makes sense as well.
This commit is contained in:
parent
28c68fb241
commit
e58d3b8481
Notes:
sideshowbarker
2024-07-19 03:39:54 +09:00
Author: https://github.com/linusg Commit: https://github.com/SerenityOS/serenity/commit/e58d3b84818 Pull-request: https://github.com/SerenityOS/serenity/pull/3127
1 changed files with 2 additions and 0 deletions
|
@ -82,6 +82,8 @@ public:
|
|||
void set_double_buffering_enabled(bool);
|
||||
void set_has_alpha_channel(bool);
|
||||
void set_opacity(float);
|
||||
|
||||
WindowType window_type() const { return m_window_type; }
|
||||
void set_window_type(WindowType);
|
||||
|
||||
int window_id() const { return m_window_id; }
|
||||
|
|
Loading…
Reference in a new issue