Getting ready to revamp the settings dialog and stuff. We will no longer make
[quassel.git] / src / qtui / settingsdlg.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005-07 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 "settingsdlg.h"
22
23 SettingsDlg::SettingsDlg(QWidget *parent) : QDialog(parent) {
24   ui.setupUi(this);
25
26   ui.settingsFrame->setWidgetResizable(true);
27   ui.settingsFrame->setWidget(ui.settingsStack);
28   ui.settingsTree->setRootIsDecorated(false);
29
30   connect(ui.settingsTree, SIGNAL(itemSelectionChanged()), this, SLOT(itemSelected()));
31   connect(ui.buttonBox, SIGNAL(clicked(QAbstractButton *)), this, SLOT(buttonClicked(QAbstractButton *)));
32 }
33
34 /*
35 void SettingsDlg::registerSettingsPage(SettingsPage *sp) {
36   QWidget *w = sp->widget();
37   w->setParent(this);
38   ui.settingsStack->addWidget(w);
39
40   QTreeWidgetItem *cat;
41   QList<QTreeWidgetItem *> cats = ui.settingsTree->findItems(sp->category(), Qt::MatchExactly);
42   if(!cats.count()) {
43     cat = new QTreeWidgetItem(ui.settingsTree, QStringList(sp->category()));
44     cat->setExpanded(true);
45     cat->setFlags(Qt::ItemIsEnabled);
46   } else cat = cats[0];
47   QTreeWidgetItem *p = new QTreeWidgetItem(cat, QStringList(sp->title()));
48   pages[QString("%1$%2").arg(sp->category()).arg(sp->title())] = sp;
49 }
50
51 void SettingsDlg::selectPage(const QString &cat, const QString &title) {
52   QWidget *w = pages[QString("%1$%2").arg(cat).arg(title)]->widget();
53   Q_ASSERT(w);
54   ui.settingsStack->setCurrentWidget(w);
55 }
56
57 void SettingsDlg::itemSelected() {
58   QList<QTreeWidgetItem *> items = ui.settingsTree->selectedItems();
59   if(!items.count()) {
60     return;
61   } else {
62     QTreeWidgetItem *parent = items[0]->parent();
63     if(!parent) return;
64     QString cat = parent->text(0);
65     QString title = items[0]->text(0);
66     selectPage(cat, title);
67   }
68 }
69
70 void SettingsDlg::buttonClicked(QAbstractButton *button) {
71   switch(ui.buttonBox->buttonRole(button)) {
72     case QDialogButtonBox::AcceptRole:
73       applyChanges();
74       accept();
75       break;
76     case QDialogButtonBox::ApplyRole:
77       applyChanges();
78       break;
79     case QDialogButtonBox::RejectRole:
80       reject();
81       break;
82     default:
83       break;
84   }
85 }
86
87 void SettingsDlg::applyChanges() {
88   //SettingsInterface *sp = qobject_cast<SettingsInterface *>(ui.settingsStack->currentWidget());
89   //if(sp) sp->applyChanges();
90 }
91 */