/* * Copyright (C) 2015 David Wu * Copyright (C) 2017 KeePassXC Team * * 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 . */ #ifndef KEEPASSX_AUTOTYPEMATCHVIEW_H #define KEEPASSX_AUTOTYPEMATCHVIEW_H #include #include "autotype/AutoTypeMatch.h" class AutoTypeMatchModel; class QSortFilterProxyModel; class AutoTypeMatchView : public QTableView { Q_OBJECT public: explicit AutoTypeMatchView(QWidget* parent = nullptr); AutoTypeMatch currentMatch(); AutoTypeMatch matchFromIndex(const QModelIndex& index); void setMatchList(const QList& matches, bool selectFirst); void filterList(const QString& filter); void moveSelection(int offset); signals: void currentMatchChanged(AutoTypeMatch match); void matchActivated(AutoTypeMatch match); protected: void keyPressEvent(QKeyEvent* event) override; protected slots: void currentChanged(const QModelIndex& current, const QModelIndex& previous) override; private: AutoTypeMatchModel* const m_model; QSortFilterProxyModel* const m_sortModel; }; #endif // KEEPASSX_AUTOTYPEMATCHVIEW_H