Remove dependency to Group- and EntryView from MainWindow.

This commit is contained in:
Florian Geyer 2014-05-15 18:05:58 +02:00
parent b718e9d8f2
commit 9363d23e09
6 changed files with 39 additions and 12 deletions

View file

@ -811,3 +811,23 @@ void DatabaseWidget::updateFilename(const QString& fileName)
{
m_filename = fileName;
}
int DatabaseWidget::numberOfSelectedEntries()
{
return m_entryView->numberOfSelectedEntries();
}
QStringList DatabaseWidget::customEntryAttributes()
{
Entry* entry = m_entryView->currentEntry();
if (!entry) {
return QStringList();
}
return entry->attributes()->customKeys();
}
bool DatabaseWidget::isGroupSelected()
{
return m_groupView->currentGroup() != Q_NULLPTR;
}