1 /***************************************************************************
2 * Copyright (C) 2005-08 by the Quassel Project *
3 * devel@quassel-irc.org *
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. *
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. *
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 ***************************************************************************/
27 #include "bufferinfo.h"
31 Q_DECLARE_TR_FUNCTIONS(Message)
34 /** The different types a message can have for display */
52 // DO NOT CHANGE without knowing what you do, some of these flags are stored in the database
61 Q_DECLARE_FLAGS(Flags, Flag)
64 Message(const BufferInfo &bufferInfo = BufferInfo(), Type type = Plain, const QString &contents = "", const QString &sender = "", Flags flags = None);
65 Message(const QDateTime &ts, const BufferInfo &buffer = BufferInfo(), Type type = Plain,
66 const QString &contents = "", const QString &sender = "", Flags flags = None);
68 inline static Message ChangeOfDay(const QDateTime &day) { return Message(day, BufferInfo(), DayChange, tr("Day changed to %1").arg(day.toString("dddd MMMM d yyyy"))); }
69 inline MsgId msgId() const { return _msgId; }
70 inline void setMsgId(MsgId id) { _msgId = id; }
72 inline BufferInfo bufferInfo() const { return _bufferInfo; }
73 inline QString contents() const { return _contents; }
74 inline QString sender() const { return _sender; }
75 inline Type type() const { return _type; }
76 inline Flags flags() const { return _flags; }
77 inline QDateTime timestamp() const { return _timestamp; }
79 void setFlags(Flags flags);
81 inline bool operator<(const Message &other) const { return _msgId < other._msgId; }
86 BufferInfo _bufferInfo;
92 QString _formattedTimestamp, _formattedSender, _formattedText; // cache
94 friend QDataStream &operator>>(QDataStream &in, Message &msg);
97 typedef QList<Message> MessageList;
99 QDataStream &operator<<(QDataStream &out, const Message &msg);
100 QDataStream &operator>>(QDataStream &in, Message &msg);
101 QDebug operator<<(QDebug dbg, const Message &msg);
103 Q_DECLARE_METATYPE(Message)
104 Q_DECLARE_OPERATORS_FOR_FLAGS(Message::Flags)