X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcommon%2Fnetworkconfig.h;h=a16a3faa5978a40f1a44c761e17d175637c5c58a;hp=3d18077bb9609d2a8f09fc09cdbb233e5dc8410e;hb=c27d5bfbe80bfeb583a25404f4ccee4b70b010e0;hpb=4a5065255e652dd0c301bac0db41b7afb777ef49 diff --git a/src/common/networkconfig.h b/src/common/networkconfig.h index 3d18077b..a16a3faa 100644 --- a/src/common/networkconfig.h +++ b/src/common/networkconfig.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2013 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 * @@ -35,6 +35,7 @@ class NetworkConfig : public SyncableObject Q_PROPERTY(int autoWhoInterval READ autoWhoInterval WRITE setAutoWhoInterval) Q_PROPERTY(int autoWhoNickLimit READ autoWhoNickLimit WRITE setAutoWhoNickLimit) Q_PROPERTY(int autoWhoDelay READ autoWhoDelay WRITE setAutoWhoDelay) + Q_PROPERTY(bool standardCtcp READ standardCtcp WRITE setStandardCtcp) public : NetworkConfig(const QString &objectName = "GlobalNetworkConfig", QObject *parent = 0); @@ -70,6 +71,10 @@ public slots: void setAutoWhoDelay(int); virtual inline void requestSetAutoWhoDelay(int i) { REQUEST(ARG(i)) } + inline bool standardCtcp() const { return _standardCtcp; } + void setStandardCtcp(bool); + virtual inline void requestSetStandardCtcp(bool b) { REQUEST(ARG(b)) } + signals: void pingTimeoutEnabledSet(bool); void pingIntervalSet(int); @@ -78,6 +83,7 @@ signals: void autoWhoIntervalSet(int); // void autoWhoNickLimitSet(int); void autoWhoDelaySet(int); + void standardCtcpSet(bool); // void setPingTimeoutEnabledRequested(bool); // void setPingIntervalRequested(int); @@ -96,6 +102,8 @@ private: int _autoWhoInterval; int _autoWhoNickLimit; int _autoWhoDelay; + + bool _standardCtcp; };