mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-06 05:57:37 +03:00
Add copy button to password generator (#595)
This commit is contained in:
parent
9fc83c7cd5
commit
398201f592
3 changed files with 15 additions and 0 deletions
|
@ -24,6 +24,7 @@
|
|||
#include "core/Config.h"
|
||||
#include "core/PasswordGenerator.h"
|
||||
#include "core/FilePath.h"
|
||||
#include "gui/Clipboard.h"
|
||||
|
||||
PasswordGeneratorWidget::PasswordGeneratorWidget(QWidget* parent)
|
||||
: QWidget(parent)
|
||||
|
@ -40,6 +41,7 @@ PasswordGeneratorWidget::PasswordGeneratorWidget(QWidget* parent)
|
|||
connect(m_ui->editNewPassword, SIGNAL(textChanged(QString)), SLOT(updatePasswordStrength(QString)));
|
||||
connect(m_ui->togglePasswordButton, SIGNAL(toggled(bool)), SLOT(togglePasswordShown(bool)));
|
||||
connect(m_ui->buttonApply, SIGNAL(clicked()), SLOT(applyPassword()));
|
||||
connect(m_ui->buttonCopy, SIGNAL(clicked()), SLOT(copyPassword()));
|
||||
connect(m_ui->buttonGenerate, SIGNAL(clicked()), SLOT(regeneratePassword()));
|
||||
|
||||
connect(m_ui->sliderLength, SIGNAL(valueChanged(int)), SLOT(passwordSliderMoved()));
|
||||
|
@ -193,6 +195,11 @@ void PasswordGeneratorWidget::applyPassword()
|
|||
emit dialogTerminated();
|
||||
}
|
||||
|
||||
void PasswordGeneratorWidget::copyPassword()
|
||||
{
|
||||
clipboard()->setText(m_ui->editNewPassword->text());
|
||||
}
|
||||
|
||||
void PasswordGeneratorWidget::passwordSliderMoved()
|
||||
{
|
||||
if (m_updatingSpinBox) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue