#include "widgets/dialogs/SettingsDialog.hpp" #include "Application.hpp" #include "singletons/Resources.hpp" #include "util/LayoutCreator.hpp" #include "widgets/helper/Button.hpp" #include "widgets/helper/SettingsDialogTab.hpp" #include "widgets/settingspages/AboutPage.hpp" #include "widgets/settingspages/AccountsPage.hpp" #include "widgets/settingspages/CommandPage.hpp" #include "widgets/settingspages/ExternalToolsPage.hpp" #include "widgets/settingspages/GeneralPage.hpp" #include "widgets/settingspages/HighlightingPage.hpp" #include "widgets/settingspages/IgnoresPage.hpp" #include "widgets/settingspages/KeyboardSettingsPage.hpp" #include "widgets/settingspages/ModerationPage.hpp" #include "widgets/settingspages/NotificationPage.hpp" #include #include namespace chatterino { SettingsDialog *SettingsDialog::handle = nullptr; SettingsDialog::SettingsDialog() : BaseWindow(BaseWindow::DisableCustomScaling) { this->setWindowTitle("Chatterino Settings"); this->themeChangedEvent(); this->scaleChangedEvent(this->scale()); this->initUi(); this->addTabs(); this->overrideBackgroundColor_ = QColor("#111111"); this->scaleChangedEvent( this->scale()); // execute twice to fix performance + width of item this->resize(815, 600); } void SettingsDialog::initUi() { auto outerBox = LayoutCreator(this->getLayoutContainer()) .setLayoutType() .withoutSpacing(); // TOP auto title = outerBox.emplace(); auto edit = LayoutCreator(title.getElement()) .setLayoutType() .withoutMargin() .emplace() .assign(&this->ui_.search); edit->setPlaceholderText("Find in settings..."); QObject::connect(edit.getElement(), &QLineEdit::textChanged, this, &SettingsDialog::filterElements); // CENTER auto centerBox = outerBox.emplace().withoutMargin().withoutSpacing(); // left side (tabs) centerBox.emplace() .assign(&this->ui_.tabContainerContainer) .setLayoutType() .withoutMargin() .assign(&this->ui_.tabContainer); // right side (pages) auto right = centerBox.emplace().withoutMargin().withoutSpacing(); { right.emplace() .assign(&this->ui_.pageStack) .withoutMargin(); } this->ui_.pageStack->setMargin(0); outerBox->addSpacing(12); // BOTTOM auto buttons = outerBox.emplace(Qt::Horizontal); { this->ui_.okButton = buttons->addButton("Ok", QDialogButtonBox::YesRole); this->ui_.cancelButton = buttons->addButton("Cancel", QDialogButtonBox::NoRole); } // ---- misc this->ui_.tabContainerContainer->setObjectName("tabWidget"); this->ui_.pageStack->setObjectName("pages"); QObject::connect(this->ui_.okButton, &QPushButton::clicked, this, &SettingsDialog::onOkClicked); QObject::connect(this->ui_.cancelButton, &QPushButton::clicked, this, &SettingsDialog::onCancelClicked); } void SettingsDialog::filterElements(const QString &text) { // filter elements and hide pages for (auto &&page : this->pages_) { // filterElements returns true if anything on the page matches the search query page->tab()->setVisible(page->filterElements(text)); } // 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(item); x) { x->changeSize(10, shouldShowSpace ? int(16 * this->scale()) : 0); shouldShowSpace = false; } else if (item->widget()) { shouldShowSpace |= item->widget()->isVisible(); } } } SettingsDialog *SettingsDialog::getHandle() { return SettingsDialog::handle; } void SettingsDialog::addTabs() { this->ui_.tabContainer->setMargin(0); this->ui_.tabContainer->setSpacing(0); this->ui_.tabContainer->setContentsMargins(0, 20, 0, 20); this->addTab(new GeneralPage); this->ui_.tabContainer->addSpacing(16); this->addTab(new AccountsPage); this->ui_.tabContainer->addSpacing(16); this->addTab(new CommandPage); this->addTab(new HighlightingPage); this->addTab(new IgnoresPage); this->ui_.tabContainer->addSpacing(16); this->addTab(new KeyboardSettingsPage); this->addTab(this->ui_.moderationPage = new ModerationPage); this->addTab(new NotificationPage); this->addTab(new ExternalToolsPage); this->ui_.tabContainer->addStretch(1); this->addTab(new AboutPage, Qt::AlignBottom); } void SettingsDialog::addTab(SettingsPage *page, Qt::Alignment alignment) { auto tab = new SettingsDialogTab(this, page, page->getIconResource()); page->setTab(tab); this->ui_.pageStack->addWidget(page); this->ui_.tabContainer->addWidget(tab, 0, alignment); this->tabs_.push_back(tab); this->pages_.push_back(page); if (this->tabs_.size() == 1) { this->selectTab(tab); } } void SettingsDialog::selectTab(SettingsDialogTab *tab, bool byUser) { this->ui_.pageStack->setCurrentWidget(tab->getSettingsPage()); if (this->selectedTab_ != nullptr) { this->selectedTab_->setSelected(false); this->selectedTab_->setStyleSheet("color: #FFF"); } tab->setSelected(true); tab->setStyleSheet("background: #222; color: #4FC3F7;" "/*border: 1px solid #555; border-right: none;*/"); this->selectedTab_ = tab; if (byUser) { this->lastSelectedByUser_ = tab; } } void SettingsDialog::selectPage(SettingsPage *page) { assert(page); assert(page->tab()); this->selectTab(page->tab()); } void SettingsDialog::showDialog(SettingsDialogPreference preferredTab) { static SettingsDialog *instance = new SettingsDialog(); instance->refresh(); switch (preferredTab) { case SettingsDialogPreference::Accounts: instance->selectTab(instance->tabs_.at(1)); break; case SettingsDialogPreference::ModerationActions: instance->selectPage(instance->ui_.moderationPage); instance->ui_.moderationPage->selectModerationActions(); break; default:; } instance->show(); instance->activateWindow(); instance->raise(); instance->setFocus(); } void SettingsDialog::refresh() { getSettings()->saveSnapshot(); for (auto *tab : this->tabs_) { tab->getSettingsPage()->onShow(); } } void SettingsDialog::scaleChangedEvent(float newDpi) { QFile file(":/qss/settings.qss"); file.open(QFile::ReadOnly); QString styleSheet = QLatin1String(file.readAll()); styleSheet.replace("", QString::number(int(14 * newDpi))); styleSheet.replace("", QString::number(int(14 * newDpi))); for (SettingsDialogTab *tab : this->tabs_) { tab->setFixedHeight(int(30 * newDpi)); } this->setStyleSheet(styleSheet); if (this->ui_.tabContainerContainer) this->ui_.tabContainerContainer->setFixedWidth(int(150 * newDpi)); } void SettingsDialog::themeChangedEvent() { BaseWindow::themeChangedEvent(); QPalette palette; palette.setColor(QPalette::Background, QColor("#111")); this->setPalette(palette); } void SettingsDialog::showEvent(QShowEvent *) { this->ui_.search->setText(""); } ///// Widget creation helpers void SettingsDialog::onOkClicked() { pajlada::Settings::SettingManager::gSave(); this->close(); } void SettingsDialog::onCancelClicked() { for (auto &tab : this->tabs_) { tab->getSettingsPage()->cancel(); } getSettings()->restoreSnapshot(); this->close(); } } // namespace chatterino