Rabbit Remote Control 0.1.0-bate14
Loading...
Searching...
No Matches
DlgGetUserPasswordFreeRDP.h
1// Author: Kang Lin <kl222@126.com>
2#pragma once
3#include <QDialog>
4
5#include "OperateFreeRDP.h"
6
7namespace Ui {
8class CDlgGetUserPasswordFreeRDP;
9}
10
11class CDlgGetUserPasswordFreeRDP : public QDialog
12{
13 Q_OBJECT
14
15public:
16 explicit CDlgGetUserPasswordFreeRDP(QWidget *parent = nullptr);
17 virtual ~CDlgGetUserPasswordFreeRDP();
18 CDlgGetUserPasswordFreeRDP(const CDlgGetUserPasswordFreeRDP& dlg);
19
20 Q_INVOKABLE void SetContext(void* pContext);
21
22private slots:
23 void on_pbOK_clicked();
24 void on_pbCancel_clicked();
25
26private:
27 Ui::CDlgGetUserPasswordFreeRDP *ui;
28
29 CParameterFreeRDP* m_pParameter;
30
31};
32
33Q_DECLARE_METATYPE(CDlgGetUserPasswordFreeRDP)
[Declare CParameterFreeRDP]