Adding Locate command. (#829)

* Adding Locate command.

* Adding group searching in locate
This commit is contained in:
louib 2017-08-05 12:20:26 -04:00 committed by GitHub
parent ca2e448684
commit b2107b5e27
8 changed files with 207 additions and 0 deletions

View file

@ -908,3 +908,25 @@ void Group::resolveConflict(Entry* existingEntry, Entry* otherEntry)
break;
}
}
QStringList Group::locate(QString locateTerm, QString currentPath)
{
Q_ASSERT(!locateTerm.isNull());
QStringList response;
for (Entry* entry : asConst(m_entries)) {
QString entryPath = currentPath + entry->title();
if (entryPath.toLower().contains(locateTerm.toLower())) {
response << entryPath;
}
}
for (Group* group : asConst(m_children)) {
for (QString path : group->locate(locateTerm, currentPath + group->name() + QString("/"))) {
response << path;
}
}
return response;
}