StartupDlg.h
上传用户:hysujiao87
上传日期:2007-12-02
资源大小:156k
文件大小:2k
源码类别:

ICQ/即时通讯

开发平台:

C/C++

  1. #include "afxcmn.h"
  2. #if !defined(AFX_STARTUPDLG_H__FA4709D1_8CE4_11D6_9C0E_0080C8F72DA3__INCLUDED_)
  3. #define AFX_STARTUPDLG_H__FA4709D1_8CE4_11D6_9C0E_0080C8F72DA3__INCLUDED_
  4. #if _MSC_VER > 1000
  5. #pragma once
  6. #endif // _MSC_VER > 1000
  7. // StartupDlg.h : header file
  8. //
  9. /////////////////////////////////////////////////////////////////////////////
  10. // CStartupDlg dialog
  11. class CStartupDlg : public CDialog
  12. {
  13. // Construction
  14. public:
  15. CStartupDlg(CWnd* pParent = NULL);   // standard constructor
  16. // Dialog Data
  17. //{{AFX_DATA(CStartupDlg)
  18. enum { IDD = IDD_STARTUP };
  19. CString _password;
  20. CString _userID;
  21. CIPAddressCtrl _IPCtrl;
  22. //}}AFX_DATA
  23. CString _nickname;
  24. CString _serverIP;
  25. // Overrides
  26. // ClassWizard generated virtual function overrides
  27. //{{AFX_VIRTUAL(CStartupDlg)
  28. protected:
  29. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  30. //}}AFX_VIRTUAL
  31. // Implementation
  32. protected:
  33. // Generated message map functions
  34. //{{AFX_MSG(CStartupDlg)
  35. afx_msg void OnBtnLogOn();
  36. afx_msg void OnBtnReg();
  37. //}}AFX_MSG
  38. DECLARE_MESSAGE_MAP()
  39. public:
  40. CString getServerIPAddr(){
  41. CString IPAddr;
  42. BYTE field1, field2, field3, field4;
  43. _IPCtrl.GetAddress(field1, field2, field3, field4);
  44. IPAddr.Format("%d.%d.%d.%d", field1, field2, field3, field4);
  45. return IPAddr;
  46. }
  47. virtual BOOL OnInitDialog();
  48. };
  49. //{{AFX_INSERT_LOCATION}}
  50. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  51. #endif // !defined(AFX_STARTUPDLG_H__FA4709D1_8CE4_11D6_9C0E_0080C8F72DA3__INCLUDED_)