Inter- and intra-item selections now behave properly, except deactivating a global...
[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     qreal setWidth(qreal width);
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
70     virtual void hoverEnterEvent(QGraphicsSceneHoverEvent *event);
71     virtual void hoverLeaveEvent(QGraphicsSceneHoverEvent *event);
72     virtual void hoverMoveEvent(QGraphicsSceneHoverEvent *event);
73
74   private:
75     qint16 posToCursor(const QPointF &pos);
76     qreal computeHeight();
77     QTextLayout *createLayout(QTextOption::WrapMode, Qt::Alignment = Qt::AlignLeft);
78
79     // internal selection stuff
80     void setSelection(int start, int length);
81
82     QRectF _boundingRect;
83     QFontMetricsF *_fontMetrics;
84     quint8 _lines;
85     QPersistentModelIndex _index;
86
87     QTextLayout * _layout;
88     QList<quint16> _wrapPositions;
89
90     enum SelectionMode { NoSelection, PartialSelection, FullSelection };
91     SelectionMode _selectionMode;
92     qint16 _selectionStart, _selectionEnd;
93
94     class WrapColumnFinder;
95 };
96
97 class ChatItem::WrapColumnFinder {
98   public:
99     WrapColumnFinder(ChatItem *parent);
100     ~WrapColumnFinder();
101
102     qint16 nextWrapColumn();
103
104   private:
105     ChatItem *item;
106     QTextLayout *layout;
107     QTextLine line;
108     ChatLineModel::WrapList wrapList;
109     qint16 wordidx;
110     qint16 lastwrapcol;
111     qreal lastwrappos;
112     qreal w;
113 };
114
115 #endif