📄 htmlhorizontalrulesection.h
字号:
/*----------------------------------------------------------------------
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -