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