mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 07:30:19 +00:00
54 lines
1.2 KiB
C++
54 lines
1.2 KiB
C++
/*
|
|
* Copyright (c) 2022, Filiph Sandström <filiph.sandstrom@filfatstudios.com>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include "SettingsDialog.h"
|
|
#include "Settings.h"
|
|
#include "StringUtils.h"
|
|
#include <AK/URL.h>
|
|
#include <QCloseEvent>
|
|
#include <QLabel>
|
|
|
|
namespace Ladybird {
|
|
|
|
extern Settings* s_settings;
|
|
|
|
SettingsDialog::SettingsDialog(QMainWindow* window)
|
|
: m_window(window)
|
|
{
|
|
m_layout = new QFormLayout(this);
|
|
m_new_tab_page = new QLineEdit(this);
|
|
m_ok_button = new QPushButton("&Save", this);
|
|
|
|
m_layout->addRow(new QLabel("Page on New Tab", this), m_new_tab_page);
|
|
m_layout->addWidget(m_ok_button);
|
|
|
|
QObject::connect(m_ok_button, &QPushButton::released, this, [this] {
|
|
close();
|
|
});
|
|
|
|
setWindowTitle("Settings");
|
|
setFixedWidth(300);
|
|
setFixedHeight(150);
|
|
setLayout(m_layout);
|
|
show();
|
|
setFocus();
|
|
}
|
|
|
|
void SettingsDialog::closeEvent(QCloseEvent* event)
|
|
{
|
|
save();
|
|
event->accept();
|
|
}
|
|
|
|
void SettingsDialog::save()
|
|
{
|
|
auto url_string = MUST(ak_string_from_qstring(m_new_tab_page->text()));
|
|
if (!URL(url_string).is_valid())
|
|
return;
|
|
s_settings->set_new_tab_page(m_new_tab_page->text());
|
|
}
|
|
|
|
}
|