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/AutoTypeSelectView.h')
-rw-r--r--src/autotype/AutoTypeSelectView.h12
1 files changed, 7 insertions, 5 deletions
diff --git a/src/autotype/AutoTypeSelectView.h b/src/autotype/AutoTypeSelectView.h
index a781757b8..e6a2ec652 100644
--- a/src/autotype/AutoTypeSelectView.h
+++ b/src/autotype/AutoTypeSelectView.h
@@ -18,11 +18,9 @@
#ifndef KEEPASSX_AUTOTYPESELECTVIEW_H
#define KEEPASSX_AUTOTYPESELECTVIEW_H
-#include "gui/entry/EntryView.h"
+#include "gui/entry/AutoTypeMatchView.h"
-class Entry;
-
-class AutoTypeSelectView : public EntryView
+class AutoTypeSelectView : public AutoTypeMatchView
{
Q_OBJECT
@@ -31,9 +29,13 @@ public:
protected:
void mouseMoveEvent(QMouseEvent* event) override;
+ void keyReleaseEvent(QKeyEvent* e) override;
private slots:
- void selectFirstEntry();
+ void selectFirstMatch();
+
+signals:
+ void rejected();
};
#endif // KEEPASSX_AUTOTYPESELECTVIEW_H