cmake: avoid de-duplication of user's CXXFLAGS
[quassel.git] / src / client / backlogsettings.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 "backlogsettings.h"
22
23 BacklogSettings::BacklogSettings()
24     : ClientSettings("Backlog")
25 {}
26
27 int BacklogSettings::requesterType() const
28 {
29     return localValue("RequesterType", BacklogRequester::PerBufferUnread).toInt();
30 }
31
32 void BacklogSettings::setRequesterType(int requesterType)
33 {
34     setLocalValue("RequesterType", requesterType);
35 }
36
37 int BacklogSettings::dynamicBacklogAmount() const
38 {
39     return localValue("DynamicBacklogAmount", 200).toInt();
40 }
41
42 void BacklogSettings::setDynamicBacklogAmount(int amount)
43 {
44     return setLocalValue("DynamicBacklogAmount", amount);
45 }
46
47 int BacklogSettings::fixedBacklogAmount() const
48 {
49     return localValue("FixedBacklogAmount", 500).toInt();
50 }
51
52 void BacklogSettings::setFixedBacklogAmount(int amount)
53 {
54     return setLocalValue("FixedBacklogAmount", amount);
55 }
56
57 int BacklogSettings::globalUnreadBacklogLimit() const
58 {
59     return localValue("GlobalUnreadBacklogLimit", 5000).toInt();
60 }
61
62 void BacklogSettings::setGlobalUnreadBacklogLimit(int limit)
63 {
64     return setLocalValue("GlobalUnreadBacklogLimit", limit);
65 }
66
67 int BacklogSettings::globalUnreadBacklogAdditional() const
68 {
69     return localValue("GlobalUnreadBacklogAdditional", 100).toInt();
70 }
71
72 void BacklogSettings::setGlobalUnreadBacklogAdditional(int additional)
73 {
74     return setLocalValue("GlobalUnreadBacklogAdditional", additional);
75 }
76
77 int BacklogSettings::perBufferUnreadBacklogLimit() const
78 {
79     return localValue("PerBufferUnreadBacklogLimit", 200).toInt();
80 }
81
82 void BacklogSettings::setPerBufferUnreadBacklogLimit(int limit)
83 {
84     return setLocalValue("PerBufferUnreadBacklogLimit", limit);
85 }
86
87 int BacklogSettings::perBufferUnreadBacklogAdditional() const
88 {
89     return localValue("PerBufferUnreadBacklogAdditional", 50).toInt();
90 }
91
92 void BacklogSettings::setPerBufferUnreadBacklogAdditional(int additional)
93 {
94     return setLocalValue("PerBufferUnreadBacklogAdditional", additional);
95 }