]> git.saurik.com Git - wxWidgets.git/blob - src/stc/scintilla/src/FontQuality.h
2c8d548a86fa5a1d2e3f4bf1902a7a4f81c21740
[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