mirror-chatterino2/widgets/settingsdialog.cpp

330 lines
9.4 KiB
C++
Raw Normal View History

2017-01-18 21:30:23 +01:00
#include "widgets/settingsdialog.h"
2017-04-18 02:29:32 +02:00
#include "twitch/twitchaccount.h"
#include "accountmanager.h"
2017-01-18 21:30:23 +01:00
#include "widgets/settingsdialogtab.h"
2017-04-12 17:46:44 +02:00
#include "windowmanager.h"
2017-01-02 03:02:32 +01:00
2017-01-18 04:33:30 +01:00
#include <QComboBox>
#include <QFile>
#include <QFormLayout>
#include <QGroupBox>
#include <QLabel>
2017-04-13 16:06:23 +02:00
#include <QListWidget>
2017-01-18 04:33:30 +01:00
#include <QPalette>
#include <QResource>
2017-01-01 18:43:52 +01:00
2017-04-14 17:52:22 +02:00
namespace chatterino {
namespace widgets {
2017-01-18 21:30:23 +01:00
2017-01-01 18:43:52 +01:00
SettingsDialog::SettingsDialog()
2017-04-12 17:46:44 +02:00
: _snapshot(SettingsManager::getInstance().createSnapshot())
2017-01-01 18:43:52 +01:00
{
2017-01-02 03:02:32 +01:00
QFile file(":/qss/settings.qss");
file.open(QFile::ReadOnly);
QString styleSheet = QLatin1String(file.readAll());
setStyleSheet(styleSheet);
QPalette palette;
palette.setColor(QPalette::Background, QColor("#444"));
setPalette(palette);
2017-04-12 17:46:44 +02:00
_pageStack.setObjectName("pages");
2017-01-02 03:02:32 +01:00
2017-04-12 17:46:44 +02:00
setLayout(&_vbox);
2017-01-02 03:02:32 +01:00
2017-04-12 17:46:44 +02:00
_vbox.addLayout(&_hbox);
2017-01-02 03:02:32 +01:00
2017-04-12 17:46:44 +02:00
_vbox.addWidget(&_buttonBox);
2017-01-02 03:02:32 +01:00
auto tabWidget = new QWidget();
tabWidget->setObjectName("tabWidget");
2017-04-12 17:46:44 +02:00
tabWidget->setLayout(&_tabs);
2017-01-02 03:02:32 +01:00
tabWidget->setFixedWidth(200);
2017-04-12 17:46:44 +02:00
_hbox.addWidget(tabWidget);
_hbox.addLayout(&_pageStack);
2017-01-02 03:02:32 +01:00
2017-04-12 17:46:44 +02:00
_buttonBox.addButton(&_okButton, QDialogButtonBox::ButtonRole::AcceptRole);
_buttonBox.addButton(&_cancelButton, QDialogButtonBox::ButtonRole::RejectRole);
2017-01-24 19:51:57 +01:00
2017-04-12 17:46:44 +02:00
QObject::connect(&_okButton, &QPushButton::clicked, this, &SettingsDialog::okButtonClicked);
QObject::connect(&_cancelButton, &QPushButton::clicked, this,
2017-01-24 19:51:57 +01:00
&SettingsDialog::cancelButtonClicked);
2017-04-12 17:46:44 +02:00
_okButton.setText("OK");
_cancelButton.setText("Cancel");
2017-01-02 03:02:32 +01:00
resize(600, 500);
addTabs();
}
2017-04-12 17:46:44 +02:00
void SettingsDialog::addTabs()
2017-01-02 03:02:32 +01:00
{
2017-04-12 17:46:44 +02:00
SettingsManager &settings = SettingsManager::getInstance();
2017-01-22 12:46:35 +01:00
2017-01-11 18:52:09 +01:00
QVBoxLayout *vbox;
2017-01-02 03:02:32 +01:00
2017-04-13 16:06:23 +02:00
// Accounts
vbox = new QVBoxLayout();
{
// add remove buttons
auto buttonBox = new QDialogButtonBox(this);
auto addButton = new QPushButton("add", this);
auto removeButton = new QPushButton("remove", this);
buttonBox->addButton(addButton, QDialogButtonBox::YesRole);
buttonBox->addButton(removeButton, QDialogButtonBox::NoRole);
vbox->addWidget(buttonBox);
// listview
auto listWidget = new QListWidget(this);
listWidget->addItem("xD");
listWidget->addItem("vi von");
listWidget->addItem("monkaS");
for (auto &user : AccountManager::getInstance().getTwitchUsers()) {
listWidget->addItem(user.getUserName());
}
vbox->addWidget(listWidget);
}
// vbox->addStretch(1);
addTab(vbox, "Accounts", ":/images/Message_16xLG.png");
2017-01-02 03:02:32 +01:00
// Appearance
vbox = new QVBoxLayout();
{
2017-01-03 21:19:33 +01:00
auto group = new QGroupBox("Application");
2017-01-02 03:02:32 +01:00
auto form = new QFormLayout();
auto combo = new QComboBox();
auto slider = new QSlider(Qt::Horizontal);
auto font = new QPushButton("select");
2017-02-02 02:46:33 +01:00
auto compactTabs = createCheckbox("Hide tab X", settings.hideTabX);
2017-04-12 17:46:44 +02:00
auto hidePreferencesButton = createCheckbox("Hide preferences button (ctrl+p to show)",
settings.hidePreferencesButton);
auto hideUserButton = createCheckbox("Hide user button", settings.hideUserButton);
2017-01-02 03:02:32 +01:00
form->addRow("Theme:", combo);
2017-01-03 21:19:33 +01:00
form->addRow("Theme color:", slider);
2017-01-02 03:02:32 +01:00
form->addRow("Font:", font);
2017-04-13 16:06:23 +02:00
form->addRow("Tabbar:", compactTabs);
2017-02-02 02:46:33 +01:00
form->addRow("", hidePreferencesButton);
form->addRow("", hideUserButton);
2017-01-02 03:02:32 +01:00
2017-02-02 01:23:26 +01:00
// theme
combo->addItem("White");
combo->addItem("Light");
combo->addItem("Dark");
combo->addItem("Black");
QString theme = settings.theme.get();
theme = theme.toLower();
if (theme == "light") {
combo->setCurrentIndex(0);
} else if (theme == "white") {
combo->setCurrentIndex(1);
} else if (theme == "black") {
combo->setCurrentIndex(3);
} else {
combo->setCurrentIndex(2);
}
QObject::connect(combo, &QComboBox::currentTextChanged, this,
2017-04-12 17:46:44 +02:00
[this, &settings](const QString &value) { settings.theme.set(value); });
2017-02-02 01:23:26 +01:00
// theme hue
slider->setMinimum(0);
slider->setMaximum(1000);
float hue = settings.themeHue.get();
2017-04-12 17:46:44 +02:00
slider->setValue(std::min(std::max(hue, (float)0.0), (float)1.0) * 1000);
2017-02-02 01:23:26 +01:00
2017-04-12 17:46:44 +02:00
QObject::connect(slider, &QSlider::valueChanged, this, [this, &settings](int value) {
settings.themeHue.set(value / 1000.0);
2017-04-13 19:25:33 +02:00
WindowManager::getInstance().updateAll();
2017-04-12 17:46:44 +02:00
});
2017-02-02 01:23:26 +01:00
2017-01-03 21:19:33 +01:00
group->setLayout(form);
vbox->addWidget(group);
}
{
auto group = new QGroupBox("Messages");
auto v = new QVBoxLayout();
v->addWidget(createCheckbox("Show timestamp", settings.showTimestamps));
2017-04-12 17:46:44 +02:00
v->addWidget(createCheckbox("Show seconds in timestamp", settings.showTimestampSeconds));
v->addWidget(createCheckbox("Allow sending duplicate messages (add a space at the end)",
settings.allowDouplicateMessages));
v->addWidget(createCheckbox("Seperate messages", settings.seperateMessages));
v->addWidget(createCheckbox("Show message length", settings.showMessageLength));
2017-01-03 21:19:33 +01:00
group->setLayout(v);
vbox->addWidget(group);
2017-01-02 03:02:32 +01:00
}
vbox->addStretch(1);
addTab(vbox, "Appearance", ":/images/AppearanceEditorPart_16x.png");
2017-01-03 21:19:33 +01:00
// Behaviour
vbox = new QVBoxLayout();
{
2017-04-13 16:06:23 +02:00
auto form = new QFormLayout();
form->addRow("Window:", createCheckbox("Window always on top", settings.windowTopMost));
form->addRow("Messages:", createCheckbox("Mention users with a @ (except in commands)",
settings.mentionUsersWithAt));
form->addRow("", createCheckbox("Hide input box if empty", settings.hideEmptyInput));
form->addRow("", createCheckbox("Show last read message indicator",
settings.showLastMessageIndicator));
// auto v = new QVBoxLayout();
// v->addWidget(new QLabel("Mouse scroll speed"));
2017-01-03 21:19:33 +01:00
auto scroll = new QSlider(Qt::Horizontal);
2017-04-13 16:06:23 +02:00
form->addRow("Mouse scroll speed:", scroll);
2017-01-03 21:19:33 +01:00
2017-04-13 16:06:23 +02:00
// v->addWidget(scroll);
// v->addStretch(1);
// vbox->addLayout(v);
vbox->addLayout(form);
2017-01-03 21:19:33 +01:00
}
vbox->addStretch(1);
addTab(vbox, "Behaviour", ":/images/AppearanceEditorPart_16x.png");
2017-01-02 03:02:32 +01:00
// Commands
vbox = new QVBoxLayout();
vbox->addWidget(new QLabel());
vbox->addStretch(1);
addTab(vbox, "Commands", ":/images/CustomActionEditor_16x.png");
2017-01-22 12:46:35 +01:00
// Emotes
vbox = new QVBoxLayout();
2017-04-12 17:46:44 +02:00
vbox->addWidget(createCheckbox("Enable Twitch Emotes", settings.enableTwitchEmotes));
vbox->addWidget(createCheckbox("Enable BetterTTV Emotes", settings.enableBttvEmotes));
vbox->addWidget(createCheckbox("Enable FrankerFaceZ Emotes", settings.enableFfzEmotes));
vbox->addWidget(createCheckbox("Enable Gif Emotes", settings.enableGifs));
vbox->addWidget(createCheckbox("Enable Emojis", settings.enableEmojis));
2017-01-22 12:46:35 +01:00
2017-04-12 17:46:44 +02:00
vbox->addWidget(createCheckbox("Enable Twitch Emotes", settings.enableTwitchEmotes));
2017-01-22 12:46:35 +01:00
vbox->addStretch(1);
addTab(vbox, "Emotes", ":/images/Emoji_Color_1F60A_19.png");
// Ignored Users
vbox = new QVBoxLayout();
vbox->addStretch(1);
2017-04-12 17:46:44 +02:00
addTab(vbox, "Ignored Users", ":/images/StatusAnnotations_Blocked_16xLG_color.png");
2017-01-22 12:46:35 +01:00
// Ignored Messages
vbox = new QVBoxLayout();
vbox->addStretch(1);
addTab(vbox, "Ignored Messages", ":/images/Filter_16x.png");
// Links
vbox = new QVBoxLayout();
vbox->addStretch(1);
addTab(vbox, "Links", ":/images/VSO_Link_blue_16x.png");
2017-01-29 13:23:22 +01:00
// Logging
vbox = new QVBoxLayout();
vbox->addStretch(1);
addTab(vbox, "Logs", ":/images/VSO_Link_blue_16x.png");
2017-01-22 12:46:35 +01:00
// Highlighting
vbox = new QVBoxLayout();
vbox->addStretch(1);
addTab(vbox, "Highlighting", ":/images/format_Bold_16xLG.png");
// Whispers
vbox = new QVBoxLayout();
vbox->addStretch(1);
addTab(vbox, "Whispers", ":/images/Message_16xLG.png");
2017-01-02 03:02:32 +01:00
// Add stretch
2017-04-12 17:46:44 +02:00
_tabs.addStretch(1);
2017-01-02 03:02:32 +01:00
}
2017-04-12 17:46:44 +02:00
void SettingsDialog::addTab(QLayout *layout, QString title, QString imageRes)
2017-01-02 03:02:32 +01:00
{
auto widget = new QWidget();
widget->setLayout(layout);
auto tab = new SettingsDialogTab(this, title, imageRes);
2017-01-18 04:33:30 +01:00
tab->setWidget(widget);
2017-01-02 03:02:32 +01:00
2017-04-12 17:46:44 +02:00
_tabs.addWidget(tab, 0, Qt::AlignTop);
2017-01-02 03:02:32 +01:00
2017-04-12 17:46:44 +02:00
_pageStack.addWidget(widget);
2017-01-02 03:02:32 +01:00
2017-04-12 17:46:44 +02:00
if (_tabs.count() == 1) {
2017-01-02 03:02:32 +01:00
select(tab);
}
}
2017-04-12 17:46:44 +02:00
void SettingsDialog::select(SettingsDialogTab *tab)
2017-01-02 03:02:32 +01:00
{
2017-04-12 17:46:44 +02:00
_pageStack.setCurrentWidget(tab->getWidget());
2017-01-02 03:02:32 +01:00
2017-04-12 17:46:44 +02:00
if (_selectedTab != NULL) {
_selectedTab->setSelected(false);
_selectedTab->setStyleSheet("color: #FFF");
2017-01-02 03:02:32 +01:00
}
2017-01-01 18:43:52 +01:00
2017-01-02 03:02:32 +01:00
tab->setSelected(true);
2017-02-02 00:25:57 +01:00
tab->setStyleSheet("background: #555; color: #FFF");
2017-04-12 17:46:44 +02:00
_selectedTab = tab;
2017-01-01 18:43:52 +01:00
}
/// Widget creation helpers
2017-04-12 17:46:44 +02:00
QCheckBox *SettingsDialog::createCheckbox(const QString &title, Setting<bool> &setting)
{
auto checkbox = new QCheckBox(title);
// Set checkbox initial state
checkbox->setChecked(setting.get());
QObject::connect(checkbox, &QCheckBox::toggled, this,
[&setting, this](bool state) { setting.set(state); });
return checkbox;
2017-01-18 21:30:23 +01:00
}
2017-04-12 17:46:44 +02:00
void SettingsDialog::okButtonClicked()
2017-01-24 19:51:57 +01:00
{
this->close();
}
2017-04-12 17:46:44 +02:00
void SettingsDialog::cancelButtonClicked()
2017-01-24 19:51:57 +01:00
{
2017-04-12 17:46:44 +02:00
_snapshot.apply();
2017-01-24 19:51:57 +01:00
this->close();
}
2017-04-14 17:52:22 +02:00
} // namespace widgets
} // namespace chatterino