mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-27 01:50:24 +00:00
fa452fadca
Since these are owner/ownee relationships, there's no need for indirection.
31 lines
766 B
C++
31 lines
766 B
C++
#pragma once
|
|
|
|
#include "WSMenu.h"
|
|
#include <AK/Vector.h>
|
|
#include <AK/Weakable.h>
|
|
#include <AK/WeakPtr.h>
|
|
|
|
class WSMenuBar : public Weakable<WSMenuBar> {
|
|
public:
|
|
WSMenuBar(WSClientConnection& client, int menubar_id);
|
|
~WSMenuBar();
|
|
|
|
WSClientConnection& client() { return m_client; }
|
|
const WSClientConnection& client() const { return m_client; }
|
|
int menubar_id() const { return m_menubar_id; }
|
|
void add_menu(WSMenu* menu) { m_menus.append(menu); }
|
|
|
|
template<typename Callback>
|
|
void for_each_menu(Callback callback)
|
|
{
|
|
for (auto& menu : m_menus) {
|
|
if (!callback(*menu))
|
|
return;
|
|
}
|
|
}
|
|
|
|
private:
|
|
WSClientConnection& m_client;
|
|
int m_menubar_id { 0 };
|
|
Vector<WSMenu*> m_menus;
|
|
};
|