Changed the windows build method.
[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() {
32   if(quassel) qFatal("Trying to instantiate more than one Quassel object!");
33   qInstallMsgHandler(messageHandler);
34   //initIconMap();
35 }
36
37 /*
38 void Quassel::setLogger(Logger *) {
39
40
41 };
42 */
43
44 QVariant Quassel::getData(QString key) {
45   mutex.lock();
46   QVariant d = data[key];
47   mutex.unlock();
48   qDebug() << "getData("<<key<<"): " << d;
49   return d;
50 }
51
52 void Quassel::putData(QString key, const QVariant &d) {
53   mutex.lock();
54   data[key] = d;
55   mutex.unlock();
56   emit dataChanged(key, d);
57   qDebug() << "putData("<<key<<"): " << d;
58   qDebug() << "data: " << data;
59 }
60
61 /* not done yet */
62 void Quassel::initIconMap() {
63 // Do not depend on GUI in core!
64 /*
65   QDomDocument doc("IconMap");
66   QFile file("images/iconmap.xml");
67   if(!file.open(QIODevice::ReadOnly)) {
68     qDebug() << "Error opening iconMap file!";
69     return;
70   } else if(!doc.setContent(&file)) {
71     file.close();
72     qDebug() << "Error parsing iconMap file!";
73   } else {
74     file.close();
75
76   }
77 */
78 }
79
80
81 /**
82  * Retrieves an icon determined by its symbolic name. The mapping shall later
83  * be performed by a theme manager or something like that.
84  * @param symbol Symbol of requested icon
85  * @return Pointer to a newly created QIcon
86  */
87 //
88 //QIcon *Quassel::getIcon(QString /*symbol*/) {
89   //if(symbol == "connect"
90
91 //  return 0;
92 //}
93
94 Quassel *quassel = 0;
95 Quassel::RunMode Quassel::runMode;