Add ability to delete groups via gui.

This commit is contained in:
Florian Geyer 2012-04-21 19:06:28 +02:00 committed by Felix Geyer
parent 19bacd6737
commit 8467e7756d
11 changed files with 153 additions and 29 deletions

View file

@ -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;
}