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

游戏引擎

开发平台:

Visual C++

  1. // SelectBox.h: interface for the CSelectBox class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_SELECTBOX_H__887D5121_AC9F_11D6_8156_5254AB37CDC9__INCLUDED_)
  5. #define AFX_SELECTBOX_H__887D5121_AC9F_11D6_8156_5254AB37CDC9__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include "scrollbar.h"
  10. class CSelectBox  
  11. {
  12. public:
  13. CSelectBox();
  14. virtual ~CSelectBox();
  15. void SetSelectBox(RECT rect,char *titleFile,int curItem=0);
  16.     void SetSelect(int iItem);
  17. int  GetSelect();
  18. void RenderSelectBox();
  19. bool m_bValueChanged;
  20. private:
  21. void  UpdateSelectBox();
  22. int    m_iLineHeight; //每行高
  23. int    m_numLine;     //总行数
  24. int    m_iShowLine;   //筐中容纳行数
  25. bool   m_bShowScroll;
  26. RECT   m_rect;
  27.     int    m_iHead;       //显示第一行的号码
  28. int   m_iMaxItem;
  29.     int   m_iSelect;
  30. CScrollBar     m_cScrollBar;
  31. CGraphButton  *m_pButton;
  32. };
  33. #endif // !defined(AFX_SELECTBOX_H__887D5121_AC9F_11D6_8156_5254AB37CDC9__INCLUDED_)