mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-22 09:19:03 +00:00
This URL library ends up being a relatively fundamental base library of the system, as LibCore depends on LibURL. This change has two main benefits: * Moving AK back more towards being an agnostic library that can be used between the kernel and userspace. URL has never really fit that description - and is not used in the kernel. * URL _should_ depend on LibUnicode, as it needs punnycode support. However, it's not really possible to do this inside of AK as it can't depend on any external library. This change brings us a little closer to being able to do that, but unfortunately we aren't there quite yet, as the code generators depend on LibCore.
247 lines
11 KiB
C++
247 lines
11 KiB
C++
/*
|
|
* Copyright (c) 2021-2022, Sam Atkins <atkinssj@serenityos.org>
|
|
* Copyright (c) 2023, Cameron Youell <cameronyouell@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include "BrowserSettingsWidget.h"
|
|
#include <Applications/BrowserSettings/Defaults.h>
|
|
#include <LibConfig/Client.h>
|
|
#include <LibGUI/Label.h>
|
|
#include <LibGUI/MessageBox.h>
|
|
#include <LibGUI/Model.h>
|
|
#include <LibWebView/SearchEngine.h>
|
|
|
|
namespace BrowserSettings {
|
|
|
|
struct ColorScheme {
|
|
ByteString title;
|
|
ByteString setting_value;
|
|
};
|
|
|
|
class ColorSchemeModel final : public GUI::Model {
|
|
public:
|
|
ColorSchemeModel()
|
|
{
|
|
m_color_schemes.empend("Follow system theme", "auto");
|
|
m_color_schemes.empend("Dark", "dark");
|
|
m_color_schemes.empend("Light", "light");
|
|
}
|
|
|
|
virtual ~ColorSchemeModel() = default;
|
|
|
|
virtual int row_count(GUI::ModelIndex const& = GUI::ModelIndex()) const override { return 3; }
|
|
virtual int column_count(GUI::ModelIndex const& = GUI::ModelIndex()) const override { return 2; }
|
|
|
|
virtual GUI::Variant data(GUI::ModelIndex const& index, GUI::ModelRole role) const override
|
|
{
|
|
if (role == GUI::ModelRole::TextAlignment)
|
|
return Gfx::TextAlignment::CenterLeft;
|
|
if (role == GUI::ModelRole::Display) {
|
|
if (index.column() == 0)
|
|
return m_color_schemes[index.row()].title;
|
|
else
|
|
return m_color_schemes[index.row()].setting_value;
|
|
}
|
|
|
|
return {};
|
|
}
|
|
|
|
private:
|
|
Vector<ColorScheme> m_color_schemes;
|
|
};
|
|
|
|
class SearchEngineModel final : public GUI::Model {
|
|
enum class SearchEngineColumn : int {
|
|
Name,
|
|
QueryURL,
|
|
};
|
|
|
|
public:
|
|
SearchEngineModel()
|
|
{
|
|
m_search_engines.ensure_capacity(WebView::search_engines().size() + 1);
|
|
|
|
for (auto const& engine : WebView::search_engines())
|
|
m_search_engines.append(engine);
|
|
|
|
m_search_engines.empend("Custom..."sv, StringView {});
|
|
}
|
|
|
|
virtual int row_count(GUI::ModelIndex const& = GUI::ModelIndex()) const override { return m_search_engines.size(); }
|
|
virtual int column_count(GUI::ModelIndex const& = GUI::ModelIndex()) const override { return 2; }
|
|
|
|
virtual GUI::Variant data(GUI::ModelIndex const& index, GUI::ModelRole role) const override
|
|
{
|
|
if (role == GUI::ModelRole::TextAlignment)
|
|
return Gfx::TextAlignment::CenterLeft;
|
|
|
|
if (role == GUI::ModelRole::Display) {
|
|
switch (static_cast<SearchEngineColumn>(index.column())) {
|
|
case SearchEngineColumn::Name:
|
|
return m_search_engines[index.row()].name;
|
|
case SearchEngineColumn::QueryURL:
|
|
return m_search_engines[index.row()].query_url;
|
|
}
|
|
|
|
VERIFY_NOT_REACHED();
|
|
}
|
|
|
|
return {};
|
|
}
|
|
|
|
private:
|
|
Vector<WebView::SearchEngine> m_search_engines;
|
|
};
|
|
|
|
ErrorOr<void> BrowserSettingsWidget::initialize()
|
|
{
|
|
m_homepage_url_textbox = find_descendant_of_type_named<GUI::TextBox>("homepage_url_textbox");
|
|
m_homepage_url_textbox->set_text(Config::read_string("Browser"sv, "Preferences"sv, "Home"sv, Browser::default_homepage_url), GUI::AllowCallback::No);
|
|
m_homepage_url_textbox->on_change = [&]() { set_modified(true); };
|
|
|
|
m_new_tab_url_textbox = find_descendant_of_type_named<GUI::TextBox>("new_tab_url_textbox");
|
|
m_new_tab_url_textbox->set_text(Config::read_string("Browser"sv, "Preferences"sv, "NewTab"sv, Browser::default_new_tab_url), GUI::AllowCallback::No);
|
|
m_new_tab_url_textbox->on_change = [&]() { set_modified(true); };
|
|
|
|
m_color_scheme_combobox = find_descendant_of_type_named<GUI::ComboBox>("color_scheme_combobox");
|
|
m_color_scheme_combobox->set_only_allow_values_from_model(true);
|
|
m_color_scheme_combobox->set_model(adopt_ref(*new ColorSchemeModel()));
|
|
m_color_scheme_combobox->set_selected_index(0, GUI::AllowCallback::No);
|
|
set_color_scheme(Config::read_string("Browser"sv, "Preferences"sv, "ColorScheme"sv, Browser::default_color_scheme));
|
|
m_color_scheme_combobox->on_change = [&](auto, auto) { set_modified(true); };
|
|
|
|
m_show_bookmarks_bar_checkbox = find_descendant_of_type_named<GUI::CheckBox>("show_bookmarks_bar_checkbox");
|
|
m_show_bookmarks_bar_checkbox->set_checked(Config::read_bool("Browser"sv, "Preferences"sv, "ShowBookmarksBar"sv, Browser::default_show_bookmarks_bar), GUI::AllowCallback::No);
|
|
m_show_bookmarks_bar_checkbox->on_checked = [&](auto) { set_modified(true); };
|
|
|
|
m_enable_search_engine_checkbox = find_descendant_of_type_named<GUI::CheckBox>("enable_search_engine_checkbox");
|
|
m_search_engine_combobox_group = find_descendant_of_type_named<GUI::Widget>("search_engine_combobox_group");
|
|
m_search_engine_combobox = find_descendant_of_type_named<GUI::ComboBox>("search_engine_combobox");
|
|
m_custom_search_engine_group = find_descendant_of_type_named<GUI::Widget>("custom_search_engine_group");
|
|
m_custom_search_engine_textbox = find_descendant_of_type_named<GUI::TextBox>("custom_search_engine_textbox");
|
|
m_custom_search_engine_textbox->on_change = [&]() { set_modified(true); };
|
|
|
|
m_enable_search_engine_checkbox->on_checked = [this](bool checked) {
|
|
m_search_engine_combobox_group->set_enabled(checked);
|
|
m_custom_search_engine_group->set_enabled(checked && m_is_custom_search_engine);
|
|
set_modified(true);
|
|
};
|
|
|
|
m_search_engine_combobox->set_model(adopt_ref(*new SearchEngineModel()));
|
|
m_search_engine_combobox->set_only_allow_values_from_model(true);
|
|
m_search_engine_combobox->on_change = [this](AK::ByteString const&, GUI::ModelIndex const& cursor_index) {
|
|
auto url_format = m_search_engine_combobox->model()->index(cursor_index.row(), 1).data().to_byte_string();
|
|
m_is_custom_search_engine = url_format.is_empty();
|
|
m_custom_search_engine_group->set_enabled(m_is_custom_search_engine);
|
|
set_modified(true);
|
|
};
|
|
set_search_engine_url(Config::read_string("Browser"sv, "Preferences"sv, "SearchEngine"sv, WebView::default_search_engine().query_url));
|
|
|
|
m_auto_close_download_windows_checkbox = find_descendant_of_type_named<GUI::CheckBox>("auto_close_download_windows_checkbox");
|
|
m_auto_close_download_windows_checkbox->set_checked(Config::read_bool("Browser"sv, "Preferences"sv, "CloseDownloadWidgetOnFinish"sv, Browser::default_close_download_widget_on_finish), GUI::AllowCallback::No);
|
|
m_auto_close_download_windows_checkbox->on_checked = [&](auto) { set_modified(true); };
|
|
|
|
return {};
|
|
}
|
|
|
|
void BrowserSettingsWidget::set_color_scheme(StringView color_scheme)
|
|
{
|
|
bool found_color_scheme = false;
|
|
for (int item_index = 0; item_index < m_color_scheme_combobox->model()->row_count(); ++item_index) {
|
|
auto scheme = m_color_scheme_combobox->model()->index(item_index, 1).data().to_byte_string();
|
|
if (scheme == color_scheme) {
|
|
m_color_scheme_combobox->set_selected_index(item_index, GUI::AllowCallback::No);
|
|
found_color_scheme = true;
|
|
break;
|
|
}
|
|
}
|
|
if (!found_color_scheme)
|
|
m_color_scheme_combobox->set_selected_index(0, GUI::AllowCallback::No);
|
|
}
|
|
|
|
void BrowserSettingsWidget::set_search_engine_url(StringView url)
|
|
{
|
|
if (url.is_empty()) {
|
|
m_enable_search_engine_checkbox->set_checked(false, GUI::AllowCallback::No);
|
|
m_search_engine_combobox_group->set_enabled(false);
|
|
m_custom_search_engine_group->set_enabled(false);
|
|
m_search_engine_combobox->set_selected_index(0, GUI::AllowCallback::No);
|
|
} else {
|
|
m_enable_search_engine_checkbox->set_checked(true, GUI::AllowCallback::No);
|
|
m_search_engine_combobox_group->set_enabled(true);
|
|
|
|
bool found_url = false;
|
|
for (int item_index = 0; item_index < m_search_engine_combobox->model()->row_count(); ++item_index) {
|
|
auto url_format = m_search_engine_combobox->model()->index(item_index, 1).data().to_byte_string();
|
|
if (url_format == url) {
|
|
m_search_engine_combobox->set_selected_index(item_index, GUI::AllowCallback::No);
|
|
found_url = true;
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (!found_url) {
|
|
m_is_custom_search_engine = true;
|
|
m_custom_search_engine_textbox->set_text(url, GUI::AllowCallback::No);
|
|
// We assume that "Custom" is the last item
|
|
m_search_engine_combobox->set_selected_index(m_search_engine_combobox->model()->row_count() - 1, GUI::AllowCallback::No);
|
|
m_custom_search_engine_group->set_enabled(true);
|
|
} else {
|
|
m_custom_search_engine_group->set_enabled(false);
|
|
}
|
|
}
|
|
}
|
|
|
|
void BrowserSettingsWidget::apply_settings()
|
|
{
|
|
auto homepage_url = m_homepage_url_textbox->text();
|
|
if (!URL::URL(homepage_url).is_valid()) {
|
|
GUI::MessageBox::show_error(this->window(), "The homepage URL you have entered is not valid"sv);
|
|
m_homepage_url_textbox->select_all();
|
|
m_homepage_url_textbox->set_focus(true);
|
|
return;
|
|
}
|
|
Config::write_string("Browser"sv, "Preferences"sv, "Home"sv, homepage_url);
|
|
|
|
auto new_tab_url = m_new_tab_url_textbox->text();
|
|
if (!URL::URL(new_tab_url).is_valid()) {
|
|
GUI::MessageBox::show_error(this->window(), "The new tab URL you have entered is not valid"sv);
|
|
m_new_tab_url_textbox->select_all();
|
|
m_new_tab_url_textbox->set_focus(true);
|
|
return;
|
|
}
|
|
Config::write_string("Browser"sv, "Preferences"sv, "NewTab"sv, new_tab_url);
|
|
|
|
Config::write_bool("Browser"sv, "Preferences"sv, "ShowBookmarksBar"sv, m_show_bookmarks_bar_checkbox->is_checked());
|
|
|
|
auto color_scheme_index = m_color_scheme_combobox->selected_index();
|
|
auto color_scheme = m_color_scheme_combobox->model()->index(color_scheme_index, 1).data().to_byte_string();
|
|
Config::write_string("Browser"sv, "Preferences"sv, "ColorScheme"sv, color_scheme);
|
|
|
|
if (!m_enable_search_engine_checkbox->is_checked()) {
|
|
Config::write_string("Browser"sv, "Preferences"sv, "SearchEngine"sv, {});
|
|
} else if (m_is_custom_search_engine) {
|
|
Config::write_string("Browser"sv, "Preferences"sv, "SearchEngine"sv, m_custom_search_engine_textbox->text());
|
|
} else {
|
|
auto selected_index = m_search_engine_combobox->selected_index();
|
|
auto url = m_search_engine_combobox->model()->index(selected_index, 1).data().to_byte_string();
|
|
Config::write_string("Browser"sv, "Preferences"sv, "SearchEngine"sv, url);
|
|
}
|
|
|
|
Config::write_bool("Browser"sv, "Preferences"sv, "CloseDownloadWidgetOnFinish"sv, m_auto_close_download_windows_checkbox->is_checked());
|
|
}
|
|
|
|
void BrowserSettingsWidget::reset_default_values()
|
|
{
|
|
m_homepage_url_textbox->set_text(Browser::default_homepage_url);
|
|
m_new_tab_url_textbox->set_text(Browser::default_new_tab_url);
|
|
m_show_bookmarks_bar_checkbox->set_checked(Browser::default_show_bookmarks_bar);
|
|
set_color_scheme(Browser::default_color_scheme);
|
|
m_auto_close_download_windows_checkbox->set_checked(Browser::default_close_download_widget_on_finish);
|
|
set_search_engine_url(WebView::default_search_engine().query_url);
|
|
}
|
|
|
|
}
|