X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fsettingspages%2Fappearancesettingspage.cpp;h=1a25533fa7d69249a468ceab3c55072aef9b45a3;hp=fc4674fdbc42050c80d06bb2ad7a4e3848301d64;hb=911f181e0e179eb51279c0880eb701a43163b8b5;hpb=9996d2489e5e5ca23b0750f39f64d8d4b5990029 diff --git a/src/qtui/settingspages/appearancesettingspage.cpp b/src/qtui/settingspages/appearancesettingspage.cpp index fc4674fd..1a25533f 100644 --- a/src/qtui/settingspages/appearancesettingspage.cpp +++ b/src/qtui/settingspages/appearancesettingspage.cpp @@ -1,11 +1,11 @@ /*************************************************************************** - * Copyright (C) 2005-08 by the Quassel IRC Team * + * Copyright (C) 2005-2018 by the Quassel Project * * devel@quassel-irc.org * * * * 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 2 of the License, or * - * (at your option) any later version. * + * (at your option) version 3. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * @@ -15,144 +15,311 @@ * You should have received a copy of the GNU General Public License * * along with this program; if not, write to the * * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ #include "appearancesettingspage.h" +#include +#include +#include +#include +#include + #include "buffersettings.h" -#include "chatviewsettings.h" #include "qtui.h" #include "qtuisettings.h" -#include "util.h" +#include "qtuistyle.h" -#include -#include AppearanceSettingsPage::AppearanceSettingsPage(QWidget *parent) - : SettingsPage(tr("Appearance"), tr("General"), parent) { - ui.setupUi(this); - initStyleComboBox(); - initLanguageComboBox(); - - foreach(QComboBox *comboBox, findChildren()) { - connect(comboBox, SIGNAL(currentIndexChanged(QString)), this, SLOT(widgetHasChanged())); - } - foreach(QCheckBox *checkBox, findChildren()) { - connect(checkBox, SIGNAL(clicked()), this, SLOT(widgetHasChanged())); - } + : SettingsPage(tr("Interface"), QString(), parent) +{ + ui.setupUi(this); + +#ifdef QT_NO_SYSTEMTRAYICON + ui.useSystemTrayIcon->hide(); +#endif +#if QT_VERSION < 0x050000 + // We don't support overriding the system icon theme with Qt4 + ui.overrideSystemIconTheme->hide(); +#endif + + // If no system icon theme is given, showing the override option makes no sense. + // Also don't mention a "fallback". + if (QtUi::instance()->systemIconTheme().isEmpty()) { + ui.iconThemeLabel->setText(tr("Icon theme:")); + ui.overrideSystemIconTheme->hide(); + } + + initAutoWidgets(); + initStyleComboBox(); + initLanguageComboBox(); + initIconThemeComboBox(); + + foreach(QComboBox *comboBox, findChildren()) { + connect(comboBox, SIGNAL(currentIndexChanged(QString)), this, SLOT(widgetHasChanged())); + } + foreach(QCheckBox *checkBox, findChildren()) { + connect(checkBox, SIGNAL(clicked()), this, SLOT(widgetHasChanged())); + } + + connect(ui.chooseStyleSheet, SIGNAL(clicked()), SLOT(chooseStyleSheet())); + + connect(ui.userNoticesInDefaultBuffer, SIGNAL(clicked(bool)), this, SLOT(widgetHasChanged())); + connect(ui.userNoticesInStatusBuffer, SIGNAL(clicked(bool)), this, SLOT(widgetHasChanged())); + connect(ui.userNoticesInCurrentBuffer, SIGNAL(clicked(bool)), this, SLOT(widgetHasChanged())); + + connect(ui.serverNoticesInDefaultBuffer, SIGNAL(clicked(bool)), this, SLOT(widgetHasChanged())); + connect(ui.serverNoticesInStatusBuffer, SIGNAL(clicked(bool)), this, SLOT(widgetHasChanged())); + connect(ui.serverNoticesInCurrentBuffer, SIGNAL(clicked(bool)), this, SLOT(widgetHasChanged())); + + connect(ui.errorMsgsInDefaultBuffer, SIGNAL(clicked(bool)), this, SLOT(widgetHasChanged())); + connect(ui.errorMsgsInStatusBuffer, SIGNAL(clicked(bool)), this, SLOT(widgetHasChanged())); + connect(ui.errorMsgsInCurrentBuffer, SIGNAL(clicked(bool)), this, SLOT(widgetHasChanged())); } -void AppearanceSettingsPage::initStyleComboBox() { - QStringList styleList = QStyleFactory::keys(); - ui.styleComboBox->addItem(tr("")); - foreach(QString style, styleList) { - ui.styleComboBox->addItem(style); - } -} -void AppearanceSettingsPage::initLanguageComboBox() { - QDir i18nDir(":/i18n", "quassel_*.qm"); +void AppearanceSettingsPage::initStyleComboBox() +{ + QStringList styleList = QStyleFactory::keys(); + ui.styleComboBox->addItem(tr("")); + foreach(QString style, styleList) { + ui.styleComboBox->addItem(style); + } +} - foreach(QString translationFile, i18nDir.entryList()) { - QString localeName(translationFile.mid(8)); - localeName.chop(3); - QLocale locale(localeName); - _locales << locale; - ui.languageComboBox->addItem(QLocale::languageToString(locale.language())); - } +void AppearanceSettingsPage::initLanguageComboBox() +{ + QDir i18nDir(Quassel::translationDirPath(), "*.qm"); + + QRegExp rx("(qt_)?([a-zA-Z_]+)\\.qm"); + foreach(QString translationFile, i18nDir.entryList()) { + if (!rx.exactMatch(translationFile)) + continue; + if (!rx.cap(1).isEmpty()) + continue; + QLocale locale(rx.cap(2)); + _locales[QLocale::languageToString(locale.language())] = locale; + } + foreach(QString language, _locales.keys()) { + ui.languageComboBox->addItem(language); + } } -void AppearanceSettingsPage::defaults() { - ui.styleComboBox->setCurrentIndex(0); +void AppearanceSettingsPage::initIconThemeComboBox() +{ + auto availableThemes = QtUi::instance()->availableIconThemes(); - widgetHasChanged(); + ui.iconThemeComboBox->addItem(tr("Automatic"), QString{}); + for (auto &&p : QtUi::instance()->availableIconThemes()) { + ui.iconThemeComboBox->addItem(p.second, p.first); + } } -void AppearanceSettingsPage::load() { - QtUiSettings uiSettings; - // Gui Style - settings["Style"] = uiSettings.value("Style", QString("")); - if(settings["Style"].toString() == "") { +void AppearanceSettingsPage::defaults() +{ ui.styleComboBox->setCurrentIndex(0); - } else { - ui.styleComboBox->setCurrentIndex(ui.styleComboBox->findText(settings["Style"].toString(), Qt::MatchExactly)); - QApplication::setStyle(settings["Style"].toString()); - } - - // Language - QLocale locale = uiSettings.value("Locale", QLocale::system()).value(); - if(locale == QLocale::system()) - ui.languageComboBox->setCurrentIndex(0); - else if(locale.language() == QLocale::C) ui.languageComboBox->setCurrentIndex(1); - else - ui.languageComboBox->setCurrentIndex(ui.languageComboBox->findText(QLocale::languageToString(locale.language()), Qt::MatchExactly)); - loadTranslation(selectedLocale()); - ChatViewSettings chatViewSettings; - SettingsPage::load(ui.showWebPreview, chatViewSettings.showWebPreview()); + SettingsPage::defaults(); + widgetHasChanged(); +} - BufferSettings bufferSettings; - SettingsPage::load(ui.showUserStateIcons, bufferSettings.showUserStateIcons()); - setChangedState(false); +void AppearanceSettingsPage::load() +{ + QtUiSettings uiSettings; + + // Gui Style + QString style = uiSettings.value("Style", QString("")).toString(); + if (style.isEmpty()) { + ui.styleComboBox->setCurrentIndex(0); + } + else { + ui.styleComboBox->setCurrentIndex(ui.styleComboBox->findText(style, Qt::MatchExactly)); + } + ui.styleComboBox->setProperty("storedValue", ui.styleComboBox->currentIndex()); + + // Language + QLocale locale = uiSettings.value("Locale", QLocale::system()).value(); + if (locale == QLocale::system()) + ui.languageComboBox->setCurrentIndex(1); + else if (locale.language() == QLocale::C) // we use C for "untranslated" + ui.languageComboBox->setCurrentIndex(0); + else + ui.languageComboBox->setCurrentIndex(ui.languageComboBox->findText(QLocale::languageToString(locale.language()), Qt::MatchExactly)); + ui.languageComboBox->setProperty("storedValue", ui.languageComboBox->currentIndex()); + Quassel::loadTranslation(selectedLocale()); + + // IconTheme + QString icontheme = UiStyleSettings{}.value("Icons/FallbackTheme", QString{}).toString(); + if (icontheme.isEmpty()) { + ui.iconThemeComboBox->setCurrentIndex(0); + } + else { + auto idx = ui.iconThemeComboBox->findData(icontheme); + ui.iconThemeComboBox->setCurrentIndex(idx > 0 ? idx : 0); + } + ui.iconThemeComboBox->setProperty("storedValue", ui.iconThemeComboBox->currentIndex()); + + // bufferSettings: + BufferSettings bufferSettings; + int redirectTarget = bufferSettings.userNoticesTarget(); + SettingsPage::load(ui.userNoticesInDefaultBuffer, redirectTarget & BufferSettings::DefaultBuffer); + SettingsPage::load(ui.userNoticesInStatusBuffer, redirectTarget & BufferSettings::StatusBuffer); + SettingsPage::load(ui.userNoticesInCurrentBuffer, redirectTarget & BufferSettings::CurrentBuffer); + + redirectTarget = bufferSettings.serverNoticesTarget(); + SettingsPage::load(ui.serverNoticesInDefaultBuffer, redirectTarget & BufferSettings::DefaultBuffer); + SettingsPage::load(ui.serverNoticesInStatusBuffer, redirectTarget & BufferSettings::StatusBuffer); + SettingsPage::load(ui.serverNoticesInCurrentBuffer, redirectTarget & BufferSettings::CurrentBuffer); + + redirectTarget = bufferSettings.errorMsgsTarget(); + SettingsPage::load(ui.errorMsgsInDefaultBuffer, redirectTarget & BufferSettings::DefaultBuffer); + SettingsPage::load(ui.errorMsgsInStatusBuffer, redirectTarget & BufferSettings::StatusBuffer); + SettingsPage::load(ui.errorMsgsInCurrentBuffer, redirectTarget & BufferSettings::CurrentBuffer); + + SettingsPage::load(); + setChangedState(false); } -void AppearanceSettingsPage::save() { - QtUiSettings uiSettings; - - if(ui.styleComboBox->currentIndex() < 1) { - uiSettings.setValue("Style", QString("")); - } else { - uiSettings.setValue("Style", ui.styleComboBox->currentText()); - } - if(ui.languageComboBox->currentIndex() == 0) { - uiSettings.remove("Locale"); // force the default (QLocale::system()) - } else { - uiSettings.setValue("Locale", selectedLocale()); - } +void AppearanceSettingsPage::save() +{ + QtUiSettings uiSettings; + UiStyleSettings styleSettings; + + if (ui.styleComboBox->currentIndex() < 1) { + uiSettings.setValue("Style", QString("")); + } + else { + uiSettings.setValue("Style", ui.styleComboBox->currentText()); + QApplication::setStyle(ui.styleComboBox->currentText()); + } + ui.styleComboBox->setProperty("storedValue", ui.styleComboBox->currentIndex()); + + if (ui.languageComboBox->currentIndex() == 1) { + uiSettings.remove("Locale"); // force the default (QLocale::system()) + } + else { + uiSettings.setValue("Locale", selectedLocale()); + } + ui.languageComboBox->setProperty("storedValue", ui.languageComboBox->currentIndex()); + + bool needsIconThemeRefresh = ui.iconThemeComboBox->currentIndex() != ui.iconThemeComboBox->property("storedValue").toInt() + || ui.overrideSystemIconTheme->isChecked() != ui.overrideSystemIconTheme->property("storedValue").toBool(); + + auto iconTheme = selectedIconTheme(); + if (iconTheme.isEmpty()) { + styleSettings.remove("Icons/FallbackTheme"); + } + else { + styleSettings.setValue("Icons/FallbackTheme", iconTheme); + } + ui.iconThemeComboBox->setProperty("storedValue", ui.iconThemeComboBox->currentIndex()); + + bool needsStyleReload = + ui.useCustomStyleSheet->isChecked() != ui.useCustomStyleSheet->property("storedValue").toBool() + || (ui.useCustomStyleSheet->isChecked() && ui.customStyleSheetPath->text() != ui.customStyleSheetPath->property("storedValue").toString()); + + BufferSettings bufferSettings; + int redirectTarget = 0; + if (ui.userNoticesInDefaultBuffer->isChecked()) + redirectTarget |= BufferSettings::DefaultBuffer; + if (ui.userNoticesInStatusBuffer->isChecked()) + redirectTarget |= BufferSettings::StatusBuffer; + if (ui.userNoticesInCurrentBuffer->isChecked()) + redirectTarget |= BufferSettings::CurrentBuffer; + bufferSettings.setUserNoticesTarget(redirectTarget); + + redirectTarget = 0; + if (ui.serverNoticesInDefaultBuffer->isChecked()) + redirectTarget |= BufferSettings::DefaultBuffer; + if (ui.serverNoticesInStatusBuffer->isChecked()) + redirectTarget |= BufferSettings::StatusBuffer; + if (ui.serverNoticesInCurrentBuffer->isChecked()) + redirectTarget |= BufferSettings::CurrentBuffer; + bufferSettings.setServerNoticesTarget(redirectTarget); + + redirectTarget = 0; + if (ui.errorMsgsInDefaultBuffer->isChecked()) + redirectTarget |= BufferSettings::DefaultBuffer; + if (ui.errorMsgsInStatusBuffer->isChecked()) + redirectTarget |= BufferSettings::StatusBuffer; + if (ui.errorMsgsInCurrentBuffer->isChecked()) + redirectTarget |= BufferSettings::CurrentBuffer; + bufferSettings.setErrorMsgsTarget(redirectTarget); + + SettingsPage::save(); + setChangedState(false); + if (needsStyleReload) + QtUi::style()->reload(); + if (needsIconThemeRefresh) + QtUi::instance()->refreshIconTheme(); +} - ChatViewSettings chatViewSettings; - chatViewSettings.enableWebPreview(ui.showWebPreview->isChecked()); - BufferSettings bufferSettings; - bufferSettings.enableUserStateIcons(ui.showUserStateIcons->isChecked()); +QLocale AppearanceSettingsPage::selectedLocale() const +{ + QLocale locale; + int index = ui.languageComboBox->currentIndex(); + if (index == 1) + locale = QLocale::system(); + else if (index == 0) + locale = QLocale::c(); + else if (index > 1) + locale = _locales.values()[index - 2]; - load(); - setChangedState(false); + return locale; } -QLocale AppearanceSettingsPage::selectedLocale() const { - QLocale locale; - int index = ui.languageComboBox->currentIndex(); - if(index == 0) - locale = QLocale::system(); - else if(index == 1) - locale = QLocale::c(); - else if(index > 1) - locale = _locales[index - 2]; - - return locale; -} -void AppearanceSettingsPage::widgetHasChanged() { - setChangedState(testHasChanged()); +QString AppearanceSettingsPage::selectedIconTheme() const +{ + return ui.iconThemeComboBox->itemData(ui.iconThemeComboBox->currentIndex()).toString(); } -bool AppearanceSettingsPage::testHasChanged() { - if(settings["Style"].toString() != ui.styleComboBox->currentText()) return true; - if(selectedLocale() != QLocale()) return true; // QLocale() returns the default locale (manipulated via loadTranslation()) - if(SettingsPage::hasChanged(ui.showWebPreview)) return true; - if(SettingsPage::hasChanged(ui.showUserStateIcons)) return true; +void AppearanceSettingsPage::chooseStyleSheet() +{ + QString dir = ui.customStyleSheetPath->property("storedValue").toString(); + if (!dir.isEmpty() && QFile(dir).exists()) + dir = QDir(dir).absolutePath(); + else + dir = QDir(Quassel::findDataFilePath("default.qss")).absolutePath(); + + QString name = QFileDialog::getOpenFileName(this, tr("Please choose a stylesheet file"), dir, "*.qss"); + if (!name.isEmpty()) + ui.customStyleSheetPath->setText(name); +} + - return false; +void AppearanceSettingsPage::widgetHasChanged() +{ + setChangedState(testHasChanged()); } +bool AppearanceSettingsPage::testHasChanged() +{ + if (ui.styleComboBox->currentIndex() != ui.styleComboBox->property("storedValue").toInt()) return true; + if (ui.languageComboBox->currentIndex() != ui.languageComboBox->property("storedValue").toInt()) return true; + if (ui.iconThemeComboBox->currentIndex() != ui.iconThemeComboBox->property("storedValue").toInt()) return true; + + if (SettingsPage::hasChanged(ui.userNoticesInStatusBuffer)) return true; + if (SettingsPage::hasChanged(ui.userNoticesInDefaultBuffer)) return true; + if (SettingsPage::hasChanged(ui.userNoticesInCurrentBuffer)) return true; + if (SettingsPage::hasChanged(ui.serverNoticesInStatusBuffer)) return true; + if (SettingsPage::hasChanged(ui.serverNoticesInDefaultBuffer)) return true; + if (SettingsPage::hasChanged(ui.serverNoticesInCurrentBuffer)) return true; + if (SettingsPage::hasChanged(ui.errorMsgsInStatusBuffer)) return true; + if (SettingsPage::hasChanged(ui.errorMsgsInDefaultBuffer)) return true; + if (SettingsPage::hasChanged(ui.errorMsgsInCurrentBuffer)) return true; + + return false; +}