mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2024-10-01 01:26:01 -04:00
125 lines
3.3 KiB
C++
125 lines
3.3 KiB
C++
/*
|
|
* Copyright (C) 2010 Felix Geyer <debfx@fobos.de>
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 2 or (at your option)
|
|
* version 3 of the License.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include "EntryView.h"
|
|
|
|
#include <QtGui/QSortFilterProxyModel>
|
|
|
|
#include "gui/entry/EntryModel.h"
|
|
|
|
EntryView::EntryView(QWidget* parent)
|
|
: QTreeView(parent)
|
|
, m_model(new EntryModel(this))
|
|
, m_sortModel(new QSortFilterProxyModel(this))
|
|
, m_inSearch(false)
|
|
{
|
|
m_sortModel->setSourceModel(m_model);
|
|
m_sortModel->setDynamicSortFilter(true);
|
|
m_sortModel->setSortLocaleAware(true);
|
|
m_sortModel->setSortCaseSensitivity(Qt::CaseInsensitive);
|
|
m_sortModel->setSupportedDragActions(m_model->supportedDragActions());
|
|
QTreeView::setModel(m_sortModel);
|
|
|
|
setUniformRowHeights(true);
|
|
setRootIsDecorated(false);
|
|
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()));
|
|
connect(m_model, SIGNAL(switchedToSearch()), SLOT(switchToSearch()));
|
|
connect(m_model, SIGNAL(switchedToView()), SLOT(switchToView()));
|
|
|
|
sortByColumn(0, Qt::AscendingOrder);
|
|
}
|
|
|
|
void EntryView::setGroup(Group* group)
|
|
{
|
|
m_model->setGroup(group);
|
|
Q_EMIT entrySelectionChanged();
|
|
}
|
|
|
|
void EntryView::search(const QList<Entry*>& entries)
|
|
{
|
|
m_model->setEntries(entries);
|
|
Q_EMIT entrySelectionChanged();
|
|
}
|
|
|
|
bool EntryView::inSearch()
|
|
{
|
|
return m_inSearch;
|
|
}
|
|
|
|
void EntryView::emitEntryActivated(const QModelIndex& index)
|
|
{
|
|
Q_EMIT entryActivated(entryFromIndex(index));
|
|
}
|
|
|
|
void EntryView::setModel(QAbstractItemModel* model)
|
|
{
|
|
Q_UNUSED(model);
|
|
Q_ASSERT(false);
|
|
}
|
|
|
|
Entry* EntryView::currentEntry()
|
|
{
|
|
QModelIndexList list = selectionModel()->selectedRows();
|
|
if (list.size() == 1) {
|
|
return m_model->entryFromIndex(m_sortModel->mapToSource(list.first()));
|
|
}
|
|
else {
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
bool EntryView::isSingleEntrySelected()
|
|
{
|
|
return (selectionModel()->selectedRows().size() == 1);
|
|
}
|
|
|
|
void EntryView::setCurrentEntry(Entry* entry)
|
|
{
|
|
setCurrentIndex(m_sortModel->mapFromSource(m_model->indexFromEntry(entry)));
|
|
}
|
|
|
|
Entry* EntryView::entryFromIndex(const QModelIndex& index)
|
|
{
|
|
if (index.isValid()) {
|
|
return m_model->entryFromIndex(m_sortModel->mapToSource(index));
|
|
}
|
|
else {
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
void EntryView::switchToSearch()
|
|
{
|
|
sortByColumn(1, Qt::AscendingOrder); // TODO: should probably be improved
|
|
sortByColumn(0, Qt::AscendingOrder);
|
|
showColumn(0);
|
|
m_inSearch = true;
|
|
}
|
|
|
|
void EntryView::switchToView()
|
|
{
|
|
sortByColumn(1, Qt::AscendingOrder);
|
|
hideColumn(0);
|
|
m_inSearch = false;
|
|
}
|