641782580315a2e6e7c7b51518ba09849bc4a29f
[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
31 class Core : public QObject {
32   Q_OBJECT
33
34   public:
35
36     Core();
37     ~Core();
38     QHash<QString, QList<Message> > getBackLog() { return backLog; };
39
40   public slots:
41     void connectToIrc(QStringList);
42
43   signals:
44     void msgFromGUI(QString network, QString channel, QString message);
45     void displayMsg(QString network, Message message);
46     void displayStatusMsg(QString, QString);
47
48     void connectToIrc(QString net);
49     void disconnectFromIrc(QString net);
50     void serverStateRequested();
51
52   private slots:
53     //void serverStatesRequested();
54     void globalDataUpdated(QString);
55     void recvStatusMsgFromServer(QString msg);
56     void recvMessageFromServer(Message msg);
57     void serverDisconnected(QString net);
58
59   private:
60     QDir backLogDir;
61     bool backLogEnabled;
62     QHash<QString, Server *> servers;
63     QHash<QString, QList<Message> > backLog;
64     //QHash<QString, int> netIdx;
65     QHash<QString, QFile *> logFiles;
66     QHash<QString, QDataStream *> logStreams;
67     QHash<QString, QDate> logFileDates;
68     QHash<QString, QDir> logFileDirs;
69
70     QSqlDatabase logDb;
71
72     //uint getNetIdx(QString net);
73     void initBackLog();
74     void initBackLogOld();
75     void logMessage(QString, Message);
76     void logMessageOld(QString, Message);
77
78 };
79
80 extern Core *core;
81
82 #endif