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