mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-04 21:17:43 +03:00
Add group sorting feature
* Enabling sorting of groups and their children in ascending and descending direction
This commit is contained in:
parent
0c2d1bcc50
commit
09181fab13
15 changed files with 373 additions and 0 deletions
|
@ -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());
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue