animate.h

来自「net send 消息发送工具」· C头文件 代码 · 共 38 行

H
38
字号
// Animate.h: interface for the CAnimate class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_ANIMATE_H__5888A70A_3503_451A_91C9_22F20EA66B0E__INCLUDED_)
#define AFX_ANIMATE_H__5888A70A_3503_451A_91C9_22F20EA66B0E__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

class CAnimate  
{
public:
	CAnimate();
	virtual ~CAnimate();

	void AddIcon(HICON hIcon);
	void Init(HWND hWnd,int xStart,int xEnd,int yStart,int yEnd,int Step, int Cycle);
	void Start();

private:
	HICON m_hIcon[128];
	int  m_iCurrIconIndex;
	UINT m_uIconNum;
	HWND m_hWnd;
	int  m_xStart;
	int  m_xEnd;
	int  m_yStart;
	int  m_yEnd;
	int  m_Step;
	int  m_Cycle;

	static UINT Animate_Thread(PVOID p); 
};

#endif // !defined(AFX_ANIMATE_H__5888A70A_3503_451A_91C9_22F20EA66B0E__INCLUDED_)

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?