Fixed crash when joining new channels
[quassel.git] / src / common / global.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005-07 by The Quassel IRC Development 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 #include <QObject>
21 #include <QStringList>
22
23 #include "global.h"
24 #include "logger.h"
25 #include "message.h"
26 #include "util.h"
27
28 extern void messageHandler(QtMsgType type, const char *msg);
29
30 /* not done yet */
31 /*
32 void Global::initIconMap() {
33 // Do not depend on GUI in core!
34   QDomDocument doc("IconMap");
35   QFile file("images/iconmap.xml");
36   if(!file.open(QIODevice::ReadOnly)) {
37     qDebug() << "Error opening iconMap file!";
38     return;
39   } else if(!doc.setContent(&file)) {
40     file.close();
41     qDebug() << "Error parsing iconMap file!";
42   } else {
43     file.close();
44
45   }
46 }
47 */
48
49 /**
50  * Retrieves an icon determined by its symbolic name. The mapping shall later
51  * be performed by a theme manager or something like that.
52  * @param symbol Symbol of requested icon
53  * @return Pointer to a newly created QIcon
54  */
55 //
56 //QIcon *Global::getIcon(QString /*symbol*/) {
57   //if(symbol == "connect"
58
59 //  return 0;
60 //}
61
62 Global::RunMode Global::runMode;
63 QString Global::quasselDir;