fixing pull / rebase aftermath
[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 _layoutData != 0 && layout() != 0; }
51     void clearLayoutData();
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   QList<QRectF> findWords(const QString &searchWord, Qt::CaseSensitivity caseSensitive);
66
67   protected:
68     virtual void mouseMoveEvent(QGraphicsSceneMouseEvent *event);
69     virtual void mousePressEvent(QGraphicsSceneMouseEvent *event);
70     virtual void mouseReleaseEvent(QGraphicsSceneMouseEvent *event);
71     virtual void mouseDoubleClickEvent(QGraphicsSceneMouseEvent *event);
72
73     virtual void hoverEnterEvent(QGraphicsSceneHoverEvent *event);
74     virtual void hoverLeaveEvent(QGraphicsSceneHoverEvent *event);
75     virtual void hoverMoveEvent(QGraphicsSceneHoverEvent *event);
76
77   private:
78     struct LayoutData;
79     class WrapColumnFinder;
80
81     inline QTextLayout *layout() const;
82     void setLayout(QTextLayout *);
83     qint16 posToCursor(const QPointF &pos);
84     qreal computeHeight();
85     QTextLayout *createLayout(QTextOption::WrapMode, Qt::Alignment = Qt::AlignLeft);
86
87     // internal selection stuff
88     void setSelection(int start, int length);
89
90     QRectF _boundingRect;
91     QFontMetricsF *_fontMetrics;
92     int _col;
93     quint8 _lines;
94
95     enum SelectionMode { NoSelection, PartialSelection, FullSelection };
96     SelectionMode _selectionMode;
97     qint16 _selectionStart, _selectionEnd;
98
99     LayoutData *_layoutData;
100 };
101
102 struct ChatItem::LayoutData {
103   QTextLayout *layout;
104
105   LayoutData() { layout = 0; }
106   ~LayoutData() { delete layout; }
107 };
108
109 class ChatItem::WrapColumnFinder {
110   public:
111     WrapColumnFinder(ChatItem *parent);
112     ~WrapColumnFinder();
113
114     qint16 nextWrapColumn();
115
116   private:
117     ChatItem *item;
118     QTextLayout *layout;
119     QTextLine line;
120     ChatLineModel::WrapList wrapList;
121     qint16 wordidx;
122     qint16 lastwrapcol;
123     qreal lastwrappos;
124     qreal w;
125 };
126
127 #include "chatline.h"
128 inline int ChatItem::row() const { return static_cast<ChatLine *>(parentItem())->row(); }
129 inline QTextLayout *ChatItem::layout() const { return _layoutData->layout; }
130
131 #endif