X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcommon%2Fnetworkconfig.h;h=d1d10b965efd0443fe92bad3c20d7cb698f1ec89;hp=ae121aa518ecd816f40ee3164794dcc706f19ca4;hb=158443f71d48215eea8b47b836b61afd77654b78;hpb=76db8cdfbeffaaba359c8e80cf2146da9e9e7f8a diff --git a/src/common/networkconfig.h b/src/common/networkconfig.h index ae121aa5..d1d10b96 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 * @@ -18,15 +18,16 @@ * 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) @@ -38,9 +39,7 @@ class NetworkConfig : public SyncableObject 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; } @@ -94,17 +93,14 @@ signals: // 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}; }; - - -#endif