Rabbit Remote Control 0.0.30
Loading...
Searching...
No Matches
DlgGetUserPasswordFreeRDP.h
1#ifndef DLGGETUSERPASSWORD_H
2#define DLGGETUSERPASSWORD_H
3
4#include <QDialog>
5
6#include "ConnecterFreeRDP.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 Q_INVOKABLE void SetConnecter(CConnecter *pConnecter);
23
24private slots:
25 void on_pbOK_clicked();
26 void on_pbCancel_clicked();
27
28private:
29 Ui::CDlgGetUserPasswordFreeRDP *ui;
30
31 CConnecterFreeRDP* m_pConnecter;
32 CParameterFreeRDP* m_pParameter;
33
34};
35
36Q_DECLARE_METATYPE(CDlgGetUserPasswordFreeRDP)
37
38#endif // DLGGETUSERPASSWORD_H
Connecter interface.
Definition Connecter.h:62
[Declare CParameterFreeRDP]