Fixed restore-to-defaults in settings dialog.
[quassel.git] / src / qtui / settingsdlg.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005-08 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) version 3.                                           *
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 "settingsdlg.h"
22
23 SettingsDlg::SettingsDlg(QWidget *parent) : QDialog(parent) {
24   ui.setupUi(this);
25   _currentPage = 0;
26
27   //recommendedSize = layout()->minimumSize();
28
29   // make the scrollarea behave sanely
30   ui.settingsFrame->setWidgetResizable(true);
31   ui.settingsFrame->setWidget(ui.settingsStack);
32
33   updateGeometry();
34
35   ui.settingsTree->setRootIsDecorated(false);
36
37   connect(ui.settingsTree, SIGNAL(itemSelectionChanged()), this, SLOT(itemSelected()));
38   connect(ui.buttonBox, SIGNAL(clicked(QAbstractButton *)), this, SLOT(buttonClicked(QAbstractButton *)));
39 }
40
41 /*
42 QSize SettingsDlg::sizeHint() const {
43   return recommendedSize;
44 }
45 */
46
47 SettingsPage *SettingsDlg::currentPage() const {
48   return _currentPage;
49 }
50
51 void SettingsDlg::registerSettingsPage(SettingsPage *sp) {
52   sp->setParent(ui.settingsStack);
53   ui.settingsStack->addWidget(sp);
54   //recommendedSize = recommendedSize.expandedTo(sp->sizeHint());
55   //updateGeometry();
56   connect(sp, SIGNAL(changed(bool)), this, SLOT(setButtonStates()));
57
58   QTreeWidgetItem *cat;
59   QList<QTreeWidgetItem *> cats = ui.settingsTree->findItems(sp->category(), Qt::MatchExactly);
60   if(!cats.count()) {
61     cat = new QTreeWidgetItem(ui.settingsTree, QStringList(sp->category()));
62     cat->setExpanded(true);
63     cat->setFlags(Qt::ItemIsEnabled);
64   } else cat = cats[0];
65   QTreeWidgetItem *item = new QTreeWidgetItem(cat, QStringList(sp->title()));
66   treeItems[sp] = item;
67   pages[QString("%1$%2").arg(sp->category(), sp->title())] = sp;
68   sp->load();
69   // TESTING
70   selectPage(sp->category(), sp->title());
71 }
72
73 void SettingsDlg::selectPage(const QString &cat, const QString &title) {
74   SettingsPage *sp = pages[QString("%1$%2").arg(cat, title)];
75   if(!sp) {
76     _currentPage = 0;
77     ui.settingsStack->setCurrentIndex(0);
78     ui.settingsTree->setCurrentItem(0);
79     return;
80   }
81   if(sp != currentPage() && currentPage() != 0 && currentPage()->hasChanged()) {
82     int ret = QMessageBox::warning(this, tr("Save changes"),
83                                   tr("There are unsaved changes on the current configuration page. Would you like to apply your changes now?"),
84                                   QMessageBox::Discard|QMessageBox::Save|QMessageBox::Cancel, QMessageBox::Cancel);
85     if(ret == QMessageBox::Save) {
86       if(!applyChanges()) sp = currentPage();
87     } else if(ret == QMessageBox::Discard) {
88       undoChanges();
89     } else sp = currentPage();
90   }
91   if(sp != currentPage()) {
92     ui.pageTitle->setText(sp->title());
93     ui.settingsStack->setCurrentWidget(sp);
94     ui.settingsStack->setMinimumSize(sp->minimumSizeHint());  // we don't want our page shrinked, use scrollbars instead...
95     _currentPage = sp;
96   }
97   ui.settingsTree->setCurrentItem(treeItems[sp]);
98   setButtonStates();
99 }
100
101 void SettingsDlg::itemSelected() {
102   QList<QTreeWidgetItem *> items = ui.settingsTree->selectedItems();
103   if(!items.count()) {
104     return;
105   } else {
106     QTreeWidgetItem *parent = items[0]->parent();
107     if(!parent) return;
108     QString cat = parent->text(0);
109     QString title = items[0]->text(0);
110     selectPage(cat, title);
111   }
112 }
113
114 void SettingsDlg::setButtonStates() {
115   SettingsPage *sp = currentPage();
116   ui.buttonBox->button(QDialogButtonBox::Ok)->setEnabled(sp && sp->hasChanged());
117   ui.buttonBox->button(QDialogButtonBox::Apply)->setEnabled(sp && sp->hasChanged());
118   ui.buttonBox->button(QDialogButtonBox::Reset)->setEnabled(sp && sp->hasChanged());
119   ui.buttonBox->button(QDialogButtonBox::RestoreDefaults)->setEnabled(sp && sp->hasDefaults());
120 }
121
122 void SettingsDlg::buttonClicked(QAbstractButton *button) {
123   switch(ui.buttonBox->standardButton(button)) {
124     case QDialogButtonBox::Ok:
125       if(applyChanges()) accept();
126       break;
127     case QDialogButtonBox::Apply:
128       applyChanges();
129       break;
130     case QDialogButtonBox::Cancel:
131       undoChanges();
132       reject();
133       break;
134     case QDialogButtonBox::Reset:
135       reload();
136       break;
137     case QDialogButtonBox::RestoreDefaults:
138       loadDefaults();
139       break;
140     default:
141       break;
142   }
143 }
144
145 bool SettingsDlg::applyChanges() {
146   if(!currentPage()) return false;
147   if(currentPage()->aboutToSave()) {
148     currentPage()->save();
149     return true;
150   }
151   return false;
152 }
153
154 void SettingsDlg::undoChanges() {
155   if(currentPage()) {
156     currentPage()->load();
157   }
158 }
159
160 void SettingsDlg::reload() {
161   if(!currentPage()) return;
162   int ret = QMessageBox::question(this, tr("Reload Settings"), tr("Do you like to reload the settings, undoing your changes on this page?"),
163                                   QMessageBox::Yes|QMessageBox::No, QMessageBox::No);
164   if(ret == QMessageBox::Yes) {
165     currentPage()->load();
166   }
167 }
168
169 void SettingsDlg::loadDefaults() {
170   if(!currentPage()) return;
171   int ret = QMessageBox::question(this, tr("Restore Defaults"), tr("Do you like to restore the default values for this page?"),
172                                   QMessageBox::RestoreDefaults|QMessageBox::Cancel, QMessageBox::Cancel);
173   if(ret == QMessageBox::RestoreDefaults) {
174     currentPage()->defaults();
175   }
176 }