Fix includes
[quassel.git] / src / qtui / settingspagedlg.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005-2012 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 <QMessageBox>
22 #include <QPushButton>
23
24 #include "settingspagedlg.h"
25
26 #include "iconloader.h"
27
28 SettingsPageDlg::SettingsPageDlg(SettingsPage *page, QWidget *parent)
29   : QDialog(parent)
30 {
31   ui.setupUi(this);
32   _currentPage = page;
33   page->setParent(this);
34
35   // make it look more native under Mac OS X:
36   setWindowFlags(Qt::Sheet);
37
38   ui.pageTitle->setText(page->title());
39   setWindowTitle(tr("Configure %1").arg(page->title()));
40   setWindowIcon(SmallIcon("configure"));
41
42   // make the scrollarea behave sanely
43   ui.settingsFrame->setWidgetResizable(true);
44   ui.settingsFrame->setWidget(page);
45
46   updateGeometry();
47
48   connect(page, SIGNAL(changed(bool)), this, SLOT(setButtonStates()));
49   connect(ui.buttonBox, SIGNAL(clicked(QAbstractButton *)), this, SLOT(buttonClicked(QAbstractButton *)));
50   page->load();
51   setButtonStates();
52 }
53
54 SettingsPage *SettingsPageDlg::currentPage() const {
55   return _currentPage;
56 }
57
58 void SettingsPageDlg::setButtonStates() {
59   SettingsPage *sp = currentPage();
60   ui.buttonBox->button(QDialogButtonBox::Apply)->setEnabled(sp && sp->hasChanged());
61   ui.buttonBox->button(QDialogButtonBox::Reset)->setEnabled(sp && sp->hasChanged());
62   ui.buttonBox->button(QDialogButtonBox::RestoreDefaults)->setEnabled(sp && sp->hasDefaults());
63 }
64
65 void SettingsPageDlg::buttonClicked(QAbstractButton *button) {
66   switch(ui.buttonBox->standardButton(button)) {
67     case QDialogButtonBox::Ok:
68       if(currentPage() && currentPage()->hasChanged()) {
69         if(applyChanges()) accept();
70       } else accept();
71       break;
72     case QDialogButtonBox::Apply:
73       applyChanges();
74       break;
75     case QDialogButtonBox::Cancel:
76       undoChanges();
77       reject();
78       break;
79     case QDialogButtonBox::Reset:
80       reload();
81       break;
82     case QDialogButtonBox::RestoreDefaults:
83       loadDefaults();
84       break;
85     default:
86       break;
87   }
88 }
89
90 bool SettingsPageDlg::applyChanges() {
91   if(!currentPage()) return false;
92   if(currentPage()->aboutToSave()) {
93     currentPage()->save();
94     return true;
95   }
96   return false;
97 }
98
99 void SettingsPageDlg::undoChanges() {
100   if(currentPage()) {
101     currentPage()->load();
102   }
103 }
104
105 void SettingsPageDlg::reload() {
106   if(!currentPage()) return;
107   int ret = QMessageBox::question(this, tr("Reload Settings"), tr("Do you like to reload the settings, undoing your changes on this page?"),
108                                   QMessageBox::Yes|QMessageBox::No, QMessageBox::No);
109   if(ret == QMessageBox::Yes) {
110     currentPage()->load();
111   }
112 }
113
114 void SettingsPageDlg::loadDefaults() {
115   if(!currentPage()) return;
116   int ret = QMessageBox::question(this, tr("Restore Defaults"), tr("Do you like to restore the default values for this page?"),
117                                   QMessageBox::RestoreDefaults|QMessageBox::Cancel, QMessageBox::Cancel);
118   if(ret == QMessageBox::RestoreDefaults) {
119     currentPage()->defaults();
120   }
121 }