2017-11-02 01:41:13 +03:00
|
|
|
/*
|
|
|
|
* nheko Copyright (C) 2017 Konstantinos Sideris <siderisk@auth.gr>
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2017-11-25 23:47:06 +03:00
|
|
|
#include <QApplication>
|
2017-11-02 01:41:13 +03:00
|
|
|
#include <QComboBox>
|
|
|
|
#include <QDebug>
|
|
|
|
#include <QLabel>
|
|
|
|
#include <QPushButton>
|
2018-01-14 16:57:58 +03:00
|
|
|
#include <QScrollArea>
|
2017-11-02 01:41:13 +03:00
|
|
|
#include <QSettings>
|
|
|
|
|
|
|
|
#include "Config.h"
|
|
|
|
#include "FlatButton.h"
|
|
|
|
#include "UserSettingsPage.h"
|
|
|
|
#include <ToggleButton.h>
|
|
|
|
|
|
|
|
UserSettings::UserSettings() { load(); }
|
|
|
|
|
|
|
|
void
|
|
|
|
UserSettings::load()
|
|
|
|
{
|
|
|
|
QSettings settings;
|
2018-01-14 16:57:58 +03:00
|
|
|
isTrayEnabled_ = settings.value("user/window/tray", true).toBool();
|
|
|
|
isOrderingEnabled_ = settings.value("user/room_ordering", true).toBool();
|
|
|
|
isGroupViewEnabled_ = settings.value("user/group_view", true).toBool();
|
|
|
|
isTypingNotificationsEnabled_ = settings.value("user/typing_notifications", true).toBool();
|
|
|
|
theme_ = settings.value("user/theme", "light").toString();
|
2017-11-25 23:47:06 +03:00
|
|
|
|
|
|
|
applyTheme();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
UserSettings::setTheme(QString theme)
|
|
|
|
{
|
|
|
|
theme_ = theme;
|
|
|
|
save();
|
|
|
|
applyTheme();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
UserSettings::applyTheme()
|
|
|
|
{
|
|
|
|
QFile stylefile;
|
|
|
|
QPalette pal;
|
|
|
|
|
|
|
|
if (theme() == "light") {
|
|
|
|
stylefile.setFileName(":/styles/styles/nheko.qss");
|
|
|
|
pal.setColor(QPalette::Link, QColor("#333"));
|
|
|
|
} else if (theme() == "dark") {
|
|
|
|
stylefile.setFileName(":/styles/styles/nheko-dark.qss");
|
|
|
|
pal.setColor(QPalette::Link, QColor("#d7d9dc"));
|
|
|
|
} else {
|
|
|
|
stylefile.setFileName(":/styles/styles/system.qss");
|
|
|
|
}
|
|
|
|
|
|
|
|
stylefile.open(QFile::ReadOnly);
|
|
|
|
QString stylesheet = QString(stylefile.readAll());
|
|
|
|
|
|
|
|
QApplication::setPalette(pal);
|
|
|
|
qobject_cast<QApplication *>(QApplication::instance())->setStyleSheet(stylesheet);
|
2017-11-02 01:41:13 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
UserSettings::save()
|
|
|
|
{
|
|
|
|
QSettings settings;
|
|
|
|
settings.beginGroup("user");
|
2017-11-02 23:00:43 +03:00
|
|
|
|
|
|
|
settings.beginGroup("window");
|
2017-11-02 01:41:13 +03:00
|
|
|
settings.setValue("tray", isTrayEnabled_);
|
2017-11-02 23:00:43 +03:00
|
|
|
settings.endGroup();
|
|
|
|
|
2017-12-30 18:29:57 +03:00
|
|
|
settings.setValue("room_ordering", isOrderingEnabled_);
|
2018-01-14 16:57:58 +03:00
|
|
|
settings.setValue("typing_notifications", isTypingNotificationsEnabled_);
|
2018-01-09 22:57:41 +03:00
|
|
|
settings.setValue("group_view", isGroupViewEnabled_);
|
2017-11-02 01:41:13 +03:00
|
|
|
settings.setValue("theme", theme());
|
|
|
|
settings.endGroup();
|
|
|
|
}
|
|
|
|
|
|
|
|
HorizontalLine::HorizontalLine(QWidget *parent)
|
2017-11-06 00:04:55 +03:00
|
|
|
: QFrame{parent}
|
2017-11-02 01:41:13 +03:00
|
|
|
{
|
|
|
|
setFrameShape(QFrame::HLine);
|
|
|
|
setFrameShadow(QFrame::Sunken);
|
|
|
|
}
|
|
|
|
|
|
|
|
UserSettingsPage::UserSettingsPage(QSharedPointer<UserSettings> settings, QWidget *parent)
|
2017-11-06 00:04:55 +03:00
|
|
|
: QWidget{parent}
|
|
|
|
, settings_{settings}
|
2017-11-02 01:41:13 +03:00
|
|
|
{
|
|
|
|
topLayout_ = new QVBoxLayout(this);
|
|
|
|
|
|
|
|
QIcon icon;
|
|
|
|
icon.addFile(":/icons/icons/ui/angle-pointing-to-left.png");
|
|
|
|
|
|
|
|
auto backBtn_ = new FlatButton(this);
|
|
|
|
backBtn_->setMinimumSize(QSize(24, 24));
|
|
|
|
backBtn_->setIcon(icon);
|
|
|
|
backBtn_->setIconSize(QSize(24, 24));
|
|
|
|
|
|
|
|
auto heading_ = new QLabel(tr("User Settings"));
|
2017-11-16 17:33:52 +03:00
|
|
|
heading_->setStyleSheet("font-weight: bold; font-size: 22px;");
|
2017-11-02 01:41:13 +03:00
|
|
|
|
|
|
|
topBarLayout_ = new QHBoxLayout;
|
|
|
|
topBarLayout_->setSpacing(0);
|
|
|
|
topBarLayout_->setMargin(0);
|
|
|
|
topBarLayout_->addWidget(backBtn_, 1, Qt::AlignLeft | Qt::AlignVCenter);
|
|
|
|
topBarLayout_->addWidget(heading_, 0, Qt::AlignBottom);
|
|
|
|
topBarLayout_->addStretch(1);
|
|
|
|
|
|
|
|
auto trayOptionLayout_ = new QHBoxLayout;
|
|
|
|
trayOptionLayout_->setContentsMargins(0, OptionMargin, 0, OptionMargin);
|
|
|
|
auto trayLabel = new QLabel(tr("Minimize to tray"), this);
|
|
|
|
trayToggle_ = new Toggle(this);
|
|
|
|
trayToggle_->setActiveColor(QColor("#38A3D8"));
|
|
|
|
trayToggle_->setInactiveColor(QColor("gray"));
|
2017-11-16 17:33:52 +03:00
|
|
|
trayLabel->setStyleSheet("font-size: 15px;");
|
2017-11-02 01:41:13 +03:00
|
|
|
|
|
|
|
trayOptionLayout_->addWidget(trayLabel);
|
|
|
|
trayOptionLayout_->addWidget(trayToggle_, 0, Qt::AlignBottom | Qt::AlignRight);
|
|
|
|
|
2017-12-30 18:29:57 +03:00
|
|
|
auto orderRoomLayout = new QHBoxLayout;
|
|
|
|
orderRoomLayout->setContentsMargins(0, OptionMargin, 0, OptionMargin);
|
|
|
|
auto orderLabel = new QLabel(tr("Re-order rooms based on activity"), this);
|
|
|
|
roomOrderToggle_ = new Toggle(this);
|
|
|
|
roomOrderToggle_->setActiveColor(QColor("#38A3D8"));
|
|
|
|
roomOrderToggle_->setInactiveColor(QColor("gray"));
|
|
|
|
orderLabel->setStyleSheet("font-size: 15px;");
|
|
|
|
|
|
|
|
orderRoomLayout->addWidget(orderLabel);
|
|
|
|
orderRoomLayout->addWidget(roomOrderToggle_, 0, Qt::AlignBottom | Qt::AlignRight);
|
|
|
|
|
2018-01-09 22:57:41 +03:00
|
|
|
auto groupViewLayout = new QHBoxLayout;
|
|
|
|
groupViewLayout->setContentsMargins(0, OptionMargin, 0, OptionMargin);
|
|
|
|
auto groupViewLabel = new QLabel(tr("Group's sidebar"), this);
|
|
|
|
groupViewToggle_ = new Toggle(this);
|
|
|
|
groupViewToggle_->setActiveColor(QColor("#38A3D8"));
|
|
|
|
groupViewToggle_->setInactiveColor(QColor("gray"));
|
|
|
|
groupViewLabel->setStyleSheet("font-size: 15px;");
|
|
|
|
|
|
|
|
groupViewLayout->addWidget(groupViewLabel);
|
|
|
|
groupViewLayout->addWidget(groupViewToggle_, 0, Qt::AlignBottom | Qt::AlignRight);
|
|
|
|
|
2018-01-14 16:57:58 +03:00
|
|
|
auto typingLayout = new QHBoxLayout;
|
|
|
|
typingLayout->setContentsMargins(0, OptionMargin, 0, OptionMargin);
|
|
|
|
auto typingLabel = new QLabel(tr("Typing notifications"), this);
|
|
|
|
typingNotifications_ = new Toggle(this);
|
|
|
|
typingNotifications_->setActiveColor(QColor("#38A3D8"));
|
|
|
|
typingNotifications_->setInactiveColor(QColor("gray"));
|
|
|
|
typingLabel->setStyleSheet("font-size: 15px;");
|
|
|
|
|
|
|
|
typingLayout->addWidget(typingLabel);
|
|
|
|
typingLayout->addWidget(typingNotifications_, 0, Qt::AlignBottom | Qt::AlignRight);
|
|
|
|
|
2017-11-02 01:41:13 +03:00
|
|
|
auto themeOptionLayout_ = new QHBoxLayout;
|
|
|
|
themeOptionLayout_->setContentsMargins(0, OptionMargin, 0, OptionMargin);
|
2018-01-14 16:57:58 +03:00
|
|
|
auto themeLabel_ = new QLabel(tr("Theme"), this);
|
2017-11-02 01:41:13 +03:00
|
|
|
themeCombo_ = new QComboBox(this);
|
2017-11-25 19:19:58 +03:00
|
|
|
themeCombo_->addItem("Light");
|
|
|
|
themeCombo_->addItem("Dark");
|
2017-11-02 01:41:13 +03:00
|
|
|
themeCombo_->addItem("System");
|
2017-11-16 17:33:52 +03:00
|
|
|
themeLabel_->setStyleSheet("font-size: 15px;");
|
2017-11-02 01:41:13 +03:00
|
|
|
|
|
|
|
themeOptionLayout_->addWidget(themeLabel_);
|
|
|
|
themeOptionLayout_->addWidget(themeCombo_, 0, Qt::AlignBottom | Qt::AlignRight);
|
|
|
|
|
|
|
|
auto general_ = new QLabel(tr("GENERAL"), this);
|
2017-11-25 19:19:58 +03:00
|
|
|
general_->setStyleSheet("font-size: 17px");
|
2017-11-02 01:41:13 +03:00
|
|
|
|
2017-11-09 23:04:40 +03:00
|
|
|
mainLayout_ = new QVBoxLayout;
|
2017-11-02 01:41:13 +03:00
|
|
|
mainLayout_->setSpacing(7);
|
|
|
|
mainLayout_->setContentsMargins(
|
2017-11-09 23:04:40 +03:00
|
|
|
sideMargin_, LayoutTopMargin, sideMargin_, LayoutBottomMargin);
|
2017-11-02 01:41:13 +03:00
|
|
|
mainLayout_->addWidget(general_, 1, Qt::AlignLeft | Qt::AlignVCenter);
|
|
|
|
mainLayout_->addWidget(new HorizontalLine(this));
|
|
|
|
mainLayout_->addLayout(trayOptionLayout_);
|
|
|
|
mainLayout_->addWidget(new HorizontalLine(this));
|
2017-12-30 18:29:57 +03:00
|
|
|
mainLayout_->addLayout(orderRoomLayout);
|
|
|
|
mainLayout_->addWidget(new HorizontalLine(this));
|
2018-01-09 22:57:41 +03:00
|
|
|
mainLayout_->addLayout(groupViewLayout);
|
|
|
|
mainLayout_->addWidget(new HorizontalLine(this));
|
2018-01-14 16:57:58 +03:00
|
|
|
mainLayout_->addLayout(typingLayout);
|
|
|
|
mainLayout_->addWidget(new HorizontalLine(this));
|
2017-11-02 01:41:13 +03:00
|
|
|
mainLayout_->addLayout(themeOptionLayout_);
|
|
|
|
mainLayout_->addWidget(new HorizontalLine(this));
|
|
|
|
|
|
|
|
topLayout_->addLayout(topBarLayout_);
|
|
|
|
topLayout_->addLayout(mainLayout_);
|
|
|
|
topLayout_->addStretch(1);
|
|
|
|
|
|
|
|
connect(themeCombo_,
|
|
|
|
static_cast<void (QComboBox::*)(const QString &)>(&QComboBox::activated),
|
2018-02-20 18:09:11 +03:00
|
|
|
[this](const QString &text) { settings_->setTheme(text.toLower()); });
|
2017-11-02 01:41:13 +03:00
|
|
|
|
2018-02-20 18:09:11 +03:00
|
|
|
connect(trayToggle_, &Toggle::toggled, this, [this](bool isDisabled) {
|
2017-11-02 23:00:43 +03:00
|
|
|
settings_->setTray(!isDisabled);
|
|
|
|
emit trayOptionChanged(!isDisabled);
|
2017-11-02 01:41:13 +03:00
|
|
|
});
|
|
|
|
|
2018-02-20 18:09:11 +03:00
|
|
|
connect(roomOrderToggle_, &Toggle::toggled, this, [this](bool isDisabled) {
|
2017-12-30 18:29:57 +03:00
|
|
|
settings_->setRoomOrdering(!isDisabled);
|
|
|
|
});
|
|
|
|
|
2018-02-20 18:09:11 +03:00
|
|
|
connect(groupViewToggle_, &Toggle::toggled, this, [this](bool isDisabled) {
|
2018-01-09 22:57:41 +03:00
|
|
|
settings_->setGroupView(!isDisabled);
|
|
|
|
});
|
|
|
|
|
2018-02-20 18:09:11 +03:00
|
|
|
connect(typingNotifications_, &Toggle::toggled, this, [this](bool isDisabled) {
|
2018-01-14 16:57:58 +03:00
|
|
|
settings_->setTypingNotifications(!isDisabled);
|
|
|
|
});
|
|
|
|
|
2018-02-20 18:09:11 +03:00
|
|
|
connect(backBtn_, &QPushButton::clicked, this, [this]() {
|
2017-11-02 01:41:13 +03:00
|
|
|
settings_->save();
|
|
|
|
emit moveBack();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
UserSettingsPage::showEvent(QShowEvent *)
|
|
|
|
{
|
2017-11-25 19:19:58 +03:00
|
|
|
restoreThemeCombo();
|
2018-01-09 22:57:41 +03:00
|
|
|
|
|
|
|
// FIXME: Toggle treats true as "off"
|
|
|
|
trayToggle_->setState(!settings_->isTrayEnabled());
|
|
|
|
roomOrderToggle_->setState(!settings_->isOrderingEnabled());
|
|
|
|
groupViewToggle_->setState(!settings_->isGroupViewEnabled());
|
2018-01-14 16:57:58 +03:00
|
|
|
typingNotifications_->setState(!settings_->isTypingNotificationsEnabled());
|
2017-11-02 01:41:13 +03:00
|
|
|
}
|
2017-11-09 23:04:40 +03:00
|
|
|
|
|
|
|
void
|
|
|
|
UserSettingsPage::resizeEvent(QResizeEvent *event)
|
|
|
|
{
|
|
|
|
sideMargin_ = width() * 0.2;
|
|
|
|
mainLayout_->setContentsMargins(
|
|
|
|
sideMargin_, LayoutTopMargin, sideMargin_, LayoutBottomMargin);
|
|
|
|
|
|
|
|
QWidget::resizeEvent(event);
|
|
|
|
}
|
2017-11-22 20:52:38 +03:00
|
|
|
|
|
|
|
void
|
|
|
|
UserSettingsPage::paintEvent(QPaintEvent *)
|
|
|
|
{
|
|
|
|
QStyleOption opt;
|
|
|
|
opt.init(this);
|
|
|
|
QPainter p(this);
|
|
|
|
style()->drawPrimitive(QStyle::PE_Widget, &opt, &p, this);
|
|
|
|
}
|
2017-11-25 19:19:58 +03:00
|
|
|
|
|
|
|
void
|
|
|
|
UserSettingsPage::restoreThemeCombo() const
|
|
|
|
{
|
|
|
|
if (settings_->theme() == "light")
|
|
|
|
themeCombo_->setCurrentIndex(0);
|
|
|
|
else if (settings_->theme() == "dark")
|
|
|
|
themeCombo_->setCurrentIndex(1);
|
|
|
|
else
|
|
|
|
themeCombo_->setCurrentIndex(2);
|
|
|
|
}
|