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

📄 parentsection.h

📁 hl2 source code. Do not use it illegal.
💻 H
字号:
/*----------------------------------------------------------------------
Copyright (c) 1998,1999 Gipsysoft. All Rights Reserved.
Please see the file "licence.txt" for licencing details.
File:	ParentSection.h
Owner:	russf@gipsysoft.com
Purpose:	<Description of module>.
----------------------------------------------------------------------*/
#ifndef PARENTSECTION_H
#define PARENTSECTION_H

#ifndef SECTIONABC_H
	#include "SectionABC.h"
#endif	//	SECTIONABC_H

class CParentSection: public CSectionABC
{
public:
	CParentSection( CParentSection *pParent );
	virtual ~CParentSection();

	//	handle a draw event.
	virtual void OnDraw( CDrawContext &dc );

	//	Remove a section from the list of sections
	void RemoveAllSections();


	//	Add a section to the list of sections this section contains.
	void AddSection( CSectionABC *pSect );

	//	Get the number of children the section has
	inline UINT GetSectionCount() const { return m_arrSections.GetSize(); }

	//	Get at a section by index
	inline CSectionABC *GetSectionAt( UINT nIndex ) const { return m_arrSections[ nIndex ]; }

	//	Tell our children about our transparent state
	virtual void Transparent( bool bTransparent );
	virtual CSectionABC * FindSectionFromPoint( const CPoint &pt ) const;

protected:
	typedef Container::CArray< CSectionABC *> CSectionList; 

	CSectionList m_arrSections;

private:


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

#endif //PARENTSECTION_H

⌨️ 快捷键说明

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