a0c94bb36a4592b9d40bf1df25a1ca6e07fa1ec1
[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
51
52
53 BufferId::BufferId(uint _id, QString _net, QString _buf, uint _gid) : id(_id), gid(_gid), net(_net), buf(_buf) {
54
55
56 }
57
58 QString BufferId::buffer() const {
59   if(isChannelName(buf)) return buf;
60   else return nickFromMask(buf);
61 }
62
63 QDataStream &operator<<(QDataStream &out, const BufferId &bufferId) {
64   out << bufferId.id << bufferId.gid << bufferId.net.toUtf8() << bufferId.buf.toUtf8();
65 }
66
67 QDataStream &operator>>(QDataStream &in, BufferId &bufferId) {
68   QByteArray n, b;
69   BufferId i;
70   in >> bufferId.id >> bufferId.gid >> n >> b;
71   bufferId.net = QString::fromUtf8(n);
72   bufferId.buf = QString::fromUtf8(b);
73 }
74
75 uint qHash(const BufferId &bid) {
76   return qHash(bid.id);
77 }
78
79 /**
80  * Retrieves an icon determined by its symbolic name. The mapping shall later
81  * be performed by a theme manager or something like that.
82  * @param symbol Symbol of requested icon
83  * @return Pointer to a newly created QIcon
84  */
85 //
86 //QIcon *Global::getIcon(QString /*symbol*/) {
87   //if(symbol == "connect"
88
89 //  return 0;
90 //}
91
92 Global::RunMode Global::runMode;
93 QString Global::quasselDir;