diff options
author | nyamatongwe <devnull@localhost> | 2010-01-31 06:54:53 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2010-01-31 06:54:53 +0000 |
commit | 926e43d2e9b658fac3adb3fc2c0e0db0e819b819 (patch) | |
tree | 0524f63a25a026c8de1d3e759bf910008aca1bcb /include | |
parent | 5bd974736e7a105a890b17cce440deda27688d5d (diff) | |
download | scintilla-mirror-926e43d2e9b658fac3adb3fc2c0e0db0e819b819.tar.gz |
Added SCI_SETFIRSTVISIBLELINE to match SCI_GETFIRSTVISIBLELINE.
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 e38d74cba..a702fd90d 100644 --- a/include/Scintilla.h +++ b/include/Scintilla.h @@ -485,6 +485,7 @@ typedef sptr_t (*SciFnDirect)(sptr_t ptr, unsigned int iMessage, uptr_t wParam, #define SC_EFF_QUALITY_LCD_OPTIMIZED 3 #define SCI_SETFONTQUALITY 2611 #define SCI_GETFONTQUALITY 2612 +#define SCI_SETFIRSTVISIBLELINE 2613 #define SCI_TARGETFROMSELECTION 2287 #define SCI_LINESJOIN 2288 #define SCI_LINESSPLIT 2289 diff --git a/include/Scintilla.iface b/include/Scintilla.iface index 64c73327b..05aa5ab9f 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -1220,6 +1220,9 @@ set void SetFontQuality=2611(int fontQuality,) # Retrieve the quality level for text. get int GetFontQuality=2612(,) +# Scroll so that a display line is at the top of the display. +set int SetFirstVisibleLine=2613(int lineDisplay,) + # Make the target range start and end be the same as the selection range start and end. fun void TargetFromSelection=2287(,) |