Rabbit Remote Control 0.0.30
Loading...
Searching...
No Matches
DlgGetUserPasswordVNC.h
1#ifndef DLGGETUSERPASSWORD_H
2#define DLGGETUSERPASSWORD_H
3
4#include <QDialog>
5#include "ConnecterVnc.h"
6
7namespace Ui {
9}
10
11class CDlgGetPasswordVNC : public QDialog
12{
13 Q_OBJECT
14
15public:
16 explicit CDlgGetPasswordVNC(QWidget *parent = nullptr);
17 virtual ~CDlgGetPasswordVNC();
19
20 Q_INVOKABLE void SetContext(void* pContext);
21 Q_INVOKABLE void SetConnecter(CConnecter *pConnecter);
22
23private slots:
24 void on_pbOK_clicked();
25 void on_pbCancel_clicked();
26
27private:
28 Ui::CDlgGetPasswordVNC *ui;
29 CConnecterVnc* m_pConnecter;
30 CParameterVnc* m_pParameter;
31};
32Q_DECLARE_METATYPE(CDlgGetPasswordVNC)
33
34#endif // DLGGETUSERPASSWORD_H
Connecter interface.
Definition Connecter.h:62