WndValueImage.h
上传用户:dzyhzl
上传日期:2019-04-29
资源大小:56270k
文件大小:1k
源码类别:

模拟服务器

开发平台:

C/C++

  1. /*****************************************************************************************
  2. // 界面窗口体系结构--值控制换帧的显示图形的窗口
  3. // Copyright : Kingsoft 2002
  4. // Author :   Wooy(Wu yue)
  5. // CreateTime: 2002-12-10
  6. ------------------------------------------------------------------------------------------
  7. *****************************************************************************************/
  8. #pragma once
  9. #include "WndImage.h"
  10. class KWndValueImage : public KWndImage
  11. {
  12. public:
  13. virtual int Init(KIniFile* pIniFile, const char* pSection);//初始化
  14. void SetValue(int nCurrentValue, int nFullValue);
  15. KWndValueImage();
  16. void Clone(KWndValueImage* pCopy);
  17. private:
  18. int m_nFrameCount;
  19. int m_nCurrentValue;
  20. int m_nFullValue;
  21. };