common: Make SyncableObject non-copyable
[quassel.git] / src / qtui / settingspages / backlogsettingspage.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005-2020 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 "backlogrequester.h"
24 #include "backlogsettings.h"
25 #include "qtui.h"
26 #include "widgethelpers.h"
27
28 BacklogSettingsPage::BacklogSettingsPage(QWidget* parent)
29     : SettingsPage(tr("Interface"), tr("Backlog Fetching"), parent)
30 {
31     ui.setupUi(this);
32     initAutoWidgets();
33     // not an auto widget, because we store index + 1
34
35     // FIXME: global backlog requester disabled until issues ruled out
36     ui.requesterType->removeItem(2);
37
38     connectToWidgetChangedSignal(ui.requesterType, this, &BacklogSettingsPage::widgetHasChanged);
39 }
40
41 bool BacklogSettingsPage::hasDefaults() const
42 {
43     return true;
44 }
45
46 void BacklogSettingsPage::defaults()
47 {
48     ui.requesterType->setCurrentIndex(BacklogRequester::PerBufferUnread - 1);
49
50     SettingsPage::defaults();
51 }
52
53 void BacklogSettingsPage::load()
54 {
55     BacklogSettings backlogSettings;
56     int index = backlogSettings.requesterType() - 1;
57     ui.requesterType->setProperty("storedValue", index);
58     ui.requesterType->setCurrentIndex(index);
59
60     SettingsPage::load();
61 }
62
63 void BacklogSettingsPage::save()
64 {
65     BacklogSettings backlogSettings;
66     backlogSettings.setRequesterType(ui.requesterType->currentIndex() + 1);
67     ui.requesterType->setProperty("storedValue", ui.requesterType->currentIndex());
68
69     SettingsPage::save();
70 }
71
72 void BacklogSettingsPage::widgetHasChanged()
73 {
74     setChangedState(ui.requesterType->currentIndex() != ui.requesterType->property("storedValue").toInt());
75 }