mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-12-08 06:09:58 +00:00
This adds a section to allow users to clear the HTTP disk cache and cookies / local storage / session storage. There are a few options to limit this action to a specific time range (e.g. "last hour"). The user is informed how much disk space is being used currently, and how much will be removed given the selected time range. The idea is that in the future, we can add more settings here to auto- delete data on exit, disable caching altogether, etc.
46 lines
1.3 KiB
C++
46 lines
1.3 KiB
C++
/*
|
|
* Copyright (c) 2025, Tim Flynn <trflynn89@ladybird.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibWebView/Forward.h>
|
|
#include <LibWebView/WebUI.h>
|
|
|
|
namespace WebView {
|
|
|
|
class WEBVIEW_API SettingsUI : public WebUI {
|
|
WEB_UI(SettingsUI);
|
|
|
|
private:
|
|
virtual void register_interfaces() override;
|
|
|
|
void load_current_settings();
|
|
void restore_default_settings();
|
|
|
|
void set_new_tab_page_url(JsonValue const&);
|
|
void set_default_zoom_level_factor(JsonValue const&);
|
|
void set_languages(JsonValue const&);
|
|
|
|
void load_available_engines();
|
|
void set_search_engine(JsonValue const&);
|
|
void add_custom_search_engine(JsonValue const&);
|
|
void remove_custom_search_engine(JsonValue const&);
|
|
void set_autocomplete_engine(JsonValue const&);
|
|
|
|
void load_forcibly_enabled_site_settings();
|
|
void set_site_setting_enabled_globally(JsonValue const&);
|
|
void add_site_setting_filter(JsonValue const&);
|
|
void remove_site_setting_filter(JsonValue const&);
|
|
void remove_all_site_setting_filters(JsonValue const&);
|
|
|
|
void estimate_browsing_data_sizes(JsonValue const&);
|
|
void clear_browsing_data(JsonValue const&);
|
|
void set_global_privacy_control(JsonValue const&);
|
|
|
|
void set_dns_settings(JsonValue const&);
|
|
};
|
|
|
|
}
|