htmlhorizontalrulesection.h
来自「hl2 source code. Do not use it illegal.」· C头文件 代码 · 共 33 行
H
33 行
/*----------------------------------------------------------------------
Copyright (c) 1998 Gipsysoft. All Rights Reserved.
Please see the file "licence.txt" for licencing details.
File: HTMLHorizontalRuleSection.h
Owner: russf@gipsysoft.com
Purpose: Horizontal rule HTML section.
----------------------------------------------------------------------*/
#ifndef HTMLHORIZONTALRULESECTION_H
#define HTMLHORIZONTALRULESECTION_H
#ifndef HTMLSECTIONABC_H
#include "HTMLSectionABC.h"
#endif // HTMLSECTIONABC_H
class CHTMLHorizontalRuleSection : public CHTMLSectionABC
{
public:
CHTMLHorizontalRuleSection( CParentSection *psect, bool bNoShade, COLORREF crColor );
virtual ~CHTMLHorizontalRuleSection();
virtual void OnDraw( CDrawContext &dc );
private:
bool m_bNoShade;
COLORREF m_crColor;
private:
CHTMLHorizontalRuleSection();
CHTMLHorizontalRuleSection( const CHTMLHorizontalRuleSection & );
CHTMLHorizontalRuleSection& operator = ( const CHTMLHorizontalRuleSection & );
};
#endif //HTMLHORIZONTALRULESECTION_H
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?