add preview panel for entries and groups

This commit is contained in:
thez3ro 2017-08-17 21:02:21 +02:00
parent 03eda06a38
commit 1a87e30b95
No known key found for this signature in database
GPG key ID: F628F9E41DD7C073
17 changed files with 930 additions and 1 deletions

View file

@ -435,6 +435,18 @@ void Group::setParent(Database* db)
QObject::setParent(db);
}
QStringList Group::hierarchy()
{
QStringList hierarchy;
Group* group = this;
while (group->parentGroup()) {
hierarchy << group->name();
group = group->parentGroup();
}
return hierarchy;
}
Database* Group::database()
{
return m_db;