]>
git.saurik.com Git - wxWidgets.git/blob - src/stc/scintilla/src/FontQuality.h
1 // Scintilla source code edit control
2 /** @file FontQuality.h
3 ** Definitions to control font anti-aliasing.
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.
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
14 #define SCWIN_TECH_GDI 0
15 #define SCWIN_TECH_DIRECTWRITE 1