mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-05 13:37:43 +03:00
Add ability to delete groups via gui.
This commit is contained in:
parent
19bacd6737
commit
8467e7756d
11 changed files with 153 additions and 29 deletions
|
@ -119,9 +119,6 @@ void DatabaseWidget::deleteEntry()
|
|||
if (result == QMessageBox::Yes) {
|
||||
delete m_entryView->currentEntry();
|
||||
}
|
||||
else {
|
||||
return;
|
||||
}
|
||||
}
|
||||
else {
|
||||
m_db->recycleEntry(m_entryView->currentEntry());
|
||||
|
@ -136,6 +133,24 @@ void DatabaseWidget::createGroup()
|
|||
switchToGroupEdit(m_newGroup, true);
|
||||
}
|
||||
|
||||
void DatabaseWidget::deleteGroup()
|
||||
{
|
||||
Q_ASSERT(canDeleteCurrentGoup());
|
||||
|
||||
bool inRecylceBin = Tools::hasChild(m_db->metadata()->recycleBin(), m_groupView->currentGroup());
|
||||
if (inRecylceBin || !m_db->metadata()->recycleBinEnabled()) {
|
||||
QMessageBox::StandardButton result = QMessageBox::question(
|
||||
this, tr("Question"), tr("Do you really want to delete this group for good?"),
|
||||
QMessageBox::Yes | QMessageBox::No);
|
||||
if (result == QMessageBox::Yes) {
|
||||
delete m_groupView->currentGroup();
|
||||
}
|
||||
}
|
||||
else {
|
||||
m_db->recycleGroup(m_groupView->currentGroup());
|
||||
}
|
||||
}
|
||||
|
||||
void DatabaseWidget::switchToView(bool accepted)
|
||||
{
|
||||
if (m_newGroup) {
|
||||
|
@ -235,3 +250,10 @@ bool DatabaseWidget::dbHasKey()
|
|||
{
|
||||
return m_db->hasKey();
|
||||
}
|
||||
|
||||
bool DatabaseWidget::canDeleteCurrentGoup()
|
||||
{
|
||||
bool isRootGroup = m_db->rootGroup() == m_groupView->currentGroup();
|
||||
bool isRecycleBin = m_db->metadata()->recycleBin() == m_groupView->currentGroup();
|
||||
return !isRootGroup && !isRecycleBin;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue