mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-24 10:22:05 -05:00
49 lines
1.1 KiB
C++
49 lines
1.1 KiB
C++
/*
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include "WindowList.h"
|
|
|
|
WindowList& WindowList::the()
|
|
{
|
|
static WindowList s_the;
|
|
return s_the;
|
|
}
|
|
|
|
Window* WindowList::find_parent(Window const& window)
|
|
{
|
|
if (!window.parent_identifier().is_valid())
|
|
return nullptr;
|
|
for (auto& it : m_windows) {
|
|
auto& w = *it.value;
|
|
if (w.identifier() == window.parent_identifier())
|
|
return &w;
|
|
}
|
|
return nullptr;
|
|
}
|
|
|
|
Window* WindowList::window(WindowIdentifier const& identifier)
|
|
{
|
|
auto it = m_windows.find(identifier);
|
|
if (it != m_windows.end())
|
|
return it->value;
|
|
return nullptr;
|
|
}
|
|
|
|
Window& WindowList::ensure_window(WindowIdentifier const& identifier)
|
|
{
|
|
auto it = m_windows.find(identifier);
|
|
if (it != m_windows.end())
|
|
return *it->value;
|
|
auto window = make<Window>(identifier);
|
|
auto& window_ref = *window;
|
|
m_windows.set(identifier, move(window));
|
|
return window_ref;
|
|
}
|
|
|
|
void WindowList::remove_window(WindowIdentifier const& identifier)
|
|
{
|
|
m_windows.remove(identifier);
|
|
}
|