mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-06-09 15:33:07 -04:00
Allow selecting multiple rows in entry view.
This commit is contained in:
parent
5c0a83eae5
commit
28bfd39bca
3 changed files with 14 additions and 8 deletions
|
@ -39,6 +39,7 @@ EntryView::EntryView(QWidget* parent)
|
|||
setAlternatingRowColors(true);
|
||||
setDragEnabled(true);
|
||||
setSortingEnabled(true);
|
||||
setSelectionMode(QAbstractItemView::ExtendedSelection);
|
||||
|
||||
connect(this, SIGNAL(activated(QModelIndex)), SLOT(emitEntryActivated(QModelIndex)));
|
||||
connect(selectionModel(), SIGNAL(selectionChanged(QItemSelection,QItemSelection)), SIGNAL(entrySelectionChanged()));
|
||||
|
@ -78,8 +79,13 @@ void EntryView::setModel(QAbstractItemModel* model)
|
|||
|
||||
Entry* EntryView::currentEntry()
|
||||
{
|
||||
// TODO: use selection instead of current?
|
||||
return m_model->entryFromIndex(m_sortModel->mapToSource(currentIndex()));
|
||||
QModelIndexList list = selectionModel()->selectedRows();
|
||||
if (list.size() == 1) {
|
||||
return m_model->entryFromIndex(m_sortModel->mapToSource(list.first()));
|
||||
}
|
||||
else {
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
bool EntryView::isSingleEntrySelected()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue