Rabbit Remote Control 0.0.37
Loading...
Searching...
No Matches
DlgGetUserPasswordFreeRDP.h
1#ifndef DLGGETUSERPASSWORD_H
2#define DLGGETUSERPASSWORD_H
3
4#include <QDialog>
5
6#include "OperateFreeRDP.h"
7
8namespace Ui {
10}
11
12class CDlgGetUserPasswordFreeRDP : public QDialog
13{
14 Q_OBJECT
15
16public:
17 explicit CDlgGetUserPasswordFreeRDP(QWidget *parent = nullptr);
20
21 Q_INVOKABLE void SetContext(void* pContext);
22
23private slots:
24 void on_pbOK_clicked();
25 void on_pbCancel_clicked();
26
27private:
28 Ui::CDlgGetUserPasswordFreeRDP *ui;
29
30 CParameterFreeRDP* m_pParameter;
31
32};
33
34Q_DECLARE_METATYPE(CDlgGetUserPasswordFreeRDP)
35
36#endif // DLGGETUSERPASSWORD_H
[Declare CParameterFreeRDP]