keepassxc/src/gui/entry/EntryView.h

67 lines
1.8 KiB
C++
Raw Normal View History

2010-08-24 22:26:52 +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_ENTRYVIEW_H
#define KEEPASSX_ENTRYVIEW_H
#include <QTreeView>
2010-08-24 22:26:52 +02:00
#include "gui/entry/EntryModel.h"
class Entry;
2010-08-24 22:26:52 +02:00
class EntryModel;
class Group;
class SortFilterHideProxyModel;
2010-08-24 22:26:52 +02:00
class EntryView : public QTreeView
{
Q_OBJECT
public:
2015-07-24 18:28:12 +02:00
explicit EntryView(QWidget* parent = nullptr);
void setModel(QAbstractItemModel* model) override;
2011-12-29 19:01:58 +01:00
Entry* currentEntry();
2012-05-02 19:33:37 +02:00
void setCurrentEntry(Entry* entry);
2012-05-11 12:01:01 +02:00
Entry* entryFromIndex(const QModelIndex& index);
void setEntryList(const QList<Entry*>& entries);
bool inEntryListMode();
int numberOfSelectedEntries();
void setFirstEntryActive();
2010-08-24 22:26:52 +02:00
public slots:
2010-08-24 22:26:52 +02:00
void setGroup(Group* group);
signals:
void entryActivated(Entry* entry, EntryModel::ModelColumn column);
void entrySelectionChanged();
protected:
2015-07-24 18:28:12 +02:00
void keyPressEvent(QKeyEvent* event) override;
private slots:
void emitEntryActivated(const QModelIndex& index);
void switchToEntryListMode();
void switchToGroupMode();
2010-08-24 22:26:52 +02:00
private:
2012-04-23 19:44:43 +02:00
EntryModel* const m_model;
SortFilterHideProxyModel* const m_sortModel;
bool m_inEntryListMode;
2010-08-24 22:26:52 +02:00
};
#endif // KEEPASSX_ENTRYVIEW_H