Tuned the settings dialog a bit, mostly fixing the layout problems we had and adding
[quassel.git] / src / client / client.h
1 /***************************************************************************
2  *   Copyright (C) 2005-07 by The Quassel IRC Development 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
28 #include "buffer.h"
29 #include "message.h"
30 #include "proxy_common.h"
31
32 class AbstractUi;
33 class ClientProxy;
34 class BufferTreeModel;
35 class QtGui;
36
37 class QTimer;
38
39 class Client : public QObject {
40   Q_OBJECT
41
42   public:
43     static Client *instance();
44     static void init(AbstractUi *);
45     static void destroy();
46
47     static QList<BufferId> allBufferIds();
48     static Buffer *buffer(BufferId);
49     static BufferId statusBufferId(QString net);
50     static BufferId bufferId(QString net, QString buf);
51
52     static BufferTreeModel *bufferModel();
53
54     static AbstractUiMsg *layoutMsg(const Message &);
55
56     static bool isConnected();
57
58     static void storeSessionData(const QString &key, const QVariant &data);
59     static QVariant retrieveSessionData(const QString &key, const QVariant &def = QVariant());
60     static QStringList sessionDataKeys();
61
62   signals:
63     void sendInput(BufferId, QString message);
64     void showBuffer(Buffer *);
65     void bufferSelected(Buffer *);
66     void bufferUpdated(Buffer *);
67     void bufferActivity(Buffer::ActivityLevel, Buffer *);
68     void bufferDestroyed(Buffer *);
69     void backlogReceived(Buffer *, QList<Message>);
70     void requestBacklog(BufferId, QVariant, QVariant);
71     void requestNetworkStates();
72
73     void recvPartialItem(quint32 avail, quint32 size);
74     void coreConnectionError(QString errorMsg);
75     void coreConnectionMsg(const QString &msg);
76     void coreConnectionProgress(uint part, uint total);
77
78     void connected();
79     void disconnected();
80
81     void sessionDataChanged(const QString &key);
82     void sessionDataChanged(const QString &key, const QVariant &data);
83     void sendSessionData(const QString &key, const QVariant &data);
84
85   public slots:
86     //void selectBuffer(Buffer *);
87     //void connectToLocalCore();
88     void connectToCore(const VarMap &);
89     void disconnectFromCore();
90
91   private slots:
92     void recvSessionData(const QString &key, const QVariant &data);
93     void recvProxySignal(ClientSignal sig, QVariant arg1, QVariant arg2, QVariant arg3);
94
95     void serverError(QAbstractSocket::SocketError);
96     void serverHasData();
97     void coreConnected();
98     void coreDisconnected();
99
100     void userInput(BufferId, QString);
101     void networkConnected(QString);
102     void networkDisconnected(QString);
103     void recvNetworkState(QString, QVariant);
104     void recvMessage(const Message &message);
105     void recvStatusMsg(QString network, QString message);
106     void setTopic(QString net, QString buf, QString);
107     void addNick(QString net, QString nick, VarMap props);
108     void removeNick(QString net, QString nick);
109     void renameNick(QString net, QString oldnick, QString newnick);
110     void updateNick(QString net, QString nick, VarMap props);
111     void setOwnNick(QString net, QString nick);
112     void recvBacklogData(BufferId, const QList<QVariant> &, bool);
113     void updateBufferId(BufferId);
114
115     void layoutMsg();
116
117   private:
118     Client();
119     ~Client();
120     void init();
121     static Client *instanceptr;
122
123     void syncToCore();
124     QVariant connectToLocalCore(QString user, QString passwd);  // defined in main.cpp
125     void disconnectFromLocalCore();                             // defined in main.cpp
126
127     enum ClientMode { LocalCore, RemoteCore };
128     static ClientMode clientMode;
129
130     AbstractUi *mainUi;
131     ClientProxy *clientProxy;
132     BufferTreeModel *_bufferModel;
133
134     QTcpSocket socket;
135     quint32 blockSize;
136
137     static bool connectedToCore;
138     static VarMap coreConnectionInfo;
139     static QHash<BufferId, Buffer *> buffers;
140     static QHash<uint, BufferId> bufferIds;
141     static QHash<QString, QHash<QString, VarMap> > nicks;
142     static QHash<QString, bool> netConnected;
143     static QStringList netsAwaitingInit;
144     static QHash<QString, QString> ownNick;
145
146     QTimer *layoutTimer;
147     QList<Buffer *> layoutQueue;
148
149     VarMap sessionData;
150 };
151
152 #endif