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