KNewPasswordWidget Class
A password input widget. More...
Header: | #include <KNewPasswordWidget> |
CMake: | find_package(KF6 REQUIRED COMPONENTS WidgetsAddons) target_link_libraries(mytarget PRIVATE KF6::WidgetsAddons) |
Since: | 5.16 |
Inherits: | QWidget |
Public Types
enum | PasswordStatus { EmptyPasswordNotAllowed, PasswordTooShort, PasswordNotVerified, WeakPassword, StrongPassword } |
(since 6.0) enum class | RevealPasswordMode { OnlyNew, Never, Always } |
Properties
|
|
Public Functions
KNewPasswordWidget(QWidget *parent = nullptr) | |
bool | allowEmptyPasswords() const |
QColor | backgroundWarningColor() const |
bool | isPasswordStrengthMeterVisible() const |
int | maximumPasswordLength() const |
int | minimumPasswordLength() const |
QString | password() const |
KNewPasswordWidget::PasswordStatus | passwordStatus() const |
int | passwordStrengthWarningLevel() const |
int | reasonablePasswordLength() const |
(since 6.0) int | revealPasswordMode() const |
Public Slots
void | setAllowEmptyPasswords(bool allowed) |
void | setBackgroundWarningColor(const QColor &color) |
void | setMaximumPasswordLength(int maxLength) |
void | setMinimumPasswordLength(int minLength) |
void | setPasswordStrengthMeterVisible(bool visible) |
void | setPasswordStrengthWarningLevel(int warningLevel) |
void | setReasonablePasswordLength(int reasonableLength) |
(since 6.0) void | setRevealPasswordMode(int revealPasswordMode) |
Signals
void | passwordStatusChanged() |
Detailed Description
This widget allows the user to enter a new password.
The password has to be entered twice to check if the passwords match. A hint about the strength of the entered password is also shown.
In order to embed this widget in your custom password dialog, you may want to connect to the passwordStatus() signal. This way you can e.g. disable the OK button if the passwords don't match, warn the user if the password is too weak, and so on.
Usage Example
Setup
KNewPasswordWidget *m_passwordWidget = new KNewPasswordWidget(this); // set a background warning color (taken from the current color scheme) KColorScheme colorScheme(QPalette::Active, KColorScheme::View); m_passwordWidget->setBackgroundWarningColor(colorScheme.background(KColorScheme::NegativeBackground).color()); // listen to password status updates connect(m_passwordWidget, &KNewPasswordWidget::passwordStatusChanged, this, &MyCustomDialog::slotPasswordStatusChanged); ...
Update your custom dialog
TODO qdoc @snippet knewpasswordwidget_test.cpp update_custom_dialog
Accept your custom dialog
TODO qdoc @snippet knewpasswordwidget_test.cpp accept_custom_dialog
Member Type Documentation
enum KNewPasswordWidget::PasswordStatus
Status of the password being typed in the widget.
Constant | Value | Description |
---|---|---|
KNewPasswordWidget::EmptyPasswordNotAllowed | 0 | Both passwords fields empty, but minimum length > 0. |
KNewPasswordWidget::PasswordTooShort | 1 | Password length is too low. |
KNewPasswordWidget::PasswordNotVerified | 2 | Password and verification password don't match. |
KNewPasswordWidget::WeakPassword | 3 | Passwords match but the strength level is not enough. |
KNewPasswordWidget::StrongPassword | 4 | Passwords match and the strength level is good. |
[since 6.0]
enum class KNewPasswordWidget::RevealPasswordMode
This enum describe when the reveal password button is visible.
Constant | Value | Description |
---|---|---|
KNewPasswordWidget::RevealPasswordMode::OnlyNew | 0 | Display the button when entering a new password, but doesn't let you see a previously entered password. This is the default. |
KNewPasswordWidget::RevealPasswordMode::Never | 1 | Never display the reveal button. |
KNewPasswordWidget::RevealPasswordMode::Always | 2 | Always display the reveal button. Usefull in a password manager for example. |
This enum was introduced in 6.0.
Property Documentation
allowEmptyPasswords : bool
Access functions:
bool | allowEmptyPasswords() const |
void | setAllowEmptyPasswords(bool allowed) |
backgroundWarningColor : QColor
Access functions:
QColor | backgroundWarningColor() const |
void | setBackgroundWarningColor(const QColor &color) |
maximumPasswordLength : int
Access functions:
int | maximumPasswordLength() const |
void | setMaximumPasswordLength(int maxLength) |
minimumPasswordLength : int
Access functions:
int | minimumPasswordLength() const |
void | setMinimumPasswordLength(int minLength) |
[read-only]
passwordStatus : const PasswordStatus
Access functions:
KNewPasswordWidget::PasswordStatus | passwordStatus() const |
passwordStrengthMeterVisible : bool
Access functions:
bool | isPasswordStrengthMeterVisible() const |
void | setPasswordStrengthMeterVisible(bool visible) |
passwordStrengthWarningLevel : int
Access functions:
int | passwordStrengthWarningLevel() const |
void | setPasswordStrengthWarningLevel(int warningLevel) |
reasonablePasswordLength : int
Access functions:
int | reasonablePasswordLength() const |
void | setReasonablePasswordLength(int reasonableLength) |
revealPasswordMode : KPassword::RevealMode
Access functions:
int | revealPasswordMode() const |
void | setRevealPasswordMode(int revealPasswordMode) |
Member Function Documentation
[explicit]
KNewPasswordWidget::KNewPasswordWidget(QWidget *parent = nullptr)
Constructs a password widget.
parent Passed to lower level constructor.
bool KNewPasswordWidget::allowEmptyPasswords() const
Allow empty passwords?
Returns true
if minimumPasswordLength() == 0
Note: Getter function for property allowEmptyPasswords.
See also setAllowEmptyPasswords().
QColor KNewPasswordWidget::backgroundWarningColor() const
The color used as warning for the verification password field's background.
Note: Getter function for property backgroundWarningColor.
See also setBackgroundWarningColor().
bool KNewPasswordWidget::isPasswordStrengthMeterVisible() const
Whether the password strength meter is visible.
Note: Getter function for property passwordStrengthMeterVisible.
int KNewPasswordWidget::maximumPasswordLength() const
Maximum acceptable password length.
Note: Getter function for property maximumPasswordLength.
See also setMaximumPasswordLength().
int KNewPasswordWidget::minimumPasswordLength() const
Minimum acceptable password length.
Note: Getter function for property minimumPasswordLength.
See also setMinimumPasswordLength().
QString KNewPasswordWidget::password() const
Returns the password entered.
Note: Only returns meaningful data when passwordStatus is either WeakPassword or StrongPassword.
KNewPasswordWidget::PasswordStatus KNewPasswordWidget::passwordStatus() const
The current status of the password in the widget.
Note: Getter function for property passwordStatus.
[signal]
void KNewPasswordWidget::passwordStatusChanged()
Notify about the current status of the password being typed.
int KNewPasswordWidget::passwordStrengthWarningLevel() const
Password strength level below which a warning is given
Note: Getter function for property passwordStrengthWarningLevel.
See also setPasswordStrengthWarningLevel().
int KNewPasswordWidget::reasonablePasswordLength() const
Password length that is expected to be reasonably safe.
Note: Getter function for property reasonablePasswordLength.
See also setReasonablePasswordLength().
[since 6.0]
int KNewPasswordWidget::revealPasswordMode() const
Whether the visibility trailing action in the line edit is visible.
Note: Getter function for property revealPasswordMode.
This function was introduced in 6.0.
See also setRevealPasswordMode().
[slot]
void KNewPasswordWidget::setAllowEmptyPasswords(bool allowed)
Allow empty passwords? - Default: true
same as setMinimumPasswordLength( allowed ? 0 : 1 )
Note: Setter function for property allowEmptyPasswords.
See also allowEmptyPasswords().
[slot]
void KNewPasswordWidget::setBackgroundWarningColor(const QColor &color)
When the verification password does not match, the background color of the verification field is set to @p color. As soon as the passwords match, the original color of the verification field is restored.
Note: Setter function for property backgroundWarningColor.
See also backgroundWarningColor().
[slot]
void KNewPasswordWidget::setMaximumPasswordLength(int maxLength)
Maximum acceptable password length.
maxLength The new maximum password length.
Note: Setter function for property maximumPasswordLength.
See also maximumPasswordLength().
[slot]
void KNewPasswordWidget::setMinimumPasswordLength(int minLength)
Minimum acceptable password length.
Default: 0
minLength The new minimum password length
Note: Setter function for property minimumPasswordLength.
See also minimumPasswordLength().
[slot]
void KNewPasswordWidget::setPasswordStrengthMeterVisible(bool visible)
Whether to show the password strength meter (label and progress bar). Default is true.
Note: Setter function for property passwordStrengthMeterVisible.
See also isPasswordStrengthMeterVisible().
[slot]
void KNewPasswordWidget::setPasswordStrengthWarningLevel(int warningLevel)
Set the password strength level below which a warning is given The value is guaranteed to be in the range from 0 to 99. Empty passwords score 0; non-empty passwords score up to 100, depending on their length and whether they contain numbers, mixed case letters and punctuation.
Default: 1 - warn if the password has no discernible strength whatsoever
warningLevel The level below which a warning should be given.
Note: Setter function for property passwordStrengthWarningLevel.
See also passwordStrengthWarningLevel().
[slot]
void KNewPasswordWidget::setReasonablePasswordLength(int reasonableLength)
Password length that is expected to be reasonably safe. The value is guaranteed to be in the range from 1 to maximumPasswordLength().
Used to compute the strength level
Default: 8 - the standard UNIX password length
reasonableLength The new reasonable password length.
Note: Setter function for property reasonablePasswordLength.
See also reasonablePasswordLength().
[slot, since 6.0]
void KNewPasswordWidget::setRevealPasswordMode(int revealPasswordMode)
Set when the reveal password button will be visible.
The default is RevealPasswordMode::OnlyNew and the reveal password button will only be visible when entering a new password.
This can be used to honor the lineedit_reveal_password kiosk key, for example:
if (KAuthorized::authorize(QStringLiteral("lineedit_reveal_password"))) { newPasswordWidget.setRevealPasswordMode(KPassword::RevealMode::OnlyNew); } else { newPasswordWidget.setRevealPasswordMode(KPassword::RevealMode::Never); }
Note: Setter function for property revealPasswordMode.
This function was introduced in 6.0.
See also revealPasswordMode().