ListBox.h
上传用户:hkb425
上传日期:2007-06-16
资源大小:34191k
文件大小:1k
源码类别:

游戏引擎

开发平台:

Visual C++

  1. // ListBox.h: interface for the CListBox class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_LISTBOX_H__3DE48AC1_AAEC_11D6_8153_5254AB37CDC9__INCLUDED_)
  5. #define AFX_LISTBOX_H__3DE48AC1_AAEC_11D6_8153_5254AB37CDC9__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include "graphedit.h"
  10. class CListBox  
  11. {
  12. public:
  13. CListBox();
  14. virtual ~CListBox();
  15. void SetListBox(RECT rect,int numItem,char *titleFile,int curItem=0);
  16.     void SetSelect(int iItem);
  17. void ClearCurrentItem();
  18. void SetCurrentItemEnableEdit();
  19. int  GetSelect();
  20. void SaveItemTitle(char *titleFile);
  21. void RenderListBox();
  22. bool m_bValueChanged;
  23. private:
  24. void  UpdateListBox();
  25. RECT  m_rect;
  26. int   m_iMaxItem;
  27.     int   m_iSelect;
  28. CGraphEdit  *m_pEdit;
  29. };
  30. #endif // !defined(AFX_LISTBOX_H__3DE48AC1_AAEC_11D6_8153_5254AB37CDC9__INCLUDED_)