mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 15:52:43 +00:00 
			
		
		
		
	 45a81f5a2c
			
		
	
	
		45a81f5a2c
		
	
	
	
	
		
			
			The storage inspector now has a new tab for local storage. The next step would be to persist local storage and receive real-time notifications for changes to update the table view.
		
			
				
	
	
		
			140 lines
		
	
	
	
		
			3.8 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			140 lines
		
	
	
	
		
			3.8 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2020-2021, Andreas Kling <kling@serenityos.org>
 | |
|  * Copyright (c) 2022, the SerenityOS developers.
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| #include "History.h"
 | |
| #include <AK/Optional.h>
 | |
| #include <AK/URL.h>
 | |
| #include <LibGUI/ActionGroup.h>
 | |
| #include <LibGUI/Widget.h>
 | |
| #include <LibGfx/ShareableBitmap.h>
 | |
| #include <LibHTTP/Job.h>
 | |
| #include <LibWeb/Forward.h>
 | |
| 
 | |
| namespace Web {
 | |
| class OutOfProcessWebView;
 | |
| class WebViewHooks;
 | |
| }
 | |
| 
 | |
| namespace Browser {
 | |
| 
 | |
| class BrowserWindow;
 | |
| class InspectorWidget;
 | |
| class ConsoleWidget;
 | |
| class StorageWidget;
 | |
| 
 | |
| class Tab final : public GUI::Widget {
 | |
|     C_OBJECT(Tab);
 | |
| 
 | |
|     // FIXME: This should go away eventually.
 | |
|     friend class BrowserWindow;
 | |
| 
 | |
| public:
 | |
|     virtual ~Tab() override = default;
 | |
| 
 | |
|     URL url() const;
 | |
| 
 | |
|     enum class LoadType {
 | |
|         Normal,
 | |
|         HistoryNavigation,
 | |
|     };
 | |
| 
 | |
|     void load(const URL&, LoadType = LoadType::Normal);
 | |
|     void reload();
 | |
|     void go_back(int steps = 1);
 | |
|     void go_forward(int steps = 1);
 | |
| 
 | |
|     void did_become_active();
 | |
|     void context_menu_requested(Gfx::IntPoint const& screen_position);
 | |
|     void content_filters_changed();
 | |
| 
 | |
|     void action_entered(GUI::Action&);
 | |
|     void action_left(GUI::Action&);
 | |
| 
 | |
|     Function<void(String const&)> on_title_change;
 | |
|     Function<void(const URL&)> on_tab_open_request;
 | |
|     Function<void(Tab&)> on_tab_close_request;
 | |
|     Function<void(Tab&)> on_tab_close_other_request;
 | |
|     Function<void(Gfx::Bitmap const&)> on_favicon_change;
 | |
|     Function<String(const URL&, Web::Cookie::Source source)> on_get_cookie;
 | |
|     Function<void(const URL&, Web::Cookie::ParsedCookie const& cookie, Web::Cookie::Source source)> on_set_cookie;
 | |
|     Function<void()> on_dump_cookies;
 | |
|     Function<Vector<Web::Cookie::Cookie>()> on_want_cookies;
 | |
|     Function<OrderedHashMap<String, String>()> on_get_local_storage_entries;
 | |
| 
 | |
|     enum class InspectorTarget {
 | |
|         Document,
 | |
|         HoveredElement
 | |
|     };
 | |
|     void show_inspector_window(InspectorTarget);
 | |
| 
 | |
|     void show_console_window();
 | |
|     void show_storage_inspector();
 | |
| 
 | |
|     String const& title() const { return m_title; }
 | |
|     Gfx::Bitmap const* icon() const { return m_icon; }
 | |
| 
 | |
|     GUI::AbstractScrollableWidget& view();
 | |
| 
 | |
| private:
 | |
|     explicit Tab(BrowserWindow&);
 | |
| 
 | |
|     BrowserWindow const& window() const;
 | |
|     BrowserWindow& window();
 | |
| 
 | |
|     Web::WebViewHooks& hooks();
 | |
|     void update_actions();
 | |
|     void bookmark_current_url();
 | |
|     void update_bookmark_button(String const& url);
 | |
|     void start_download(const URL& url);
 | |
|     void view_source(const URL& url, String const& source);
 | |
|     void update_status(Optional<String> text_override = {}, i32 count_waiting = 0);
 | |
| 
 | |
|     enum class MayAppendTLD {
 | |
|         No,
 | |
|         Yes
 | |
|     };
 | |
| 
 | |
|     Optional<URL> url_from_location_bar(MayAppendTLD = MayAppendTLD::No);
 | |
| 
 | |
|     History m_history;
 | |
| 
 | |
|     RefPtr<Web::OutOfProcessWebView> m_web_content_view;
 | |
| 
 | |
|     RefPtr<GUI::UrlBox> m_location_box;
 | |
|     RefPtr<GUI::Button> m_bookmark_button;
 | |
|     RefPtr<InspectorWidget> m_dom_inspector_widget;
 | |
|     RefPtr<ConsoleWidget> m_console_widget;
 | |
|     RefPtr<StorageWidget> m_storage_widget;
 | |
|     RefPtr<GUI::Statusbar> m_statusbar;
 | |
|     RefPtr<GUI::ToolbarContainer> m_toolbar_container;
 | |
| 
 | |
|     RefPtr<GUI::Menu> m_link_context_menu;
 | |
|     RefPtr<GUI::Action> m_link_context_menu_default_action;
 | |
|     URL m_link_context_menu_url;
 | |
| 
 | |
|     RefPtr<GUI::Menu> m_image_context_menu;
 | |
|     Gfx::ShareableBitmap m_image_context_menu_bitmap;
 | |
|     URL m_image_context_menu_url;
 | |
| 
 | |
|     RefPtr<GUI::Menu> m_tab_context_menu;
 | |
|     RefPtr<GUI::Menu> m_page_context_menu;
 | |
|     RefPtr<GUI::Menu> m_go_back_context_menu;
 | |
|     RefPtr<GUI::Menu> m_go_forward_context_menu;
 | |
|     String m_title;
 | |
|     RefPtr<const Gfx::Bitmap> m_icon;
 | |
| 
 | |
|     Optional<URL> m_navigating_url;
 | |
| 
 | |
|     bool m_loaded { false };
 | |
|     bool m_is_history_navigation { false };
 | |
| };
 | |
| 
 | |
| URL url_from_user_input(String const& input);
 | |
| 
 | |
| }
 |