mirror of
				https://github.com/LadybirdBrowser/ladybird.git
				synced 2025-11-03 23:00:58 +00:00 
			
		
		
		
	https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#cother-other-default-operation-rules "The compiler is more likely to get the default semantics right and you cannot implement these functions better than the compiler."
		
			
				
	
	
		
			36 lines
		
	
	
	
		
			800 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
	
		
			800 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 {
 | 
						|
 | 
						|
ErrorOr<NonnullRefPtr<Menu>> Menubar::try_add_menu(Badge<Window>, String name)
 | 
						|
{
 | 
						|
    auto menu = TRY(try_add<Menu>(move(name)));
 | 
						|
    TRY(m_menus.try_append(menu));
 | 
						|
    return menu;
 | 
						|
}
 | 
						|
 | 
						|
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;
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
}
 |