]> git.saurik.com Git - wxWidgets.git/blob - src/stc/scintilla/src/FontQuality.h
wxRTC: save and load the 'shown' status in case there's a situation where layout...
[wxWidgets.git] / src / stc / scintilla / src / FontQuality.h
1 // Scintilla source code edit control
2 /** @file FontQuality.h
3 ** Definitions to control font anti-aliasing.
4 **/
5 // Copyright 1998-2009 by Neil Hodgson <neilh@scintilla.org>
6 // The License.txt file describes the conditions under which this software may be distributed.
7
8 #define SC_EFF_QUALITY_MASK 0xF
9 #define SC_EFF_QUALITY_DEFAULT 0
10 #define SC_EFF_QUALITY_NON_ANTIALIASED 1
11 #define SC_EFF_QUALITY_ANTIALIASED 2
12 #define SC_EFF_QUALITY_LCD_OPTIMIZED 3
13
14 #define SCWIN_TECH_GDI 0
15 #define SCWIN_TECH_DIRECTWRITE 1