Skip to content
Snippets Groups Projects
Commit 3c5d7378 authored by Eike Ziller's avatar Eike Ziller
Browse files

Fix searching in search results (and other tree views).


Task-number: QTCREATORBUG-9066

Change-Id: I76b7916b4ce64c400c175e72edc2b0a3ef015156
Reviewed-by: default avatarOrgad Shaneh <orgads@gmail.com>
Reviewed-by: default avatarAurindam Jana <aurindam.jana@digia.com>
parent 72989840
No related branches found
No related tags found
No related merge requests found
...@@ -166,7 +166,7 @@ IFindSupport::Result TreeViewFind::find(const QString &searchTxt, ...@@ -166,7 +166,7 @@ IFindSupport::Result TreeViewFind::find(const QString &searchTxt,
Qt::CaseInsensitive)); Qt::CaseInsensitive));
if (searchExpr.indexIn(text) != -1 if (searchExpr.indexIn(text) != -1
&& d->m_view->model()->flags(index) & Qt::ItemIsSelectable && d->m_view->model()->flags(index) & Qt::ItemIsSelectable
&& currentRow != index.row()) && (index.row() != currentRow || index.parent() != currentIndex.parent()))
resultIndex = index; resultIndex = index;
} else { } else {
QTextDocument doc(text); QTextDocument doc(text);
...@@ -174,7 +174,7 @@ IFindSupport::Result TreeViewFind::find(const QString &searchTxt, ...@@ -174,7 +174,7 @@ IFindSupport::Result TreeViewFind::find(const QString &searchTxt,
flags & (Find::FindCaseSensitively | flags & (Find::FindCaseSensitively |
Find::FindWholeWords)).isNull() Find::FindWholeWords)).isNull()
&& d->m_view->model()->flags(index) & Qt::ItemIsSelectable && d->m_view->model()->flags(index) & Qt::ItemIsSelectable
&& currentRow != index.row()) && (index.row() != currentRow || index.parent() != currentIndex.parent()))
resultIndex = index; resultIndex = index;
} }
} }
...@@ -202,33 +202,35 @@ QModelIndex TreeViewFind::nextIndex(const QModelIndex &idx, bool *wrapped) const ...@@ -202,33 +202,35 @@ QModelIndex TreeViewFind::nextIndex(const QModelIndex &idx, bool *wrapped) const
if (!idx.isValid()) if (!idx.isValid())
return model->index(0, 0); return model->index(0, 0);
// same parent has more columns, go to next column
if (idx.column() + 1 < model->columnCount(idx.parent()))
return model->index(idx.row(), idx.column() + 1, idx.parent());
if (model->rowCount(idx) > 0) { // tree views have their children attached to first column
// node with children // make sure we are at first column
return idx.child(0, 0); QModelIndex current = model->index(idx.row(), 0, idx.parent());
// check for children
if (model->rowCount(current) > 0) {
return current.child(0, 0);
} }
// leaf node
// no more children, go up and look for parent with more children
QModelIndex nextIndex; QModelIndex nextIndex;
QModelIndex current = idx;
while (!nextIndex.isValid()) { while (!nextIndex.isValid()) {
int row = current.row(); int row = current.row();
int column = current.column();
current = current.parent(); current = current.parent();
if (column + 1 < model->columnCount(current)) { if (row + 1 < model->rowCount(current)) {
nextIndex = model->index(row, column + 1, current); // Same parent has another child
nextIndex = model->index(row + 1, 0, current);
} else { } else {
if (row + 1 < model->rowCount(current)) { // go up one parent
// Same parent has another child if (!current.isValid()) {
nextIndex = model->index(row + 1, 0, current); // we start from the beginning
} else { if (wrapped)
// go up one parent *wrapped = true;
if (!current.isValid()) { nextIndex = model->index(0, 0);
// we start from the beginning
if (wrapped)
*wrapped = true;
nextIndex = model->index(0, 0);
}
} }
} }
} }
...@@ -239,34 +241,34 @@ QModelIndex TreeViewFind::prevIndex(const QModelIndex &idx, bool *wrapped) const ...@@ -239,34 +241,34 @@ QModelIndex TreeViewFind::prevIndex(const QModelIndex &idx, bool *wrapped) const
{ {
if (wrapped) if (wrapped)
*wrapped = false; *wrapped = false;
QAbstractItemModel *model = d->m_view->model();
// if same parent has earlier columns, just move there
if (idx.column() > 0)
return model->index(idx.row(), idx.column() - 1, idx.parent());
QModelIndex current = idx; QModelIndex current = idx;
bool checkForChildren = true; bool checkForChildren = true;
QAbstractItemModel *model = d->m_view->model();
if (current.isValid()) { if (current.isValid()) {
int row = current.row(); int row = current.row();
int column = current.column(); if (row > 0) {
if (column > 0) { current = model->index(row - 1, 0, current.parent());
current = model->index(row, column - 1, current.parent());
} else { } else {
if (row > 0) { current = current.parent();
current = model->index(row - 1, model->columnCount(current.parent()) - 1, checkForChildren = !current.isValid();
current.parent()); if (checkForChildren && wrapped) {
} else { // we start from the end
current = current.parent(); *wrapped = true;
checkForChildren = !current.isValid();
if (checkForChildren && wrapped) {
// we start from the end
*wrapped = true;
}
} }
} }
} }
if (checkForChildren) { if (checkForChildren) {
// traverse down the hierarchy // traverse down the hierarchy
while (int rc = model->rowCount(current)) { while (int rc = model->rowCount(current)) {
current = model->index(rc - 1, model->columnCount(current) - 1, current); current = model->index(rc - 1, 0, current);
} }
} }
// set to last column
current = model->index(current.row(), model->columnCount(current.parent()) - 1, current.parent());
return current; return current;
} }
......
...@@ -10,6 +10,7 @@ SUBDIRS += \ ...@@ -10,6 +10,7 @@ SUBDIRS += \
fakevim \ fakevim \
generichighlighter \ generichighlighter \
profilewriter \ profilewriter \
treeviewfind \
ioutils \ ioutils \
qtcprocess \ qtcprocess \
utils \ utils \
......
include(../qttest.pri)
include($$IDE_SOURCE_TREE/src/plugins/find/find.pri)
LIBS *= -L$$IDE_LIBRARY_PATH/QtProject
SOURCES += \
tst_treeviewfind.cpp
/****************************************************************************
**
** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/legal
**
** This file is part of Qt Creator.
**
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and Digia. For licensing terms and
** conditions see http://qt.digia.com/licensing. For further information
** use the contact form at http://qt.digia.com/contact-us.
**
** GNU Lesser General Public License Usage
** Alternatively, this file may be used under the terms of the GNU Lesser
** General Public License version 2.1 as published by the Free Software
** Foundation and appearing in the file LICENSE.LGPL included in the
** packaging of this file. Please review the following information to
** ensure the GNU Lesser General Public License version 2.1 requirements
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
**
** In addition, as a special exception, Digia gives you certain additional
** rights. These rights are described in the Digia Qt LGPL Exception
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
**
****************************************************************************/
#include <find/treeviewfind.h>
#include <QtTest>
#include <QTreeWidget>
class tst_treeviewfind : public QObject
{
Q_OBJECT
private slots:
void wrapping();
void columns();
};
void tst_treeviewfind::wrapping()
{
// set up tree
// search for FOO in
// * HEADER1
// * FOO1
// * HEADER2
// * A
// * HEADER3
// * FOO2
QTreeWidget *tree = new QTreeWidget;
tree->setColumnCount(1);
QList<QTreeWidgetItem *> toplevelitems;
QTreeWidgetItem *item;
item = new QTreeWidgetItem((QTreeWidget *)0, QStringList() << QLatin1String("HEADER1"));
item->addChild(new QTreeWidgetItem((QTreeWidget *)0, QStringList() << QLatin1String("FOO1")));
toplevelitems << item;
item = new QTreeWidgetItem((QTreeWidget *)0, QStringList() << QLatin1String("HEADER2"));
item->addChild(new QTreeWidgetItem((QTreeWidget *)0, QStringList() << QLatin1String("A")));
toplevelitems << item;
item = new QTreeWidgetItem((QTreeWidget *)0, QStringList() << QLatin1String("HEADER3"));
item->addChild(new QTreeWidgetItem((QTreeWidget *)0, QStringList() << QLatin1String("FOO2")));
toplevelitems << item;
tree->addTopLevelItems(toplevelitems);
// set up
Find::TreeViewFind *findSupport = new Find::TreeViewFind(tree);
tree->setCurrentItem(toplevelitems.at(2)->child(0));
QCOMPARE(tree->currentItem()->text(0), QString::fromLatin1("FOO2"));
// forward
findSupport->findStep(QLatin1String("FOO"), 0);
QCOMPARE(tree->currentItem(), toplevelitems.at(0)->child(0));
// backward
tree->setCurrentItem(toplevelitems.at(0)->child(0));
QCOMPARE(tree->currentItem()->text(0), QString::fromLatin1("FOO1"));
findSupport->findStep(QLatin1String("FOO"), Find::FindBackward);
QCOMPARE(tree->currentItem(), toplevelitems.at(2)->child(0));
// clean up
delete findSupport;
delete tree;
}
void tst_treeviewfind::columns()
{
// set up tree
// search for FOO in
// * HEADER1 | HEADER1
// * FOO1 | A
// * HEADER2 | FOOHEADER2
// * FOO2 | FOO3
// * HEADER3 | HEADER2
// * A | FOO4
QTreeWidget *tree = new QTreeWidget;
tree->setColumnCount(2);
QList<QTreeWidgetItem *> toplevelitems;
QTreeWidgetItem *item;
item = new QTreeWidgetItem((QTreeWidget *)0, QStringList() << QLatin1String("HEADER1") << QLatin1String("HEADER1"));
item->addChild(new QTreeWidgetItem((QTreeWidget *)0, QStringList() << QLatin1String("FOO1") << QLatin1String("A")));
toplevelitems << item;
item = new QTreeWidgetItem((QTreeWidget *)0, QStringList() << QLatin1String("HEADER2") << QLatin1String("FOOHEADER2"));
item->addChild(new QTreeWidgetItem((QTreeWidget *)0, QStringList() << QLatin1String("FOO2") << QLatin1String("FOO3")));
toplevelitems << item;
item = new QTreeWidgetItem((QTreeWidget *)0, QStringList() << QLatin1String("HEADER3") << QLatin1String("HEADER3"));
item->addChild(new QTreeWidgetItem((QTreeWidget *)0, QStringList() << QLatin1String("A") << QLatin1String("FOO4")));
toplevelitems << item;
tree->addTopLevelItems(toplevelitems);
// set up
Find::TreeViewFind *findSupport = new Find::TreeViewFind(tree);
tree->setCurrentItem(toplevelitems.at(0));
QCOMPARE(tree->currentItem()->text(0), QString::fromLatin1("HEADER1"));
// find in first column
findSupport->findStep(QLatin1String("FOO"), 0);
QCOMPARE(tree->currentItem(), toplevelitems.at(0)->child(0));
// find in second column of node with children
findSupport->findStep(QLatin1String("FOO"), 0);
QCOMPARE(tree->currentItem(), toplevelitems.at(1));
// again find in first column
findSupport->findStep(QLatin1String("FOO"), 0);
QCOMPARE(tree->currentItem(), toplevelitems.at(1)->child(0));
// don't stay in item if multiple columns match, and find in second column
findSupport->findStep(QLatin1String("FOO"), 0);
QCOMPARE(tree->currentItem(), toplevelitems.at(2)->child(0));
// wrap
findSupport->findStep(QLatin1String("FOO"), 0);
QCOMPARE(tree->currentItem(), toplevelitems.at(0)->child(0));
// backwards
tree->setCurrentItem(toplevelitems.at(2)->child(0));
QCOMPARE(tree->currentItem()->text(0), QString::fromLatin1("A"));
findSupport->findStep(QLatin1String("FOO"), Find::FindBackward);
QCOMPARE(tree->currentItem(), toplevelitems.at(1)->child(0));
findSupport->findStep(QLatin1String("FOO"), Find::FindBackward);
QCOMPARE(tree->currentItem(), toplevelitems.at(1));
findSupport->findStep(QLatin1String("FOO"), Find::FindBackward);
QCOMPARE(tree->currentItem(), toplevelitems.at(0)->child(0));
findSupport->findStep(QLatin1String("FOO"), Find::FindBackward);
QCOMPARE(tree->currentItem(), toplevelitems.at(2)->child(0));
// clean up
delete findSupport;
delete tree;
}
QTEST_MAIN(tst_treeviewfind)
#include "tst_treeviewfind.moc"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment