1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-25 22:25:08 +00:00

LibGUI: Add hook when a context menu is requested on a button

This commit is contained in:
FalseHonesty 2020-05-18 21:25:28 -04:00 committed by Andreas Kling
parent 040c75a3cc
commit 28f74df2e6
2 changed files with 10 additions and 0 deletions

View file

@ -101,6 +101,14 @@ void Button::click(unsigned modifiers)
m_action->activate(this);
}
void Button::context_menu_event(ContextMenuEvent& context_menu_event)
{
if (!is_enabled())
return;
if (on_context_menu_request)
on_context_menu_request(context_menu_event);
}
void Button::set_action(Action& action)
{
m_action = action.make_weak_ptr();