X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcommon%2Fnetworkconfig.cpp;h=eb789664acc8e3163a58060462c5f44177eaba09;hp=92176e2ee4796fc4957a7f8aff14540979e84f13;hb=c1cf157116de7fc3da96203aa6f03c38c7ebb650;hpb=694f9bfbf7f1af19108461c7e00d133e55082bce diff --git a/src/common/networkconfig.cpp b/src/common/networkconfig.cpp index 92176e2e..eb789664 100644 --- a/src/common/networkconfig.cpp +++ b/src/common/networkconfig.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-09 by the Quassel Project * + * Copyright (C) 2005-2018 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -15,24 +15,14 @@ * You should have received a copy of the GNU General Public License * * along with this program; if not, write to the * * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ #include "networkconfig.h" -INIT_SYNCABLE_OBJECT(NetworkConfig) -NetworkConfig::NetworkConfig(const QString &objectName, QObject *parent) - : SyncableObject(objectName, parent), - _pingTimeoutEnabled(true), - _pingInterval(30), - _maxPingCount(6), - _autoWhoEnabled(true), - _autoWhoInterval(90), - _autoWhoNickLimit(200), - _autoWhoDelay(5) -{ -} - +NetworkConfig::NetworkConfig(const QString& objectName, QObject* parent) + : SyncableObject(objectName, parent) +{} void NetworkConfig::setPingTimeoutEnabled(bool enabled) { @@ -44,7 +34,6 @@ void NetworkConfig::setPingTimeoutEnabled(bool enabled) emit pingTimeoutEnabledSet(enabled); } - void NetworkConfig::setPingInterval(int interval) { if (_pingInterval == interval) @@ -55,7 +44,6 @@ void NetworkConfig::setPingInterval(int interval) emit pingIntervalSet(interval); } - void NetworkConfig::setMaxPingCount(int count) { if (_maxPingCount == count) @@ -65,7 +53,6 @@ void NetworkConfig::setMaxPingCount(int count) SYNC(ARG(count)) } - void NetworkConfig::setAutoWhoEnabled(bool enabled) { if (_autoWhoEnabled == enabled) @@ -76,7 +63,6 @@ void NetworkConfig::setAutoWhoEnabled(bool enabled) emit autoWhoEnabledSet(enabled); } - void NetworkConfig::setAutoWhoInterval(int interval) { if (_autoWhoInterval == interval) @@ -87,7 +73,6 @@ void NetworkConfig::setAutoWhoInterval(int interval) emit autoWhoIntervalSet(interval); } - void NetworkConfig::setAutoWhoNickLimit(int nickLimit) { if (_autoWhoNickLimit == nickLimit) @@ -97,7 +82,6 @@ void NetworkConfig::setAutoWhoNickLimit(int nickLimit) SYNC(ARG(nickLimit)) } - void NetworkConfig::setAutoWhoDelay(int delay) { if (_autoWhoDelay == delay) @@ -107,3 +91,13 @@ void NetworkConfig::setAutoWhoDelay(int delay) SYNC(ARG(delay)) emit autoWhoDelaySet(delay); } + +void NetworkConfig::setStandardCtcp(bool enabled) +{ + if (_standardCtcp == enabled) + return; + + _standardCtcp = enabled; + SYNC(ARG(enabled)) + emit standardCtcpSet(enabled); +}