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 | |
parent | 6f4e00a1c5ef532b0c4c875d808037c9978cad19 (diff) | |
download | scintilla-mirror-1cba55c0d91c4a423bc7c2096c6ff841e63244a1.tar.gz |
Added commands to add extra ascent and descent space.
Diffstat (limited to 'include')
-rw-r--r-- | include/Scintilla.h | 4 | ||||
-rw-r--r-- | include/Scintilla.iface | 12 |
2 files changed, 16 insertions, 0 deletions
diff --git a/include/Scintilla.h b/include/Scintilla.h index fa28c1dbc..3edb6da41 100644 --- a/include/Scintilla.h +++ b/include/Scintilla.h @@ -673,6 +673,10 @@ typedef sptr_t (*SciFnDirect)(sptr_t ptr, unsigned int iMessage, uptr_t wParam, #define SCI_GETKEYSUNICODE 2522 #define SCI_INDICSETALPHA 2523 #define SCI_INDICGETALPHA 2524 +#define SCI_SETEXTRAASCENT 2525 +#define SCI_GETEXTRAASCENT 2526 +#define SCI_SETEXTRADESCENT 2527 +#define SCI_GETEXTRADESCENT 2528 #define SCI_STARTRECORD 3001 #define SCI_STOPRECORD 3002 #define SCI_SETLEXER 4001 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(,) |