cmake: avoid de-duplication of user's CXXFLAGS
[quassel.git] / src / common / networkconfig.h
index 85d1f56..3a85d48 100644 (file)
@@ -1,5 +1,5 @@
 /***************************************************************************
- *   Copyright (C) 2005-2018 by the Quassel Project                        *
+ *   Copyright (C) 2005-2022 by the Quassel Project                        *
  *   devel@quassel-irc.org                                                 *
  *                                                                         *
  *   This program is free software; you can redistribute it and/or modify  *
@@ -38,8 +38,8 @@ class COMMON_EXPORT NetworkConfig : public SyncableObject
     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);
+public:
+    NetworkConfig(const QString& objectName = "GlobalNetworkConfig", QObject* parent = nullptr);
 
 public slots:
     inline bool pingTimeoutEnabled() const { return _pingTimeoutEnabled; }
@@ -72,35 +72,34 @@ public slots:
 
     inline bool standardCtcp() const { return _standardCtcp; }
     void setStandardCtcp(bool);
-    virtual inline void requestSetStandardCtcp(bool b) { REQUEST(ARG(b)) }
+    virtual inline void requestSetStandardCtcp(bool b){REQUEST(ARG(b))}
 
-signals:
-    void pingTimeoutEnabledSet(bool);
+    signals : void pingTimeoutEnabledSet(bool);
     void pingIntervalSet(int);
-//   void maxPingCountSet(int);
+    //   void maxPingCountSet(int);
     void autoWhoEnabledSet(bool);
     void autoWhoIntervalSet(int);
-//   void autoWhoNickLimitSet(int);
+    //   void autoWhoNickLimitSet(int);
     void autoWhoDelaySet(int);
     void standardCtcpSet(bool);
 
-//   void setPingTimeoutEnabledRequested(bool);
-//   void setPingIntervalRequested(int);
-//   void setMaxPingCountRequested(int);
-//   void setAutoWhoEnabledRequested(bool);
-//   void setAutoWhoIntervalRequested(int);
-//   void setAutoWhoNickLimitRequested(int);
-//   void setAutoWhoDelayRequested(int);
+    //   void setPingTimeoutEnabledRequested(bool);
+    //   void setPingIntervalRequested(int);
+    //   void setMaxPingCountRequested(int);
+    //   void setAutoWhoEnabledRequested(bool);
+    //   void setAutoWhoIntervalRequested(int);
+    //   void setAutoWhoNickLimitRequested(int);
+    //   void setAutoWhoDelayRequested(int);
 
 private:
-    bool _pingTimeoutEnabled;
-    int _pingInterval;
-    int _maxPingCount;
+    bool _pingTimeoutEnabled{true};
+    int _pingInterval{30};
+    int _maxPingCount{6};
 
-    bool _autoWhoEnabled;
-    int _autoWhoInterval;
-    int _autoWhoNickLimit;
-    int _autoWhoDelay;
+    bool _autoWhoEnabled{true};
+    int _autoWhoInterval{90};
+    int _autoWhoNickLimit{200};
+    int _autoWhoDelay{5};
 
-    bool _standardCtcp;
+    bool _standardCtcp{false};
 };