diff options
| author | Neil <nyamatongwe@gmail.com> | 2014-01-14 19:08:34 +1100 |
|---|---|---|
| committer | Neil <nyamatongwe@gmail.com> | 2014-01-14 19:08:34 +1100 |
| commit | d8aca4b3af308eed001204846025634a77a4211f (patch) | |
| tree | b39e152fdbff7b72a323b6c22d96b90dac4e979e /include | |
| parent | 277f1de6e80bfc2cbb1eb0ab20a88f6e91cdf32f (diff) | |
| download | scintilla-mirror-d8aca4b3af308eed001204846025634a77a4211f.tar.gz | |
CallTipSetPosStart API added.
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 39171bad4..dda068d75 100644 --- a/include/Scintilla.h +++ b/include/Scintilla.h @@ -417,6 +417,7 @@ typedef sptr_t (*SciFnDirect)(sptr_t ptr, unsigned int iMessage, uptr_t wParam, #define SCI_CALLTIPCANCEL 2201 #define SCI_CALLTIPACTIVE 2202 #define SCI_CALLTIPPOSSTART 2203 +#define SCI_CALLTIPSETPOSSTART 2214 #define SCI_CALLTIPSETHLT 2204 #define SCI_CALLTIPSETBACK 2205 #define SCI_CALLTIPSETFORE 2206 diff --git a/include/Scintilla.iface b/include/Scintilla.iface index 7b38eb852..32a797251 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -1042,6 +1042,9 @@ fun bool CallTipActive=2202(,) # Retrieve the position where the caret was before displaying the call tip. fun position CallTipPosStart=2203(,) +# Set the start position in order to change when backspacing removes the calltip. +set void CallTipSetPosStart=2214(int posStart,) + # Highlight a segment of the definition. fun void CallTipSetHlt=2204(int start, int end) |
