2022-07-14 06:08:30 +02:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2022, Filiph Sandström <filiph.sandstrom@filfatstudios.com>
|
2023-05-31 11:44:16 +10:00
|
|
|
* Copyright (c) 2023, Cameron Youell <cameronyouell@gmail.com>
|
2022-07-14 06:08:30 +02:00
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
|
*/
|
|
|
|
|
|
2025-02-22 21:51:15 +13:00
|
|
|
#include <LibURL/Parser.h>
|
2024-03-18 16:22:27 +13:00
|
|
|
#include <LibURL/URL.h>
|
2024-09-22 23:12:36 +01:00
|
|
|
#include <LibWebView/Application.h>
|
2024-11-09 12:50:33 -05:00
|
|
|
#include <UI/Qt/Settings.h>
|
|
|
|
|
#include <UI/Qt/SettingsDialog.h>
|
|
|
|
|
#include <UI/Qt/StringUtils.h>
|
|
|
|
|
|
2022-07-14 06:36:11 +02:00
|
|
|
#include <QLabel>
|
2023-05-31 11:44:16 +10:00
|
|
|
#include <QMenu>
|
2022-07-14 06:36:11 +02:00
|
|
|
|
2023-08-02 11:52:59 -06:00
|
|
|
namespace Ladybird {
|
|
|
|
|
|
2022-07-14 06:08:30 +02:00
|
|
|
SettingsDialog::SettingsDialog(QMainWindow* window)
|
2023-12-04 09:39:22 -05:00
|
|
|
: QDialog(window)
|
|
|
|
|
, m_window(window)
|
2022-07-14 06:08:30 +02:00
|
|
|
{
|
2022-10-01 12:46:24 -06:00
|
|
|
m_layout = new QFormLayout(this);
|
2022-07-14 06:36:11 +02:00
|
|
|
|
2024-07-23 21:11:47 +01:00
|
|
|
m_preferred_languages = new QLineEdit(this);
|
|
|
|
|
m_preferred_languages->setText(Settings::the()->preferred_languages().join(","));
|
|
|
|
|
QObject::connect(m_preferred_languages, &QLineEdit::editingFinished, this, [this] {
|
|
|
|
|
Settings::the()->set_preferred_languages(m_preferred_languages->text().split(","));
|
|
|
|
|
});
|
|
|
|
|
QObject::connect(m_preferred_languages, &QLineEdit::returnPressed, this, [this] {
|
|
|
|
|
close();
|
|
|
|
|
});
|
|
|
|
|
|
2023-12-04 09:39:22 -05:00
|
|
|
m_enable_autocomplete = new QCheckBox(this);
|
2023-05-31 11:44:16 +10:00
|
|
|
m_enable_autocomplete->setChecked(Settings::the()->enable_autocomplete());
|
|
|
|
|
|
2023-12-04 09:39:22 -05:00
|
|
|
m_autocomplete_engine_dropdown = new QPushButton(this);
|
2023-05-31 11:44:16 +10:00
|
|
|
m_autocomplete_engine_dropdown->setText(Settings::the()->autocomplete_engine().name);
|
2023-10-20 10:00:41 -04:00
|
|
|
m_autocomplete_engine_dropdown->setMaximumWidth(200);
|
2023-05-31 11:44:16 +10:00
|
|
|
|
2024-07-02 20:31:14 +01:00
|
|
|
m_enable_do_not_track = new QCheckBox(this);
|
|
|
|
|
m_enable_do_not_track->setChecked(Settings::the()->enable_do_not_track());
|
2024-10-15 03:39:22 -03:00
|
|
|
#if (QT_VERSION > QT_VERSION_CHECK(6, 7, 0))
|
|
|
|
|
QObject::connect(m_enable_do_not_track, &QCheckBox::checkStateChanged, this, [&](int state) {
|
|
|
|
|
#else
|
2024-07-02 20:31:14 +01:00
|
|
|
QObject::connect(m_enable_do_not_track, &QCheckBox::stateChanged, this, [&](int state) {
|
2024-10-15 03:39:22 -03:00
|
|
|
#endif
|
2024-07-02 20:31:14 +01:00
|
|
|
Settings::the()->set_enable_do_not_track(state == Qt::Checked);
|
|
|
|
|
});
|
|
|
|
|
|
2025-03-20 12:59:44 -04:00
|
|
|
setup_autocomplete_engine();
|
2023-05-31 11:44:16 +10:00
|
|
|
|
2024-07-23 21:11:47 +01:00
|
|
|
m_layout->addRow(new QLabel("Preferred Language(s)", this), m_preferred_languages);
|
2023-05-31 11:44:16 +10:00
|
|
|
m_layout->addRow(new QLabel("Enable Autocomplete", this), m_enable_autocomplete);
|
|
|
|
|
m_layout->addRow(new QLabel("Autocomplete Engine", this), m_autocomplete_engine_dropdown);
|
2024-07-02 20:31:14 +01:00
|
|
|
m_layout->addRow(new QLabel("Send web sites a \"Do Not Track\" request", this), m_enable_do_not_track);
|
2022-07-14 06:08:30 +02:00
|
|
|
|
|
|
|
|
setWindowTitle("Settings");
|
|
|
|
|
setLayout(m_layout);
|
2023-10-20 09:40:11 -04:00
|
|
|
resize(600, 250);
|
2022-07-14 06:08:30 +02:00
|
|
|
}
|
2022-07-14 06:36:11 +02:00
|
|
|
|
2025-03-20 12:59:44 -04:00
|
|
|
void SettingsDialog::setup_autocomplete_engine()
|
2023-05-31 11:44:16 +10:00
|
|
|
{
|
2023-10-19 16:08:31 -04:00
|
|
|
// FIXME: These should be centralized in LibWebView.
|
2023-05-31 11:44:16 +10:00
|
|
|
Vector<Settings::EngineProvider> autocomplete_engines = {
|
|
|
|
|
{ "DuckDuckGo", "https://duckduckgo.com/ac/?q={}" },
|
|
|
|
|
{ "Google", "https://www.google.com/complete/search?client=chrome&q={}" },
|
|
|
|
|
{ "Yahoo", "https://search.yahoo.com/sugg/gossip/gossip-us-ura/?output=sd1&command={}" },
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
QMenu* autocomplete_engine_menu = new QMenu(this);
|
|
|
|
|
for (auto& autocomplete_engine : autocomplete_engines) {
|
|
|
|
|
QAction* action = new QAction(autocomplete_engine.name, this);
|
|
|
|
|
connect(action, &QAction::triggered, this, [&, autocomplete_engine] {
|
|
|
|
|
Settings::the()->set_autocomplete_engine(autocomplete_engine);
|
|
|
|
|
m_autocomplete_engine_dropdown->setText(autocomplete_engine.name);
|
|
|
|
|
});
|
|
|
|
|
autocomplete_engine_menu->addAction(action);
|
|
|
|
|
}
|
|
|
|
|
m_autocomplete_engine_dropdown->setMenu(autocomplete_engine_menu);
|
|
|
|
|
m_autocomplete_engine_dropdown->setEnabled(Settings::the()->enable_autocomplete());
|
|
|
|
|
|
2024-10-15 03:39:22 -03:00
|
|
|
#if (QT_VERSION > QT_VERSION_CHECK(6, 7, 0))
|
|
|
|
|
connect(m_enable_autocomplete, &QCheckBox::checkStateChanged, this, [&](int state) {
|
|
|
|
|
#else
|
2023-05-31 11:44:16 +10:00
|
|
|
connect(m_enable_autocomplete, &QCheckBox::stateChanged, this, [&](int state) {
|
2024-10-15 03:39:22 -03:00
|
|
|
#endif
|
2023-05-31 11:44:16 +10:00
|
|
|
Settings::the()->set_enable_autocomplete(state == Qt::Checked);
|
|
|
|
|
m_autocomplete_engine_dropdown->setEnabled(state == Qt::Checked);
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
2023-08-02 11:52:59 -06:00
|
|
|
}
|