keepassxc/src/gui/EntryView.cpp

115 lines
3.0 KiB
C++
Raw Normal View History

2010-08-24 16:26:52 -04:00
/*
* 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"
2012-05-11 06:01:01 -04:00
#include <QtGui/QSortFilterProxyModel>
2011-07-08 08:51:14 -04:00
#include "gui/EntryModel.h"
2010-08-24 16:26:52 -04:00
EntryView::EntryView(QWidget* parent)
: QTreeView(parent)
2012-04-23 13:44:43 -04:00
, m_model(new EntryModel(this))
2012-05-11 06:01:01 -04:00
, m_sortModel(new QSortFilterProxyModel(this))
, m_inSearch(false)
2010-08-24 16:26:52 -04:00
{
2012-05-11 06:01:01 -04:00
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);
setDragEnabled(true);
2012-05-11 06:01:01 -04:00
setSortingEnabled(true);
2010-10-06 13:40:50 -04:00
connect(this, SIGNAL(activated(const QModelIndex&)), SLOT(emitEntryActivated(const QModelIndex&)));
2011-12-29 13:01:58 -05:00
connect(selectionModel(), SIGNAL(selectionChanged(QItemSelection,QItemSelection)), SIGNAL(entrySelectionChanged()));
2012-05-12 07:22:41 -04:00
connect(m_model, SIGNAL(switchedToSearch()), this, SLOT(switchToSearch()));
connect(m_model, SIGNAL(switchedToView()), this, SLOT(switchToView()));
2012-05-11 06:01:01 -04:00
sortByColumn(0, Qt::AscendingOrder);
2010-08-24 16:26:52 -04:00
}
void EntryView::setGroup(Group* group)
{
m_model->setGroup(group);
Q_EMIT entrySelectionChanged();
2010-08-24 16:26:52 -04:00
}
2012-05-12 07:22:41 -04:00
void EntryView::search(QList<Entry*> entries)
{
m_model->setEntries(entries);
Q_EMIT entrySelectionChanged();
}
bool EntryView::inSearch()
{
return m_inSearch;
}
void EntryView::emitEntryActivated(const QModelIndex& index)
{
2012-05-11 06:01:01 -04:00
Q_EMIT entryActivated(entryFromIndex(index));
}
2010-08-24 16:26:52 -04:00
void EntryView::setModel(QAbstractItemModel* model)
{
Q_UNUSED(model);
Q_ASSERT(false);
}
2011-12-29 13:01:58 -05:00
Entry* EntryView::currentEntry()
{
// TODO: use selection instead of current?
2012-05-11 06:01:01 -04:00
return m_model->entryFromIndex(m_sortModel->mapToSource(currentIndex()));
2011-12-29 13:01:58 -05:00
}
bool EntryView::isSingleEntrySelected()
{
return (selectionModel()->selectedRows().size() == 1);
}
2012-05-02 13:33:37 -04:00
void EntryView::setCurrentEntry(Entry* entry)
{
2012-05-11 06:01:01 -04:00
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;
}
2012-05-02 13:33:37 -04:00
}
2012-05-12 07:22:41 -04:00
void EntryView::switchToSearch()
{
showColumn(0);
m_inSearch = true;
2012-05-12 07:22:41 -04:00
}
void EntryView::switchToView()
{
hideColumn(0);
m_inSearch = false;
2012-05-12 07:22:41 -04:00
}