diff options
author | nyamatongwe <unknown> | 2009-11-02 04:51:51 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2009-11-02 04:51:51 +0000 |
commit | c563199dde32ce1d04e95c478dbd6a3e352f5d4d (patch) | |
tree | 517893f316edf898a972316bbcd3b7b64c82de0f /include/Scintilla.h | |
parent | dde4d3e2775b52a8b678d209c2299ec637210a03 (diff) | |
download | scintilla-mirror-c563199dde32ce1d04e95c478dbd6a3e352f5d4d.tar.gz |
Added setting for font quality to allow application to choose anti-aliased,
non-anti-aliased or lcd-optimized text.
Diffstat (limited to 'include/Scintilla.h')
-rw-r--r-- | include/Scintilla.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/Scintilla.h b/include/Scintilla.h index c7d30ca3a..e38d74cba 100644 --- a/include/Scintilla.h +++ b/include/Scintilla.h @@ -478,6 +478,13 @@ typedef sptr_t (*SciFnDirect)(sptr_t ptr, unsigned int iMessage, uptr_t wParam, #define SCI_APPENDTEXT 2282 #define SCI_GETTWOPHASEDRAW 2283 #define SCI_SETTWOPHASEDRAW 2284 +#define SC_EFF_QUALITY_MASK 0xF +#define SC_EFF_QUALITY_DEFAULT 0 +#define SC_EFF_QUALITY_NON_ANTIALIASED 1 +#define SC_EFF_QUALITY_ANTIALIASED 2 +#define SC_EFF_QUALITY_LCD_OPTIMIZED 3 +#define SCI_SETFONTQUALITY 2611 +#define SCI_GETFONTQUALITY 2612 #define SCI_TARGETFROMSELECTION 2287 #define SCI_LINESJOIN 2288 #define SCI_LINESSPLIT 2289 |