mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-25 10:48:41 +00:00
LibWeb: Move mouse event and label logic from layout to painting tree
Input events have nothing to do with layout, so let's not send them to layout nodes. The job of Paintable starts to become clear. It represents a paintable item that can be rendered into the viewport, which means it can also be targeted by the mouse cursor.
This commit is contained in:
@@ -73,8 +73,8 @@ public:
|
||||
};
|
||||
void set_checked(bool, ChangeSource = ChangeSource::Programmatic, ShouldRunActivationBehavior = ShouldRunActivationBehavior::Yes);
|
||||
|
||||
void did_click_button(Badge<Layout::ButtonBox>);
|
||||
void did_click_checkbox(Badge<Layout::CheckBox>);
|
||||
void did_click_button(Badge<Painting::ButtonPaintable>);
|
||||
void did_click_checkbox(Badge<Painting::CheckBoxPaintable>);
|
||||
|
||||
void did_edit_text_node(Badge<BrowsingContext>);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user