File -> Quit now correctly calls QCoreApplication::quit() rather than
[quassel.git] / src / qtui / settingspagedlg.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) 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 "settingspagedlg.h"
22
23 SettingsPageDlg::SettingsPageDlg(SettingsPage *page, QWidget *parent) : QDialog(parent) {
24   ui.setupUi(this);
25   _currentPage = page;
26   page->setParent(this);
27   ui.pageTitle->setText(page->title());
28
29   // make the scrollarea behave sanely
30   ui.settingsFrame->setWidgetResizable(true);
31   ui.settingsFrame->setWidget(page);
32
33   updateGeometry();
34
35   connect(page, SIGNAL(changed(bool)), this, SLOT(setButtonStates()));
36   connect(ui.buttonBox, SIGNAL(clicked(QAbstractButton *)), this, SLOT(buttonClicked(QAbstractButton *)));
37   page->load();
38   setButtonStates();
39 }
40
41 SettingsPage *SettingsPageDlg::currentPage() const {
42   return _currentPage;
43 }
44
45 void SettingsPageDlg::setButtonStates() {
46   SettingsPage *sp = currentPage();
47   ui.buttonBox->button(QDialogButtonBox::Apply)->setEnabled(sp && sp->hasChanged());
48   ui.buttonBox->button(QDialogButtonBox::Reset)->setEnabled(sp && sp->hasChanged());
49   ui.buttonBox->button(QDialogButtonBox::RestoreDefaults)->setEnabled(sp && sp->hasDefaults());
50 }
51
52 void SettingsPageDlg::buttonClicked(QAbstractButton *button) {
53   switch(ui.buttonBox->standardButton(button)) {
54     case QDialogButtonBox::Ok:
55       if(applyChanges()) accept();
56       break;
57     case QDialogButtonBox::Apply:
58       applyChanges();
59       break;
60     case QDialogButtonBox::Cancel:
61       undoChanges();
62       reject();
63       break;
64     case QDialogButtonBox::Reset:
65       reload();
66       break;
67     case QDialogButtonBox::RestoreDefaults:
68       loadDefaults();
69       break;
70     default:
71       break;
72   }
73 }
74
75 bool SettingsPageDlg::applyChanges() {
76   if(!currentPage()) return false;
77   if(currentPage()->aboutToSave()) {
78     currentPage()->save();
79     return true;
80   }
81   return false;
82 }
83
84 void SettingsPageDlg::undoChanges() {
85   if(currentPage()) {
86     currentPage()->load();
87   }
88 }
89
90 void SettingsPageDlg::reload() {
91   if(!currentPage()) return;
92   int ret = QMessageBox::question(this, tr("Reload Settings"), tr("Do you like to reload the settings, undoing your changes on this page?"),
93                                   QMessageBox::Yes|QMessageBox::No, QMessageBox::No);
94   if(ret == QMessageBox::Yes) {
95     currentPage()->load();
96   }
97 }
98
99 void SettingsPageDlg::loadDefaults() {
100   if(!currentPage()) return;
101   int ret = QMessageBox::question(this, tr("Restore Defaults"), tr("Do you like to restore the default values for this page?"),
102                                   QMessageBox::RestoreDefaults|QMessageBox::Cancel, QMessageBox::Cancel);
103   if(ret == QMessageBox::Yes) {
104     currentPage()->defaults();
105   }
106 }