diff options
| author | nyamatongwe <devnull@localhost> | 2000-05-10 11:53:11 +0000 | 
|---|---|---|
| committer | nyamatongwe <devnull@localhost> | 2000-05-10 11:53:11 +0000 | 
| commit | 256989e8407879dbacdfb618c2cad67de160ac00 (patch) | |
| tree | 722bc4ebdab9d5e760b31d87854695c25fecc294 /src/Style.h | |
| parent | 8d20ab7b6e45c33d073b53638c60d4348712be09 (diff) | |
| download | scintilla-mirror-256989e8407879dbacdfb618c2cad67de160ac00.tar.gz | |
Added underline attribute to styles.
Added diagonal and strike-through indicators.
Diffstat (limited to 'src/Style.h')
| -rw-r--r-- | src/Style.h | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/src/Style.h b/src/Style.h index 95e006135..a8a0a859a 100644 --- a/src/Style.h +++ b/src/Style.h @@ -16,6 +16,7 @@ public:  	int size;  	const char *fontName;  	bool eolFilled; +	bool underline;  	Font font;  	unsigned int lineHeight; @@ -32,7 +33,7 @@ public:  	void Clear(Colour fore_, Colour back_,             	int size_,   		const char *fontName_,  -		bool bold_, bool italic_, bool eolFilled_); +		bool bold_, bool italic_, bool eolFilled_, bool underline_);  	bool EquivalentFontTo(const Style *other) const;  	void Realise(Surface &surface, int zoomLevel, Style *defaultStyle=0);  }; | 
