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

游戏引擎

开发平台:

Visual C++

  1. // GraphSpin.h: interface for the CGraphSpin class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_GRAPHSPIN_H__43FBFC01_A10D_11D2_814D_5254AB37CDC9__INCLUDED_)
  5. #define AFX_GRAPHSPIN_H__43FBFC01_A10D_11D2_814D_5254AB37CDC9__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include "graphbutton.h"
  10. class CGraphSpin : public CGraphButton
  11. {
  12. public:
  13. CGraphSpin();
  14. virtual ~CGraphSpin();
  15. void     SetSpin(RECT rect,bool isFirstSpin,bool bHorizontal=true);
  16.   void     RenderSpin();
  17.     bool     m_bChangValue;
  18. private:
  19. void     UpdateSpin();
  20. bool     m_bFirstSpin;
  21. bool     m_bHorz;
  22. int      m_iPushedTime;
  23. };
  24. #endif // !defined(AFX_GRAPHSPIN_H__43FBFC01_A10D_11D2_814D_5254AB37CDC9__INCLUDED_)