/usr/include/KF5/KWidgetsAddons/knewpasswordwidget.h is in libkf5widgetsaddons-dev 5.18.0-0ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 | // vi: ts=8 sts=4 sw=4
/* This file is part of the KDE libraries
Copyright (C) 1998 Pietro Iglio <iglio@fub.it>
Copyright (C) 1999,2000 Geert Jansen <jansen@kde.org>
Copyright (C) 2004,2005 Andrew Coles <andrew_coles@yahoo.co.uk>
Copyright (C) 2006,2007 Olivier Goffart <ogoffart @ kde.org>
Copyright (C) 2015 Elvis Angelaccio <elvis.angelaccio@kdemail.net>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License version 2 as published by the Free Software Foundation.
This library 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
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
#ifndef KNEWPASSWORDWIDGET_H
#define KNEWPASSWORDWIDGET_H
#include <QWidget>
#include <kwidgetsaddons_export.h>
/**
* @short A password input widget.
*
* 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.
*
* \section usage Usage Example
* \subsection Setup
*
* \code
* 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);
* ...
* \endcode
*
* \subsection Update
*
* \code
* void MyCustomDialog::slotPasswordStatusChanged()
* {
* // You may want to extend this switch with more cases,
* // in order to warn the user about all the possible password issues.
* switch (m_passwordWidget->passwordStatus()) {
* case KNewPasswordWidget::WeakPassword:
* case KNewPasswordWidget::StrongPassword:
* m_buttonBox->button(QDialogButtonBox::Ok)->setEnabled(true);
* break;
* default:
* m_buttonBox->button(QDialogButtonBox::Ok)->setEnabled(false);
* break;
* }
* }
* \endcode
*
* \subsection Check
*
* \code
* void MyCustomDialog::accept()
* {
* switch (m_passwordWidget->passwordStatus()) {
* case KNewPasswordWidget::WeakPassword:
* case KNewPasswordWidget::StrongPassword:
* QDialog::accept();
* break;
* case KNewPasswordWidget::PasswordNotVerified:
* KMessageBox::error(Q_NULLPTR, i18n("The chosen password does not match the given verification password."));
* break;
* case KNewPasswordWidget::EmptyPasswordNotAllowed:
* KMessageBox::error(Q_NULLPTR, i18n("The chosen password cannot be empty."));
* break;
* case KNewPasswordWidget::PasswordTooShort:
* KMessageBox::error(Q_NULLPTR, i18n("The chosen password is too short"));
* break;
* }
* }
* \endcode
*
* @author Geert Jansen <jansen@kde.org>
* @author Olivier Goffart <ogoffart@kde.org>
* @author Elvis Angelaccio <elvis.angelaccio@kdemail.net>
* @since 5.16
*/
class KWIDGETSADDONS_EXPORT KNewPasswordWidget : public QWidget
{
Q_OBJECT
Q_ENUMS(PasswordStatus)
Q_PROPERTY(PasswordStatus passwordStatus READ passwordStatus)
Q_PROPERTY(bool allowEmptyPasswords READ allowEmptyPasswords WRITE setAllowEmptyPasswords)
Q_PROPERTY(int minimumPasswordLength READ minimumPasswordLength WRITE setMinimumPasswordLength)
Q_PROPERTY(int maximumPasswordLength READ maximumPasswordLength WRITE setMaximumPasswordLength)
Q_PROPERTY(int reasonablePasswordLength READ reasonablePasswordLength WRITE setReasonablePasswordLength)
Q_PROPERTY(int passwordStrengthWarningLevel READ passwordStrengthWarningLevel WRITE setPasswordStrengthWarningLevel)
Q_PROPERTY(QColor backgroundWarningColor READ backgroundWarningColor WRITE setBackgroundWarningColor)
Q_PROPERTY(bool passwordStrengthMeterVisible READ isPasswordStrengthMeterVisible WRITE setPasswordStrengthMeterVisible)
public:
/**
* Status of the password being typed in the widget.
*/
enum PasswordStatus
{
EmptyPasswordNotAllowed, /**< Both passwords fields empty, but minimum length > 0. */
PasswordTooShort, /**< Password length is too low. */
PasswordNotVerified, /**< Password and verification password don't match. */
WeakPassword, /**< Passwords match but the strength level is not enough. */
StrongPassword, /**< Passwords match and the strength level is good. */
};
/**
* Constructs a password widget.
*
* @param parent Passed to lower level constructor.
*/
explicit KNewPasswordWidget(QWidget *parent = Q_NULLPTR);
/**
* Destructs the password widget.
*/
virtual ~KNewPasswordWidget();
/**
* The current status of the password in the widget.
*/
PasswordStatus passwordStatus() const;
/**
* Allow empty passwords?
*
* @return true if minimumPasswordLength() == 0
*/
bool allowEmptyPasswords() const;
/**
* Minimum acceptable password length.
*/
int minimumPasswordLength() const;
/**
* Maximum acceptable password length.
*/
int maximumPasswordLength() const;
/**
* Password length that is expected to be reasonably safe.
*/
int reasonablePasswordLength() const;
/**
* Password strength level below which a warning is given
*/
int passwordStrengthWarningLevel() const;
/**
* The color used as warning for the verification password field's background.
*/
QColor backgroundWarningColor() const;
/**
* Whether the password strength meter is visible.
*/
bool isPasswordStrengthMeterVisible() const;
/**
* Returns the password entered.
* @note Only returns meaningful data when passwordStatus
* is either WeakPassword or StrongPassword.
*/
QString password() const;
public Q_SLOTS:
/**
* Allow empty passwords? - Default: true
*
* same as setMinimumPasswordLength( allowed ? 0 : 1 )
*/
void setAllowEmptyPasswords(bool allowed);
/**
* Minimum acceptable password length.
*
* Default: 0
*
* @param minLength The new minimum password length
*/
void setMinimumPasswordLength(int minLength);
/**
* Maximum acceptable password length.
*
* @param maxLength The new maximum password length.
*/
void setMaximumPasswordLength(int maxLength);
/**
* 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
*
* @param reasonableLength The new reasonable password length.
*/
void setReasonablePasswordLength(int reasonableLength);
/**
* 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 discernable strength whatsoever
* @param warningLevel The level below which a warning should be given.
*/
void setPasswordStrengthWarningLevel(int warningLevel);
/**
* 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.
*/
void setBackgroundWarningColor(const QColor &color);
/**
* Whether to show the password strength meter (label and progress bar).
* Default is true.
*/
void setPasswordStrengthMeterVisible(bool visible);
Q_SIGNALS:
/**
* Notify about the current status of the password being typed.
*/
void passwordStatusChanged();
private:
class KNewPasswordWidgetPrivate;
KNewPasswordWidgetPrivate *const d;
Q_PRIVATE_SLOT(d, void _k_textChanged())
Q_PRIVATE_SLOT(d, void _k_toggleEchoMode())
Q_PRIVATE_SLOT(d, void _k_showToggleEchoModeAction(const QString &text))
Q_DISABLE_COPY(KNewPasswordWidget)
};
#endif // KNEWPASSWORDWIDGET_H
|