mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-10 13:00:29 +03:00
1682f0b760
SPDX License Identifiers are a more compact / standardized way of representing file license information. See: https://spdx.dev/resources/use/#identifiers This was done with the `ambr` search and replace tool. ambr --no-parent-ignore --key-from-file --rep-from-file key.txt rep.txt *
45 lines
1023 B
C++
45 lines
1023 B
C++
/*
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/HashTable.h>
|
|
#include <AK/Weakable.h>
|
|
#include <LibGUI/Forward.h>
|
|
|
|
namespace GUI {
|
|
|
|
class ActionGroup : public Weakable<ActionGroup> {
|
|
public:
|
|
ActionGroup() { }
|
|
~ActionGroup() { }
|
|
|
|
void add_action(Action&);
|
|
void remove_action(Action&);
|
|
|
|
bool is_exclusive() const { return m_exclusive; }
|
|
void set_exclusive(bool exclusive) { m_exclusive = exclusive; }
|
|
|
|
bool is_unchecking_allowed() const { return m_unchecking_allowed; }
|
|
void set_unchecking_allowed(bool unchecking_allowed) { m_unchecking_allowed = unchecking_allowed; }
|
|
|
|
template<typename C>
|
|
void for_each_action(C callback)
|
|
{
|
|
for (auto& it : m_actions) {
|
|
if (callback(*it) == IterationDecision::Break)
|
|
break;
|
|
}
|
|
}
|
|
|
|
private:
|
|
HashTable<Action*> m_actions;
|
|
bool m_exclusive { false };
|
|
bool m_unchecking_allowed { false };
|
|
};
|
|
|
|
}
|