From 852c901f3508bc2c7e1a5200de1ea7a13434251f Mon Sep 17 00:00:00 2001
From: nyamatongwe
+ On Windows, code page SC_CP_UTF8 (65001) sets Scintilla into Unicode mode with the + document treated as a sequence of characters expressed in UTF8. The text is converted to + UCS-2 before being drawn by the OS and can thus display Hebrew, Arabic, Cyrillic, and + Han characters. +
SCI_SETWORDCHARS(<unused>, char *chars)@@ -632,8 +638,6 @@ SCI_NEWLINE SCI_FORMFEED SCI_VCHOME SCI_VCHOMEEXTEND -SCI_ZOOMIN -SCI_ZOOMOUT SCI_DELWORDLEFT SCI_DELWORDRIGHT SCI_LINESCROLLDOWN @@ -768,6 +772,21 @@ SCI_ENSUREVISIBLE(int line) contracted. SCI_ENSUREVISIBLE travels up the fold hierarchy, expanding any contracted folds until it reaches the top level. The line will then be visible. +
+SCI_ZOOMIN +SCI_ZOOMOUT +SCI_SETZOOM +SCI_GETZOOM ++
+ The text can be made larger and smaller by using SCI_ZOOMIN and SCI_ZOOMOUT. + The zoom level can be retreived by SCI_GETZOOM and set by SCI_SETZOOM. The zoom factors + may range from -10 to + 20 and is added to each styles point size. The calculated point size never + goes below 2. +