mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-27 11:48:32 +00:00
LibGUI: Add Window::center_within(Window)
This allows you to easily center one window within another window.
This commit is contained in:
@@ -239,6 +239,15 @@ void Window::center_on_screen()
|
||||
set_rect(window_rect);
|
||||
}
|
||||
|
||||
void Window::center_within(const Window& other)
|
||||
{
|
||||
if (this == &other)
|
||||
return;
|
||||
auto window_rect = rect();
|
||||
window_rect.center_within(other.rect());
|
||||
set_rect(window_rect);
|
||||
}
|
||||
|
||||
void Window::set_window_type(WindowType window_type)
|
||||
{
|
||||
m_window_type = window_type;
|
||||
|
||||
Reference in New Issue
Block a user