mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-11 19:07:15 +03:00
6e19ab2bbc
We have a new, improved string type coming up in AK (OOM aware, no null state), and while it's going to use UTF-8, the name UTF8String is a mouthful - so let's free up the String name by renaming the existing class. Making the old one have an annoying name will hopefully also help with quick adoption :^)
58 lines
1.6 KiB
C++
58 lines
1.6 KiB
C++
/*
|
|
* 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<DeprecatedString, DeprecatedString> entries);
|
|
void clear_local_storage_entries();
|
|
|
|
void set_session_storage_entries(OrderedHashMap<DeprecatedString, DeprecatedString> 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;
|
|
};
|
|
|
|
}
|