Fix action icons in the log dialog being clipped on High-DPI displays
[TortoiseGit.git] / ext / scintilla / src / FontQuality.h
blob7a674e81d6f35ec4d37600a981b90d150f6bafd2
1 // Scintilla source code edit control
2 /** @file FontQuality.h
3 ** Definitions to control font anti-aliasing.
4 ** Redefine constants from Scintilla.h to avoid including Scintilla.h in PlatWin.cxx.
5 **/
6 // Copyright 1998-2009 by Neil Hodgson <neilh@scintilla.org>
7 // The License.txt file describes the conditions under which this software may be distributed.
9 #ifndef FONTQUALITY_H
10 #define FONTQUALITY_H
12 #ifdef SCI_NAMESPACE
13 namespace Scintilla {
14 #endif
16 // These definitions match Scintilla.h
17 #define SC_EFF_QUALITY_MASK 0xF
18 #define SC_EFF_QUALITY_DEFAULT 0
19 #define SC_EFF_QUALITY_NON_ANTIALIASED 1
20 #define SC_EFF_QUALITY_ANTIALIASED 2
21 #define SC_EFF_QUALITY_LCD_OPTIMIZED 3
23 // These definitions must match SC_TECHNOLOGY_* in Scintilla.h
24 #define SCWIN_TECH_GDI 0
25 #define SCWIN_TECH_DIRECTWRITE 1
27 #ifdef SCI_NAMESPACE
29 #endif
31 #endif