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

ICQ/即时通讯

开发平台:

C/C++

  1. #if !defined(AFX_SENDDLG_H__D15B5B23_9035_11D6_9C0E_0080C8F72DA3__INCLUDED_)
  2. #define AFX_SENDDLG_H__D15B5B23_9035_11D6_9C0E_0080C8F72DA3__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // SendDlg.h : header file
  7. //
  8. #include "PeerComm.h"
  9. /////////////////////////////////////////////////////////////////////////////
  10. // CSendDlg dialog
  11. #define WM_SENDDLG_CLOSED WM_USER + 105
  12. class CSendDlg : public CDialog
  13. {
  14. // Construction
  15. public:
  16. CSendDlg(CWnd *mainWnd, CWnd* pParent = NULL);   // standard constructor
  17. // Dialog Data
  18. //{{AFX_DATA(CSendDlg)
  19. enum { IDD = IDD_SENDMSG };
  20. CString _sendMsg;
  21. CString _message;
  22. //}}AFX_DATA
  23. CString _serverIP;
  24. CString _userID;
  25. CString _userName;
  26. CString _friendName;
  27. CString _friendID;
  28. sockaddr_in _friendAddr;
  29. // Overrides
  30. // ClassWizard generated virtual function overrides
  31. //{{AFX_VIRTUAL(CSendDlg)
  32. public:
  33. protected:
  34. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  35. //}}AFX_VIRTUAL
  36. // Implementation
  37. protected:
  38. CPeerComm _comm;
  39. CWnd *_mainWnd;
  40. // Generated message map functions
  41. //{{AFX_MSG(CSendDlg)
  42. afx_msg void OnSendBtn();
  43. //}}AFX_MSG
  44. DECLARE_MESSAGE_MAP()
  45. public:
  46. virtual BOOL OnInitDialog();
  47. void insertMessage(CString userID, CString message);
  48. afx_msg void OnClose();
  49. protected:
  50. virtual void OnCancel();
  51. virtual void OnOK();
  52. };
  53. //{{AFX_INSERT_LOCATION}}
  54. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  55. #endif // !defined(AFX_SENDDLG_H__D15B5B23_9035_11D6_9C0E_0080C8F72DA3__INCLUDED_)