Big refactoring completed. Everything prepared for the separation of core and gui.
[quassel.git] / main / quassel.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005 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 #include "quassel.h"
22 #include "logger.h"
23 //#include "proxy.h"
24 #include "core.h"
25
26 #include <QString>
27 #include <QDomDocument>
28
29 extern void messageHandler(QtMsgType type, const char *msg);
30
31 Quassel * Quassel::init() {
32   if(quassel) return quassel;
33   qInstallMsgHandler(messageHandler);
34   quassel = new Quassel();
35   //initIconMap();
36   return quassel;
37 }
38
39 /*
40 void Quassel::setLogger(Logger *) {
41
42
43 };
44 */
45
46 QVariant Quassel::getData(QString key) {
47   mutex.lock();
48   QVariant d = data[key];
49   mutex.unlock();
50   qDebug() << "getData("<<key<<"): " << d;
51   return d;
52 }
53
54 void Quassel::putData(QString key, const QVariant &d) {
55   mutex.lock();
56   data[key] = d;
57   mutex.unlock();
58   emit dataChanged(key, d);
59   qDebug() << "putData("<<key<<"): " << d;
60   qDebug() << "data: " << data;
61 }
62
63 /* not done yet */
64 void Quassel::initIconMap() {
65 // Do not depend on GUI in core!
66 /*
67   QDomDocument doc("IconMap");
68   QFile file("images/iconmap.xml");
69   if(!file.open(QIODevice::ReadOnly)) {
70     qDebug() << "Error opening iconMap file!";
71     return;
72   } else if(!doc.setContent(&file)) {
73     file.close();
74     qDebug() << "Error parsing iconMap file!";
75   } else {
76     file.close();
77
78   }
79 */
80 }
81
82
83 /**
84  * Retrieves an icon determined by its symbolic name. The mapping shall later
85  * be performed by a theme manager or something like that.
86  * @param symbol Symbol of requested icon
87  * @return Pointer to a newly created QIcon
88  */
89 //
90 //QIcon *Quassel::getIcon(QString /*symbol*/) {
91   //if(symbol == "connect"
92
93 //  return 0;
94 //}
95
96 Quassel *quassel = 0;
97 Quassel::RunMode Quassel::runMode;
98 QMutex Quassel::mutex;
99 QHash<QString, QVariant> Quassel::data;