5e2b5f2493745b298dd8a5bc7be89d2e5c64c54a
[quassel.git] / src / common / bufferinfo.h
1 /***************************************************************************
2  *   Copyright (C) 2005-08 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 #ifndef _BUFFERINFO_H_
21 #define _BUFFERINFO_H_
22
23 #include <QtCore>
24 #include "types.h"
25
26 class QString;
27 class QDataStream;
28
29 class BufferInfo {
30 public:
31   BufferInfo();
32   BufferInfo(BufferId id, NetworkId networkid, uint gid = 0, QString net = QString(), QString buf = QString());
33   
34   inline BufferId uid() const { return _id; }
35   inline NetworkId networkId() const { return _netid; }
36   inline uint groupId() const { return _gid; }
37   inline QString network() const { return _networkName; }
38   QString buffer() const;
39   
40   void setGroupId(uint gid) { _gid = gid; }
41   
42   inline bool operator==(const BufferInfo &other) const { return _id == other._id; }
43
44 private:
45   BufferId _id;
46   NetworkId _netid;
47   uint _gid;
48   QString _networkName; // WILL BE REMOVED
49   QString _bufferName;
50   
51   friend uint qHash(const BufferInfo &);
52   friend QDataStream &operator<<(QDataStream &out, const BufferInfo &bufferInfo);
53   friend QDataStream &operator>>(QDataStream &in, BufferInfo &bufferInfo);
54 };
55
56 QDataStream &operator<<(QDataStream &out, const BufferInfo &bufferInfo);
57 QDataStream &operator>>(QDataStream &in, BufferInfo &bufferInfo);
58 QDebug operator<<(QDebug dbg, const BufferInfo &b);
59
60 Q_DECLARE_METATYPE(BufferInfo);
61
62 uint qHash(const BufferInfo &);
63
64 #endif