25eba7ec6167dae7f0d2cc9d87255ad78cb51b98
[quassel.git] / main / global.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 "global.h"
22 #include "logger.h"
23 #include "core.h"
24 #include "message.h"
25
26 #include <QtCore>
27 #include <QDomDocument>
28
29 extern void messageHandler(QtMsgType type, const char *msg);
30
31 Global::Global() {
32   if(global) qFatal("Trying to instantiate more than one Global object!");
33   qInstallMsgHandler(messageHandler);
34   qRegisterMetaType<Message>("Message");
35   //initIconMap();
36 }
37
38 /*
39 void Global::setLogger(Logger *) {
40
41
42 };
43 */
44
45 QVariant Global::getData(QString key, QVariant defval) {
46   QVariant d;
47   mutex.lock();
48   if(data.contains(key)) d = data[key];
49   else d = defval;
50   mutex.unlock();
51   //qDebug() << "getData("<<key<<"): " << d;
52   return d;
53 }
54
55 QStringList Global::getKeys() {
56   QStringList k;
57   mutex.lock();
58   k = data.keys();
59   mutex.unlock();
60   return k;
61 }
62
63 void Global::putData(QString key, QVariant d) {
64   mutex.lock();
65   data[key] = d;
66   mutex.unlock();
67   emit dataPutLocally(key);
68 }
69
70 void Global::updateData(QString key, QVariant d) {
71   mutex.lock();
72   data[key] = d;
73   mutex.unlock();
74   emit dataUpdatedRemotely(key);
75 }
76
77 /* not done yet */
78 void Global::initIconMap() {
79 // Do not depend on GUI in core!
80 /*
81   QDomDocument doc("IconMap");
82   QFile file("images/iconmap.xml");
83   if(!file.open(QIODevice::ReadOnly)) {
84     qDebug() << "Error opening iconMap file!";
85     return;
86   } else if(!doc.setContent(&file)) {
87     file.close();
88     qDebug() << "Error parsing iconMap file!";
89   } else {
90     file.close();
91
92   }
93 */
94 }
95
96
97 /**
98  * Retrieves an icon determined by its symbolic name. The mapping shall later
99  * be performed by a theme manager or something like that.
100  * @param symbol Symbol of requested icon
101  * @return Pointer to a newly created QIcon
102  */
103 //
104 //QIcon *Global::getIcon(QString /*symbol*/) {
105   //if(symbol == "connect"
106
107 //  return 0;
108 //}
109
110 Global *global = 0;
111 Global::RunMode Global::runMode;