1/***************************************************************************
2 * Copyright (C) 2005-2014 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 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
19 ***************************************************************************/
20
21#include "backlogsettingspage.h"
22
23#include "qtui.h"
24#include "backlogsettings.h"
25
26BacklogSettingsPage::BacklogSettingsPage(QWidget *parent)
27 : SettingsPage(tr("Interface"), tr("Backlog Fetching"), 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
40bool BacklogSettingsPage::hasDefaults() const
41{
42 return true;
43}
44
45
46void BacklogSettingsPage::defaults()
47{
48 ui.requesterType->setCurrentIndex(0);
49
50 SettingsPage::defaults();
51}
52
53
54void BacklogSettingsPage::load()
55{
56 BacklogSettings backlogSettings;
57 int index = backlogSettings.requesterType() - 1;
58 ui.requesterType->setProperty("storedValue", index);
59 ui.requesterType->setCurrentIndex(index);
60
61 SettingsPage::load();
62}
63
64
65void BacklogSettingsPage::save()
66{
67 BacklogSettings backlogSettings;
68 backlogSettings.setRequesterType(ui.requesterType->currentIndex() + 1);
69 ui.requesterType->setProperty("storedValue", ui.requesterType->currentIndex());
70
71 SettingsPage::save();
72}
73
74
75void BacklogSettingsPage::widgetHasChanged()
76{
77 setChangedState(ui.requesterType->currentIndex() != ui.requesterType->property("storedValue").toInt());
78}
79