cmake: avoid de-duplication of user's CXXFLAGS
[quassel.git] / src / qtui / settingspages / backlogsettingspage.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005-2022 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(3);
37     // If modifying ui.requesterType's item list, set to the index of "Globally unread messages"
38
39     connectToWidgetChangedSignal(ui.requesterType, this, &BacklogSettingsPage::widgetHasChanged);
40 }
41
42 bool BacklogSettingsPage::hasDefaults() const
43 {
44     return true;
45 }
46
47 void BacklogSettingsPage::defaults()
48 {
49     ui.requesterType->setCurrentIndex(BacklogRequester::AsNeeded - 1);
50
51     SettingsPage::defaults();
52 }
53
54 void 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 void BacklogSettingsPage::save()
65 {
66     BacklogSettings backlogSettings;
67     backlogSettings.setRequesterType(ui.requesterType->currentIndex() + 1);
68     ui.requesterType->setProperty("storedValue", ui.requesterType->currentIndex());
69
70     SettingsPage::save();
71 }
72
73 void BacklogSettingsPage::widgetHasChanged()
74 {
75     setChangedState(ui.requesterType->currentIndex() != ui.requesterType->property("storedValue").toInt());
76 }