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