Add a settingspage for configuring the input widget
[quassel.git] / src / qtui / settingspages / notificationssettingspage.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005-09 by the Quassel Project                          *
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("Interface"), tr("Notifications"), parent),
29   _hasDefaults(false)
30 {
31
32   QVBoxLayout *layout = new QVBoxLayout(this);
33   foreach(AbstractNotificationBackend *backend, QtUi::notificationBackends()) {
34     SettingsPage *cw = backend->createConfigWidget();
35     if(cw) {
36       cw->setParent(this);
37       _configWidgets.append(cw);
38       layout->addWidget(cw);
39       connect(cw, SIGNAL(changed(bool)), SLOT(widgetHasChanged()));
40       _hasDefaults |= cw->hasDefaults();
41     }
42   }
43   layout->addStretch(1);
44   load();
45 }
46
47 bool NotificationsSettingsPage::hasDefaults() const {
48   return _hasDefaults;
49 }
50
51 void NotificationsSettingsPage::defaults() {
52   foreach(SettingsPage *cw, _configWidgets)
53     cw->defaults();
54   widgetHasChanged();
55 }
56
57 void NotificationsSettingsPage::load() {
58   foreach(SettingsPage *cw, _configWidgets)
59     cw->load();
60   setChangedState(false);
61 }
62
63 void NotificationsSettingsPage::save() {
64   foreach(SettingsPage *cw, _configWidgets)
65     cw->save();
66   setChangedState(false);
67 }
68
69 void NotificationsSettingsPage::widgetHasChanged() {
70   bool changed = false;
71   foreach(SettingsPage *cw, _configWidgets) {
72     if(cw->hasChanged()) {
73       changed = true;
74       break;
75     }
76   }
77   if(changed != hasChanged()) setChangedState(changed);
78 }