MsgListView.h
上传用户:zslianheng
上传日期:2013-04-03
资源大小:946k
文件大小:3k
源码类别:

Linux/Unix编程

开发平台:

Visual C++

  1. /***************************************************************************
  2.  *                                                                         *
  3.  *   This program is free software; you can redistribute it and/or modify  *
  4.  *   it under the terms of the GNU General Public License as published by  *
  5.  *   the Free Software Foundation; either version 2 of the License, or     *
  6.  *   (at your option) any later version.                                   *
  7.  *                                                                         *
  8.  *   copyright            : (C) 2002 by Zhang Yong                         *
  9.  *   email                : z-yong163@163.com                              *
  10.  ***************************************************************************/
  11. #if !defined(AFX_MSGLISTVIEW_H__838E7890_C9D6_4580_B44F_7A408FB9C890__INCLUDED_)
  12. #define AFX_MSGLISTVIEW_H__838E7890_C9D6_4580_B44F_7A408FB9C890__INCLUDED_
  13. #if _MSC_VER > 1000
  14. #pragma once
  15. #endif // _MSC_VER > 1000
  16. // MsgListView.h : header file
  17. //
  18. class CMsgView;
  19. class DBOutStream;
  20. class DBInStream;
  21. /////////////////////////////////////////////////////////////////////////////
  22. // CMsgListView view
  23. class CMsgListView : public CListView
  24. {
  25. protected:
  26. CMsgListView();           // protected constructor used by dynamic creation
  27. DECLARE_DYNCREATE(CMsgListView)
  28. // Attributes
  29. public:
  30. void setMsgView(CMsgView *listener) {
  31. msgView = listener;
  32. }
  33. // Operations
  34. public:
  35. void save(DBOutStream &out);
  36. void load(DBInStream &in);
  37. void clear();
  38. void showMsg(DWORD uin);
  39. void delSelectedMsg();
  40. void exportTxt(CStdioFile &file);
  41. private:
  42. CMsgView *msgView;
  43. // Overrides
  44. // ClassWizard generated virtual function overrides
  45. //{{AFX_VIRTUAL(CMsgListView)
  46. protected:
  47. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  48. //}}AFX_VIRTUAL
  49. // Implementation
  50. protected:
  51. virtual ~CMsgListView();
  52. #ifdef _DEBUG
  53. virtual void AssertValid() const;
  54. virtual void Dump(CDumpContext& dc) const;
  55. #endif
  56. // Generated message map functions
  57. protected:
  58. //{{AFX_MSG(CMsgListView)
  59. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  60. afx_msg void OnClick(NMHDR* pNMHDR, LRESULT* pResult);
  61. afx_msg void OnRclick(NMHDR* pNMHDR, LRESULT* pResult);
  62. afx_msg void OnUpdateEditDel(CCmdUI* pCmdUI);
  63. afx_msg void OnDestroy();
  64. //}}AFX_MSG
  65. DECLARE_MESSAGE_MAP()
  66. };
  67. void exportMsgTxt(CStdioFile &file, IcqMsg *msg, const char *nick);
  68. /////////////////////////////////////////////////////////////////////////////
  69. //{{AFX_INSERT_LOCATION}}
  70. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  71. #endif // !defined(AFX_MSGLISTVIEW_H__838E7890_C9D6_4580_B44F_7A408FB9C890__INCLUDED_)