keepassxc/src/gui/entry/EntryModel.h

107 lines
3.1 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 <QAbstractTableModel>
#include <QPixmap>
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,
Password = 3,
Url = 4,
Notes = 5,
Expires = 6,
Created = 7,
Modified = 8,
Accessed = 9,
Paperclip = 10,
Attachments = 11
2013-04-07 21:17:08 +02:00
};
2015-07-24 18:28:12 +02:00
explicit EntryModel(QObject* parent = nullptr);
Entry* entryFromIndex(const QModelIndex& index) const;
2012-05-02 19:33:37 +02:00
QModelIndex indexFromEntry(Entry* entry) const;
2015-07-24 18:28:12 +02:00
int rowCount(const QModelIndex& parent = QModelIndex()) const override;
int columnCount(const QModelIndex& parent = QModelIndex()) const override;
QVariant data(const QModelIndex& index, int role = Qt::DisplayRole) const override;
QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const override;
Qt::DropActions supportedDropActions() const override;
Qt::DropActions supportedDragActions() const override;
Qt::ItemFlags flags(const QModelIndex& modelIndex) const override;
QStringList mimeTypes() const override;
QMimeData* mimeData(const QModelIndexList& indexes) const override;
2010-08-18 16:22:48 +02:00
void setEntryList(const QList<Entry*>& entries);
2012-05-12 13:22:41 +02:00
bool isUsernamesHidden() const;
void setUsernamesHidden(const bool hide);
bool isPasswordsHidden() const;
void setPasswordsHidden(const bool hide);
signals:
void switchedToListMode();
void switchedToSearchMode();
void usernamesHiddenChanged();
void passwordsHiddenChanged();
2012-05-12 13:22:41 +02:00
public slots:
void setGroup(Group* group);
void toggleUsernamesHidden(const bool hide);
void togglePasswordsHidden(const bool hide);
private 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;
bool m_hideUsernames;
bool m_hidePasswords;
QPixmap m_paperClipPixmap;
QPixmap m_paperClipPixmapCentered;
static const QString HiddenContentDisplay;
static const Qt::DateFormat DateFormat;
2010-08-18 16:22:48 +02:00
};
#endif // KEEPASSX_ENTRYMODEL_H