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

ICQ/即时通讯

开发平台:

C/C++

  1. // QQClientDlg.h : header file
  2. //
  3. #if !defined(AFX_QQCLIENTDLG_H__FA4709C9_8CE4_11D6_9C0E_0080C8F72DA3__INCLUDED_)
  4. #define AFX_QQCLIENTDLG_H__FA4709C9_8CE4_11D6_9C0E_0080C8F72DA3__INCLUDED_
  5. #if _MSC_VER > 1000
  6. #pragma once
  7. #endif // _MSC_VER > 1000
  8. #include "friendlist.h"
  9. #include "Communication.h"
  10. #include "PeerComm.h"
  11. #include "GfxOutBarCtrl.h"
  12. typedef vector<CDialog*> DialogVector;
  13. typedef vector<CDialog*>::iterator DialogIterator;
  14. /////////////////////////////////////////////////////////////////////////////
  15. // CQQClientDlg dialog
  16. class CQQClientDlg : public CDialog
  17. {
  18. // Construction
  19. public:
  20. CQQClientDlg(LPCTSTR serverIP, CWnd* pParent = NULL); // standard constructor
  21. // Dialog Data
  22. //{{AFX_DATA(CQQClientDlg)
  23. enum { IDD = IDD_QQCLIENT };
  24. //}}AFX_DATA
  25. CString _userID;
  26. CString _nickname;
  27. CString _serverIP;
  28. CPeerComm _comm;
  29. CImageList _headIconList;
  30. // ClassWizard generated virtual function overrides
  31. //{{AFX_VIRTUAL(CQQClientDlg)
  32. protected:
  33. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  34. //}}AFX_VIRTUAL
  35. // Implementation
  36. protected:
  37. HICON m_hIcon;
  38. CFriendList _friendList;
  39. DialogVector _dialogVector;
  40. CGfxOutBarCtrl _obFriendList;
  41. // Generated message map functions
  42. //{{AFX_MSG(CQQClientDlg)
  43. virtual BOOL OnInitDialog();
  44. afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
  45. afx_msg void OnPaint();
  46. afx_msg HCURSOR OnQueryDragIcon();
  47. afx_msg void OnBtnAddFriend();
  48. afx_msg void OnDestroy();
  49. afx_msg LRESULT OnListenNotify(WPARAM wParam, LPARAM lParam);
  50. afx_msg LRESULT OnSenddlgClosed(WPARAM wParam, LPARAM lParam);
  51. afx_msg LRESULT OnOutbarNotify(WPARAM wParam, LPARAM lParam);
  52. //}}AFX_MSG
  53. DECLARE_MESSAGE_MAP()
  54. HRESULT sendMessageToFriend(int index);
  55. void initFriendList(void);
  56. void clear(void);
  57. HRESULT queryUser(CString userID, CFriendData &friendData);
  58. HRESULT downloadFriends();
  59. };
  60. //{{AFX_INSERT_LOCATION}}
  61. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  62. #endif // !defined(AFX_QQCLIENTDLG_H__FA4709C9_8CE4_11D6_9C0E_0080C8F72DA3__INCLUDED_)