summaryrefslogtreecommitdiffstats
path: root/src/widgets/itemviews/qlistview.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/widgets/itemviews/qlistview.cpp')
-rw-r--r--src/widgets/itemviews/qlistview.cpp34
1 files changed, 30 insertions, 4 deletions
diff --git a/src/widgets/itemviews/qlistview.cpp b/src/widgets/itemviews/qlistview.cpp
index 1248e91c8c..6b5857f1ca 100644
--- a/src/widgets/itemviews/qlistview.cpp
+++ b/src/widgets/itemviews/qlistview.cpp
@@ -1100,19 +1100,45 @@ QModelIndex QListView::moveCursor(CursorAction cursorAction, Qt::KeyboardModifie
Q_D(QListView);
Q_UNUSED(modifiers);
- QModelIndex current = currentIndex();
- if (!current.isValid()) {
+ auto findAvailableRowBackward = [d](int row) {
+ while (row >= 0 && d->isHiddenOrDisabled(row))
+ --row;
+ return row;
+ };
+
+ auto findAvailableRowForward = [d](int row) {
int rowCount = d->model->rowCount(d->root);
if (!rowCount)
- return QModelIndex();
- int row = 0;
+ return -1;
while (row < rowCount && d->isHiddenOrDisabled(row))
++row;
if (row >= rowCount)
+ return -1;
+ return row;
+ };
+
+ QModelIndex current = currentIndex();
+ if (!current.isValid()) {
+ int row = findAvailableRowForward(0);
+ if (row == -1)
return QModelIndex();
return d->model->index(row, d->column, d->root);
}
+ if ((d->flow == LeftToRight && cursorAction == MoveLeft) ||
+ (d->flow == TopToBottom && (cursorAction == MoveUp || cursorAction == MovePrevious))) {
+ const int row = findAvailableRowBackward(current.row() - 1);
+ if (row == -1)
+ return current;
+ return d->model->index(row, d->column, d->root);
+ } else if ((d->flow == LeftToRight && cursorAction == MoveRight) ||
+ (d->flow == TopToBottom && (cursorAction == MoveDown || cursorAction == MoveNext))) {
+ const int row = findAvailableRowForward(current.row() + 1);
+ if (row == -1)
+ return current;
+ return d->model->index(row, d->column, d->root);
+ }
+
const QRect initialRect = rectForIndex(current);
QRect rect = initialRect;
if (rect.isEmpty()) {