b5d52a4b5c1b31165b78350076f30b7657f31735
[quassel.git] / src / common / message.h
1 /***************************************************************************
2  *   Copyright (C) 2005-09 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
21 #ifndef MESSAGE_H_
22 #define MESSAGE_H_
23
24 #include <QString>
25 #include <QDateTime>
26
27 #include "bufferinfo.h"
28 #include "types.h"
29
30 class Message {
31   Q_DECLARE_TR_FUNCTIONS(Message)
32
33 public:
34   /** The different types a message can have for display */
35   enum Type {
36     Plain     = 0x00001,
37     Notice    = 0x00002,
38     Action    = 0x00004,
39     Nick      = 0x00008,
40     Mode      = 0x00010,
41     Join      = 0x00020,
42     Part      = 0x00040,
43     Quit      = 0x00080,
44     Kick      = 0x00100,
45     Kill      = 0x00200,
46     Server    = 0x00400,
47     Info      = 0x00800,
48     Error     = 0x01000,
49     DayChange = 0x02000,
50     Topic     = 0x04000,
51     NetsplitJoin = 0x08000,
52     NetsplitQuit = 0x10000,
53   };
54
55   // DO NOT CHANGE without knowing what you do, some of these flags are stored in the database
56   enum Flag {
57     None = 0x00,
58     Self = 0x01,
59     Highlight = 0x02,
60     Redirected = 0x04,
61     ServerMsg = 0x08,
62     Backlog = 0x80
63   };
64   Q_DECLARE_FLAGS(Flags, Flag)
65
66
67   Message(const BufferInfo &bufferInfo = BufferInfo(), Type type = Plain, const QString &contents = "", const QString &sender = "", Flags flags = None);
68   Message(const QDateTime &ts, const BufferInfo &buffer = BufferInfo(), Type type = Plain,
69           const QString &contents = "", const QString &sender = "", Flags flags = None);
70
71   inline static Message ChangeOfDay(const QDateTime &day) { return Message(day, BufferInfo(), DayChange, tr("Day changed to %1").arg(day.toString("dddd MMMM d yyyy"))); }
72   inline const MsgId &msgId() const { return _msgId; }
73   inline void setMsgId(MsgId id) { _msgId = id; }
74
75   inline const BufferInfo &bufferInfo() const { return _bufferInfo; }
76   inline const BufferId &bufferId() const { return _bufferInfo.bufferId(); }
77   inline void setBufferId(BufferId id) { _bufferInfo.setBufferId(id); }
78   inline const QString &contents() const { return _contents; }
79   inline const QString &sender() const { return _sender; }
80   inline Type type() const { return _type; }
81   inline Flags flags() const { return _flags; }
82   inline void setFlags(Flags flags) { _flags = flags; }
83   inline const QDateTime &timestamp() const { return _timestamp; }
84
85   inline bool isValid() const { return _msgId.isValid(); }
86
87   inline bool operator<(const Message &other) const { return _msgId < other._msgId; }
88
89 private:
90   QDateTime _timestamp;
91   MsgId _msgId;
92   BufferInfo _bufferInfo;
93   QString _contents;
94   QString _sender;
95   Type _type;
96   Flags _flags;
97
98   friend QDataStream &operator>>(QDataStream &in, Message &msg);
99 };
100
101 typedef QList<Message> MessageList;
102
103 QDataStream &operator<<(QDataStream &out, const Message &msg);
104 QDataStream &operator>>(QDataStream &in, Message &msg);
105 QDebug operator<<(QDebug dbg, const Message &msg);
106
107 Q_DECLARE_METATYPE(Message)
108 Q_DECLARE_OPERATORS_FOR_FLAGS(Message::Flags)
109
110 #endif