X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fsettingspages%2Fnotificationssettingspage.cpp;h=5b245d51ded96213a026f8fdc1eba8315218a8c9;hp=3f4f789f1d37b862db131a834f17d8b3cc4d0127;hb=cc6e7c08709c4e761e2fd9c2e322751015497003;hpb=7d252c0e8aa2728d9a57130c7aae8923c5321542 diff --git a/src/qtui/settingspages/notificationssettingspage.cpp b/src/qtui/settingspages/notificationssettingspage.cpp index 3f4f789f..5b245d51 100644 --- a/src/qtui/settingspages/notificationssettingspage.cpp +++ b/src/qtui/settingspages/notificationssettingspage.cpp @@ -1,11 +1,11 @@ /*************************************************************************** - * Copyright (C) 2005-08 by the Quassel IRC Team * + * Copyright (C) 2005-2019 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,60 +15,68 @@ * 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 - #include "notificationssettingspage.h" -#include "qtui.h" +#include -NotificationsSettingsPage::NotificationsSettingsPage(QWidget *parent) - : SettingsPage(tr("Behaviour"), tr("Notifications"), parent) { +#include "qtui.h" - QVBoxLayout *layout = new QVBoxLayout(this); - foreach(AbstractNotificationBackend *backend, QtUi::notificationBackends()) { - SettingsPage *cw = backend->createConfigWidget(); - if(cw) { - cw->setParent(this); - _configWidgets.append(cw); - layout->addWidget(cw); - connect(cw, SIGNAL(changed(bool)), SLOT(widgetHasChanged())); +NotificationsSettingsPage::NotificationsSettingsPage(QWidget* parent) + : SettingsPage(tr("Interface"), tr("Notifications"), parent) +{ + auto* layout = new QVBoxLayout(this); + foreach (AbstractNotificationBackend* backend, QtUi::notificationBackends()) { + SettingsPage* cw = backend->createConfigWidget(); + if (cw) { + cw->setParent(this); + _configWidgets.append(cw); + layout->addWidget(cw); + connect(cw, &SettingsPage::changed, this, &NotificationsSettingsPage::widgetHasChanged); + _hasDefaults |= cw->hasDefaults(); + } } - } - layout->addStretch(1); + layout->addStretch(20); + load(); } -bool NotificationsSettingsPage::hasDefaults() const { - return true; +bool NotificationsSettingsPage::hasDefaults() const +{ + return _hasDefaults; } -void NotificationsSettingsPage::defaults() { - foreach(SettingsPage *cw, _configWidgets) - cw->defaults(); - widgetHasChanged(); +void NotificationsSettingsPage::defaults() +{ + foreach (SettingsPage* cw, _configWidgets) + cw->defaults(); + widgetHasChanged(); } -void NotificationsSettingsPage::load() { - foreach(SettingsPage *cw, _configWidgets) - cw->load(); - setChangedState(false); +void NotificationsSettingsPage::load() +{ + foreach (SettingsPage* cw, _configWidgets) + cw->load(); + setChangedState(false); } -void NotificationsSettingsPage::save() { - foreach(SettingsPage *cw, _configWidgets) - cw->save(); - setChangedState(false); +void NotificationsSettingsPage::save() +{ + foreach (SettingsPage* cw, _configWidgets) + cw->save(); + setChangedState(false); } -void NotificationsSettingsPage::widgetHasChanged() { - bool changed = false; - foreach(SettingsPage *cw, _configWidgets) { - if(cw->hasChanged()) { - changed = true; - break; +void NotificationsSettingsPage::widgetHasChanged() +{ + bool changed = false; + foreach (SettingsPage* cw, _configWidgets) { + if (cw->hasChanged()) { + changed = true; + break; + } } - } - if(changed != hasChanged()) setChangedState(changed); + if (changed != hasChanged()) + setChangedState(changed); }