fixing crash on disconnect
[quassel.git] / src / client / clientsettings.h
index 4b2e4e9..aa0f0d6 100644 (file)
@@ -1,11 +1,11 @@
 /***************************************************************************
- *   Copyright (C) 2005-07 by The Quassel IRC Development Team             *
+ *   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) any later version.                                   *
+ *   (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        *
  *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
  ***************************************************************************/
 
-#ifndef _CLIENTSETTINGS_H_
-#define _CLIENTSETTINGS_H_
+#ifndef CLIENTSETTINGS_H
+#define CLIENTSETTINGS_H
 
 #include "settings.h"
 
+#include "types.h"
+
+class QHostAddress;
+class QSslSocket;
+
 class ClientSettings : public Settings {
+public:
+  virtual ~ClientSettings();
+
+protected:
+  ClientSettings(QString group = "General");
+};
+
+// ========================================
+//  CoreAccountSettings
+// ========================================
+
+// Deriving from CoreAccountSettings:
+// MySettings() : CoreAccountSettings("MyGroup") {};
+// Then use accountValue() / setAccountValue() to retrieve/store data associated to the currently
+// connected account. This is stored in CoreAccounts/$ACCID/MyGroup/$KEY) then.
+//
+// Note that you'll get invalid data (and setting is ignored) if you are not connected to a core!
+
+class CoreAccountSettings : public ClientSettings {
+public:
+  // stores account-specific data in CoreAccounts/$ACCID/$SUBGROUP/$KEY)
+  CoreAccountSettings(const QString &subgroup = "General");
+
+  virtual void notify(const QString &key, QObject *receiver, const char *slot);
 
-  public:
-    virtual ~ClientSettings();
+  QList<AccountId> knownAccounts();
+  AccountId lastAccount();
+  void setLastAccount(AccountId);
+  AccountId autoConnectAccount();
+  void setAutoConnectAccount(AccountId);
 
-  protected:
-    ClientSettings(QString group = "General");
+  void storeAccountData(AccountId id, const QVariantMap &data);
+  QVariantMap retrieveAccountData(AccountId);
+  void removeAccount(AccountId);
 
-    //virtual QStringList allSessionKeys() = 0;
-    virtual QStringList sessionKeys();
+  void setJumpKeyMap(const QHash<int, BufferId> &keyMap);
+  QHash<int, BufferId> jumpKeyMap();
 
-    virtual void setSessionValue(const QString &key, const QVariant &data);
-    virtual QVariant sessionValue(const QString &key, const QVariant &def = QVariant());
+protected:
+  void setAccountValue(const QString &key, const QVariant &data);
+  QVariant accountValue(const QString &key, const QVariant &def = QVariant());
 
+private:
+  QString _subgroup;
 };
 
-class AccountSettings : public ClientSettings {
+// ========================================
+//  NotificationSettings
+// ========================================
+class NotificationSettings : public ClientSettings {
+public:
+  enum HighlightNickType {
+    NoNick = 0x00,
+    CurrentNick= 0x01,
+    AllNicks = 0x02
+  };
 
-  public:
-    AccountSettings();
+  NotificationSettings();
 
-    QStringList knownAccounts();
-    QString lastAccount();
-    void setLastAccount(const QString &account);
-    QString autoConnectAccount();
-    void setAutoConnectAccount(const QString &account);
+  inline void setValue(const QString &key, const QVariant &data) { setLocalValue(key, data); }
+  inline QVariant value(const QString &key, const QVariant &def = QVariant()) { return localValue(key, def); }
+  inline void remove(const QString &key) { removeLocalKey(key); }
 
-    void setValue(const QString &account, const QString &key, const QVariant &data);
-    QVariant value(const QString &account, const QString &key, const QVariant &def = QVariant());
-    void removeAccount(const QString &account);
+  void setHighlightList(const QVariantList &highlightList);
+  QVariantList highlightList();
 
+  void setHighlightNick(HighlightNickType);
+  HighlightNickType highlightNick();
+
+  void setNicksCaseSensitive(bool);
+  bool nicksCaseSensitive();
+};
+
+
+// ========================================
+//  KnownHostsSettings
+// ========================================
+class KnownHostsSettings : public ClientSettings {
+public:
+  KnownHostsSettings();
+
+  QByteArray knownDigest(const QHostAddress &address);
+  void saveKnownHost(const QHostAddress &address, const QByteArray &certDigest);
+  bool isKnownHost(const QHostAddress &address, const QByteArray &certDigest);
+
+#ifdef HAVE_SSL
+  QByteArray knownDigest(const QSslSocket *socket);
+  void saveKnownHost(const QSslSocket *socket);
+  bool isKnownHost(const QSslSocket *socket);
+#endif
 };
 
 #endif