Fixed linker error caused by not running MOC on ircuser.h.
[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
61   signals:
62     void sendInput(BufferId, QString message);
63     void showBuffer(Buffer *);
64     void bufferSelected(Buffer *);
65     void bufferUpdated(Buffer *);
66     void bufferActivity(Buffer::ActivityLevel, Buffer *);
67     void bufferDestroyed(Buffer *);
68     void backlogReceived(Buffer *, QList<Message>);
69     void requestBacklog(BufferId, QVariant, QVariant);
70     void requestNetworkStates();
71
72     void recvPartialItem(quint32 avail, quint32 size);
73     void coreConnectionError(QString errorMsg);
74
75     void connected();
76     void disconnected();
77
78     void sessionDataChanged(const QString &key);
79     void sessionDataChanged(const QString &key, const QVariant &data);
80     void sendSessionData(const QString &key, const QVariant &data);
81
82   public slots:
83     //void selectBuffer(Buffer *);
84     //void connectToLocalCore();
85     void connectToCore(const VarMap &);
86     void disconnectFromCore();
87
88   private slots:
89     void updateCoreData(UserId, QString);
90     void updateLocalData(QString, QVariant);
91     void recvSessionData(const QString &key, const QVariant &data);
92     void recvProxySignal(ClientSignal sig, QVariant arg1, QVariant arg2, QVariant arg3);
93
94     void serverError(QAbstractSocket::SocketError);
95     void serverHasData();
96     void coreConnected();
97     void coreDisconnected();
98
99     void userInput(BufferId, QString);
100     void networkConnected(QString);
101     void networkDisconnected(QString);
102     void recvNetworkState(QString, QVariant);
103     void recvMessage(const Message &message);
104     void recvStatusMsg(QString network, QString message);
105     void setTopic(QString net, QString buf, QString);
106     void addNick(QString net, QString nick, VarMap props);
107     void removeNick(QString net, QString nick);
108     void renameNick(QString net, QString oldnick, QString newnick);
109     void updateNick(QString net, QString nick, VarMap props);
110     void setOwnNick(QString net, QString nick);
111     void recvBacklogData(BufferId, const QList<QVariant> &, bool);
112     void updateBufferId(BufferId);
113
114     void layoutMsg();
115
116   private:
117     Client();
118     ~Client();
119     void init();
120     static Client *instanceptr;
121
122     void syncToCore();
123     QVariant connectToLocalCore(QString user, QString passwd);  // defined in main.cpp
124     void disconnectFromLocalCore();                             // defined in main.cpp
125
126     enum ClientMode { LocalCore, RemoteCore };
127     static ClientMode clientMode;
128
129     AbstractUi *mainUi;
130     ClientProxy *clientProxy;
131     BufferTreeModel *_bufferModel;
132
133     QTcpSocket socket;
134     quint32 blockSize;
135
136     static bool connectedToCore;
137     static QHash<BufferId, Buffer *> buffers;
138     static QHash<uint, BufferId> bufferIds;
139     static QHash<QString, QHash<QString, VarMap> > nicks;
140     static QHash<QString, bool> netConnected;
141     static QHash<QString, QString> ownNick;
142
143     QTimer *layoutTimer;
144     QList<Buffer *> layoutQueue;
145
146     VarMap sessionData;
147 };
148
149 #endif