mirror-chatterino2/src/widgets/dialogs/SettingsDialog.cpp

391 lines
12 KiB
C++
Raw Normal View History

2018-06-26 15:11:45 +02:00
#include "widgets/dialogs/SettingsDialog.hpp"
2018-06-26 14:09:39 +02:00
#include "Application.hpp"
#include "common/Args.hpp"
#include "controllers/commands/CommandController.hpp"
#include "controllers/hotkeys/HotkeyController.hpp"
2019-09-02 18:59:37 +02:00
#include "singletons/Resources.hpp"
2018-06-26 14:09:39 +02:00
#include "util/LayoutCreator.hpp"
2019-09-02 18:59:37 +02:00
#include "widgets/helper/Button.hpp"
2018-06-26 14:09:39 +02:00
#include "widgets/settingspages/AboutPage.hpp"
#include "widgets/settingspages/AccountsPage.hpp"
#include "widgets/settingspages/CommandPage.hpp"
2018-06-26 17:42:35 +02:00
#include "widgets/settingspages/ExternalToolsPage.hpp"
#include "widgets/settingspages/FiltersPage.hpp"
2018-10-31 19:45:51 +01:00
#include "widgets/settingspages/GeneralPage.hpp"
2018-06-26 14:09:39 +02:00
#include "widgets/settingspages/HighlightingPage.hpp"
2018-07-05 16:45:34 +02:00
#include "widgets/settingspages/IgnoresPage.hpp"
2018-06-26 17:42:35 +02:00
#include "widgets/settingspages/KeyboardSettingsPage.hpp"
2018-06-26 14:09:39 +02:00
#include "widgets/settingspages/ModerationPage.hpp"
#include "widgets/settingspages/NicknamesPage.hpp"
#include "widgets/settingspages/NotificationPage.hpp"
2017-01-02 03:02:32 +01:00
2018-01-12 23:33:04 +01:00
#include <QDialogButtonBox>
#include <QLineEdit>
2017-01-01 18:43:52 +01:00
2017-04-14 17:52:22 +02:00
namespace chatterino {
2017-01-18 21:30:23 +01:00
SettingsDialog::SettingsDialog(QWidget *parent)
: BaseWindow(
{BaseWindow::Flags::DisableCustomScaling, BaseWindow::Flags::Dialog},
parent)
2017-01-01 18:43:52 +01:00
{
this->setObjectName("SettingsDialog");
2019-09-03 12:46:22 +02:00
this->setWindowTitle("Chatterino Settings");
// Disable the ? button in the titlebar until we decide to use it
this->setWindowFlags(this->windowFlags() &
~Qt::WindowContextHelpButtonHint);
2020-11-01 14:11:45 +01:00
this->resize(915, 600);
this->themeChangedEvent();
this->scaleChangedEvent(this->scale());
2018-01-12 23:09:05 +01:00
this->initUi();
2017-07-02 12:36:50 +02:00
this->addTabs();
2018-10-31 20:57:29 +01:00
this->overrideBackgroundColor_ = QColor("#111111");
this->scaleChangedEvent(this->scale()); // execute twice to width of item
this->addShortcuts();
this->signalHolder_.managedConnect(getApp()->hotkeys->onItemsUpdated,
[this]() {
this->clearShortcuts();
this->addShortcuts();
});
}
void SettingsDialog::addShortcuts()
{
this->setSearchPlaceholderText();
HotkeyController::HotkeyMap actions{
{"search",
[this](std::vector<QString>) -> QString {
this->ui_.search->setFocus();
this->ui_.search->selectAll();
return "";
}},
{"delete", nullptr},
{"accept", nullptr},
{"reject", nullptr},
{"scrollPage", nullptr},
{"openTab", nullptr},
};
this->shortcuts_ = getApp()->hotkeys->shortcutsForCategory(
HotkeyCategory::PopupWindow, actions, this);
2017-01-02 03:02:32 +01:00
}
void SettingsDialog::setSearchPlaceholderText()
{
QString searchHotkey;
auto searchSeq = getApp()->hotkeys->getDisplaySequence(
HotkeyCategory::PopupWindow, "search");
if (!searchSeq.isEmpty())
{
searchHotkey =
"(" + searchSeq.toString(QKeySequence::SequenceFormat::NativeText) +
")";
}
this->ui_.search->setPlaceholderText("Find in settings... " + searchHotkey);
}
2017-01-02 03:02:32 +01:00
2018-01-12 23:09:05 +01:00
void SettingsDialog::initUi()
{
2019-09-08 21:45:46 +02:00
auto outerBox = LayoutCreator<QWidget>(this->getLayoutContainer())
2019-09-03 11:15:38 +02:00
.setLayoutType<QVBoxLayout>()
.withoutSpacing();
// TOP
auto title = outerBox.emplace<PageHeader>();
auto edit = LayoutCreator<PageHeader>(title.getElement())
.setLayoutType<QHBoxLayout>()
.withoutMargin()
.emplace<QLineEdit>()
.assign(&this->ui_.search);
this->setSearchPlaceholderText();
edit->setClearButtonEnabled(true);
edit->findChild<QAbstractButton *>()->setIcon(
QPixmap(":/buttons/clearSearch.png"));
2019-09-03 11:15:38 +02:00
QObject::connect(edit.getElement(), &QLineEdit::textChanged, this,
&SettingsDialog::filterElements);
// CENTER
auto centerBox =
outerBox.emplace<QHBoxLayout>().withoutMargin().withoutSpacing();
// left side (tabs)
centerBox.emplace<QWidget>()
2018-06-11 15:04:54 +02:00
.assign(&this->ui_.tabContainerContainer)
2019-09-03 11:15:38 +02:00
.setLayoutType<QVBoxLayout>()
2018-01-12 23:09:05 +01:00
.withoutMargin()
2018-06-11 15:04:54 +02:00
.assign(&this->ui_.tabContainer);
2017-01-02 03:02:32 +01:00
2019-09-03 11:15:38 +02:00
// right side (pages)
centerBox.emplace<QStackedLayout>()
.assign(&this->ui_.pageStack)
.withoutMargin();
2017-01-22 12:46:35 +01:00
this->ui_.pageStack->setContentsMargins(0, 0, 0, 0);
2018-10-31 19:45:51 +01:00
2019-09-03 11:15:38 +02:00
outerBox->addSpacing(12);
// BOTTOM
auto buttons = outerBox.emplace<QDialogButtonBox>(Qt::Horizontal);
{
this->ui_.okButton =
buttons->addButton("Ok", QDialogButtonBox::YesRole);
this->ui_.cancelButton =
buttons->addButton("Cancel", QDialogButtonBox::NoRole);
}
2018-01-12 23:09:05 +01:00
// ---- misc
2018-06-11 15:04:54 +02:00
this->ui_.tabContainerContainer->setObjectName("tabWidget");
this->ui_.pageStack->setObjectName("pages");
2017-01-22 12:46:35 +01:00
2018-08-06 21:17:03 +02:00
QObject::connect(this->ui_.okButton, &QPushButton::clicked, this,
&SettingsDialog::onOkClicked);
2018-06-11 15:04:54 +02:00
QObject::connect(this->ui_.cancelButton, &QPushButton::clicked, this,
2018-07-06 19:23:47 +02:00
&SettingsDialog::onCancelClicked);
}
2017-01-22 12:46:35 +01:00
2019-09-03 11:15:38 +02:00
void SettingsDialog::filterElements(const QString &text)
{
// filter elements and hide pages
2020-02-21 01:17:22 +01:00
for (auto &&tab : this->tabs_)
2019-09-03 11:15:38 +02:00
{
// filterElements returns true if anything on the page matches the search query
2020-02-21 02:16:17 +01:00
tab->setVisible(tab->page()->filterElements(text) ||
tab->name().contains(text, Qt::CaseInsensitive));
2019-09-03 11:15:38 +02:00
}
// find next visible page
if (this->lastSelectedByUser_ && this->lastSelectedByUser_->isVisible())
{
this->selectTab(this->lastSelectedByUser_, false);
}
else if (!this->selectedTab_->isVisible())
{
for (auto &&tab : this->tabs_)
{
if (tab->isVisible())
{
this->selectTab(tab, false);
break;
}
}
}
// remove duplicate spaces
bool shouldShowSpace = false;
for (int i = 0; i < this->ui_.tabContainer->count(); i++)
{
auto item = this->ui_.tabContainer->itemAt(i);
if (auto x = dynamic_cast<QSpacerItem *>(item); x)
{
x->changeSize(10, shouldShowSpace ? int(16 * this->scale()) : 0);
shouldShowSpace = false;
}
else if (item->widget())
{
shouldShowSpace |= item->widget()->isVisible();
}
}
}
2018-01-12 23:09:05 +01:00
void SettingsDialog::addTabs()
{
2018-06-11 15:04:54 +02:00
this->ui_.tabContainer->setSpacing(0);
2019-09-03 11:15:38 +02:00
this->ui_.tabContainer->setContentsMargins(0, 20, 0, 20);
// Constructors are wrapped in std::function to remove some strain from first time loading.
2020-02-21 01:59:58 +01:00
// clang-format off
this->addTab([]{return new GeneralPage;}, "General", ":/settings/about.svg");
2018-06-11 15:04:54 +02:00
this->ui_.tabContainer->addSpacing(16);
2020-02-28 19:05:50 +01:00
this->addTab([]{return new AccountsPage;}, "Accounts", ":/settings/accounts.svg", SettingsTabId::Accounts);
this->addTab([]{return new NicknamesPage;}, "Nicknames", ":/settings/accounts.svg");
2018-06-11 15:04:54 +02:00
this->ui_.tabContainer->addSpacing(16);
2020-02-21 01:59:58 +01:00
this->addTab([]{return new CommandPage;}, "Commands", ":/settings/commands.svg");
this->addTab([]{return new HighlightingPage;}, "Highlights", ":/settings/notifications.svg");
this->addTab([]{return new IgnoresPage;}, "Ignores", ":/settings/ignore.svg");
this->addTab([]{return new FiltersPage;}, "Filters", ":/settings/filters.svg");
2018-06-11 15:04:54 +02:00
this->ui_.tabContainer->addSpacing(16);
this->addTab([]{return new KeyboardSettingsPage;}, "Hotkeys", ":/settings/keybinds.svg");
2020-02-28 19:05:50 +01:00
this->addTab([]{return new ModerationPage;}, "Moderation", ":/settings/moderation.svg", SettingsTabId::Moderation);
this->addTab([]{return new NotificationPage;}, "Live Notifications", ":/settings/notification2.svg");
2020-02-21 01:59:58 +01:00
this->addTab([]{return new ExternalToolsPage;}, "External tools", ":/settings/externaltools.svg");
2018-06-11 15:04:54 +02:00
this->ui_.tabContainer->addStretch(1);
2020-02-28 19:05:50 +01:00
this->addTab([]{return new AboutPage;}, "About", ":/settings/about.svg", SettingsTabId(), Qt::AlignBottom);
2020-02-21 01:59:58 +01:00
// clang-format on
2017-01-02 03:02:32 +01:00
}
2020-02-21 01:59:58 +01:00
void SettingsDialog::addTab(std::function<SettingsPage *()> page,
const QString &name, const QString &iconPath,
2020-02-28 19:05:50 +01:00
SettingsTabId id, Qt::Alignment alignment)
2017-01-02 03:02:32 +01:00
{
2020-02-28 19:05:50 +01:00
auto tab = new SettingsDialogTab(this, std::move(page), name, iconPath, id);
2017-01-02 03:02:32 +01:00
2018-06-11 15:04:54 +02:00
this->ui_.tabContainer->addWidget(tab, 0, alignment);
2018-07-06 19:23:47 +02:00
this->tabs_.push_back(tab);
2017-01-02 03:02:32 +01:00
2018-10-21 13:43:02 +02:00
if (this->tabs_.size() == 1)
{
2018-07-06 19:23:47 +02:00
this->selectTab(tab);
2017-01-02 03:02:32 +01:00
}
}
void SettingsDialog::selectTab(SettingsDialogTab *tab, bool byUser)
2017-01-02 03:02:32 +01:00
{
2020-02-21 01:59:58 +01:00
// add page if it's not been added yet
[&] {
for (int i = 0; i < this->ui_.pageStack->count(); i++)
if (this->ui_.pageStack->itemAt(i)->widget() == tab->page())
return;
this->ui_.pageStack->addWidget(tab->page());
}();
2020-02-21 00:46:19 +01:00
this->ui_.pageStack->setCurrentWidget(tab->page());
2017-01-02 03:02:32 +01:00
2018-10-21 13:43:02 +02:00
if (this->selectedTab_ != nullptr)
{
2018-07-06 19:23:47 +02:00
this->selectedTab_->setSelected(false);
this->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);
2020-10-11 14:36:28 +02:00
tab->setStyleSheet(
"background: #222; color: #4FC3F7;" // Should this be same as accent color?
"/*border: 1px solid #555; border-right: none;*/");
2018-07-06 19:23:47 +02:00
this->selectedTab_ = tab;
if (byUser)
{
this->lastSelectedByUser_ = tab;
}
2017-01-01 18:43:52 +01:00
}
2020-02-21 01:17:22 +01:00
void SettingsDialog::selectTab(SettingsTabId id)
{
2020-02-28 19:05:50 +01:00
auto t = this->tab(id);
assert(t);
if (!t)
return;
this->selectTab(t);
2020-02-21 01:17:22 +01:00
}
SettingsDialogTab *SettingsDialog::tab(SettingsTabId id)
{
for (auto &&tab : this->tabs_)
if (tab->id() == id)
return tab;
assert(false);
return nullptr;
}
void SettingsDialog::showDialog(QWidget *parent,
SettingsDialogPreference preferredTab)
{
static SettingsDialog *instance = new SettingsDialog(parent);
2020-02-21 01:59:58 +01:00
static bool hasShownBefore = false;
if (hasShownBefore)
instance->refresh();
hasShownBefore = true;
2018-10-21 13:43:02 +02:00
switch (preferredTab)
{
case SettingsDialogPreference::Accounts:
2020-02-21 01:17:22 +01:00
instance->selectTab(SettingsTabId::Accounts);
break;
case SettingsDialogPreference::ModerationActions:
2020-02-21 01:17:22 +01:00
if (auto tab = instance->tab(SettingsTabId::Moderation))
{
instance->selectTab(tab);
if (auto page = dynamic_cast<ModerationPage *>(tab->page()))
{
page->selectModerationActions();
}
}
break;
default:;
}
instance->show();
instance->activateWindow();
instance->raise();
instance->setFocus();
}
void SettingsDialog::refresh()
{
// Resets the cancel button.
getSettings()->saveSnapshot();
// Updates tabs.
2018-10-21 13:43:02 +02:00
for (auto *tab : this->tabs_)
{
2020-02-21 00:46:19 +01:00
tab->page()->onShow();
}
}
2018-01-25 20:49:49 +01:00
void SettingsDialog::scaleChangedEvent(float newDpi)
{
QFile file(":/qss/settings.qss");
file.open(QFile::ReadOnly);
QString styleSheet = QLatin1String(file.readAll());
styleSheet.replace("<font-size>", QString::number(int(14 * newDpi)));
styleSheet.replace("<checkbox-size>", QString::number(int(14 * newDpi)));
2018-10-21 13:43:02 +02:00
for (SettingsDialogTab *tab : this->tabs_)
{
tab->setFixedHeight(int(30 * newDpi));
}
this->setStyleSheet(styleSheet);
if (this->ui_.tabContainerContainer)
this->ui_.tabContainerContainer->setFixedWidth(int(150 * newDpi));
}
2018-07-06 17:11:37 +02:00
void SettingsDialog::themeChangedEvent()
2018-04-18 09:33:05 +02:00
{
2018-07-06 17:11:37 +02:00
BaseWindow::themeChangedEvent();
2018-04-18 09:33:05 +02:00
QPalette palette;
palette.setColor(QPalette::Window, QColor("#111"));
2018-04-18 09:33:05 +02:00
this->setPalette(palette);
}
void SettingsDialog::showEvent(QShowEvent *)
{
this->ui_.search->setText("");
}
2018-01-12 23:09:05 +01:00
///// Widget creation helpers
2018-07-06 19:23:47 +02:00
void SettingsDialog::onOkClicked()
2017-01-24 19:51:57 +01:00
{
if (!getArgs().dontSaveSettings)
{
getApp()->commands->save();
pajlada::Settings::SettingManager::gSave();
}
2017-01-24 19:51:57 +01:00
this->close();
}
2018-07-06 19:23:47 +02:00
void SettingsDialog::onCancelClicked()
2017-01-24 19:51:57 +01:00
{
2018-10-21 13:43:02 +02:00
for (auto &tab : this->tabs_)
{
2020-02-21 00:46:19 +01:00
tab->page()->cancel();
2018-01-12 23:09:05 +01:00
}
getSettings()->restoreSnapshot();
2017-01-24 19:51:57 +01:00
this->close();
}
2017-04-14 17:52:22 +02:00
} // namespace chatterino