MyTreeView.h
上传用户:power_led
上传日期:2013-04-11
资源大小:373k
文件大小:2k
源码类别:

ICQ/即时通讯

开发平台:

Visual C++

  1. #if !defined(AFX_MYTREEVIEW_H__3B48AB4D_2688_4DD0_A39F_49B96E80A027__INCLUDED_)
  2. #define AFX_MYTREEVIEW_H__3B48AB4D_2688_4DD0_A39F_49B96E80A027__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // MyTreeView.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CMyTreeView view
  10. class CMyTreeView : public CTreeView
  11. {
  12. protected:
  13. CMyTreeView();           // protected constructor used by dynamic creation
  14. DECLARE_DYNCREATE(CMyTreeView)
  15. // Attributes
  16. public:
  17. // Operations
  18. public:
  19. // Overrides
  20. // ClassWizard generated virtual function overrides
  21. //{{AFX_VIRTUAL(CMyTreeView)
  22. public:
  23. virtual void OnInitialUpdate();
  24. protected:
  25. virtual void OnDraw(CDC* pDC);      // overridden to draw this view
  26. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  27. //}}AFX_VIRTUAL
  28. // Implementation
  29. protected:
  30. virtual ~CMyTreeView();
  31. #ifdef _DEBUG
  32. virtual void AssertValid() const;
  33. virtual void Dump(CDumpContext& dc) const;
  34. #endif
  35. public:
  36. void OnNewClientIn(Message wParam,LPARAM lParam);
  37. void OnClientOut(Message wParam, LPARAM lParam);
  38. void OnChangeRoom(Message wParam,LPARAM lParam);
  39. void OnSendInPrivate(Message wParam,LPARAM lParam);
  40. CTreeCtrl & m_Tree;
  41. CImageList  m_ImageList ;
  42. // Generated message map functions
  43. protected:
  44. HTREEITEM m_ParentItem;
  45. //{{AFX_MSG(CMyTreeView)
  46. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  47. afx_msg void OnTimer(UINT nIDEvent);
  48. //}}AFX_MSG
  49. DECLARE_MESSAGE_MAP()
  50. };
  51. /////////////////////////////////////////////////////////////////////////////
  52. //{{AFX_INSERT_LOCATION}}
  53. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  54. #endif // !defined(AFX_MYTREEVIEW_H__3B48AB4D_2688_4DD0_A39F_49B96E80A027__INCLUDED_)