Merged changes from branch "sput" r62:66 back into trunk.
[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   private slots:
60     //void serverStatesRequested();
61     void globalDataUpdated(QString);
62     void recvStatusMsgFromServer(QString msg);
63     //void recvMessageFromServer(Message 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     Backlog backlog;
69     QDir backLogDir;
70     bool backLogEnabled;
71     QHash<QString, Server *> servers;
72     //QHash<QString, QList<Message> > backLog;
73     //QHash<QString, int> netIdx;
74     //QHash<QString, QFile *> logFiles;
75     //QHash<QString, QDataStream *> logStreams;
76     //QHash<QString, QDate> logFileDates;
77     //QHash<QString, QDir> logFileDirs;
78
79     //QSqlDatabase logDb;
80
81     //uint getNetIdx(QString net);
82     //void initBackLog();
83     //void initBackLogOld();
84     //void logMessage(QString, Message);
85     //void logMessageOld(QString, Message);
86
87 };
88
89 extern Core *core;
90
91 #endif