mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-04 21:17:43 +03:00
add preview panel for entries and groups
This commit is contained in:
parent
03eda06a38
commit
1a87e30b95
17 changed files with 930 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue