Make monolithic client work again
[quassel.git] / src / client / clientsettings.h
1 /***************************************************************************
2  *   Copyright (C) 2005-09 by the Quassel Project                          *
3  *   devel@quassel-irc.org                                                 *
4  *                                                                         *
5  *   This program is free software; you can redistribute it and/or modify  *
6  *   it under the terms of the GNU General Public License as published by  *
7  *   the Free Software Foundation; either version 2 of the License, or     *
8  *   (at your option) version 3.                                           *
9  *                                                                         *
10  *   This program is distributed in the hope that it will be useful,       *
11  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
12  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
13  *   GNU General Public License for more details.                          *
14  *                                                                         *
15  *   You should have received a copy of the GNU General Public License     *
16  *   along with this program; if not, write to the                         *
17  *   Free Software Foundation, Inc.,                                       *
18  *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
19  ***************************************************************************/
20
21 #ifndef CLIENTSETTINGS_H
22 #define CLIENTSETTINGS_H
23
24 #include "settings.h"
25
26 #include "types.h"
27
28 class QHostAddress;
29 class QSslSocket;
30
31 class ClientSettings : public Settings {
32 public:
33   virtual ~ClientSettings();
34
35 protected:
36   ClientSettings(QString group = "General");
37 };
38
39 // ========================================
40 //  CoreAccountSettings
41 // ========================================
42
43 // Deriving from CoreAccountSettings:
44 // MySettings() : CoreAccountSettings("MyGroup") {};
45 // Then use accountValue() / setAccountValue() to retrieve/store data associated to the currently
46 // connected account. This is stored in CoreAccounts/$ACCID/MyGroup/$KEY) then.
47 //
48 // Note that you'll get invalid data (and setting is ignored) if you are not connected to a core!
49
50 class CoreAccountSettings : public ClientSettings {
51 public:
52   // stores account-specific data in CoreAccounts/$ACCID/$SUBGROUP/$KEY)
53   CoreAccountSettings(const QString &subgroup = "General");
54
55   virtual void notify(const QString &key, QObject *receiver, const char *slot);
56
57   QList<AccountId> knownAccounts();
58   AccountId lastAccount();
59   void setLastAccount(AccountId);
60   AccountId autoConnectAccount();
61   void setAutoConnectAccount(AccountId);
62   bool autoConnectOnStartup();
63   void setAutoConnectOnStartup(bool);
64   bool autoConnectToFixedAccount();
65   void setAutoConnectToFixedAccount(bool);
66
67   void clearAccounts();
68
69   void storeAccountData(AccountId id, const QVariantMap &data);
70   QVariantMap retrieveAccountData(AccountId);
71   void removeAccount(AccountId);
72
73   void setJumpKeyMap(const QHash<int, BufferId> &keyMap);
74   QHash<int, BufferId> jumpKeyMap();
75
76 protected:
77   void setAccountValue(const QString &key, const QVariant &data);
78   QVariant accountValue(const QString &key, const QVariant &def = QVariant());
79
80 private:
81   QString _subgroup;
82 };
83
84 // ========================================
85 //  NotificationSettings
86 // ========================================
87 class NotificationSettings : public ClientSettings {
88 public:
89   enum HighlightNickType {
90     NoNick = 0x00,
91     CurrentNick= 0x01,
92     AllNicks = 0x02
93   };
94
95   NotificationSettings();
96
97   inline void setValue(const QString &key, const QVariant &data) { setLocalValue(key, data); }
98   inline QVariant value(const QString &key, const QVariant &def = QVariant()) { return localValue(key, def); }
99   inline void remove(const QString &key) { removeLocalKey(key); }
100
101   void setHighlightList(const QVariantList &highlightList);
102   QVariantList highlightList();
103
104   void setHighlightNick(HighlightNickType);
105   HighlightNickType highlightNick();
106
107   void setNicksCaseSensitive(bool);
108   bool nicksCaseSensitive();
109 };
110
111
112 // ========================================
113 //  KnownHostsSettings
114 // ========================================
115 class KnownHostsSettings : public ClientSettings {
116 public:
117   KnownHostsSettings();
118
119   QByteArray knownDigest(const QHostAddress &address);
120   void saveKnownHost(const QHostAddress &address, const QByteArray &certDigest);
121   bool isKnownHost(const QHostAddress &address, const QByteArray &certDigest);
122
123 #ifdef HAVE_SSL
124   QByteArray knownDigest(const QSslSocket *socket);
125   void saveKnownHost(const QSslSocket *socket);
126   bool isKnownHost(const QSslSocket *socket);
127 #endif
128 };
129
130 // ========================================
131 // TabCompletionSettings
132 // ========================================
133
134 class TabCompletionSettings : public ClientSettings {
135 public:
136   enum SortMode {
137     Alphabetical,
138     LastActivity
139   };
140
141   TabCompletionSettings();
142
143   void setCompletionSuffix(const QString &);
144   QString completionSuffix();
145
146   void setSortMode(SortMode);
147   SortMode sortMode();
148
149   void setCaseSensitivity(Qt::CaseSensitivity);
150   Qt::CaseSensitivity caseSensitivity();
151
152   void setUseLastSpokenTo(bool);
153   bool useLastSpokenTo();
154
155 };
156
157 // ========================================
158 // ItemViewSettings
159 // ========================================
160 class ItemViewSettings : public ClientSettings {
161   public:
162     ItemViewSettings(const QString& group = "ItemViews");
163
164     bool displayTopicInTooltip();
165     bool mouseWheelChangesBuffer();
166 };
167
168 #endif