Sanitize topic message
[quassel.git] / src / qtui / chatlinemodel.h
index c089cb4..92aadc5 100644 (file)
@@ -1,5 +1,5 @@
 /***************************************************************************
- *   Copyright (C) 2005-09 by the Quassel Project                          *
+ *   Copyright (C) 2005-2013 by the Quassel Project                        *
  *   devel@quassel-irc.org                                                 *
  *                                                                         *
  *   This program is free software; you can redistribute it and/or modify  *
@@ -15,7 +15,7 @@
  *   You should have received a copy of the GNU General Public License     *
  *   along with this program; if not, write to the                         *
  *   Free Software Foundation, Inc.,                                       *
- *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
+ *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.         *
  ***************************************************************************/
 
 #ifndef CHATLINEMODEL_H_
 #include <QList>
 #include "chatlinemodelitem.h"
 
-class ChatLineModel : public MessageModel {
-  Q_OBJECT
+class ChatLineModel : public MessageModel
+{
+    Q_OBJECT
 
 public:
-  enum ChatLineRole {
-    WrapListRole = MessageModel::UserRole,
-    MsgLabelRole,
-    SelectedBackgroundRole
-  };
+    enum ChatLineRole {
+        WrapListRole = MessageModel::UserRole,
+        MsgLabelRole,
+        SelectedBackgroundRole
+    };
 
-  ChatLineModel(QObject *parent = 0);
-
-  typedef ChatLineModelItem::Word Word;
-  typedef ChatLineModelItem::WrapList WrapList;
+    ChatLineModel(QObject *parent = 0);
 
+    typedef ChatLineModelItem::Word Word;
+    typedef ChatLineModelItem::WrapList WrapList;
+    virtual inline const MessageModelItem *messageItemAt(int i) const { return &_messageList[i]; }
 protected:
 //   virtual MessageModelItem *createMessageModelItem(const Message &);
 
-  virtual inline int messageCount() const { return _messageList.count(); }
-  virtual inline bool messagesIsEmpty() const { return _messageList.isEmpty(); }
-  virtual inline const MessageModelItem *messageItemAt(int i) const { return &_messageList[i]; }
-  virtual inline MessageModelItem *messageItemAt(int i) { return &_messageList[i]; }
-  virtual inline const MessageModelItem *firstMessageItem() const { return &_messageList.first(); }
-  virtual inline MessageModelItem *firstMessageItem() { return &_messageList.first(); }
-  virtual inline const MessageModelItem *lastMessageItem() const { return &_messageList.last(); }
-  virtual inline MessageModelItem *lastMessageItem() { return &_messageList.last(); }
-  virtual inline void insertMessage__(int pos, const Message &msg) { _messageList.insert(pos, ChatLineModelItem(msg)); }
-  virtual void insertMessages__(int pos, const QList<Message> &);
-  virtual inline void removeMessageAt(int i) { _messageList.removeAt(i); }
-  virtual inline void removeAllMessages() { _messageList.clear(); }
-  virtual Message takeMessageAt(int i);
+    virtual inline int messageCount() const { return _messageList.count(); }
+    virtual inline bool messagesIsEmpty() const { return _messageList.isEmpty(); }
+    virtual inline MessageModelItem *messageItemAt(int i) { return &_messageList[i]; }
+    virtual inline const MessageModelItem *firstMessageItem() const { return &_messageList.first(); }
+    virtual inline MessageModelItem *firstMessageItem() { return &_messageList.first(); }
+    virtual inline const MessageModelItem *lastMessageItem() const { return &_messageList.last(); }
+    virtual inline MessageModelItem *lastMessageItem() { return &_messageList.last(); }
+    virtual inline void insertMessage__(int pos, const Message &msg) { _messageList.insert(pos, ChatLineModelItem(msg)); }
+    virtual void insertMessages__(int pos, const QList<Message> &);
+    virtual inline void removeMessageAt(int i) { _messageList.removeAt(i); }
+    virtual inline void removeAllMessages() { _messageList.clear(); }
+    virtual Message takeMessageAt(int i);
 
 protected slots:
-  virtual void styleChanged();
+    virtual void styleChanged();
 
 private:
-  QList<ChatLineModelItem> _messageList;
+    QList<ChatLineModelItem> _messageList;
 };
 
+
 QDataStream &operator<<(QDataStream &out, const ChatLineModel::WrapList);
 QDataStream &operator>>(QDataStream &in, ChatLineModel::WrapList &);
 
 Q_DECLARE_METATYPE(ChatLineModel::WrapList)
 
 #endif
-