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

游戏引擎

开发平台:

Visual C++

  1. // ChangeBar.h: interface for the CChangeBar class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_CHANGEBAR_H__886370E1_A111_11D2_814D_5254AB37CDC9__INCLUDED_)
  5. #define AFX_CHANGEBAR_H__886370E1_A111_11D2_814D_5254AB37CDC9__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include "graphspin.h"
  10. class CChangeBar  
  11. {
  12. public:
  13. CChangeBar();
  14. virtual ~CChangeBar();
  15.     void SetChangeBar(RECT rect, char **sText,int numItem,int curItem);
  16.     void SetChangeBar(RECT rect, unsigned int *texID,int numItem,int curItem);
  17.     void SetEnable(bool bState);
  18. void SetItem(int iItem);
  19. int  GetSelected();
  20. int  GetTotalItemNumber();
  21. void RenderChangeBar();
  22. bool m_bValueChanged;
  23. bool m_bEnable;
  24. private:
  25. void   UpdateChangeBar(); 
  26. void   UpdateButtonShow();
  27. int           m_iMaxItem;
  28. int  m_iSelect;
  29. unsigned int *m_texID;
  30. char        **m_sText;
  31. CGraphSpin    m_cSpin[2];
  32. CGraphButton  m_cButton;
  33.  
  34. };
  35. #endif // !defined(AFX_CHANGEBAR_H__886370E1_A111_11D2_814D_5254AB37CDC9__INCLUDED_)