userlistview.h
上传用户:swkcbjrc
上传日期:2016-04-02
资源大小:45277k
文件大小:3k
源码类别:

游戏

开发平台:

Visual C++

  1. /*******************************************************************************
  2. userlistview.h
  3. 用户列表
  4. *******************************************************************************/
  5. /*
  6. ================================================================================
  7. Copyright (c) 2002  GameHigh Group.
  8. 本程序修改自GAMEHIGH(open source)[http://www.gamehigh.net]项目程序,在此表示感谢紫瑗、骑士、阿鬼等。
  9. email:  wantsoft@163.com
  10. 这一程序是自由软件,你可以遵照自由软件基金会出版的GNU 通用公共许可证条款来修改和
  11. 重新发布这一程序。或者用许可证的第二版,或者(根据你的选择)用任何更新的版本。
  12. 发布这一程序的目的是希望它有用,但没有任何担保。甚至没有适合特定目地的隐含的担保。
  13. 更详细的情况请参阅GNU通用公共许可证。
  14. 你应该已经和程序一起收到一份GNU通用公共许可证的副本。如果还没有,写信给:
  15. The Free Software Foundation, Inc.,  675  Mass Ave,  Cambridge,  MA02139,  USA
  16. 或访问 http://www.gnu.org
  17. 文件版本:
  18.     0.0.1
  19.     Build 020705
  20.     Date  2002-07-05
  21. 修改历史:
  22.     2002-07-05
  23. 创建文件
  24. */
  25. #if !defined(AFX_USERLISTVIEW_H__D8F001ED_3F96_495D_8A6E_DEF8C57C233A__INCLUDED_)
  26. #define AFX_USERLISTVIEW_H__D8F001ED_3F96_495D_8A6E_DEF8C57C233A__INCLUDED_
  27. #if _MSC_VER > 1000
  28. #pragma once
  29. #endif // _MSC_VER > 1000
  30. // userlistview.h : header file
  31. //
  32. /////////////////////////////////////////////////////////////////////////////
  33. // CUserListView view
  34. #include "afxcview.h"
  35. #include "afxcmn.h"
  36. #include "macros.h"
  37. class CUserListView : public CListView
  38. {
  39. protected:
  40. CUserListView();           // protected constructor used by dynamic creation
  41. DECLARE_DYNCREATE(CUserListView)
  42. // Attributes
  43. public:
  44. // Operations
  45. public:
  46. // Overrides
  47. // ClassWizard generated virtual function overrides
  48. //{{AFX_VIRTUAL(CUserListView)
  49. public:
  50. virtual void OnInitialUpdate();
  51. protected:
  52. virtual void OnDraw(CDC* pDC);      // overridden to draw this view
  53. //}}AFX_VIRTUAL
  54. // Implementation
  55. protected:
  56. virtual ~CUserListView();
  57. #ifdef _DEBUG
  58. virtual void AssertValid() const;
  59. virtual void Dump(CDumpContext& dc) const;
  60. #endif
  61. // Generated message map functions
  62. protected:
  63. //{{AFX_MSG(CUserListView)
  64. // NOTE - the ClassWizard will add and remove member functions here.
  65. //}}AFX_MSG
  66. DECLARE_MESSAGE_MAP()
  67. private:
  68. GAMEHIGH_USERINFO* pUserInfoList; //游戏者信息列表
  69. CImageList* pFaceImgList;
  70. };
  71. /////////////////////////////////////////////////////////////////////////////
  72. //{{AFX_INSERT_LOCATION}}
  73. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  74. #endif // !defined(AFX_JQUSERINFOLISTVIEW_H__2DD5DB76_EE32_4157_9D1C_0EB5523D811E__INCLUDED_)