modernize: Prefer default member init over ctor init
[quassel.git] / src / common / networkconfig.h
index 3d18077..d1d10b9 100644 (file)
@@ -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  *
  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.         *
  ***************************************************************************/
 
-#ifndef NETWORKCONFIG_H_
-#define NETWORKCONFIG_H_
+#pragma once
+
+#include "common-export.h"
 
 #include "syncableobject.h"
 
-class NetworkConfig : public SyncableObject
+class COMMON_EXPORT NetworkConfig : public SyncableObject
 {
-    SYNCABLE_OBJECT
     Q_OBJECT
+    SYNCABLE_OBJECT
 
     Q_PROPERTY(bool pingTimeoutEnabled READ pingTimeoutEnabled WRITE setPingTimeoutEnabled)
     Q_PROPERTY(int pingInterval READ pingInterval WRITE setPingInterval)
@@ -35,11 +36,10 @@ 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);
-
-    inline virtual const QMetaObject *syncMetaObject() const { return &staticMetaObject; }
+    NetworkConfig(const QString &objectName = "GlobalNetworkConfig", QObject *parent = nullptr);
 
 public slots:
     inline bool pingTimeoutEnabled() const { return _pingTimeoutEnabled; }
@@ -70,6 +70,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 +82,7 @@ signals:
     void autoWhoIntervalSet(int);
 //   void autoWhoNickLimitSet(int);
     void autoWhoDelaySet(int);
+    void standardCtcpSet(bool);
 
 //   void setPingTimeoutEnabledRequested(bool);
 //   void setPingIntervalRequested(int);
@@ -88,15 +93,14 @@ signals:
 //   void setAutoWhoDelayRequested(int);
 
 private:
-    bool _pingTimeoutEnabled;
-    int _pingInterval;
-    int _maxPingCount;
-
-    bool _autoWhoEnabled;
-    int _autoWhoInterval;
-    int _autoWhoNickLimit;
-    int _autoWhoDelay;
-};
+    bool _pingTimeoutEnabled{true};
+    int _pingInterval{30};
+    int _maxPingCount{6};
 
+    bool _autoWhoEnabled{true};
+    int _autoWhoInterval{90};
+    int _autoWhoNickLimit{200};
+    int _autoWhoDelay{5};
 
-#endif
+    bool _standardCtcp{false};
+};