mirror-chatterino2/src/widgets/settingspages/SettingsPage.cpp

95 lines
2.5 KiB
C++
Raw Normal View History

2018-06-26 14:09:39 +02:00
#include "SettingsPage.hpp"
2018-01-12 23:09:05 +01:00
#include <QDebug>
namespace chatterino {
2018-01-13 00:18:18 +01:00
SettingsPage::SettingsPage(const QString &_name, const QString &_iconResource)
2018-01-12 23:09:05 +01:00
: name(_name)
2018-01-13 00:18:18 +01:00
, iconResource(_iconResource)
2018-01-12 23:09:05 +01:00
{
}
const QString &SettingsPage::getName()
{
return this->name;
}
2018-01-13 00:18:18 +01:00
const QString &SettingsPage::getIconResource()
{
return this->iconResource;
}
2018-01-12 23:09:05 +01:00
void SettingsPage::cancel()
{
this->onCancel.invoke();
}
QCheckBox *SettingsPage::createCheckBox(const QString &text,
pajlada::Settings::Setting<bool> &setting)
{
QCheckBox *checkbox = new QCheckBox(text);
// update when setting changes
setting.connect(
[checkbox](const bool &value, auto) {
checkbox->setChecked(value); //
},
this->managedConnections);
// update setting on toggle
QObject::connect(checkbox, &QCheckBox::toggled, this, [&setting](bool state) {
qDebug() << "update checkbox value";
setting = state; //
});
return checkbox;
}
QComboBox *SettingsPage::createComboBox(const QStringList &items,
pajlada::Settings::Setting<QString> &setting)
{
QComboBox *combo = new QComboBox();
// update setting on toogle
combo->addItems(items);
// update when setting changes
setting.connect([combo](const QString &value, auto) { combo->setCurrentText(value); },
this->managedConnections);
QObject::connect(combo, &QComboBox::currentTextChanged,
[&setting](const QString &newValue) { setting = newValue; });
return combo;
}
QLineEdit *SettingsPage::createLineEdit(pajlada::Settings::Setting<QString> &setting)
{
QLineEdit *edit = new QLineEdit();
edit->setText(setting);
// update when setting changes
QObject::connect(edit, &QLineEdit::textChanged,
[&setting](const QString &newValue) { setting = newValue; });
return edit;
}
2018-01-12 23:33:04 +01:00
QSpinBox *SettingsPage::createSpinBox(pajlada::Settings::Setting<int> &setting, int min, int max)
{
QSpinBox *w = new QSpinBox;
w->setMinimum(min);
w->setMaximum(max);
setting.connect([w](const int &value, auto) { w->setValue(value); });
QObject::connect(w, QOverload<int>::of(&QSpinBox::valueChanged),
[&setting](int value) { setting.setValue(value); });
return w;
}
2018-01-12 23:09:05 +01:00
} // namespace chatterino