diff options
| author | nyamatongwe <nyamatongwe@gmail.com> | 2012-04-16 16:04:00 +1000 |
|---|---|---|
| committer | nyamatongwe <nyamatongwe@gmail.com> | 2012-04-16 16:04:00 +1000 |
| commit | a1d7176b8051738e3a718f0ecb97a4ba7185f311 (patch) | |
| tree | effdf5e3fc864a907a7e178af265c6c739b8a4ae /include | |
| parent | 37018ef28c480627860c5e7fafd9baec6f4211fe (diff) | |
| download | scintilla-mirror-a1d7176b8051738e3a718f0ecb97a4ba7185f311.tar.gz | |
Implemented find indicator with animation for OS X.
Diffstat (limited to 'include')
| -rw-r--r-- | include/Scintilla.h | 3 | ||||
| -rw-r--r-- | include/Scintilla.iface | 9 |
2 files changed, 12 insertions, 0 deletions
diff --git a/include/Scintilla.h b/include/Scintilla.h index 2459c0317..0df0900de 100644 --- a/include/Scintilla.h +++ b/include/Scintilla.h @@ -837,6 +837,9 @@ typedef sptr_t (*SciFnDirect)(sptr_t ptr, unsigned int iMessage, uptr_t wParam, #define SCI_SETTECHNOLOGY 2630 #define SCI_GETTECHNOLOGY 2631 #define SCI_CREATELOADER 2632 +#define SCI_FINDINDICATORSHOW 2640 +#define SCI_FINDINDICATORFLASH 2641 +#define SCI_FINDINDICATORHIDE 2642 #define SCI_STARTRECORD 3001 #define SCI_STOPRECORD 3002 #define SCI_SETLEXER 4001 diff --git a/include/Scintilla.iface b/include/Scintilla.iface index 6dda631e4..b7f9eede8 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -2217,6 +2217,15 @@ get int GetTechnology=2631(,) # Create an ILoader*. fun int CreateLoader=2632(int bytes,) +# On OS X, show a find indicator. +fun void FindIndicatorShow=2640(position start, position end) + +# On OS X, flash a find indicator, then fade out. +fun void FindIndicatorFlash=2641(position start, position end) + +# On OS X, hide the find indicator. +fun void FindIndicatorHide=2642(,) + # Start notifying the container of all key presses and commands. fun void StartRecord=3001(,) |
