玉兔远程控制 0.1.0-bate4
载入中...
搜索中...
未找到
DlgInputPassword.h
1// Author: Kang Lin <kl222@126.com>
2
3#ifndef DLGINPUTPASSWORD_H
4#define DLGINPUTPASSWORD_H
5
6#include <QDialog>
7
8namespace Ui {
10}
11
12class CDlgInputPassword : public QDialog
13{
14 Q_OBJECT
15
16public:
17 explicit CDlgInputPassword(bool bShow = false,
18 bool bStore = true,
19 QWidget *parent = nullptr);
20 virtual ~CDlgInputPassword();
21
22 QString GetPassword();
23
24private slots:
25 void on_pbNo_clicked();
26 void on_pbYes_clicked();
27 void on_pbShow_clicked();
28
29private:
30 Ui::CDlgInputPassword *ui;
31};
32
33#endif // DLGINPUTPASSWORD_H