mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
LibGUI: Add hook when a context menu is requested on a button
This commit is contained in:
parent
040c75a3cc
commit
28f74df2e6
Notes:
sideshowbarker
2024-07-19 06:15:12 +09:00
Author: https://github.com/FalseHonesty Commit: https://github.com/SerenityOS/serenity/commit/28f74df2e6a Pull-request: https://github.com/SerenityOS/serenity/pull/2293
2 changed files with 10 additions and 0 deletions
|
@ -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();
|
||||
|
|
|
@ -48,11 +48,13 @@ public:
|
|||
Gfx::TextAlignment text_alignment() const { return m_text_alignment; }
|
||||
|
||||
Function<void(unsigned modifiers)> on_click;
|
||||
Function<void(const ContextMenuEvent&)> on_context_menu_request;
|
||||
|
||||
void set_button_style(Gfx::ButtonStyle style) { m_button_style = style; }
|
||||
Gfx::ButtonStyle button_style() const { return m_button_style; }
|
||||
|
||||
virtual void click(unsigned modifiers = 0) override;
|
||||
virtual void context_menu_event(ContextMenuEvent&) override;
|
||||
|
||||
void set_action(Action&);
|
||||
|
||||
|
|
Loading…
Reference in a new issue