forked from SerenityOS/serenity
-
Notifications
You must be signed in to change notification settings - Fork 0
/
StorageWidget.h
57 lines (43 loc) · 1.61 KB
/
StorageWidget.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
/*
* Copyright (c) 2022, the SerenityOS developers.
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include "CookiesModel.h"
#include "StorageModel.h"
#include "Tab.h"
#include <LibGUI/FilteringProxyModel.h>
#include <LibGUI/TextBox.h>
#include <LibGUI/Widget.h>
#include <LibWeb/Cookie/Cookie.h>
namespace Browser {
class StorageWidget final : public GUI::Widget {
C_OBJECT(StorageWidget);
public:
virtual ~StorageWidget() override = default;
void set_cookies_entries(Vector<Web::Cookie::Cookie> entries);
void clear_cookies();
Function<void(Web::Cookie::Cookie)> on_update_cookie;
void set_local_storage_entries(OrderedHashMap<String, String> entries);
void clear_local_storage_entries();
void set_session_storage_entries(OrderedHashMap<String, String> entries);
void clear_session_storage_entries();
private:
StorageWidget();
void delete_cookie(Web::Cookie::Cookie);
RefPtr<GUI::TableView> m_cookies_table_view;
RefPtr<GUI::TextBox> m_cookies_textbox;
RefPtr<CookiesModel> m_cookies_model;
RefPtr<GUI::FilteringProxyModel> m_cookies_filtering_model;
RefPtr<GUI::Menu> m_cookies_context_menu;
RefPtr<GUI::TableView> m_local_storage_table_view;
RefPtr<GUI::TextBox> m_local_storage_textbox;
RefPtr<StorageModel> m_local_storage_model;
RefPtr<GUI::FilteringProxyModel> m_local_storage_filtering_model;
RefPtr<GUI::TableView> m_session_storage_table_view;
RefPtr<GUI::TextBox> m_session_storage_textbox;
RefPtr<StorageModel> m_session_storage_model;
RefPtr<GUI::FilteringProxyModel> m_session_storage_filtering_model;
};
}