Read/Write settings from/to correct subcategory and cleanup
[quassel.git] / src / qtui / settingspages / notificationssettingspage.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005-08 by the Quassel IRC Team                         *
3  *   devel@quassel-irc.org                                                 *
4  *                                                                         *
5  *   This program is free software; you can redistribute it and/or modify  *
6  *   it under the terms of the GNU General Public License as published by  *
7  *   the Free Software Foundation; either version 2 of the License, or     *
8  *   (at your option) any later version.                                   *
9  *                                                                         *
10  *   This program is distributed in the hope that it will be useful,       *
11  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
12  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
13  *   GNU General Public License for more details.                          *
14  *                                                                         *
15  *   You should have received a copy of the GNU General Public License     *
16  *   along with this program; if not, write to the                         *
17  *   Free Software Foundation, Inc.,                                       *
18  *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
19  ***************************************************************************/
20
21 #include <QVBoxLayout>
22
23 #include "notificationssettingspage.h"
24
25 #include "qtui.h"
26
27 NotificationsSettingsPage::NotificationsSettingsPage(QWidget *parent)
28   : SettingsPage(tr("Behaviour"), tr("Notifications"), parent) {
29
30   QVBoxLayout *layout = new QVBoxLayout(this);
31   foreach(AbstractNotificationBackend *backend, QtUi::notificationBackends()) {
32     SettingsPage *cw = backend->createConfigWidget();
33     if(cw) {
34       cw->setParent(this);
35       _configWidgets.append(cw);
36       layout->addWidget(cw);
37       connect(cw, SIGNAL(changed(bool)), SLOT(widgetHasChanged()));
38     }
39   }
40   layout->addStretch(1);
41   load();
42 }
43
44 bool NotificationsSettingsPage::hasDefaults() const {
45   return true;
46 }
47
48 void NotificationsSettingsPage::defaults() {
49   foreach(SettingsPage *cw, _configWidgets)
50     cw->defaults();
51   widgetHasChanged();
52 }
53
54 void NotificationsSettingsPage::load() {
55   foreach(SettingsPage *cw, _configWidgets)
56     cw->load();
57   setChangedState(false);
58 }
59
60 void NotificationsSettingsPage::save() {
61   foreach(SettingsPage *cw, _configWidgets)
62     cw->save();
63   setChangedState(false);
64 }
65
66 void NotificationsSettingsPage::widgetHasChanged() {
67   bool changed = false;
68   foreach(SettingsPage *cw, _configWidgets) {
69     if(cw->hasChanged()) {
70       changed = true;
71       break;
72     }
73   }
74   if(changed != hasChanged()) setChangedState(changed);
75 }