aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/Scintilla.h
diff options
context:
space:
mode:
authornyamatongwe <unknown>2011-08-07 13:41:35 +1000
committernyamatongwe <unknown>2011-08-07 13:41:35 +1000
commitf3787820600bc07008841b82037e90032619bdaa (patch)
treec26ab1afb7f81901cf6371f2d542b68ec1234c5b /include/Scintilla.h
parent1595153b9cc09514e7f16719694e999c1fd341e0 (diff)
downloadscintilla-mirror-f3787820600bc07008841b82037e90032619bdaa.tar.gz
Implement APIs for fractional font sizes and a range of weights.
Diffstat (limited to 'include/Scintilla.h')
-rw-r--r--include/Scintilla.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/include/Scintilla.h b/include/Scintilla.h
index 34e4f793d..c7b9944d8 100644
--- a/include/Scintilla.h
+++ b/include/Scintilla.h
@@ -221,6 +221,14 @@ typedef sptr_t (*SciFnDirect)(sptr_t ptr, unsigned int iMessage, uptr_t wParam,
#define SCI_STYLEGETCHANGEABLE 2492
#define SCI_STYLEGETHOTSPOT 2493
#define SCI_STYLESETCASE 2060
+#define SC_FONT_SIZE_MULTIPLIER 100
+#define SCI_STYLESETSIZEFRACTIONAL 2061
+#define SCI_STYLEGETSIZEFRACTIONAL 2062
+#define SC_WEIGHT_NORMAL 400
+#define SC_WEIGHT_SEMIBOLD 600
+#define SC_WEIGHT_BOLD 700
+#define SCI_STYLESETWEIGHT 2063
+#define SCI_STYLEGETWEIGHT 2064
#define SCI_STYLESETCHARACTERSET 2066
#define SCI_STYLESETHOTSPOT 2409
#define SCI_SETSELFORE 2067