⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 htmlimagesection.h

📁 hl2 source code. Do not use it illegal.
💻 H
字号:
/*----------------------------------------------------------------------
Copyright (c) 1998 Gipsysoft. All Rights Reserved.
Please see the file "licence.txt" for licencing details.

File:	HTMLImageSection.h
Owner:	russf@gipsysoft.com
Purpose:	HTML Image section.
----------------------------------------------------------------------*/
#ifndef HTMLIMAGESECTION_H
#define HTMLIMAGESECTION_H

#ifndef HTMLSECTIONABC_H
	#include "HTMLSectionABC.h"
#endif	//	HTMLSECTIONABC_H

class CImage;

class CHTMLImageSection : public CHTMLSectionABC
{
public:
	CHTMLImageSection( CParentSection *psect, CImage *pImage, int nBorder );
	virtual ~CHTMLImageSection();

	virtual void OnDraw( CDrawContext &dc );
	virtual void OnTimer( int nTimerID );

private:
	CImage *m_pImage;
	int			m_nBorder;
	int m_nTimerID;
	UINT  m_nFrame;

private:
	CHTMLImageSection();
	CHTMLImageSection( const CHTMLImageSection & );
	CHTMLImageSection& operator =( const CHTMLImageSection & );
};


#endif //HTMLIMAGESECTION_H

⌨️ 快捷键说明

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