Fixes to SqliteStorage:
[quassel.git] / core / core.h
1 /***************************************************************************
2  *   Copyright (C) 2005/06 by The Quassel 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 _CORE_H_
22 #define _CORE_H_
23
24 #include <QMap>
25 #include <QString>
26 #include <QVariant>
27 #include <QSqlDatabase>
28
29 #include "server.h"
30 #include "backlog.h"
31 #include "storage.h"
32 #include "global.h"
33
34 class Core : public QObject {
35   Q_OBJECT
36
37   public:
38
39     Core();
40     ~Core();
41     QList<BufferId> getBuffers();
42
43   public slots:
44     void connectToIrc(QStringList);
45     void sendBacklog(BufferId, QVariant, QVariant);
46     void msgFromGUI(BufferId, QString message);
47
48   signals:
49     void msgFromGUI(QString net, QString buf, QString message);
50     void displayMsg(Message message);
51     void displayStatusMsg(QString, QString);
52
53     void connectToIrc(QString net);
54     void disconnectFromIrc(QString net);
55     void serverStateRequested();
56
57     void backlogData(BufferId, QList<QVariant>, bool done);
58
59     void bufferIdUpdated(BufferId);
60
61   private slots:
62     void globalDataUpdated(QString);
63     void recvStatusMsgFromServer(QString msg);
64     void recvMessageFromServer(Message::Type, QString target, QString text, QString sender = "", quint8 flags = Message::None);
65     void serverDisconnected(QString net);
66
67   private:
68     Storage *storage;
69     QHash<QString, Server *> servers;
70     UserId user;
71
72 };
73
74 extern Core *core;
75
76 #endif