mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-04 13:07:38 +03:00
parent
bc5d0df19e
commit
304cb44d0d
9 changed files with 43 additions and 0 deletions
|
@ -826,6 +826,19 @@ void DatabaseWidget::createGroup()
|
|||
switchToGroupEdit(m_newGroup.data(), true);
|
||||
}
|
||||
|
||||
void DatabaseWidget::cloneGroup()
|
||||
{
|
||||
Group* currentGroup = m_groupView->currentGroup();
|
||||
Q_ASSERT(currentGroup && canCloneCurrentGroup());
|
||||
if (!currentGroup || !canCloneCurrentGroup()) {
|
||||
return;
|
||||
}
|
||||
|
||||
m_newGroup.reset(currentGroup->clone(Entry::CloneCopy, Group::CloneDefault | Group::CloneRenameTitle));
|
||||
m_newParent = currentGroup->parentGroup();
|
||||
switchToGroupEdit(m_newGroup.data(), true);
|
||||
}
|
||||
|
||||
void DatabaseWidget::deleteGroup()
|
||||
{
|
||||
Group* currentGroup = m_groupView->currentGroup();
|
||||
|
@ -1375,6 +1388,14 @@ void DatabaseWidget::onEntryChanged(Entry* entry)
|
|||
emit entrySelectionChanged();
|
||||
}
|
||||
|
||||
bool DatabaseWidget::canCloneCurrentGroup() const
|
||||
{
|
||||
bool isRootGroup = m_db->rootGroup() == m_groupView->currentGroup();
|
||||
// bool isRecycleBin = isRecycleBinSelected();
|
||||
|
||||
return !isRootGroup;
|
||||
}
|
||||
|
||||
bool DatabaseWidget::canDeleteCurrentGroup() const
|
||||
{
|
||||
bool isRootGroup = m_db->rootGroup() == m_groupView->currentGroup();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue