2017-01-18 21:30:23 +01:00
|
|
|
#include "widgets/settingsdialog.h"
|
|
|
|
#include "widgets/settingsdialogtab.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>
|
|
|
|
#include <QPalette>
|
|
|
|
#include <QResource>
|
2017-01-01 18:43:52 +01:00
|
|
|
|
2017-01-18 21:30:23 +01:00
|
|
|
namespace chatterino {
|
|
|
|
namespace widgets {
|
|
|
|
|
2017-01-01 18:43:52 +01:00
|
|
|
SettingsDialog::SettingsDialog()
|
|
|
|
{
|
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);
|
|
|
|
|
|
|
|
pageStack.setObjectName("pages");
|
|
|
|
|
|
|
|
setLayout(&vbox);
|
|
|
|
|
|
|
|
vbox.addLayout(&hbox);
|
|
|
|
|
|
|
|
vbox.addWidget(&buttonBox);
|
|
|
|
|
|
|
|
auto tabWidget = new QWidget();
|
|
|
|
tabWidget->setObjectName("tabWidget");
|
|
|
|
|
|
|
|
tabWidget->setLayout(&tabs);
|
|
|
|
tabWidget->setFixedWidth(200);
|
|
|
|
|
|
|
|
hbox.addWidget(tabWidget);
|
|
|
|
hbox.addLayout(&pageStack);
|
|
|
|
|
|
|
|
buttonBox.addButton(&okButton, QDialogButtonBox::ButtonRole::AcceptRole);
|
2017-01-11 18:52:09 +01:00
|
|
|
buttonBox.addButton(&cancelButton,
|
|
|
|
QDialogButtonBox::ButtonRole::RejectRole);
|
2017-01-02 03:02:32 +01:00
|
|
|
okButton.setText("OK");
|
|
|
|
cancelButton.setText("Cancel");
|
|
|
|
|
|
|
|
resize(600, 500);
|
|
|
|
|
|
|
|
addTabs();
|
|
|
|
}
|
|
|
|
|
2017-01-11 18:52:09 +01:00
|
|
|
void
|
|
|
|
SettingsDialog::addTabs()
|
2017-01-02 03:02:32 +01:00
|
|
|
{
|
2017-01-22 12:46:35 +01:00
|
|
|
settings::Settings &settings = settings::Settings::getInstance();
|
|
|
|
|
2017-01-11 18:52:09 +01:00
|
|
|
QVBoxLayout *vbox;
|
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");
|
|
|
|
|
|
|
|
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-01-03 21:19:33 +01:00
|
|
|
group->setLayout(form);
|
|
|
|
|
|
|
|
vbox->addWidget(group);
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
auto group = new QGroupBox("Messages");
|
|
|
|
|
|
|
|
auto v = new QVBoxLayout();
|
2017-01-22 12:46:35 +01:00
|
|
|
v->addWidget(
|
|
|
|
createCheckbox("Show timestamp", settings.getShowTimestamps()));
|
|
|
|
v->addWidget(createCheckbox("Show seconds in timestamp",
|
|
|
|
settings.getShowTimestampSeconds()));
|
2017-01-11 18:52:09 +01:00
|
|
|
v->addWidget(createCheckbox(
|
2017-01-22 12:46:35 +01:00
|
|
|
"Allow sending duplicate messages (add a space at the end)",
|
|
|
|
settings.getAllowDouplicateMessages()));
|
|
|
|
v->addWidget(createCheckbox("Seperate messages",
|
|
|
|
settings.getSeperateMessages()));
|
|
|
|
v->addWidget(createCheckbox("Show message length",
|
|
|
|
settings.getShowMessageLength()));
|
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-01-22 12:46:35 +01:00
|
|
|
vbox->addWidget(createCheckbox("Hide input box if empty",
|
|
|
|
settings.getHideEmptyInput()));
|
|
|
|
vbox->addWidget(
|
|
|
|
createCheckbox("Mention users with a @ (except in commands)",
|
|
|
|
settings.getMentionUsersWithAt()));
|
2017-01-11 18:52:09 +01:00
|
|
|
vbox->addWidget(
|
2017-01-22 12:46:35 +01:00
|
|
|
createCheckbox("Window always on top", settings.getWindowTopMost()));
|
|
|
|
vbox->addWidget(createCheckbox("Show last read message indicator",
|
|
|
|
settings.getShowLastMessageIndicator()));
|
2017-01-03 21:19:33 +01:00
|
|
|
|
|
|
|
{
|
|
|
|
auto v = new QVBoxLayout();
|
|
|
|
v->addWidget(new QLabel("Mouse scroll speed"));
|
|
|
|
|
|
|
|
auto scroll = new QSlider(Qt::Horizontal);
|
|
|
|
|
|
|
|
v->addWidget(scroll);
|
|
|
|
v->addStretch(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
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();
|
|
|
|
|
|
|
|
vbox->addWidget(createCheckbox("Enable Twitch Emotes",
|
|
|
|
settings.getEnableTwitchEmotes()));
|
|
|
|
vbox->addWidget(createCheckbox("Enable BetterTTV Emotes",
|
|
|
|
settings.getEnableBttvEmotes()));
|
|
|
|
vbox->addWidget(createCheckbox("Enable FrankerFaceZ Emotes",
|
|
|
|
settings.getEnableFfzEmotes()));
|
|
|
|
vbox->addWidget(
|
|
|
|
createCheckbox("Enable Gif Emotes", settings.getEnableGifs()));
|
|
|
|
vbox->addWidget(
|
|
|
|
createCheckbox("Enable Emojis", settings.getEnableEmojis()));
|
|
|
|
|
|
|
|
vbox->addWidget(createCheckbox("Enable Twitch Emotes",
|
|
|
|
settings.getEnableTwitchEmotes()));
|
|
|
|
|
|
|
|
vbox->addStretch(1);
|
|
|
|
addTab(vbox, "Emotes", ":/images/Emoji_Color_1F60A_19.png");
|
|
|
|
|
|
|
|
// Ignored Users
|
|
|
|
vbox = new QVBoxLayout();
|
|
|
|
vbox->addStretch(1);
|
|
|
|
addTab(vbox, "Ignored Users",
|
|
|
|
":/images/StatusAnnotations_Blocked_16xLG_color.png");
|
|
|
|
|
|
|
|
// 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");
|
|
|
|
|
|
|
|
// 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
|
|
|
|
tabs.addStretch(1);
|
|
|
|
}
|
|
|
|
|
2017-01-11 18:52:09 +01:00
|
|
|
QCheckBox *
|
2017-01-22 12:46:35 +01:00
|
|
|
SettingsDialog::createCheckbox(const QString &title,
|
|
|
|
settings::BoolSetting &setting)
|
2017-01-03 21:19:33 +01:00
|
|
|
{
|
2017-01-22 12:46:35 +01:00
|
|
|
auto checkbox = new QCheckBox(title);
|
|
|
|
|
|
|
|
QObject::connect(checkbox, &QCheckBox::toggled, this,
|
|
|
|
[&setting, this](bool state) { setting.set(state); });
|
|
|
|
|
|
|
|
return checkbox;
|
2017-01-03 21:19:33 +01:00
|
|
|
}
|
|
|
|
|
2017-01-11 18:52:09 +01: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
|
|
|
|
|
|
|
tabs.addWidget(tab, 0, Qt::AlignTop);
|
|
|
|
|
|
|
|
pageStack.addWidget(widget);
|
|
|
|
|
2017-01-11 18:52:09 +01:00
|
|
|
if (tabs.count() == 1) {
|
2017-01-02 03:02:32 +01:00
|
|
|
select(tab);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-01-11 18:52:09 +01:00
|
|
|
void
|
|
|
|
SettingsDialog::select(SettingsDialogTab *tab)
|
2017-01-02 03:02:32 +01:00
|
|
|
{
|
2017-01-18 04:33:30 +01:00
|
|
|
pageStack.setCurrentWidget(tab->getWidget());
|
2017-01-02 03:02:32 +01:00
|
|
|
|
2017-01-11 18:52:09 +01:00
|
|
|
if (selectedTab != NULL) {
|
2017-01-02 03:02:32 +01:00
|
|
|
selectedTab->setSelected(false);
|
|
|
|
selectedTab->setStyleSheet("");
|
|
|
|
}
|
2017-01-01 18:43:52 +01:00
|
|
|
|
2017-01-02 03:02:32 +01:00
|
|
|
tab->setSelected(true);
|
|
|
|
tab->setStyleSheet("background: #F00;"
|
2017-01-11 18:52:09 +01:00
|
|
|
"background: qlineargradient( x1:0 y1:0, x2:1 y2:0, "
|
|
|
|
"stop:0 #333, stop:1 #555);"
|
|
|
|
"border-right: none;");
|
2017-01-02 03:02:32 +01:00
|
|
|
selectedTab = tab;
|
2017-01-01 18:43:52 +01:00
|
|
|
}
|
2017-01-18 21:30:23 +01:00
|
|
|
}
|
|
|
|
}
|