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/gui/DatabaseOpenWidget.h')
-rw-r--r--src/gui/DatabaseOpenWidget.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/gui/DatabaseOpenWidget.h b/src/gui/DatabaseOpenWidget.h
index 72f07cfa8..1ea05ca9f 100644
--- a/src/gui/DatabaseOpenWidget.h
+++ b/src/gui/DatabaseOpenWidget.h
@@ -60,21 +60,24 @@ protected slots:
void reject();
private slots:
- void activatePassword();
- void activateKeyFile();
- void activateChallengeResponse();
void browseKeyFile();
+ void clearKeyFileEdit();
+ void handleKeyFileComboEdited();
+ void handleKeyFileComboChanged();
void yubikeyDetected(int slot, bool blocking);
void yubikeyDetectComplete();
void noYubikeyFound();
+ void openHardwareKeyHelp();
protected:
const QScopedPointer<Ui::DatabaseOpenWidget> m_ui;
QSharedPointer<Database> m_db;
QString m_filename;
+ bool m_retryUnlockWithEmptyPassword = false;
private:
bool m_yubiKeyBeingPolled = false;
+ bool m_keyFileComboEdited = false;
Q_DISABLE_COPY(DatabaseOpenWidget)
};