forked from irwir/eMule
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPPgConnection.h
44 lines (36 loc) · 1.12 KB
/
PPgConnection.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#pragma once
class CPPgConnection : public CPropertyPage
{
DECLARE_DYNAMIC(CPPgConnection)
public:
CPPgConnection();
virtual ~CPPgConnection();
// Dialog Data
enum { IDD = IDD_PPG_CONNECTION };
void Localize(void);
void LoadSettings(void);
protected:
bool guardian;
CSliderCtrl m_ctlMaxDown;
CSliderCtrl m_ctlMaxUp;
void ShowLimitValues();
void SetRateSliderTicks(CSliderCtrl& rRate);
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
virtual BOOL OnInitDialog();
virtual BOOL OnApply();
virtual BOOL OnCommand(WPARAM wParam, LPARAM lParam);
DECLARE_MESSAGE_MAP()
afx_msg void OnHScroll(UINT nSBCode, UINT nPos, CScrollBar* pScrollBar);
afx_msg void OnSettingsChange() { SetModified(); }
afx_msg void OnEnChangeUDPDisable();
afx_msg void OnLimiterChange();
afx_msg void OnBnClickedWizard();
afx_msg void OnBnClickedNetworkKademlia();
afx_msg void OnHelp();
afx_msg BOOL OnHelpInfo(HELPINFO* pHelpInfo);
afx_msg void OnBnClickedOpenports();
afx_msg void OnStartPortTest();
afx_msg void OnEnChangeTCP();
afx_msg void OnEnChangeUDP();
afx_msg void OnEnChangePorts(uint8 istcpport);
};