Reload stylesheet after changing it in the AppearanceSettingsPage
[quassel.git] / src / qtui / settingspages / backlogsettingspage.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 "backlogsettingspage.h"
22
23 #include "qtui.h"
24 #include "backlogsettings.h"
25
26 BacklogSettingsPage::BacklogSettingsPage(QWidget *parent)
27   : SettingsPage(tr("Misc"), tr("Backlog"), parent)
28 {
29   ui.setupUi(this);
30   initAutoWidgets();
31   // not an auto widget, because we store index + 1
32
33   // FIXME: global backlog requester disabled until issues ruled out
34   ui.requesterType->removeItem(2);
35
36   connect(ui.requesterType, SIGNAL(currentIndexChanged(int)), this, SLOT(widgetHasChanged()));
37 }
38
39 bool BacklogSettingsPage::hasDefaults() const {
40   return true;
41 }
42
43 void BacklogSettingsPage::defaults() {
44   ui.requesterType->setCurrentIndex(0);
45
46   SettingsPage::defaults();
47 }
48
49 void BacklogSettingsPage::load() {
50   BacklogSettings backlogSettings;
51   int index = backlogSettings.requesterType() - 1;
52   ui.requesterType->setProperty("storedValue", index);
53   ui.requesterType->setCurrentIndex(index);
54
55   SettingsPage::load();
56 }
57
58 void BacklogSettingsPage::save() {
59   BacklogSettings backlogSettings;
60   backlogSettings.setRequesterType(ui.requesterType->currentIndex() + 1);
61   ui.requesterType->setProperty("storedValue", ui.requesterType->currentIndex());
62
63   SettingsPage::save();
64 }
65
66 void BacklogSettingsPage::widgetHasChanged() {
67   setChangedState(ui.requesterType->currentIndex() != ui.requesterType->property("storedValue").toInt());
68 }