Init: Migrate SimpleRemoter (Since v1.3.1) to Gitea
This commit is contained in:
58
server/2015Remote/SettingDlg.h
Normal file
58
server/2015Remote/SettingDlg.h
Normal file
@@ -0,0 +1,58 @@
|
||||
#pragma once
|
||||
#include "afxwin.h"
|
||||
#include "LangManager.h"
|
||||
#include "2015RemoteDlg.h"
|
||||
|
||||
// CSettingDlg 对话框
|
||||
|
||||
class CSettingDlg : public CDialogLang
|
||||
{
|
||||
DECLARE_DYNAMIC(CSettingDlg)
|
||||
|
||||
public:
|
||||
CSettingDlg(CMy2015RemoteDlg* pParent); // 标准构造函数
|
||||
virtual ~CSettingDlg();
|
||||
CMy2015RemoteDlg* g_2015RemoteDlg = nullptr;
|
||||
|
||||
// 对话框数据
|
||||
enum { IDD = IDD_DIALOG_SET };
|
||||
|
||||
protected:
|
||||
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 支持
|
||||
|
||||
DECLARE_MESSAGE_MAP()
|
||||
public:
|
||||
CString m_nListenPort;
|
||||
UINT m_nMax_Connect;
|
||||
virtual BOOL OnInitDialog();
|
||||
afx_msg void OnBnClickedButtonSettingapply();
|
||||
afx_msg void OnEnChangeEditPort();
|
||||
afx_msg void OnEnChangeEditMax();
|
||||
CButton m_ApplyButton;
|
||||
virtual void OnOK();
|
||||
CComboBox m_ComboScreenCapture;
|
||||
CString m_sScreenCapture;
|
||||
CComboBox m_ComboScreenCompress;
|
||||
CString m_sScreenCompress;
|
||||
CEdit m_EditReportInterval;
|
||||
int m_nReportInterval;
|
||||
CComboBox m_ComboSoftwareDetect;
|
||||
CString m_sSoftwareDetect;
|
||||
CEdit m_EditPublicIP;
|
||||
CString m_sPublicIP;
|
||||
afx_msg void OnBnClickedRadioAllScreen();
|
||||
afx_msg void OnBnClickedRadioMainScreen();
|
||||
CEdit m_EditUdpOption;
|
||||
CString m_sUdpOption;
|
||||
afx_msg void OnBnClickedRadioFrpOff();
|
||||
afx_msg void OnBnClickedRadioFrpOn();
|
||||
CEdit m_EditFrpPort;
|
||||
int m_nFrpPort;
|
||||
CEdit m_EditFrpToken;
|
||||
CString m_sFrpToken;
|
||||
CComboBox m_ComboVideoWall;
|
||||
CEdit m_EditFileServerPort;
|
||||
int m_nFileServerPort;
|
||||
afx_msg void OnEnKillfocusEditPublicIp();
|
||||
CString m_sOriginalMaster; // 缓存原始公网地址,用于检测修改
|
||||
};
|
||||
Reference in New Issue
Block a user