mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-10 13:00:29 +03:00
5300896095
And fall back to the infallible add_menu().
35 lines
725 B
C++
35 lines
725 B
C++
/*
|
|
* Copyright (c) 2018-2021, Andreas Kling <kling@serenityos.org>
|
|
* Copyright (c) 2021, sin-ack <sin-ack@protonmail.com>
|
|
* Copyright (c) 2022, the SerenityOS developers.
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <LibGUI/Menubar.h>
|
|
|
|
namespace GUI {
|
|
|
|
void Menubar::add_menu(Badge<Window>, NonnullRefPtr<Menu> menu)
|
|
{
|
|
m_menus.append(menu);
|
|
}
|
|
|
|
NonnullRefPtr<Menu> Menubar::add_menu(Badge<Window>, String name)
|
|
{
|
|
auto& menu = add<Menu>(move(name));
|
|
m_menus.append(menu);
|
|
return menu;
|
|
}
|
|
|
|
void Menubar::for_each_menu(Function<IterationDecision(Menu&)> callback)
|
|
{
|
|
for (auto& menu : m_menus) {
|
|
if (callback(menu) == IterationDecision::Break) {
|
|
return;
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|