1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 16:07:45 +00:00

LibGUI+Browser: Move GUI::UrlBox to the Browser application

Browser is the only user of this component. Move it to allow making use
of LibWebView for URL highlighting.
This commit is contained in:
Timothy Flynn 2023-10-17 13:09:41 -04:00 committed by Andreas Kling
parent 0715ba889e
commit 55092dd164
8 changed files with 139 additions and 112 deletions

View file

@ -28,6 +28,7 @@ class InspectorWidget;
class ConsoleWidget;
class HistoryWidget;
class StorageWidget;
class URLBox;
class Tab final : public GUI::Widget {
C_OBJECT(Tab);
@ -120,7 +121,7 @@ private:
RefPtr<WebView::OutOfProcessWebView> m_web_content_view;
RefPtr<GUI::UrlBox> m_location_box;
RefPtr<URLBox> m_location_box;
RefPtr<GUI::Button> m_reset_zoom_button;
RefPtr<GUI::Button> m_bookmark_button;
RefPtr<InspectorWidget> m_dom_inspector_widget;