Make Settings use --configdir (or the default location)
[quassel.git] / src / common / types.h
1 /***************************************************************************
2  *   Copyright (C) 2005-09 by the Quassel Project                          *
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
21 #ifndef TYPES_H_
22 #define TYPES_H_
23
24 #include <QDebug>
25 #include <QString>
26 #include <QVariant>
27 #include <QTextStream>
28
29 class SignedId {
30   protected:
31     qint32 id;
32
33   public:
34     inline SignedId(int _id = 0) { id = _id; }
35     inline qint32 toInt() const { return id; }
36     inline bool isValid() const { return id > 0; }
37
38     inline bool operator==(const SignedId &other) const { return id == other.id; }
39     inline bool operator!=(const SignedId &other) const { return id != other.id; }
40     inline bool operator<(const SignedId &other) const { return id < other.id; }
41     inline bool operator<=(const SignedId &other) const { return id <= other.id; }
42     inline bool operator>(const SignedId &other) const { return id > other.id; }
43     inline bool operator>=(const SignedId &other) const { return id >= other.id; }
44     inline bool operator==(int i) const { return id == i; }
45     inline bool operator!=(int i) const { return id != i; }
46     inline bool operator<(int i) const { return id < i; }
47     inline bool operator>(int i) const { return id > i; }
48     inline bool operator<=(int i) const { return id <= i; }
49
50     inline SignedId operator++(int) { id++; return *this; }
51     //inline operator int() const { return toInt(); } // no automatic conversion!
52
53     friend QDataStream &operator>>(QDataStream &in, SignedId &signedId);
54 };
55
56 inline QDataStream &operator<<(QDataStream &out, const SignedId &signedId) { out << signedId.toInt(); return out; }
57 inline QDataStream &operator>>(QDataStream &in, SignedId &signedId) { in >> signedId.id; return in; }
58 inline QTextStream &operator<<(QTextStream &out, const SignedId &signedId) { out << QString::number(signedId.toInt()); return out; }
59 inline QDebug operator<<(QDebug dbg, const SignedId &signedId) { dbg.space() << signedId.toInt(); return dbg; }
60 inline uint qHash(const SignedId &id) { return qHash(id.toInt()); }
61
62 struct UserId : public SignedId {
63   inline UserId(int _id = 0) : SignedId(_id) {};
64   //inline operator QVariant() const { return QVariant::fromValue<UserId>(*this); }  // no automatic conversion!
65 };
66
67 struct MsgId : public SignedId {
68   inline MsgId(int _id = 0) : SignedId(_id) {};
69   //inline operator QVariant() const { return QVariant::fromValue<MsgId>(*this); }
70 };
71
72 struct BufferId : public SignedId {
73   inline BufferId(int _id = 0) : SignedId(_id) {};
74   //inline operator QVariant() const { return QVariant::fromValue<BufferId>(*this); }
75 };
76
77 struct NetworkId : public SignedId {
78   inline NetworkId(int _id = 0) : SignedId(_id) {};
79   //inline operator QVariant() const { return QVariant::fromValue<NetworkId>(*this); }
80 };
81
82 struct IdentityId : public SignedId {
83   inline IdentityId(int _id = 0) : SignedId(_id) {};
84   //inline operator QVariant() const { return QVariant::fromValue<IdentityId>(*this); }
85 };
86
87 struct AccountId : public SignedId {
88   inline AccountId(int _id = 0) : SignedId(_id) {};
89 };
90
91 Q_DECLARE_METATYPE(UserId)
92 Q_DECLARE_METATYPE(MsgId)
93 Q_DECLARE_METATYPE(BufferId)
94 Q_DECLARE_METATYPE(NetworkId)
95 Q_DECLARE_METATYPE(IdentityId)
96 Q_DECLARE_METATYPE(AccountId)
97
98 //! Base class for exceptions.
99 struct Exception {
100   Exception(QString msg = "Unknown Exception") : _msg(msg) {};
101   virtual ~Exception() {}; // make gcc happy
102   virtual inline QString msg() { return _msg; }
103
104   protected:
105     QString _msg;
106
107 };
108
109 #endif