X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fchatitem.h;h=2b7ac8a382fa6dffcaf80f7582dcc3665d7fc916;hp=4ffb94426344eccde0abb772613dbc1216255b2a;hb=858cba7fac9928549219de070397be65e1b92cde;hpb=70706ff642683d03ff091cab25d984ec7d9612de diff --git a/src/qtui/chatitem.h b/src/qtui/chatitem.h index 4ffb9442..2b7ac8a3 100644 --- a/src/qtui/chatitem.h +++ b/src/qtui/chatitem.h @@ -1,11 +1,11 @@ /*************************************************************************** - * Copyright (C) 2005-07 by the Quassel IRC Team * + * Copyright (C) 2005-08 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * + * (at your option) version 3. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * @@ -22,9 +22,11 @@ #define _CHATITEM_H_ #include +#include #include #include +#include "messagemodel.h" #include "uistyle.h" class QGraphicsSceneMouseEvent; @@ -32,28 +34,33 @@ class QGraphicsSceneMouseEvent; class ChatItem : public QGraphicsItem { public: - ChatItem(QGraphicsItem *parent = 0); + ChatItem(const QPersistentModelIndex &index, QGraphicsItem *parent = 0); virtual ~ChatItem(); virtual QRectF boundingRect() const; virtual void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget = 0); - QString text() const; - void setText(const UiStyle::StyledText &text); + inline QPersistentModelIndex persistentIndex() const { return _index; } + inline const MessageModel *model() const { return _index.isValid() ? qobject_cast(_index.model()) : 0; } + inline int row() const { return _index.isValid() ? _index.row() : 0; } + virtual QVariant data(int role) const; + //QString text() const; + //void setText(const UiStyle::StyledText &text); - QTextOption textOption() const; - void setTextOption(const QTextOption &option); + //QTextOption textOption() const; + //void setTextOption(const QTextOption &option); - void setWidth(int width); - virtual void layout(); + //void setWidth(int width); + //virtual void layout(); protected: //void mouseMoveEvent ( QGraphicsSceneMouseEvent * event ); private: - int _width; - QTextLayout _layout; - QTextOption _textOption; + //int _width; + //QTextLayout _layout; + //QTextOption _textOption; + QPersistentModelIndex _index; }; #endif