]>
git.saurik.com Git - wxWidgets.git/blob - contrib/src/stc/scintilla/src/Style.h
916b646315bbbcf4fe02a4b50ce309523374fb5d
1 // Scintilla source code edit control
2 // Style.h - defines the font and colour style for a class of text
3 // Copyright 1998-2000 by Neil Hodgson <neilh@scintilla.org>
4 // The License.txt file describes the conditions under which this software may be distributed.
20 unsigned int lineHeight
;
23 unsigned int externalLeading
;
24 unsigned int aveCharWidth
;
25 unsigned int spaceWidth
;
29 Style
&operator=(const Style
&source
);
30 void Clear(Colour fore_
=Colour(0,0,0), Colour back_
=Colour(0xff,0xff,0xff),
31 int size_
=Platform::DefaultFontSize(),
32 const char *fontName_
=Platform::DefaultFont(),
33 bool bold_
=false, bool italic_
=false, bool eolFilled_
=false);
34 void Realise(Surface
&surface
, int zoomLevel
);