WndValueImage.h
上传用户:dzyhzl
上传日期:2019-04-29
资源大小:56270k
文件大小:1k
- /*****************************************************************************************
- // 界面窗口体系结构--值控制换帧的显示图形的窗口
- // Copyright : Kingsoft 2002
- // Author : Wooy(Wu yue)
- // CreateTime: 2002-12-10
- ------------------------------------------------------------------------------------------
- *****************************************************************************************/
- #pragma once
- #include "WndImage.h"
- class KWndValueImage : public KWndImage
- {
- public:
- virtual int Init(KIniFile* pIniFile, const char* pSection);//初始化
- void SetValue(int nCurrentValue, int nFullValue);
- KWndValueImage();
- void Clone(KWndValueImage* pCopy);
- private:
- int m_nFrameCount;
- int m_nCurrentValue;
- int m_nFullValue;
- };