Rabbit Remote Control 0.0.30
Loading...
Searching...
No Matches
DlgLibVNCServerPassword.h
1#ifndef DLGLIBVNCSERVERPASSWORD_H
2#define DLGLIBVNCSERVERPASSWORD_H
3
4#pragma once
5
6#include <QDialog>
7#include "ConnecterLibVNCServer.h"
8
9namespace Ui {
11}
12
13class CDlgLibVNCServerPassword : public QDialog
14{
15 Q_OBJECT
16
17public:
18 explicit CDlgLibVNCServerPassword(QWidget *parent = nullptr);
21
22 Q_INVOKABLE void SetContext(void* pContext);
23 Q_INVOKABLE void SetConnecter(CConnecter *pConnecter);
24
25private:
26 Ui::CDlgLibVNCServerPassword *ui;
27 CConnecterLibVNCServer* m_pConnecter;
28 CParameterLibVNCServer* m_pParameter;
29
30private slots:
31 void on_pbOK_clicked();
32 void on_pbCancel_clicked();
33};
34
35Q_DECLARE_METATYPE(CDlgLibVNCServerPassword)
36
37#endif // DLGLIBVNCSERVERPASSWORD_H
Connecter interface.
Definition Connecter.h:62