diff options
| author | Sébastien Granjoux <seb.sfo@free.fr> | 2011-09-23 23:16:12 +0200 |
|---|---|---|
| committer | Sébastien Granjoux <seb.sfo@free.fr> | 2011-09-23 23:16:12 +0200 |
| commit | c89ae1e2153477f2d369b82dacafa10cd417c704 (patch) | |
| tree | 212fce702cde5bf0ceafedbd7bd115d267cef200 /include | |
| parent | a407a6330fa1d41aecc2816cf5f079bac5dd3304 (diff) | |
| download | scintilla-mirror-c89ae1e2153477f2d369b82dacafa10cd417c704.tar.gz | |
Allow to display calltip above or below the text
Diffstat (limited to 'include')
| -rw-r--r-- | include/Scintilla.h | 1 | ||||
| -rw-r--r-- | include/Scintilla.iface | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/include/Scintilla.h b/include/Scintilla.h index 10f290822..1cccd7872 100644 --- a/include/Scintilla.h +++ b/include/Scintilla.h @@ -415,6 +415,7 @@ typedef sptr_t (*SciFnDirect)(sptr_t ptr, unsigned int iMessage, uptr_t wParam, #define SCI_CALLTIPSETFORE 2206 #define SCI_CALLTIPSETFOREHLT 2207 #define SCI_CALLTIPUSESTYLE 2212 +#define SCI_CALLTIPSETPOSITION 2213 #define SCI_VISIBLEFROMDOCLINE 2220 #define SCI_DOCLINEFROMVISIBLE 2221 #define SCI_WRAPCOUNT 2235 diff --git a/include/Scintilla.iface b/include/Scintilla.iface index e77675567..e0462a3fd 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -1039,6 +1039,9 @@ set void CallTipSetForeHlt=2207(colour fore,) # Enable use of STYLE_CALLTIP and set call tip tab size in pixels. set void CallTipUseStyle=2212(int tabSize,) +# Set position of calltip, above or below text. +set void CallTipSetPosition=2213(bool above,) + # Find the display line of a document line taking hidden lines into account. fun int VisibleFromDocLine=2220(int line,) |
