-
Notifications
You must be signed in to change notification settings - Fork 0
/
passwordinfo.h
42 lines (35 loc) · 969 Bytes
/
passwordinfo.h
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
#ifndef PASSWORDINFO_H
#define PASSWORDINFO_H
#include <QDialog>
// ====================
// Forward Declarations
// ====================
namespace Ui {
class passwordInfo;
}
// ====================
// passwordInfo Class
// ====================
class passwordInfo : public QDialog
{
Q_OBJECT
// ====================
// Public Methods
// ====================
public:
explicit passwordInfo(QWidget *parent = nullptr, const QString &password = ""); // Constructor
~passwordInfo(); // Destructor
// ====================
// Private Slots
// ====================
private slots:
void on_copyButton_clicked(); // Handle copy button click
void on_acknowledgeButton_clicked(); // Handle acknowledge button click
// ====================
// Private Members
// ====================
private:
Ui::passwordInfo *ui; // User interface pointer
QString m_password; // Stored password
};
#endif // PASSWORDINFO_H