mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2024-12-28 08:49:42 -05:00
Only poll YubiKey for currently visible tab
This commit is contained in:
parent
8e91a89a37
commit
91761a2bea
@ -102,6 +102,10 @@ void DatabaseOpenWidget::showEvent(QShowEvent* event)
|
|||||||
{
|
{
|
||||||
DialogyWidget::showEvent(event);
|
DialogyWidget::showEvent(event);
|
||||||
m_ui->editPassword->setFocus();
|
m_ui->editPassword->setFocus();
|
||||||
|
|
||||||
|
#ifdef WITH_XC_YUBIKEY
|
||||||
|
pollYubikey();
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
void DatabaseOpenWidget::load(const QString& filename)
|
void DatabaseOpenWidget::load(const QString& filename)
|
||||||
@ -118,11 +122,6 @@ void DatabaseOpenWidget::load(const QString& filename)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef WITH_XC_YUBIKEY
|
|
||||||
m_ui->comboChallengeResponse->clear();
|
|
||||||
pollYubikey();
|
|
||||||
#endif
|
|
||||||
|
|
||||||
m_ui->editPassword->setFocus();
|
m_ui->editPassword->setFocus();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -229,7 +228,7 @@ CompositeKey DatabaseOpenWidget::databaseKey()
|
|||||||
|
|
||||||
void DatabaseOpenWidget::reject()
|
void DatabaseOpenWidget::reject()
|
||||||
{
|
{
|
||||||
Q_EMIT editFinished(false);
|
emit editFinished(false);
|
||||||
}
|
}
|
||||||
|
|
||||||
void DatabaseOpenWidget::activatePassword()
|
void DatabaseOpenWidget::activatePassword()
|
||||||
|
@ -41,18 +41,21 @@ public:
|
|||||||
void enterKey(const QString& pw, const QString& keyFile);
|
void enterKey(const QString& pw, const QString& keyFile);
|
||||||
Database* database();
|
Database* database();
|
||||||
|
|
||||||
Q_SIGNALS:
|
public slots:
|
||||||
|
void pollYubikey();
|
||||||
|
|
||||||
|
signals:
|
||||||
void editFinished(bool accepted);
|
void editFinished(bool accepted);
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
void showEvent(QShowEvent* event) override;
|
void showEvent(QShowEvent* event) override;
|
||||||
CompositeKey databaseKey();
|
CompositeKey databaseKey();
|
||||||
|
|
||||||
protected Q_SLOTS:
|
protected slots:
|
||||||
virtual void openDatabase();
|
virtual void openDatabase();
|
||||||
void reject();
|
void reject();
|
||||||
|
|
||||||
private Q_SLOTS:
|
private slots:
|
||||||
void activatePassword();
|
void activatePassword();
|
||||||
void activateKeyFile();
|
void activateKeyFile();
|
||||||
void activateChallengeResponse();
|
void activateChallengeResponse();
|
||||||
@ -60,10 +63,8 @@ private Q_SLOTS:
|
|||||||
void browseKeyFile();
|
void browseKeyFile();
|
||||||
void yubikeyDetected(int slot, bool blocking);
|
void yubikeyDetected(int slot, bool blocking);
|
||||||
void noYubikeyFound();
|
void noYubikeyFound();
|
||||||
void pollYubikey();
|
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
|
|
||||||
const QScopedPointer<Ui::DatabaseOpenWidget> m_ui;
|
const QScopedPointer<Ui::DatabaseOpenWidget> m_ui;
|
||||||
Database* m_db;
|
Database* m_db;
|
||||||
QString m_filename;
|
QString m_filename;
|
||||||
|
@ -156,7 +156,7 @@
|
|||||||
<item row="1" column="1">
|
<item row="1" column="1">
|
||||||
<widget class="QPushButton" name="buttonRedetectYubikey">
|
<widget class="QPushButton" name="buttonRedetectYubikey">
|
||||||
<property name="enabled">
|
<property name="enabled">
|
||||||
<bool>false</bool>
|
<bool>true</bool>
|
||||||
</property>
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Refresh</string>
|
<string>Refresh</string>
|
||||||
|
@ -53,7 +53,7 @@ const int DatabaseTabWidget::LastDatabasesCount = 5;
|
|||||||
|
|
||||||
DatabaseTabWidget::DatabaseTabWidget(QWidget* parent)
|
DatabaseTabWidget::DatabaseTabWidget(QWidget* parent)
|
||||||
: QTabWidget(parent)
|
: QTabWidget(parent)
|
||||||
, m_dbWidgetSateSync(new DatabaseWidgetStateSync(this))
|
, m_dbWidgetStateSync(new DatabaseWidgetStateSync(this))
|
||||||
{
|
{
|
||||||
DragTabBar* tabBar = new DragTabBar(this);
|
DragTabBar* tabBar = new DragTabBar(this);
|
||||||
setTabBar(tabBar);
|
setTabBar(tabBar);
|
||||||
@ -61,7 +61,7 @@ DatabaseTabWidget::DatabaseTabWidget(QWidget* parent)
|
|||||||
|
|
||||||
connect(this, SIGNAL(tabCloseRequested(int)), SLOT(closeDatabase(int)));
|
connect(this, SIGNAL(tabCloseRequested(int)), SLOT(closeDatabase(int)));
|
||||||
connect(this, SIGNAL(currentChanged(int)), SLOT(emitActivateDatabaseChanged()));
|
connect(this, SIGNAL(currentChanged(int)), SLOT(emitActivateDatabaseChanged()));
|
||||||
connect(this, SIGNAL(activateDatabaseChanged(DatabaseWidget*)), m_dbWidgetSateSync, SLOT(setActive(DatabaseWidget*)));
|
connect(this, SIGNAL(activateDatabaseChanged(DatabaseWidget*)), m_dbWidgetStateSync, SLOT(setActive(DatabaseWidget*)));
|
||||||
connect(autoType(), SIGNAL(globalShortcutTriggered()), SLOT(performGlobalAutoType()));
|
connect(autoType(), SIGNAL(globalShortcutTriggered()), SLOT(performGlobalAutoType()));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -116,7 +116,7 @@ private:
|
|||||||
|
|
||||||
KeePass2Writer m_writer;
|
KeePass2Writer m_writer;
|
||||||
QHash<Database*, DatabaseManagerStruct> m_dbList;
|
QHash<Database*, DatabaseManagerStruct> m_dbList;
|
||||||
DatabaseWidgetStateSync* m_dbWidgetSateSync;
|
DatabaseWidgetStateSync* m_dbWidgetStateSync;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // KEEPASSX_DATABASETABWIDGET_H
|
#endif // KEEPASSX_DATABASETABWIDGET_H
|
||||||
|
Loading…
Reference in New Issue
Block a user