X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcommon%2Fmessage.h;h=17f5493a6f559d342103bc77c2c0a92a35f9b7df;hp=1411f3b4248a42942b7d261a873e0bd06e187394;hb=521a9e7155173db954ea5f32c93dd6933cd7aeda;hpb=3b29973a4fecd4658ced22aadc70555b86b8a0df diff --git a/src/common/message.h b/src/common/message.h index 1411f3b4..17f5493a 100644 --- a/src/common/message.h +++ b/src/common/message.h @@ -32,8 +32,29 @@ class Message { public: /** The different types a message can have for display */ - enum Type { Plain, Notice, Action, Nick, Mode, Join, Part, Quit, Kick, Kill, Server, Info, Error }; - enum Flags { None = 0, Self = 1, PrivMsg = 2, Highlight = 4 }; + enum Type { + Plain, + Notice, + Action, + Nick, + Mode, + Join, + Part, + Quit, + Kick, + Kill, + Server, + Info, + Error + }; + + enum Flags { + None = 0, + Self = 1, + Highlight = 2 + }; + Q_DECLARE_FLAGS(MessageFlags, Flags) + Message(BufferInfo bufferInfo = BufferInfo(), Type type = Plain, QString text = "", QString sender = "", quint8 flags = None); @@ -49,6 +70,8 @@ public: inline quint8 flags() const { return _flags; } inline QDateTime timestamp() const { return _timestamp; } + void setFlags(quint8 flags); + QString formattedTimestamp(); QString formattedSender(); QString formattedText(); @@ -78,5 +101,6 @@ QDataStream &operator<<(QDataStream &out, const Message &msg); QDataStream &operator>>(QDataStream &in, Message &msg); Q_DECLARE_METATYPE(Message); +Q_DECLARE_OPERATORS_FOR_FLAGS(Message::MessageFlags) #endif