Some new UI elements for configuring network reconnects. EgS, that should
[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 buf = QString());
33   
34   inline BufferId bufferId() const { return _bufferId; }
35   inline NetworkId networkId() const { return _netid; }
36   inline uint groupId() const { return _groupId; }
37   QString bufferName() const;
38   
39   void setGroupId(uint gid) { _groupId = gid; }
40   
41   inline bool operator==(const BufferInfo &other) const { return _bufferId == other._bufferId; }
42
43 private:
44   BufferId _bufferId;
45   NetworkId _netid;
46   uint _groupId;
47   QString _bufferName;
48   
49   friend uint qHash(const BufferInfo &);
50   friend QDataStream &operator<<(QDataStream &out, const BufferInfo &bufferInfo);
51   friend QDataStream &operator>>(QDataStream &in, BufferInfo &bufferInfo);
52 };
53
54 QDataStream &operator<<(QDataStream &out, const BufferInfo &bufferInfo);
55 QDataStream &operator>>(QDataStream &in, BufferInfo &bufferInfo);
56 QDebug operator<<(QDebug dbg, const BufferInfo &b);
57
58 Q_DECLARE_METATYPE(BufferInfo);
59
60 uint qHash(const BufferInfo &);
61
62 #endif