keepassxc/src/gui/entry/EntryModel.h

81 lines
2.4 KiB
C
Raw Normal View History

2010-08-18 16:22:48 +02: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/>.
*/
#ifndef KEEPASSX_ENTRYMODEL_H
#define KEEPASSX_ENTRYMODEL_H
#include <QtCore/QAbstractTableModel>
2012-06-29 14:15:16 +02:00
#include "core/Global.h"
2010-08-18 16:22:48 +02:00
class Entry;
class Group;
class EntryModel : public QAbstractTableModel
{
Q_OBJECT
public:
2013-04-07 21:17:08 +02:00
enum ModelColumn
{
ParentGroup = 0,
Title = 1,
Username = 2,
Url = 3
};
2012-06-29 14:15:16 +02:00
explicit EntryModel(QObject* parent = Q_NULLPTR);
Entry* entryFromIndex(const QModelIndex& index) const;
2012-05-02 19:33:37 +02:00
QModelIndex indexFromEntry(Entry* entry) const;
int rowCount(const QModelIndex& parent = QModelIndex()) const Q_DECL_OVERRIDE;
int columnCount(const QModelIndex& parent = QModelIndex()) const Q_DECL_OVERRIDE;
QVariant data(const QModelIndex& index, int role = Qt::DisplayRole) const Q_DECL_OVERRIDE;
QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const Q_DECL_OVERRIDE;
Qt::DropActions supportedDropActions() const Q_DECL_OVERRIDE;
Qt::ItemFlags flags(const QModelIndex& modelIndex) const Q_DECL_OVERRIDE;
QStringList mimeTypes() const Q_DECL_OVERRIDE;
QMimeData* mimeData(const QModelIndexList& indexes) const Q_DECL_OVERRIDE;
2010-08-18 16:22:48 +02:00
void setEntryList(const QList<Entry*>& entries);
2012-05-12 13:22:41 +02:00
Q_SIGNALS:
void switchedToEntryListMode();
void switchedToGroupMode();
2012-05-12 13:22:41 +02:00
2010-08-18 16:22:48 +02:00
public Q_SLOTS:
void setGroup(Group* group);
2010-08-18 16:22:48 +02:00
private Q_SLOTS:
void entryAboutToAdd(Entry* entry);
void entryAdded(Entry* entry);
void entryAboutToRemove(Entry* entry);
2010-08-18 16:22:48 +02:00
void entryRemoved();
void entryDataChanged(Entry* entry);
2010-08-18 16:22:48 +02:00
private:
2012-05-14 16:27:59 +02:00
void severConnections();
void makeConnections(const Group* group);
Group* m_group;
2012-05-12 13:22:41 +02:00
QList<Entry*> m_entries;
QList<Entry*> m_orgEntries;
2012-05-12 13:22:41 +02:00
QList<const Group*> m_allGroups;
2010-08-18 16:22:48 +02:00
};
#endif // KEEPASSX_ENTRYMODEL_H