Welcome to mirror list, hosted at ThFree Co, Russian Federation.

PasswordWidget.h « gui « src - github.com/keepassxreboot/keepassxc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0014b696f81045331c4522911354f9caf1f719aa (plain)
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
/*
 *  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_PASSWORDWIDGET_H
#define KEEPASSX_PASSWORDWIDGET_H

#include <QAction>
#include <QLineEdit>
#include <QPointer>
#include <QWidget>

namespace Ui
{
    class PasswordWidget;
}

class PasswordWidget : public QWidget
{
    Q_OBJECT

public:
    explicit PasswordWidget(QWidget* parent = nullptr);
    ~PasswordWidget() override;
    void enablePasswordGenerator();
    void setRepeatPartner(PasswordWidget* repeatPartner);
    void setQualityVisible(bool state);

    bool isPasswordVisible() const;
    QString text();

signals:
    void textChanged(QString text);

public slots:
    void setText(const QString& text);
    void setShowPassword(bool show);

    void clear();
    void selectAll();
    void setReadOnly(bool state);
    void setEchoMode(QLineEdit::EchoMode mode);
    void setClearButtonEnabled(bool enabled);

protected:
    bool event(QEvent* event) override;

private slots:
    void autocompletePassword(const QString& password);
    void popupPasswordGenerator();
    void updateRepeatStatus();
    void updatePasswordStrength(const QString& password);

private:
    void checkCapslockState();
    void setParentPasswordEdit(PasswordWidget* parent);

    const QScopedPointer<Ui::PasswordWidget> m_ui;

    QPointer<QAction> m_errorAction;
    QPointer<QAction> m_correctAction;
    QPointer<QAction> m_toggleVisibleAction;
    QPointer<QAction> m_passwordGeneratorAction;
    QPointer<QAction> m_capslockAction;
    QPointer<PasswordWidget> m_repeatPasswordWidget;
    QPointer<PasswordWidget> m_parentPasswordWidget;

    bool m_capslockState = false;
};

#endif // KEEPASSX_PASSWORDWIDGET_H