mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-05 05:27:39 +03:00
parent
3b29f20d60
commit
f0204dbb10
5 changed files with 12 additions and 16 deletions
|
@ -321,7 +321,7 @@ QString BrowserService::storeKey(const QString& key)
|
||||||
|
|
||||||
do {
|
do {
|
||||||
QInputDialog keyDialog;
|
QInputDialog keyDialog;
|
||||||
connect(m_currentDatabaseWidget, SIGNAL(databaseLocked()), &keyDialog, SLOT(reject()));
|
connect(m_currentDatabaseWidget, SIGNAL(databaseLockRequested()), &keyDialog, SLOT(reject()));
|
||||||
keyDialog.setWindowTitle(tr("KeePassXC: New key association request"));
|
keyDialog.setWindowTitle(tr("KeePassXC: New key association request"));
|
||||||
keyDialog.setLabelText(tr("You have received an association request for the following database:\n%1\n\n"
|
keyDialog.setLabelText(tr("You have received an association request for the following database:\n%1\n\n"
|
||||||
"Give the connection a unique name or ID, for example:\nchrome-laptop.")
|
"Give the connection a unique name or ID, for example:\nchrome-laptop.")
|
||||||
|
@ -772,7 +772,7 @@ QList<Entry*> BrowserService::confirmEntries(QList<Entry*>& pwEntriesToConfirm,
|
||||||
updateWindowState();
|
updateWindowState();
|
||||||
BrowserAccessControlDialog accessControlDialog;
|
BrowserAccessControlDialog accessControlDialog;
|
||||||
|
|
||||||
connect(m_currentDatabaseWidget, SIGNAL(databaseLocked()), &accessControlDialog, SLOT(reject()));
|
connect(m_currentDatabaseWidget, SIGNAL(databaseLockRequested()), &accessControlDialog, SLOT(reject()));
|
||||||
|
|
||||||
connect(&accessControlDialog, &BrowserAccessControlDialog::disableAccess, [&](QTableWidgetItem* item) {
|
connect(&accessControlDialog, &BrowserAccessControlDialog::disableAccess, [&](QTableWidgetItem* item) {
|
||||||
auto entry = pwEntriesToConfirm[item->row()];
|
auto entry = pwEntriesToConfirm[item->row()];
|
||||||
|
|
|
@ -216,7 +216,7 @@ DatabaseWidget::DatabaseWidget(QSharedPointer<Database> db, QWidget* parent)
|
||||||
|
|
||||||
#ifdef WITH_XC_SSHAGENT
|
#ifdef WITH_XC_SSHAGENT
|
||||||
if (sshAgent()->isEnabled()) {
|
if (sshAgent()->isEnabled()) {
|
||||||
connect(this, SIGNAL(databaseLockRequested()), sshAgent(), SLOT(databaseLocked()));
|
connect(this, SIGNAL(databaseLocked()), sshAgent(), SLOT(databaseLocked()));
|
||||||
connect(this, SIGNAL(databaseUnlocked()), sshAgent(), SLOT(databaseUnlocked()));
|
connect(this, SIGNAL(databaseUnlocked()), sshAgent(), SLOT(databaseUnlocked()));
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
@ -437,6 +437,7 @@ void DatabaseWidget::showTotp()
|
||||||
}
|
}
|
||||||
|
|
||||||
auto totpDialog = new TotpDialog(this, currentEntry);
|
auto totpDialog = new TotpDialog(this, currentEntry);
|
||||||
|
connect(this, &DatabaseWidget::databaseLockRequested, totpDialog, &TotpDialog::close);
|
||||||
totpDialog->open();
|
totpDialog->open();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -460,6 +461,7 @@ void DatabaseWidget::setupTotp()
|
||||||
|
|
||||||
auto setupTotpDialog = new TotpSetupDialog(this, currentEntry);
|
auto setupTotpDialog = new TotpSetupDialog(this, currentEntry);
|
||||||
connect(setupTotpDialog, SIGNAL(totpUpdated()), SIGNAL(entrySelectionChanged()));
|
connect(setupTotpDialog, SIGNAL(totpUpdated()), SIGNAL(entrySelectionChanged()));
|
||||||
|
connect(this, &DatabaseWidget::databaseLockRequested, setupTotpDialog, &TotpSetupDialog::close);
|
||||||
setupTotpDialog->open();
|
setupTotpDialog->open();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -701,6 +703,7 @@ void DatabaseWidget::showTotpKeyQrCode()
|
||||||
auto currentEntry = currentSelectedEntry();
|
auto currentEntry = currentSelectedEntry();
|
||||||
if (currentEntry) {
|
if (currentEntry) {
|
||||||
auto totpDisplayDialog = new TotpExportSettingsDialog(this, currentEntry);
|
auto totpDisplayDialog = new TotpExportSettingsDialog(this, currentEntry);
|
||||||
|
connect(this, &DatabaseWidget::databaseLockRequested, totpDisplayDialog, &TotpExportSettingsDialog::close);
|
||||||
totpDisplayDialog->open();
|
totpDisplayDialog->open();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1528,6 +1531,11 @@ bool DatabaseWidget::lock()
|
||||||
|
|
||||||
emit databaseLockRequested();
|
emit databaseLockRequested();
|
||||||
|
|
||||||
|
// ignore event if we are active and a modal dialog is still open (such as a message box or file dialog)
|
||||||
|
if (isVisible() && QApplication::activeModalWidget()) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
clipboard()->clearCopiedText();
|
clipboard()->clearCopiedText();
|
||||||
|
|
||||||
if (isEditWidgetModified()) {
|
if (isEditWidgetModified()) {
|
||||||
|
|
|
@ -1536,11 +1536,6 @@ void MainWindow::toggleWindow()
|
||||||
|
|
||||||
void MainWindow::lockDatabasesAfterInactivity()
|
void MainWindow::lockDatabasesAfterInactivity()
|
||||||
{
|
{
|
||||||
// ignore event if a modal dialog is open (such as a message box or file dialog)
|
|
||||||
if (QApplication::activeModalWidget()) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
m_ui->tabWidget->lockDatabases();
|
m_ui->tabWidget->lockDatabases();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -31,10 +31,7 @@ TotpDialog::TotpDialog(QWidget* parent, Entry* entry)
|
||||||
, m_ui(new Ui::TotpDialog())
|
, m_ui(new Ui::TotpDialog())
|
||||||
, m_entry(entry)
|
, m_entry(entry)
|
||||||
{
|
{
|
||||||
if (!m_entry->hasTotp()) {
|
setAttribute(Qt::WA_DeleteOnClose);
|
||||||
close();
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
m_ui->setupUi(this);
|
m_ui->setupUi(this);
|
||||||
|
|
||||||
|
@ -42,14 +39,11 @@ TotpDialog::TotpDialog(QWidget* parent, Entry* entry)
|
||||||
resetCounter();
|
resetCounter();
|
||||||
updateProgressBar();
|
updateProgressBar();
|
||||||
|
|
||||||
connect(parent, SIGNAL(databaseLocked()), SLOT(close()));
|
|
||||||
connect(&m_totpUpdateTimer, SIGNAL(timeout()), this, SLOT(updateProgressBar()));
|
connect(&m_totpUpdateTimer, SIGNAL(timeout()), this, SLOT(updateProgressBar()));
|
||||||
connect(&m_totpUpdateTimer, SIGNAL(timeout()), this, SLOT(updateSeconds()));
|
connect(&m_totpUpdateTimer, SIGNAL(timeout()), this, SLOT(updateSeconds()));
|
||||||
m_totpUpdateTimer.start(m_step * 10);
|
m_totpUpdateTimer.start(m_step * 10);
|
||||||
updateTotp();
|
updateTotp();
|
||||||
|
|
||||||
setAttribute(Qt::WA_DeleteOnClose);
|
|
||||||
|
|
||||||
new QShortcut(QKeySequence(QKeySequence::Copy), this, SLOT(copyToClipboard()));
|
new QShortcut(QKeySequence(QKeySequence::Copy), this, SLOT(copyToClipboard()));
|
||||||
|
|
||||||
m_ui->buttonBox->button(QDialogButtonBox::Ok)->setText(tr("Copy"));
|
m_ui->buttonBox->button(QDialogButtonBox::Ok)->setText(tr("Copy"));
|
||||||
|
|
|
@ -59,7 +59,6 @@ TotpExportSettingsDialog::TotpExportSettingsDialog(DatabaseWidget* parent, Entry
|
||||||
connect(m_buttonBox, SIGNAL(rejected()), SLOT(close()));
|
connect(m_buttonBox, SIGNAL(rejected()), SLOT(close()));
|
||||||
connect(m_buttonBox, SIGNAL(accepted()), SLOT(copyToClipboard()));
|
connect(m_buttonBox, SIGNAL(accepted()), SLOT(copyToClipboard()));
|
||||||
connect(m_timer, SIGNAL(timeout()), SLOT(autoClose()));
|
connect(m_timer, SIGNAL(timeout()), SLOT(autoClose()));
|
||||||
connect(parent, SIGNAL(lockedDatabase()), SLOT(close()));
|
|
||||||
|
|
||||||
new QShortcut(QKeySequence(QKeySequence::Copy), this, SLOT(copyToClipboard()));
|
new QShortcut(QKeySequence(QKeySequence::Copy), this, SLOT(copyToClipboard()));
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue