]>
git.saurik.com Git - wxWidgets.git/blob - src/stc/scintilla/src/Style.h
dc643d08d2c43a1ad757c0f2640365476dfcd793
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.
13 bool aliasOfDefaultFont
;
23 unsigned int lineHeight
;
26 unsigned int externalLeading
;
27 unsigned int aveCharWidth
;
28 unsigned int spaceWidth
;
31 Style(const Style
&source
);
33 Style
&operator=(const Style
&source
);
34 void Clear(Colour fore_
, Colour back_
,
36 const char *fontName_
, int characterSet_
,
37 bool bold_
, bool italic_
, bool eolFilled_
, bool underline_
);
38 bool EquivalentFontTo(const Style
*other
) const;
39 void Realise(Surface
&surface
, int zoomLevel
, Style
*defaultStyle
=0);