Add group sorting feature

* Enabling sorting of groups and their children in ascending and descending direction
This commit is contained in:
Balazs Gyurak 2019-06-18 21:58:47 +01:00 committed by Jonathan White
parent 0c2d1bcc50
commit 09181fab13
15 changed files with 373 additions and 0 deletions

View file

@ -410,3 +410,30 @@ void GroupModel::groupMoved()
{
endMoveRows();
}
void GroupModel::sortChildren(Group* rootGroup, bool reverse)
{
emit layoutAboutToBeChanged();
QList<QModelIndex> oldIndexes;
collectIndexesRecursively(oldIndexes, rootGroup->children());
rootGroup->sortChildrenRecursively(reverse);
QList<QModelIndex> newIndexes;
collectIndexesRecursively(newIndexes, rootGroup->children());
for (int i = 0; i < oldIndexes.count(); i++) {
changePersistentIndex(oldIndexes[i], newIndexes[i]);
}
emit layoutChanged();
}
void GroupModel::collectIndexesRecursively(QList<QModelIndex>& indexes, QList<Group*> groups)
{
for (auto group : groups) {
indexes.append(index(group));
collectIndexesRecursively(indexes, group->children());
}
}