wxWidgets 2.8.9 Downloads
源代码在线查看: style.h
// Scintilla source code edit control /** @file Style.h ** Defines the font and colour style for a class of text. **/ // Copyright 1998-2001 by Neil Hodgson // The License.txt file describes the conditions under which this software may be distributed. #ifndef STYLE_H #define STYLE_H /** */ class Style { public: ColourPair fore; ColourPair back; bool aliasOfDefaultFont; bool bold; bool italic; int size; const char *fontName; int characterSet; bool eolFilled; bool underline; enum ecaseForced {caseMixed, caseUpper, caseLower}; ecaseForced caseForce; bool visible; bool changeable; bool hotspot; Font font; int sizeZoomed; unsigned int lineHeight; unsigned int ascent; unsigned int descent; unsigned int externalLeading; unsigned int aveCharWidth; unsigned int spaceWidth; Style(); Style(const Style &source); ~Style(); Style &operator=(const Style &source); void Clear(ColourDesired fore_, ColourDesired back_, int size_, const char *fontName_, int characterSet_, bool bold_, bool italic_, bool eolFilled_, bool underline_, ecaseForced caseForce_, bool visible_, bool changeable_, bool hotspot_); void ClearTo(const Style &source); bool EquivalentFontTo(const Style *other) const; void Realise(Surface &surface, int zoomLevel, Style *defaultStyle = 0, bool extraFontFlag = false); bool IsProtected() const { return !(changeable && visible);}; }; #endif
|
相关资源 |
|
-
wxWidgets 2.8.9 Downloads
-
很牛的GUI源码wxWidgets-2.8.0.zip
可在多种平台下运行.
-
/**
* 动态数组的模板类
* 1.支持字符索引
* 2.方便的添加删除修改任意一项
* 最后更新 2004-8-9 yzh
**1.优化了字符索引的运作方式
-
十二、软件问题报告
1.登记号 1
2.登记日期 1
3.问题发现日期 1
4.活动 2
5.状态 2
6.报告人 2
7.问题属于什么方面 2
8.模块/子系统 2
9.修订版
-
十三、软件修改报告
1.登记号 1
2.登记日期 1
3.时间 2
4.报告人 2
5.子系统名 2
6.模块名 2
7.“软件修改报告”的编号 2
8.修改 2
9.修改描述
-
共阳极连接的键盘扫描程序
PC5 PC4 PC3 PC2 PC1 PC0
PC10 0 1 2 3 17 18
PC9 4 5 6 7 19 20
PC8 8 9 10 11 21 22
-
C++嵌入系统实例不是很全,总共7个分别是2,3,5,6,7,8,9
-
C++嵌入系统实例不是很全,总共7个分别是2,3,5,6,7,8,9
|