035c8681174ee8580b7e1387e0d0b2219f84f5c5
[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("Behaviour"), tr("Backlog"), parent)
28 {
29   ui.setupUi(this);
30   initAutoWidgets();
31   // not an auto widget, because we store index + 1
32   connect(ui.requesterType, SIGNAL(currentIndexChanged(int)), this, SLOT(widgetHasChanged()));
33 }
34
35 bool BacklogSettingsPage::hasDefaults() const {
36   return true;
37 }
38
39 void BacklogSettingsPage::defaults() {
40   ui.requesterType->setCurrentIndex(0);
41
42   SettingsPage::defaults();
43 }
44
45 void BacklogSettingsPage::load() {
46   BacklogSettings backlogSettings;
47   int index = backlogSettings.requesterType() - 1;
48   ui.requesterType->setProperty("storedValue", index);
49   ui.requesterType->setCurrentIndex(index);
50
51   SettingsPage::load();
52 }
53
54 void BacklogSettingsPage::save() {
55   BacklogSettings backlogSettings;
56   backlogSettings.setRequesterType(ui.requesterType->currentIndex() + 1);
57   ui.requesterType->setProperty("storedValue", ui.requesterType->currentIndex());
58
59   SettingsPage::save();
60 }
61
62 void BacklogSettingsPage::widgetHasChanged() {
63   setChangedState(ui.requesterType->currentIndex() != ui.requesterType->property("storedValue").toInt());
64 }