Making ChatItems in the first column full-height. Also fixes BR #272.
[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 "chatlinemodel.h"
28 #include "chatscene.h"
29 #include "uistyle.h"
30 #include "qtui.h"
31
32 class QTextLayout;
33
34 class ChatItem : public QGraphicsItem {
35
36   public:
37   ChatItem(int col, QAbstractItemModel *, QGraphicsItem *parent);
38     virtual ~ChatItem();
39
40   inline const QAbstractItemModel *model() const { return chatScene() ? chatScene()->model() : 0; }
41   int row() const;
42   inline int column() const { return _col; }
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     qreal setGeometry(qreal width, qreal height = -1);
59
60     // selection stuff, to be called by the scene
61     void clearSelection();
62     void setFullSelection();
63     void continueSelecting(const QPointF &pos);
64
65   protected:
66     virtual void mouseMoveEvent(QGraphicsSceneMouseEvent *event);
67     virtual void mousePressEvent(QGraphicsSceneMouseEvent *event);
68     virtual void mouseReleaseEvent(QGraphicsSceneMouseEvent *event);
69     virtual void mouseDoubleClickEvent(QGraphicsSceneMouseEvent *event);
70
71     virtual void hoverEnterEvent(QGraphicsSceneHoverEvent *event);
72     virtual void hoverLeaveEvent(QGraphicsSceneHoverEvent *event);
73     virtual void hoverMoveEvent(QGraphicsSceneHoverEvent *event);
74
75   private:
76     qint16 posToCursor(const QPointF &pos);
77     qreal computeHeight();
78     QTextLayout *createLayout(QTextOption::WrapMode, Qt::Alignment = Qt::AlignLeft);
79
80     // internal selection stuff
81     void setSelection(int start, int length);
82
83     QRectF _boundingRect;
84     QFontMetricsF *_fontMetrics;
85     int _col;
86     quint8 _lines;
87
88     QTextLayout * _layout;
89     QList<quint16> _wrapPositions;
90
91     enum SelectionMode { NoSelection, PartialSelection, FullSelection };
92     SelectionMode _selectionMode;
93     qint16 _selectionStart, _selectionEnd;
94
95     class WrapColumnFinder;
96 };
97
98 class ChatItem::WrapColumnFinder {
99   public:
100     WrapColumnFinder(ChatItem *parent);
101     ~WrapColumnFinder();
102
103     qint16 nextWrapColumn();
104
105   private:
106     ChatItem *item;
107     QTextLayout *layout;
108     QTextLine line;
109     ChatLineModel::WrapList wrapList;
110     qint16 wordidx;
111     qint16 lastwrapcol;
112     qreal lastwrappos;
113     qreal w;
114 };
115
116 #include "chatline.h"
117 inline int ChatItem::row() const { return static_cast<ChatLine *>(parentItem())->row(); }
118
119
120 #endif