2025-03-24 10:22:38 -04:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2025, Tim Flynn <trflynn89@ladybird.org>
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2025-07-01 20:55:11 -07:00
|
|
|
#include <LibWebView/Forward.h>
|
2025-03-24 10:22:38 -04:00
|
|
|
#include <LibWebView/WebUI.h>
|
|
|
|
|
|
|
|
namespace WebView {
|
|
|
|
|
2025-07-01 20:55:11 -07:00
|
|
|
class WEBVIEW_API SettingsUI : public WebUI {
|
2025-03-24 10:22:38 -04:00
|
|
|
WEB_UI(SettingsUI);
|
|
|
|
|
|
|
|
private:
|
|
|
|
virtual void register_interfaces() override;
|
|
|
|
|
|
|
|
void load_current_settings();
|
|
|
|
void restore_default_settings();
|
2025-03-30 16:21:24 -04:00
|
|
|
|
2025-03-24 10:22:38 -04:00
|
|
|
void set_new_tab_page_url(JsonValue const&);
|
2025-08-23 11:15:31 -05:00
|
|
|
void set_default_zoom_level_factor(JsonValue const&);
|
2025-04-03 13:42:39 -04:00
|
|
|
void set_languages(JsonValue const&);
|
2025-03-30 16:21:24 -04:00
|
|
|
|
|
|
|
void load_available_engines();
|
2025-03-24 10:22:38 -04:00
|
|
|
void set_search_engine(JsonValue const&);
|
2025-04-04 18:12:32 -04:00
|
|
|
void add_custom_search_engine(JsonValue const&);
|
|
|
|
void remove_custom_search_engine(JsonValue const&);
|
2025-03-30 16:21:24 -04:00
|
|
|
void set_autocomplete_engine(JsonValue const&);
|
|
|
|
|
2025-03-28 13:00:05 -04:00
|
|
|
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&);
|
2025-04-02 09:47:44 -04:00
|
|
|
|
2025-04-02 09:30:34 -04:00
|
|
|
void set_global_privacy_control(JsonValue const&);
|
2025-04-08 03:56:35 +02:00
|
|
|
|
|
|
|
void set_dns_settings(JsonValue const&);
|
2025-03-24 10:22:38 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|