From 212257e28c87cd6ed2ff244ee6518be0c73fa342 Mon Sep 17 00:00:00 2001 From: nyamatongwe Date: Mon, 2 Nov 2009 04:51:51 +0000 Subject: Added setting for font quality to allow application to choose anti-aliased, non-anti-aliased or lcd-optimized text. --- include/Scintilla.h | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'include/Scintilla.h') 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 -- cgit v1.2.3