Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/keepassxreboot/keepassxc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/autotype/AutoTypeSelectDialog.h')
-rw-r--r--src/autotype/AutoTypeSelectDialog.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/autotype/AutoTypeSelectDialog.h b/src/autotype/AutoTypeSelectDialog.h
index cee3c4087..a22218f1f 100644
--- a/src/autotype/AutoTypeSelectDialog.h
+++ b/src/autotype/AutoTypeSelectDialog.h
@@ -22,6 +22,7 @@
#include <QDialog>
#include <QHash>
+#include "autotype/AutoTypeFilterLineEdit.h"
#include "core/AutoTypeMatch.h"
class AutoTypeSelectView;
@@ -44,9 +45,14 @@ public slots:
private slots:
void emitMatchActivated(const QModelIndex& index);
void matchRemoved();
+ void filterList(QString filterString);
+ void moveSelectionUp();
+ void moveSelectionDown();
+ void activateCurrentIndex();
private:
AutoTypeSelectView* const m_view;
+ AutoTypeFilterLineEdit* const m_filterLineEdit;
bool m_matchActivatedEmitted;
bool m_rejected;
};