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

📄 htmltablesection.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:	HTMLTableSection.h
Owner:	russf@gipsysoft.com
Author: rich@woodbridgeinternalmed.com
Purpose:	A Section for displaying tables.
----------------------------------------------------------------------*/
#ifndef HTMLTABLESECTION_H
#define HTMLTABLESECTION_H

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

class CHTMLTableSection : public CHTMLSectionABC
{
public:
	CHTMLTableSection( CParentSection *psect, int border, COLORREF crBorderDark, COLORREF crBorderLight, bool transparent = true, COLORREF crBack = (COLORREF)0);
	virtual ~CHTMLTableSection();

	virtual void OnDraw( CDrawContext &dc );
	
	//	Fix for table background making links in the table not get any mouse input
	virtual bool IsPointInSection( const CPoint & ) const { return false; }

private:
	COLORREF	m_crBack;
	COLORREF	m_crBorderDark;
	COLORREF	m_crBorderLight;
	int			m_nBorder;
private:
	CHTMLTableSection();
	CHTMLTableSection( const CHTMLTableSection & );
	CHTMLTableSection& operator =( const CHTMLTableSection & );
};


#endif //HTMLTABLESECTION_H

⌨️ 快捷键说明

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