mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-01-09 22:39:50 -05:00
fb5173cebd
* Always use a pop-up generator to avoid cluttering the user interface and making it clear that a password is being created
59 lines
1.7 KiB
C++
59 lines
1.7 KiB
C++
/*
|
|
* Copyright (C) 2014 Felix Geyer <debfx@fobos.de>
|
|
* Copyright (C) 2017 KeePassXC Team <team@keepassxc.org>
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 2 or (at your option)
|
|
* version 3 of the License.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef KEEPASSX_PASSWORDEDIT_H
|
|
#define KEEPASSX_PASSWORDEDIT_H
|
|
|
|
#include <QAction>
|
|
#include <QLineEdit>
|
|
#include <QPointer>
|
|
|
|
class QDialog;
|
|
|
|
class PasswordEdit : public QLineEdit
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit PasswordEdit(QWidget* parent = nullptr);
|
|
void enablePasswordGenerator();
|
|
void setRepeatPartner(PasswordEdit* repeatEdit);
|
|
bool isPasswordVisible() const;
|
|
|
|
public slots:
|
|
void setShowPassword(bool show);
|
|
void updateRepeatStatus();
|
|
|
|
private slots:
|
|
void autocompletePassword(const QString& password);
|
|
void popupPasswordGenerator();
|
|
void setParentPasswordEdit(PasswordEdit* parent);
|
|
|
|
private:
|
|
QPointer<QAction> m_errorAction;
|
|
QPointer<QAction> m_correctAction;
|
|
QPointer<QAction> m_toggleVisibleAction;
|
|
QPointer<QAction> m_passwordGeneratorAction;
|
|
QPointer<PasswordEdit> m_repeatPasswordEdit;
|
|
QPointer<PasswordEdit> m_parentPasswordEdit;
|
|
bool m_sendGeneratorSignal = false;
|
|
bool m_isRepeatPartner = false;
|
|
};
|
|
|
|
#endif // KEEPASSX_PASSWORDEDIT_H
|