mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-08 01:00:05 +00:00
LibGUI: More work on client-side menus.
This commit is contained in:
parent
c75ecaae32
commit
757429fb55
Notes:
sideshowbarker
2024-07-19 15:47:02 +09:00
Author: https://github.com/awesomekling
Commit: 757429fb55
6 changed files with 55 additions and 3 deletions
|
@ -7,3 +7,16 @@ GMenuBar::GMenuBar()
|
|||
GMenuBar::~GMenuBar()
|
||||
{
|
||||
}
|
||||
|
||||
void GMenuBar::add_menu(OwnPtr<GMenu>&& menu)
|
||||
{
|
||||
m_menus.append(move(menu));
|
||||
}
|
||||
|
||||
void GMenuBar::notify_added_to_application(Badge<GApplication>)
|
||||
{
|
||||
}
|
||||
|
||||
void GMenuBar::notify_removed_from_application(Badge<GApplication>)
|
||||
{
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue