mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-04 13:07:38 +03:00
Pass parent to browser popups
This commit is contained in:
parent
cdf6cd7cd2
commit
55ca5ca34c
1 changed files with 8 additions and 8 deletions
|
@ -240,7 +240,7 @@ QJsonObject BrowserService::createNewGroup(const QString& groupName)
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
auto dialogResult = MessageBox::warning(nullptr,
|
auto dialogResult = MessageBox::warning(m_currentDatabaseWidget,
|
||||||
tr("KeePassXC: Create a new group"),
|
tr("KeePassXC: Create a new group"),
|
||||||
tr("A request for creating a new group \"%1\" has been received.\n"
|
tr("A request for creating a new group \"%1\" has been received.\n"
|
||||||
"Do you want to create this group?\n")
|
"Do you want to create this group?\n")
|
||||||
|
@ -411,7 +411,7 @@ QList<Entry*> BrowserService::confirmEntries(QList<Entry*>& pwEntriesToConfirm,
|
||||||
|
|
||||||
m_dialogActive = true;
|
m_dialogActive = true;
|
||||||
updateWindowState();
|
updateWindowState();
|
||||||
BrowserAccessControlDialog accessControlDialog;
|
BrowserAccessControlDialog accessControlDialog(m_currentDatabaseWidget);
|
||||||
|
|
||||||
connect(m_currentDatabaseWidget, SIGNAL(databaseLockRequested()), &accessControlDialog, SLOT(reject()));
|
connect(m_currentDatabaseWidget, SIGNAL(databaseLockRequested()), &accessControlDialog, SLOT(reject()));
|
||||||
|
|
||||||
|
@ -447,7 +447,7 @@ void BrowserService::showPasswordGenerator(QLocalSocket* socket,
|
||||||
const QString& secretKey)
|
const QString& secretKey)
|
||||||
{
|
{
|
||||||
if (!m_passwordGenerator) {
|
if (!m_passwordGenerator) {
|
||||||
m_passwordGenerator.reset(PasswordGeneratorWidget::popupGenerator());
|
m_passwordGenerator.reset(PasswordGeneratorWidget::popupGenerator(m_currentDatabaseWidget));
|
||||||
|
|
||||||
connect(m_passwordGenerator.data(), &PasswordGeneratorWidget::closed, m_passwordGenerator.data(), [=] {
|
connect(m_passwordGenerator.data(), &PasswordGeneratorWidget::closed, m_passwordGenerator.data(), [=] {
|
||||||
if (!m_passwordGenerator->isPasswordGenerated()) {
|
if (!m_passwordGenerator->isPasswordGenerated()) {
|
||||||
|
@ -498,7 +498,7 @@ QString BrowserService::storeKey(const QString& key)
|
||||||
QString id;
|
QString id;
|
||||||
|
|
||||||
do {
|
do {
|
||||||
QInputDialog keyDialog;
|
QInputDialog keyDialog(m_currentDatabaseWidget);
|
||||||
connect(m_currentDatabaseWidget, SIGNAL(databaseLockRequested()), &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"
|
||||||
|
@ -521,7 +521,7 @@ QString BrowserService::storeKey(const QString& key)
|
||||||
|
|
||||||
contains = db->metadata()->customData()->contains(CustomData::BrowserKeyPrefix + id);
|
contains = db->metadata()->customData()->contains(CustomData::BrowserKeyPrefix + id);
|
||||||
if (contains) {
|
if (contains) {
|
||||||
dialogResult = MessageBox::warning(nullptr,
|
dialogResult = MessageBox::warning(m_currentDatabaseWidget,
|
||||||
tr("KeePassXC: Overwrite existing key?"),
|
tr("KeePassXC: Overwrite existing key?"),
|
||||||
tr("A shared encryption key with the name \"%1\" "
|
tr("A shared encryption key with the name \"%1\" "
|
||||||
"already exists.\nDo you want to overwrite it?")
|
"already exists.\nDo you want to overwrite it?")
|
||||||
|
@ -650,7 +650,7 @@ bool BrowserService::updateEntry(const QString& dbid,
|
||||||
if (!browserSettings()->alwaysAllowUpdate()) {
|
if (!browserSettings()->alwaysAllowUpdate()) {
|
||||||
raiseWindow();
|
raiseWindow();
|
||||||
dialogResult = MessageBox::question(
|
dialogResult = MessageBox::question(
|
||||||
nullptr,
|
m_currentDatabaseWidget,
|
||||||
tr("KeePassXC: Update Entry"),
|
tr("KeePassXC: Update Entry"),
|
||||||
tr("Do you want to update the information in %1 - %2?").arg(QUrl(siteUrl).host(), username),
|
tr("Do you want to update the information in %1 - %2?").arg(QUrl(siteUrl).host(), username),
|
||||||
MessageBox::Save | MessageBox::Cancel,
|
MessageBox::Save | MessageBox::Cancel,
|
||||||
|
@ -686,7 +686,7 @@ bool BrowserService::deleteEntry(const QString& uuid)
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
auto dialogResult = MessageBox::warning(nullptr,
|
auto dialogResult = MessageBox::warning(m_currentDatabaseWidget,
|
||||||
tr("KeePassXC: Delete entry"),
|
tr("KeePassXC: Delete entry"),
|
||||||
tr("A request for deleting entry \"%1\" has been received.\n"
|
tr("A request for deleting entry \"%1\" has been received.\n"
|
||||||
"Do you want to delete the entry?\n")
|
"Do you want to delete the entry?\n")
|
||||||
|
@ -1245,7 +1245,7 @@ QSharedPointer<Database> BrowserService::selectedDatabase()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
BrowserEntrySaveDialog browserEntrySaveDialog;
|
BrowserEntrySaveDialog browserEntrySaveDialog(m_currentDatabaseWidget);
|
||||||
int openDatabaseCount = browserEntrySaveDialog.setItems(databaseWidgets, m_currentDatabaseWidget);
|
int openDatabaseCount = browserEntrySaveDialog.setItems(databaseWidgets, m_currentDatabaseWidget);
|
||||||
if (openDatabaseCount > 1) {
|
if (openDatabaseCount > 1) {
|
||||||
int res = browserEntrySaveDialog.exec();
|
int res = browserEntrySaveDialog.exec();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue