summaryrefslogtreecommitdiffstats
path: root/src/gui/itemviews/qtreeview.cpp
diff options
context:
space:
mode:
authorMiikka Heikkinen <miikka.heikkinen@digia.com>2012-09-20 09:28:58 (GMT)
committerThe Qt Project <gerrit-noreply@qt-project.org>2012-11-24 18:59:05 (GMT)
commit85e95859047d2c198e495cd4cb6a4352df76e6d4 (patch)
tree67d52811bf1814fdf5ae8134d8f1934b95125d38 /src/gui/itemviews/qtreeview.cpp
parentcd05f1bd4b6bae38afcf8c14cd3bd45c3cdf0963 (diff)
downloadQt-85e95859047d2c198e495cd4cb6a4352df76e6d4.zip
Qt-85e95859047d2c198e495cd4cb6a4352df76e6d4.tar.gz
Qt-85e95859047d2c198e495cd4cb6a4352df76e6d4.tar.bz2
Fix hover handling in QTreeView
Cached hoverBranch could get invalid if branches were collapsed or expanded programmatically, leading to a crash in some situations. Fixed the logic for updating hovered over branch indicators and also now update hoverBranch when drawing so that it is guaranteed to be up to date there - this fixes issues like hover indicator not updating when the view is programmatically scrolled. Task-number: QTBUG-27158 Change-Id: I5bd1ad76aee512ad78df33959a84ead16886a47c Reviewed-by: Stephen Kelly <stephen.kelly@kdab.com> (cherry picked from qt5/qtbase commit fd6a870136ab2fdb3ce8b516abcf8c05d45caba7))
Diffstat (limited to 'src/gui/itemviews/qtreeview.cpp')
-rw-r--r--src/gui/itemviews/qtreeview.cpp24
1 files changed, 11 insertions, 13 deletions
diff --git a/src/gui/itemviews/qtreeview.cpp b/src/gui/itemviews/qtreeview.cpp
index 15ec9a4..97d23a5 100644
--- a/src/gui/itemviews/qtreeview.cpp
+++ b/src/gui/itemviews/qtreeview.cpp
@@ -1236,19 +1236,14 @@ bool QTreeView::viewportEvent(QEvent *event)
QHoverEvent *he = static_cast<QHoverEvent*>(event);
int oldBranch = d->hoverBranch;
d->hoverBranch = d->itemDecorationAt(he->pos());
- if (oldBranch != d->hoverBranch) {
- //we need to paint the whole items (including the decoration) so that when the user
- //moves the mouse over those elements they are updated
- if (oldBranch >= 0) {
- int y = d->coordinateForItem(oldBranch);
- int h = d->itemHeight(oldBranch);
- viewport()->update(QRect(0, y, viewport()->width(), h));
- }
- if (d->hoverBranch >= 0) {
- int y = d->coordinateForItem(d->hoverBranch);
- int h = d->itemHeight(d->hoverBranch);
- viewport()->update(QRect(0, y, viewport()->width(), h));
- }
+ QModelIndex newIndex = indexAt(he->pos());
+ if (d->hover != newIndex || d->hoverBranch != oldBranch) {
+ // Update the whole hovered over row. No need to update the old hovered
+ // row, that is taken care in superclass hover handling.
+ QRect rect = visualRect(newIndex);
+ rect.setX(0);
+ rect.setWidth(viewport()->width());
+ viewport()->update(rect);
}
break; }
default:
@@ -1414,6 +1409,9 @@ void QTreeView::drawTree(QPainter *painter, const QRegion &region) const
const int viewportWidth = d->viewport->width();
+ QPoint hoverPos = d->viewport->mapFromGlobal(QCursor::pos());
+ d->hoverBranch = d->itemDecorationAt(hoverPos);
+
QVector<QRect> rects = region.rects();
QVector<int> drawn;
bool multipleRects = (rects.size() > 1);