www.pudn.com > 使用语音卡做的投诉抢修管理系统.zip > AnimateIcon.h


  
///////////////////////////////////////////////////////////////////////////// 
 
#if !defined(AFX_ANIMATEICON_H__47E058AD_6F69_11D2_B59C_86DD54033006__INCLUDED_) 
#define      AFX_ANIMATEICON_H__47E058AD_6F69_11D2_B59C_86DD54033006__INCLUDED_ 
 
class CAnimateIcon 
{ 
protected : 
	// variable to hold the image list containing a series 
	// of icons 
	CImageList  m_imgList; 
	// keep track of which image is current 
	int m_iImageCounter; 
	// store the max nos of images 
	int m_iMaxNoOfImages; 
	HICON hIcon[2]; //默认图标数为2个  
	HICON hPrevIcon ; 
		 
public: 
	CAnimateIcon(); 
	~CAnimateIcon(); 
	BOOL SetImageList(int IDOfImgListResource,int numberOfImages,COLORREF transparentColor); 
	BOOL ShowNextImage(); 
}; 
 
#endif //#define AFX_ANIMATEICON_H__47E058AD_6F69_11D2_B59C_86DD54033006__INCLUDED_