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