Rabbit Remote Control 0.0.30
Loading...
Searching...
No Matches
DlgSettingsVnc.h
1// Author: Kang Lin <kl222@126.com>
2
3#ifndef DLGSETTINGS_H
4#define DLGSETTINGS_H
5
6#include <QDialog>
7#include "ParameterVnc.h"
8#include "ParameterProxyUI.h"
9#include "ParameterRecordUI.h"
10
11namespace Ui {
12class CDlgSettingsVnc;
13}
14
15class CDlgSettingsVnc : public QDialog
16{
17 Q_OBJECT
18
19public:
20 explicit CDlgSettingsVnc(CParameterVnc *pPara, QWidget *parent = nullptr);
21 virtual ~CDlgSettingsVnc();
22
23private slots:
24 void on_pbOK_clicked();
25 void on_pbCancel_clicked();
26
27 void on_cbCompressAutoSelect_stateChanged(int arg1);
28 void on_cbCompress_stateChanged(int arg1);
29 void on_cbJPEG_stateChanged(int arg1);
30
31 void on_gpIce_clicked(bool checked);
32
33private:
34 Ui::CDlgSettingsVnc *ui;
35 CParameterVnc* m_pPara;
36 CParameterProxyUI* m_pProxyUI;
37 CParameterRecordUI* m_pRecordUI;
38};
39
40#endif // DLGSETTINGS_H
The proxy parameter UI.