another try to fix those win/linux crashes :)
[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   enum Type {
32     InvalidBuffer = 0x00,
33     StatusBuffer = 0x01,
34     ChannelBuffer = 0x02,
35     QueryBuffer = 0x04,
36     GroupBuffer = 0x08
37   };
38   
39   BufferInfo();
40   BufferInfo(BufferId id, NetworkId networkid, Type type, uint gid = 0, QString buf = QString());
41
42   inline bool isValid() const { return _bufferId != 0; }
43   inline BufferId bufferId() const { return _bufferId; }
44   inline NetworkId networkId() const { return _netid; }
45   inline Type type() const { return _type; }
46   inline uint groupId() const { return _groupId; }
47   QString bufferName() const;
48   
49   void setGroupId(uint gid) { _groupId = gid; }
50   
51   inline bool operator==(const BufferInfo &other) const { return _bufferId == other._bufferId; }
52
53 private:
54   BufferId _bufferId;
55   NetworkId _netid;
56   Type _type;
57   uint _groupId;
58   QString _bufferName;
59   
60   friend uint qHash(const BufferInfo &);
61   friend QDataStream &operator<<(QDataStream &out, const BufferInfo &bufferInfo);
62   friend QDataStream &operator>>(QDataStream &in, BufferInfo &bufferInfo);
63 };
64
65 QDataStream &operator<<(QDataStream &out, const BufferInfo &bufferInfo);
66 QDataStream &operator>>(QDataStream &in, BufferInfo &bufferInfo);
67 QDebug operator<<(QDebug dbg, const BufferInfo &b);
68
69 Q_DECLARE_METATYPE(BufferInfo);
70
71 uint qHash(const BufferInfo &);
72
73 #endif