Make ping timeouts and auto-WHO configurable
[quassel.git] / src / common / networkconfig.h
diff --git a/src/common/networkconfig.h b/src/common/networkconfig.h
new file mode 100644 (file)
index 0000000..8f61363
--- /dev/null
@@ -0,0 +1,98 @@
+/***************************************************************************
+ *   Copyright (C) 2005-09 by the Quassel Project                          *
+ *   devel@quassel-irc.org                                                 *
+ *                                                                         *
+ *   This program is free software; you can redistribute it and/or modify  *
+ *   it under the terms of the GNU General Public License as published by  *
+ *   the Free Software Foundation; either version 2 of the License, or     *
+ *   (at your option) version 3.                                           *
+ *                                                                         *
+ *   This program is distributed in the hope that it will be useful,       *
+ *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
+ *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
+ *   GNU General Public License for more details.                          *
+ *                                                                         *
+ *   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.             *
+ ***************************************************************************/
+
+#ifndef NETWORKCONFIG_H_
+#define NETWORKCONFIG_H_
+
+#include "syncableobject.h"
+
+class NetworkConfig : public SyncableObject {
+  Q_OBJECT
+  Q_PROPERTY(bool pingTimeoutEnabled READ pingTimeoutEnabled WRITE setPingTimeoutEnabled)
+  Q_PROPERTY(int pingInterval READ pingInterval WRITE setPingInterval)
+  Q_PROPERTY(int maxPingCount READ maxPingCount WRITE setMaxPingCount)
+  Q_PROPERTY(bool autoWhoEnabled READ autoWhoEnabled WRITE setAutoWhoEnabled)
+  Q_PROPERTY(int autoWhoInterval READ autoWhoInterval WRITE setAutoWhoInterval)
+  Q_PROPERTY(int autoWhoNickLimit READ autoWhoNickLimit WRITE setAutoWhoNickLimit)
+  Q_PROPERTY(int autoWhoDelay READ autoWhoDelay WRITE setAutoWhoDelay)
+
+public:
+  NetworkConfig(const QString &objectName = "GlobalNetworkConfig", QObject *parent = 0);
+
+  inline virtual const QMetaObject *syncMetaObject() const { return &staticMetaObject; }
+
+public slots:
+  inline bool pingTimeoutEnabled() const { return _pingTimeoutEnabled; }
+  void setPingTimeoutEnabled(bool);
+  virtual inline void requestSetPingTimeoutEnabled(bool b) { emit setPingTimeoutEnabledRequested(b); }
+
+  inline int pingInterval() const { return _pingInterval; }
+  void setPingInterval(int);
+  virtual inline void requestSetPingInterval(int i) { emit setPingIntervalRequested(i); }
+
+  inline int maxPingCount() const { return _maxPingCount; }
+  void setMaxPingCount(int);
+  virtual inline void requestSetMaxPingCount(int i) { emit setMaxPingCountRequested(i); }
+
+  inline bool autoWhoEnabled() const { return _autoWhoEnabled; }
+  void setAutoWhoEnabled(bool);
+  virtual inline void requestSetAutoWhoEnabled(bool b) { emit setAutoWhoEnabledRequested(b); }
+
+  inline int autoWhoInterval() const { return _autoWhoInterval; }
+  void setAutoWhoInterval(int);
+  virtual inline void requestSetAutoWhoInterval(int i) { emit setAutoWhoIntervalRequested(i); }
+
+  inline int autoWhoNickLimit() const { return _autoWhoNickLimit; }
+  void setAutoWhoNickLimit(int);
+  virtual inline void requestSetAutoWhoNickLimit(int i) { emit setAutoWhoNickLimitRequested(i); }
+
+  inline int autoWhoDelay() const { return _autoWhoDelay; }
+  void setAutoWhoDelay(int);
+  virtual inline void requestSetAutoWhoDelay(int i) { emit setAutoWhoDelayRequested(i); }
+
+signals:
+  void pingTimeoutEnabledSet(bool);
+  void pingIntervalSet(int);
+  void maxPingCountSet(int);
+  void autoWhoEnabledSet(bool);
+  void autoWhoIntervalSet(int);
+  void autoWhoNickLimitSet(int);
+  void autoWhoDelaySet(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 _autoWhoEnabled;
+  int _autoWhoInterval;
+  int _autoWhoNickLimit;
+  int _autoWhoDelay;
+};
+
+#endif