LogList.h
上传用户:lds876
上传日期:2013-05-25
资源大小:567k
文件大小:2k
源码类别:

P2P编程

开发平台:

Visual C++

  1. #if !defined(AFX_LOGLIST_H__46FCF380_552F_4A79_809F_BA24C9FC04E0__INCLUDED_)
  2. #define AFX_LOGLIST_H__46FCF380_552F_4A79_809F_BA24C9FC04E0__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // LogList.h : header file
  7. //
  8. #include "ListCtrlBaseEx.h"
  9. class CFileDBItem;
  10. class CMonitorWnd;
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CLogList window
  13. class CLogList : public CListCtrlBaseEx
  14. {
  15. // Construction
  16. public:
  17. CLogList();
  18. // Attributes
  19. public:
  20. // Operations
  21. public:
  22. BOOL CreateEx(CWnd* pParent, CRect rc, long lID, long lParam, CMonitorWnd* pMonitorWnd);
  23. void Monitor(CFileDBItem* pFileDBItem = 0);
  24. void ShowLogs(bool bRefreshInfo);
  25. // Overrides
  26. // ClassWizard generated virtual function overrides
  27. //{{AFX_VIRTUAL(CLogList)
  28. //}}AFX_VIRTUAL
  29. // Implementation
  30. public:
  31. virtual ~CLogList();
  32. // Generated message map functions
  33. protected:
  34. //{{AFX_MSG(CLogList)
  35. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  36. afx_msg void OnContextMenu(CWnd* pWnd, CPoint point);
  37. //}}AFX_MSG
  38. afx_msg void OnDeleteitem(NMHDR* pNMHDR, LRESULT* pResult);
  39. afx_msg void OnCustomDraw(NMHDR* pNMHDR, LRESULT* pResult);
  40. afx_msg void OnMenuitemCopy();
  41. afx_msg void OnMenuitemSelectAll();
  42. afx_msg void OnMenuitemClearAll();
  43. afx_msg void OnMenuitemMonitorSub(UINT uID);
  44. DECLARE_MESSAGE_MAP()
  45. private:
  46. void ShowMsgText(int iItem);
  47. void OnShowColumn(int iItem);
  48. CFileDBItem* m_pFileDBItem;
  49. CMonitorWnd* m_pMonitorWnd;
  50. enum {eMsgOutID, eMsgInID, eCmdID, eBadID};
  51. enum {eTime, eInfo, eColumnCount};
  52. CImageList m_ctlImage;
  53. };
  54. /////////////////////////////////////////////////////////////////////////////
  55. //{{AFX_INSERT_LOCATION}}
  56. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  57. #endif // !defined(AFX_LOGLIST_H__46FCF380_552F_4A79_809F_BA24C9FC04E0__INCLUDED_)