keepassxc/src/gui/entry/EntryView.h

61 lines
1.6 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 <QtGui/QTreeView>
class Entry;
2010-08-24 22:26:52 +02:00
class EntryModel;
class Group;
2012-05-11 12:01:01 +02:00
class QSortFilterProxyModel;
2010-08-24 22:26:52 +02:00
class EntryView : public QTreeView
{
Q_OBJECT
public:
explicit EntryView(QWidget* parent = 0);
void setModel(QAbstractItemModel* model);
2011-12-29 19:01:58 +01:00
Entry* currentEntry();
bool isSingleEntrySelected();
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);
2012-05-14 16:27:59 +02:00
void search(const QList<Entry*>& entries);
bool inSearch();
2010-08-24 22:26:52 +02:00
public Q_SLOTS:
void setGroup(Group* group);
private Q_SLOTS:
void emitEntryActivated(const QModelIndex& index);
2012-05-12 13:22:41 +02:00
void switchToSearch();
void switchToView();
Q_SIGNALS:
void entryActivated(Entry* entry);
2011-12-29 19:01:58 +01:00
void entrySelectionChanged();
2010-08-24 22:26:52 +02:00
private:
2012-04-23 19:44:43 +02:00
EntryModel* const m_model;
2012-05-11 12:01:01 +02:00
QSortFilterProxyModel* const m_sortModel;
bool m_inSearch;
2010-08-24 22:26:52 +02:00
};
#endif // KEEPASSX_ENTRYVIEW_H