Added generic signals between Core and GUI. You can use these to avoid having to...
[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 "global.h"
32
33 class Core : public QObject {
34   Q_OBJECT
35
36   public:
37
38     Core();
39     ~Core();
40     QHash<QString, QList<Message> > getBackLog() { return QHash<QString, QList<Message> >()/*backLog*/; }; // FIXME
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 serverStatesRequested();
63     void globalDataUpdated(QString);
64     void recvStatusMsgFromServer(QString msg);
65     //void recvMessageFromServer(Message msg);
66     void recvMessageFromServer(Message::Type, QString target, QString text, QString sender = "", quint8 flags = Message::None);
67     void serverDisconnected(QString net);
68
69   private:
70     Backlog backlog;
71     QDir backLogDir;
72     bool backLogEnabled;
73     QHash<QString, Server *> servers;
74     //QHash<QString, QList<Message> > backLog;
75     //QHash<QString, int> netIdx;
76     //QHash<QString, QFile *> logFiles;
77     //QHash<QString, QDataStream *> logStreams;
78     //QHash<QString, QDate> logFileDates;
79     //QHash<QString, QDir> logFileDirs;
80
81     //QSqlDatabase logDb;
82
83     //uint getNetIdx(QString net);
84     //void initBackLog();
85     //void initBackLogOld();
86     //void logMessage(QString, Message);
87     //void logMessageOld(QString, Message);
88
89 };
90
91 extern Core *core;
92
93 #endif