6e77e636de94f35e728d9d4136585cea2dbeceec
[quassel.git] / src / common / bufferinfo.h
1 /***************************************************************************
2  *   Copyright (C) 2005-2018 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  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.         *
19  ***************************************************************************/
20
21 #pragma once
22
23 #include "common-export.h"
24
25 #include "types.h"
26
27 class QString;
28 class QDataStream;
29
30 class COMMON_EXPORT BufferInfo
31 {
32 public:
33     enum Type {
34         InvalidBuffer = 0x00,
35         StatusBuffer = 0x01,
36         ChannelBuffer = 0x02,
37         QueryBuffer = 0x04,
38         GroupBuffer = 0x08
39     };
40
41     enum Activity {
42         NoActivity = 0x00,
43         OtherActivity = 0x01,
44         NewMessage = 0x02,
45         Highlight = 0x40
46     };
47     Q_DECLARE_FLAGS(ActivityLevel, Activity)
48
49     BufferInfo();
50     BufferInfo(BufferId id, NetworkId networkid, Type type, uint gid = 0, QString buf = QString());
51
52     static BufferInfo fakeStatusBuffer(NetworkId networkId);
53
54     inline bool isValid() const { return _bufferId != 0; }
55     inline const BufferId &bufferId() const { return _bufferId; }
56     inline void setBufferId(BufferId id) { _bufferId = id; }
57     inline const NetworkId &networkId() const { return _netid; }
58     inline const Type &type() const { return _type; }
59     inline const uint &groupId() const { return _groupId; }
60     void setGroupId(uint gid) { _groupId = gid; }
61
62     QString bufferName() const;
63     bool acceptsRegularMessages() const;
64
65     inline bool operator==(const BufferInfo &other) const { return _bufferId == other._bufferId; }
66
67 private:
68     BufferId _bufferId;
69     NetworkId _netid;
70     Type _type;
71     uint _groupId;
72     QString _bufferName;
73
74     friend uint qHash(const BufferInfo &);
75     friend QDataStream &operator<<(QDataStream &out, const BufferInfo &bufferInfo);
76     friend QDataStream &operator>>(QDataStream &in, BufferInfo &bufferInfo);
77 };
78
79
80 QDataStream &operator<<(QDataStream &out, const BufferInfo &bufferInfo);
81 QDataStream &operator>>(QDataStream &in, BufferInfo &bufferInfo);
82 QDebug operator<<(QDebug dbg, const BufferInfo &b);
83
84 Q_DECLARE_METATYPE(BufferInfo)
85 Q_DECLARE_OPERATORS_FOR_FLAGS(BufferInfo::ActivityLevel)
86
87 uint qHash(const BufferInfo &);