Various stuff, cosmetic fixes, fiddling with IrcUsers and NetworkInfos in Buffers.
[quassel.git] / src / client / client.h
1 /***************************************************************************
2  *   Copyright (C) 2005-07 by the Quassel IRC Team                         *
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) any later version.                                   *
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 _CLIENT_H_
22 #define _CLIENT_H_
23
24 #include <QAbstractSocket>
25 #include <QTcpSocket>
26 #include <QList>
27 #include <QPointer>
28
29 #include "buffer.h" // needed for activity lvl
30 class BufferInfo;
31 class Message;
32
33 class NetworkInfo;
34
35
36 class AbstractUi;
37 class AbstractUiMsg;
38 class BufferTreeModel;
39 class SignalProxy;
40
41 class QTimer;
42
43
44 class Client : public QObject {
45   Q_OBJECT
46
47 public:
48   static Client *instance();
49   static void destroy();
50   static void init(AbstractUi *);
51
52   static QList<NetworkInfo *> networkInfos();
53   static NetworkInfo *networkInfo(uint networkid);
54
55   static QList<BufferInfo> allBufferInfos();
56   static QList<Buffer *> buffers();
57   static Buffer *buffer(uint bufferUid);
58   static Buffer *buffer(BufferInfo);
59   static BufferInfo statusBufferInfo(QString net);
60   static BufferInfo bufferInfo(QString net, QString buf);
61
62   static BufferTreeModel *bufferModel();
63   static SignalProxy *signalProxy();
64
65   static AbstractUiMsg *layoutMsg(const Message &);
66
67   static bool isConnected();
68
69   static void fakeInput(uint bufferUid, QString message);
70   static void fakeInput(BufferInfo bufferInfo, QString message);
71
72   static void storeSessionData(const QString &key, const QVariant &data);
73   static QVariant retrieveSessionData(const QString &key, const QVariant &def = QVariant());
74   static QStringList sessionDataKeys();
75
76   enum ClientMode { LocalCore, RemoteCore };
77
78 signals:
79   void sendInput(BufferInfo, QString message);
80   void showBuffer(Buffer *);
81   void bufferSelected(Buffer *);
82   void bufferUpdated(Buffer *);
83   void bufferActivity(Buffer::ActivityLevel, Buffer *);
84   void backlogReceived(Buffer *, QList<Message>);
85   void requestBacklog(BufferInfo, QVariant, QVariant);
86   void requestNetworkStates();
87
88   void recvPartialItem(uint avail, uint size);
89   void coreConnectionError(QString errorMsg);
90   void coreConnectionMsg(const QString &msg);
91   void coreConnectionProgress(uint part, uint total);
92
93   void showConfigWizard(const QVariantMap &coredata);
94
95   void connected();
96   void disconnected();
97
98   void sessionDataChanged(const QString &key);
99   void sessionDataChanged(const QString &key, const QVariant &data);
100   void sendSessionData(const QString &key, const QVariant &data);
101
102 public slots:
103   //void selectBuffer(Buffer *);
104   //void connectToLocalCore();
105   void connectToCore(const QVariantMap &);
106   void disconnectFromCore();
107
108   void setCoreConfiguration(const QVariantMap &settings);
109
110 private slots:
111   void recvCoreState(const QVariant &state);
112   void recvSessionData(const QString &key, const QVariant &data);
113
114   void coreSocketError(QAbstractSocket::SocketError);
115   void coreHasData();
116   void coreSocketConnected();
117   void coreSocketDisconnected();
118
119   void userInput(BufferInfo, QString);
120
121   void networkConnected(uint);
122   void networkDisconnected(uint);
123
124   void updateCoreConnectionProgress();
125   void recvMessage(const Message &message);
126   void recvStatusMsg(QString network, QString message);
127   void recvBacklogData(BufferInfo, QVariantList, bool);
128   void updateBufferInfo(BufferInfo);
129
130   void layoutMsg();
131
132 private slots:
133   void bufferDestroyed();
134   void networkInfoDestroyed();
135   void ircChannelAdded(QString);
136
137 private:
138   Client(QObject *parent = 0);
139   virtual ~Client();
140   void init();
141
142   void syncToCore(const QVariant &coreState);
143
144   static QPointer<Client> instanceptr;
145
146   QPointer<QIODevice> socket;
147   QPointer<SignalProxy> _signalProxy;
148   QPointer<AbstractUi> mainUi;
149   QPointer<BufferTreeModel> _bufferModel;
150
151   ClientMode clientMode;
152
153   quint32 blockSize;
154   bool connectedToCore;
155
156   QVariantMap coreConnectionInfo;
157   QHash<uint, Buffer *> _buffers;
158   QHash<uint, NetworkInfo*> _networkInfo;
159
160   QTimer *layoutTimer;
161   QList<Buffer *> layoutQueue;
162
163   QVariantMap sessionData;
164
165
166 };
167
168 #endif