mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-06 09:36:08 +00:00
LibWeb: Remove WidgetBox layout node
The approach of attaching sub-widgets to the web view widget was only ever going to work in single-process mode, and that's not what we're about anymore, so let's just get rid of WidgetBox so we don't have the dead-end architecture hanging over us. The next step here is to re-implement <input type=text> using LibWeb primitives.
This commit is contained in:
parent
1ad65b173b
commit
5e91e61900
Notes:
sideshowbarker
2024-07-18 22:27:10 +09:00
Author: https://github.com/awesomekling
Commit: 5e91e61900
10 changed files with 2 additions and 172 deletions
|
@ -75,15 +75,12 @@ public:
|
|||
Gfx::IntRect viewport_rect() const { return { m_viewport_scroll_offset, m_size }; }
|
||||
void set_viewport_rect(const Gfx::IntRect&);
|
||||
|
||||
void did_scroll(Badge<InProcessWebView>);
|
||||
|
||||
FrameLoader& loader() { return m_loader; }
|
||||
const FrameLoader& loader() const { return m_loader; }
|
||||
|
||||
EventHandler& event_handler() { return m_event_handler; }
|
||||
const EventHandler& event_handler() const { return m_event_handler; }
|
||||
|
||||
void scroll_to(const Gfx::IntPoint&);
|
||||
void scroll_to_anchor(const String&);
|
||||
|
||||
Frame& main_frame() { return m_main_frame; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue