29 lines
469 B
C
29 lines
469 B
C
|
#ifndef PASSWORDDIALOG_H
|
||
|
#define PASSWORDDIALOG_H
|
||
|
|
||
|
#include <QDialog>
|
||
|
|
||
|
namespace Ui {
|
||
|
class PasswordDialog;
|
||
|
}
|
||
|
|
||
|
class PasswordDialog : public QDialog
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit PasswordDialog(QWidget *parent = nullptr);
|
||
|
~PasswordDialog();
|
||
|
protected:
|
||
|
void paintEvent(QPaintEvent *event);
|
||
|
|
||
|
virtual void changeEvent(QEvent* event);
|
||
|
private slots:
|
||
|
void on_confirm_Btn_clicked();
|
||
|
|
||
|
private:
|
||
|
Ui::PasswordDialog *ui;
|
||
|
};
|
||
|
|
||
|
#endif // PASSWORDDIALOG_H
|