keepassxc/src/gui/EntryModel.cpp

266 lines
6.1 KiB
C++
Raw Normal View History

2010-08-18 10:22:48 -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 "EntryModel.h"
#include <QtCore/QMimeData>
2010-08-18 10:22:48 -04:00
#include "core/Entry.h"
#include "core/Group.h"
EntryModel::EntryModel(QObject* parent)
: QAbstractTableModel(parent)
, m_group(0)
{
setSupportedDragActions(Qt::MoveAction);
2010-08-18 10:22:48 -04:00
}
Entry* EntryModel::entryFromIndex(const QModelIndex& index) const
{
2012-05-12 07:22:41 -04:00
Q_ASSERT(index.isValid() && index.row() < m_entries.size());
return m_entries.at(index.row());
}
2012-05-02 13:33:37 -04:00
QModelIndex EntryModel::indexFromEntry(Entry* entry) const
{
2012-05-12 07:22:41 -04:00
int row = m_entries.indexOf(entry);
2012-05-02 13:33:37 -04:00
Q_ASSERT(row != -1);
return index(row, 0);
}
void EntryModel::setGroup(Group* group)
2010-08-18 10:22:48 -04:00
{
2012-05-12 07:22:41 -04:00
if (!group || group == m_group) {
return;
}
2010-08-18 10:22:48 -04:00
beginResetModel();
2012-05-12 07:22:41 -04:00
severConnections();
2010-08-18 10:22:48 -04:00
m_group = group;
2012-05-12 07:22:41 -04:00
m_entries = group->entries();
makeConnections(group);
2010-08-18 10:22:48 -04:00
endResetModel();
2012-05-12 07:22:41 -04:00
Q_EMIT switchedToView();
}
2012-05-14 10:27:59 -04:00
void EntryModel::setEntries(const QList<Entry*>& entries)
2012-05-12 07:22:41 -04:00
{
beginResetModel();
severConnections();
m_group = 0;
m_allGroups.clear();
m_entries = entries;
if (entries.count() > 0) {
m_allGroups = entries.at(0)->group()->database()->rootGroup()->groupsRecursive(true);
}
QListIterator<const Group*> iGroups(m_allGroups);
while (iGroups.hasNext()) {
const Group* group = iGroups.next();
makeConnections(group);
}
endResetModel();
Q_EMIT switchedToSearch();
2010-08-18 10:22:48 -04:00
}
int EntryModel::rowCount(const QModelIndex& parent) const
{
2012-05-12 07:22:41 -04:00
if (parent.isValid()) {
2010-08-18 10:22:48 -04:00
return 0;
}
else {
2012-05-12 07:22:41 -04:00
return m_entries.size();
2010-08-18 10:22:48 -04:00
}
}
int EntryModel::columnCount(const QModelIndex& parent) const
{
Q_UNUSED(parent);
2012-05-12 07:22:41 -04:00
return 4;
2010-08-18 10:22:48 -04:00
}
QVariant EntryModel::data(const QModelIndex& index, int role) const
{
if (!index.isValid()) {
return QVariant();
}
Entry* entry = entryFromIndex(index);
2010-08-18 10:22:48 -04:00
if (role == Qt::DisplayRole) {
2010-09-21 17:01:56 -04:00
switch (index.column()) {
case 0:
2012-05-12 07:22:41 -04:00
if (entry->group()) {
return entry->group()->name();
}
break;
2010-09-21 17:01:56 -04:00
case 1:
2012-05-12 07:22:41 -04:00
return entry->title();
2010-09-21 17:01:56 -04:00
case 2:
2012-05-12 07:22:41 -04:00
return entry->username();
case 3:
2010-09-21 17:01:56 -04:00
return entry->url();
}
2010-08-18 10:22:48 -04:00
}
2012-05-12 07:22:41 -04:00
else if (role == Qt::DecorationRole) {
switch (index.column()) {
case 0:
if (entry->group()) {
return entry->group()->iconPixmap();
}
break;
2012-05-12 07:22:41 -04:00
case 1:
return entry->iconPixmap();
}
2010-09-19 15:22:24 -04:00
}
2010-09-21 17:01:56 -04:00
return QVariant();
2010-08-18 10:22:48 -04:00
}
QVariant EntryModel::headerData(int section, Qt::Orientation orientation, int role) const
{
if (orientation == Qt::Horizontal && role == Qt::DisplayRole) {
2010-09-21 17:01:56 -04:00
switch (section) {
case 0:
2012-05-12 07:22:41 -04:00
return tr("Group");
2010-09-21 17:01:56 -04:00
case 1:
2012-05-12 07:22:41 -04:00
return tr("Title");
2010-09-21 17:01:56 -04:00
case 2:
2012-05-12 07:22:41 -04:00
return tr("Username");
case 3:
2010-09-21 17:01:56 -04:00
return tr("URL");
}
2010-08-18 10:22:48 -04:00
}
return QVariant();
}
Qt::DropActions EntryModel::supportedDropActions() const
{
return 0;
}
Qt::ItemFlags EntryModel::flags(const QModelIndex& modelIndex) const
{
if (!modelIndex.isValid()) {
return Qt::NoItemFlags;
}
else {
return QAbstractItemModel::flags(modelIndex) | Qt::ItemIsDragEnabled;
}
}
QStringList EntryModel::mimeTypes() const
{
QStringList types;
types << QLatin1String("application/x-keepassx-entry");
return types;
}
QMimeData* EntryModel::mimeData(const QModelIndexList& indexes) const
{
if (indexes.isEmpty()) {
return 0;
}
QMimeData* data = new QMimeData();
QByteArray encoded;
QDataStream stream(&encoded, QIODevice::WriteOnly);
for (int i = 0; i < indexes.size(); i++) {
if (!indexes[i].isValid()) {
continue;
}
2012-05-12 07:22:41 -04:00
Entry* entry = entryFromIndex(indexes[i]);
stream << entry->group()->database()->uuid() << entry->uuid();
}
data->setData(mimeTypes().first(), encoded);
return data;
}
void EntryModel::entryAboutToAdd(Entry* entry)
2010-08-18 10:22:48 -04:00
{
Q_UNUSED(entry);
2012-05-12 07:22:41 -04:00
beginInsertRows(QModelIndex(), m_entries.size(), m_entries.size());
if (!m_group) {
m_entries.append(entry);
}
2010-08-18 10:22:48 -04:00
}
void EntryModel::entryAdded()
{
2012-05-12 07:22:41 -04:00
if (m_group) {
m_entries = m_group->entries();
}
2010-08-18 10:22:48 -04:00
endInsertRows();
}
void EntryModel::entryAboutToRemove(Entry* entry)
2010-08-18 10:22:48 -04:00
{
2012-05-12 07:22:41 -04:00
beginRemoveRows(QModelIndex(), m_entries.indexOf(entry), m_entries.indexOf(entry));
if (!m_group) {
m_entries.removeAll(entry);
}
2010-08-18 10:22:48 -04:00
}
void EntryModel::entryRemoved()
{
2012-05-12 07:22:41 -04:00
if (m_group) {
m_entries = m_group->entries();
}
2010-08-18 10:22:48 -04:00
endRemoveRows();
}
void EntryModel::entryDataChanged(Entry* entry)
2010-08-18 10:22:48 -04:00
{
2012-05-12 07:22:41 -04:00
int row = m_entries.indexOf(entry);
2010-08-18 10:22:48 -04:00
Q_EMIT dataChanged(index(row, 0), index(row, columnCount()-1));
}
2012-05-12 07:22:41 -04:00
void EntryModel::severConnections()
{
if (m_group) {
disconnect(m_group, 0, this, 0);
}
QListIterator<const Group*> i(m_allGroups);
while (i.hasNext()) {
const Group* group = i.next();
disconnect(group, 0, this, 0);
}
}
void EntryModel::makeConnections(const Group *group)
{
connect(group, SIGNAL(entryAboutToAdd(Entry*)), SLOT(entryAboutToAdd(Entry*)));
connect(group, SIGNAL(entryAdded()), SLOT(entryAdded()));
connect(group, SIGNAL(entryAboutToRemove(Entry*)), SLOT(entryAboutToRemove(Entry*)));
connect(group, SIGNAL(entryRemoved()), SLOT(entryRemoved()));
connect(group, SIGNAL(entryDataChanged(Entry*)), SLOT(entryDataChanged(Entry*)));
}