/* * Copyright (c) 2020-2021, Andreas Kling * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include "History.h" #include #include #include #include #include #include namespace Web { class OutOfProcessWebView; class WebViewHooks; } namespace Browser { class Tab final : public GUI::Widget { C_OBJECT(Tab); public: enum class Type { InProcessWebView, OutOfProcessWebView, }; virtual ~Tab() override; URL url() const; enum class LoadType { Normal, HistoryNavigation, }; void load(const URL&, LoadType = LoadType::Normal); void reload(); void go_back(); void go_forward(); void did_become_active(); void context_menu_requested(const Gfx::IntPoint& screen_position); void action_entered(GUI::Action&); void action_left(GUI::Action&); Function on_title_change; Function on_tab_open_request; Function on_tab_close_request; Function on_favicon_change; Function on_get_cookie; Function on_set_cookie; Function on_dump_cookies; const String& title() const { return m_title; } const Gfx::Bitmap* icon() const { return m_icon; } GUI::AbstractScrollableWidget& view(); private: explicit Tab(Type); Web::WebViewHooks& hooks(); void update_actions(); void update_bookmark_button(const String& url); void start_download(const URL& url); void view_source(const URL& url, const String& source); Type m_type; History m_history; RefPtr m_page_view; RefPtr m_web_content_view; RefPtr m_go_back_action; RefPtr m_go_forward_action; RefPtr m_go_home_action; RefPtr m_reload_action; RefPtr m_location_box; RefPtr m_bookmark_button; RefPtr m_dom_inspector_window; RefPtr m_console_window; RefPtr m_statusbar; RefPtr m_menubar; RefPtr m_toolbar_container; RefPtr m_link_context_menu; RefPtr m_link_context_menu_default_action; URL m_link_context_menu_url; RefPtr m_image_context_menu; Gfx::ShareableBitmap m_image_context_menu_bitmap; URL m_image_context_menu_url; GUI::ActionGroup m_user_agent_spoof_actions; GUI::ActionGroup m_search_engine_actions; RefPtr m_disable_user_agent_spoofing; RefPtr m_tab_context_menu; RefPtr m_page_context_menu; String m_title; RefPtr m_icon; bool m_is_history_navigation { false }; }; URL url_from_user_input(const String& input); }