Ok, things should be working again. Note to select modules, you now have to
[quassel.git] / src / common / bufferinfo.h
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 #ifndef _BUFFERINFO_H_
21 #define _BUFFERINFO_H_
22
23 #include <QtCore>
24
25 class QString;
26 class QDataStream;
27
28 class BufferInfo {
29 public:
30   BufferInfo();
31   BufferInfo(uint id, uint networkid, uint gid = 0, QString net = QString(), QString buf = QString());
32   
33   inline uint uid() const { return _id; }
34   inline uint networkId() const { return _netid; }
35   inline uint groupId() const { return _gid; }
36   inline QString network() const { return _networkName; }
37   QString buffer() const;
38   
39   void setGroupId(uint gid) { _gid = gid; }
40   
41   inline bool operator==(const BufferInfo &other) const { return _id == other._id; }
42
43 private:
44   uint _id;
45   uint _netid;
46   uint _gid;
47   QString _networkName; // WILL BE REMOVED
48   QString _bufferName;
49   
50   friend uint qHash(const BufferInfo &);
51   friend QDataStream &operator<<(QDataStream &out, const BufferInfo &bufferInfo);
52   friend QDataStream &operator>>(QDataStream &in, BufferInfo &bufferInfo);
53 };
54
55 QDataStream &operator<<(QDataStream &out, const BufferInfo &bufferInfo);
56 QDataStream &operator>>(QDataStream &in, BufferInfo &bufferInfo);
57
58 Q_DECLARE_METATYPE(BufferInfo);
59
60 uint qHash(const BufferInfo &);
61
62 #endif