diff options
author | nyamatongwe <unknown> | 2009-04-01 01:54:21 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2009-04-01 01:54:21 +0000 |
commit | 1cba55c0d91c4a423bc7c2096c6ff841e63244a1 (patch) | |
tree | 7ee5153591f173fb56c030d21dbc4601753d974a /include/Scintilla.iface | |
parent | 6f4e00a1c5ef532b0c4c875d808037c9978cad19 (diff) | |
download | scintilla-mirror-1cba55c0d91c4a423bc7c2096c6ff841e63244a1.tar.gz |
Added commands to add extra ascent and descent space.
Diffstat (limited to 'include/Scintilla.iface')
-rw-r--r-- | include/Scintilla.iface | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/include/Scintilla.iface b/include/Scintilla.iface index f13c144a9..166d37d2a 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -1816,6 +1816,18 @@ set void IndicSetAlpha=2523(int indicator, int alpha) # Get the alpha fill colour of the given indicator. get int IndicGetAlpha=2524(int indicator,) +# Set extra ascent for each line +set void SetExtraAscent=2525(int extraAscent,) + +# Get extra ascent for each line +get int GetExtraAscent=2526(,) + +# Set extra descent for each line +set void SetExtraDescent=2527(int extraDescent,) + +# Get extra descent for each line +get int GetExtraDescent=2528(,) + # Start notifying the container of all key presses and commands. fun void StartRecord=3001(,) |