Make intra-item selections work
[quassel.git] / src / qtui / chatitem.h
1 /***************************************************************************
2  *   Copyright (C) 2005-08 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 CHATITEM_H_
22 #define CHATITEM_H_
23
24 #include <QGraphicsItem>
25 #include <QObject>
26
27 #include "chatline.h"
28 #include "chatlinemodel.h"
29 #include "chatscene.h"
30 #include "uistyle.h"
31
32 class QTextLayout;
33
34 class ChatItem : public QGraphicsItem {
35
36   public:
37     ChatItem(const QPersistentModelIndex &index, QGraphicsItem *parent);
38     virtual ~ChatItem();
39
40     inline QPersistentModelIndex index() const { return _index; }
41     inline const MessageModel *model() const { return _index.isValid() ? qobject_cast<const MessageModel *>(_index.model()) : 0; }
42     inline int row() const { return _index.isValid() ? _index.row() : 0; }
43     inline ChatScene *chatScene() const { return qobject_cast<ChatScene *>(scene()); }
44
45     inline QFontMetricsF *fontMetrics() const { return _fontMetrics; }
46     inline virtual QRectF boundingRect() const { return _boundingRect; }
47     inline qreal width() const { return _boundingRect.width(); }
48     inline qreal height() const { return _boundingRect.height(); }
49
50     inline bool haveLayout() const { return _layout != 0; }
51     void clearLayout();
52     void updateLayout();
53     virtual void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget = 0);
54
55     virtual QVariant data(int role) const;
56
57     // returns height
58     int setWidth(int width);
59
60     // selection stuff, to be called by the scene
61     void clearSelection();
62     void setFullSelection();
63
64   protected:
65     virtual void mouseMoveEvent(QGraphicsSceneMouseEvent *event);
66     virtual void mousePressEvent(QGraphicsSceneMouseEvent *event);
67     virtual void mouseReleaseEvent(QGraphicsSceneMouseEvent *event);
68
69   private:
70     int posToCursor(const QPointF &pos);
71     int heightForWidth(int width);
72     QTextLayout *createLayout(QTextOption::WrapMode, Qt::Alignment = Qt::AlignLeft);
73
74     QRectF _boundingRect;
75     QFontMetricsF *_fontMetrics;
76     quint8 _lines;
77     QPersistentModelIndex _index;
78
79     QTextLayout *_layout;
80     QList<quint16> _wrapPositions;
81     int _selectionStart;
82
83     class WrapColumnFinder;
84 };
85
86 class ChatItem::WrapColumnFinder {
87   public:
88     WrapColumnFinder(ChatItem *parent);
89     ~WrapColumnFinder();
90
91     int nextWrapColumn();
92
93   private:
94     ChatItem *item;
95     QTextLayout *layout;
96     QTextLine line;
97     ChatLineModel::WrapList wrapList;
98     int wordidx;
99     int lastwrapcol;
100     qreal lastwrappos;
101     qreal w;
102 };
103
104 #endif