ProxySetDlg.h
上传用户:zhanglf88
上传日期:2013-11-19
资源大小:6036k
文件大小:1k
源码类别:

金融证券系统

开发平台:

Visual C++

  1. #pragma once
  2. /***
  3. 代理设置对话框
  4. */
  5. class CProxySetDlg : public CDialog
  6. {
  7. // Construction
  8. public:
  9. CProxySetDlg(CWnd* pParent = NULL);
  10. void EnableWindows(BOOL bEnable);
  11. protected:
  12. enum { IDD = IDD_PROXYSET };
  13. CButton m_btnCancel;
  14. CButton m_btnOK;
  15. CEdit m_editProxyPasswd;
  16. CEdit m_editProxyUser;
  17. CStatic m_staticProxyPasswd;
  18. CStatic m_staticProxyUser;
  19. CEdit m_editProxyPort;
  20. CEdit m_editProxyAddress;
  21. CStatic m_staticProxyPort;
  22. CStatic m_staticProxyAddress;
  23. CString m_strProxyAddress;
  24. UINT m_nProxyPort;
  25. CString m_strProxyUser;
  26. CString m_strProxyPasswd;
  27. // Overrides
  28. protected:
  29. virtual void DoDataExchange(CDataExchange* pDX);
  30. virtual BOOL OnInitDialog();
  31. virtual void OnOK();
  32. public:
  33. virtual int DoModal();
  34. // Implementation
  35. protected:
  36. afx_msg void OnDirect();
  37. afx_msg void OnPreconfig();
  38. afx_msg void OnProxy();
  39. afx_msg void OnProxySocks4();
  40. afx_msg void OnProxySocks5();
  41. afx_msg void OnProxyHttp();
  42. DECLARE_MESSAGE_MAP()
  43. };