diff options
author | Neil <nyamatongwe@gmail.com> | 2021-07-31 08:49:25 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2021-07-31 08:49:25 +1000 |
commit | 4d1a31d6a74019c3d43de1c33e2be093ed6dfd11 (patch) | |
tree | d2b113b25d2cfcb751f4b5a961bb14a04261175f /include/Scintilla.iface | |
parent | 297d17ace8501b23a32390163676c838dad71f9a (diff) | |
download | scintilla-mirror-4d1a31d6a74019c3d43de1c33e2be093ed6dfd11.tar.gz |
Implement StyleSetCheckMonospaced.
Diffstat (limited to 'include/Scintilla.iface')
-rw-r--r-- | include/Scintilla.iface | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/Scintilla.iface b/include/Scintilla.iface index 837e4d841..c83773803 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -677,6 +677,12 @@ set void StyleSetCharacterSet=2066(int style, CharacterSet characterSet) # Set a style to be a hotspot or not. set void StyleSetHotSpot=2409(int style, bool hotspot) +# Indicate that a style may be monospaced over ASCII graphics characters which enables optimizations. +set void StyleSetCheckMonospaced=2254(int style, bool checkMonospaced) + +# Get whether a style may be monospaced. +get bool StyleGetCheckMonospaced=2255(int style,) + enu Element=SC_ELEMENT_ val SC_ELEMENT_LIST=0 val SC_ELEMENT_LIST_BACK=1 |