diff options
author | nyamatongwe <devnull@localhost> | 2002-04-07 02:24:40 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2002-04-07 02:24:40 +0000 |
commit | ef5b2192b86405b14f7cc45f6d48b9f9889eedbe (patch) | |
tree | c4a4656a5cf4fdf8eeb37bf82ce19710a8d76dc3 /include/Scintilla.h | |
parent | dbae5814b486802378c41ca4c095d0aa6dfcff86 (diff) | |
download | scintilla-mirror-ef5b2192b86405b14f7cc45f6d48b9f9889eedbe.tar.gz |
Added ZOOM notification. Added TextWidth method to allow clients to determine width of text items such as width needed for line numbers.
Diffstat (limited to 'include/Scintilla.h')
-rw-r--r-- | include/Scintilla.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/Scintilla.h b/include/Scintilla.h index 2f763de0f..e5ccd6f11 100644 --- a/include/Scintilla.h +++ b/include/Scintilla.h @@ -361,6 +361,7 @@ typedef sptr_t (*SciFnDirect)(sptr_t ptr, unsigned int iMessage, uptr_t wParam, #define SCI_GETLAYOUTCACHE 2273 #define SCI_SETSCROLLWIDTH 2274 #define SCI_GETSCROLLWIDTH 2275 +#define SCI_TEXTWIDTH 2276 #define SCI_LINEDOWN 2300 #define SCI_LINEDOWNEXTEND 2301 #define SCI_LINEUP 2302 @@ -527,6 +528,7 @@ typedef sptr_t (*SciFnDirect)(sptr_t ptr, unsigned int iMessage, uptr_t wParam, #define SCN_URIDROPPED 2015 #define SCN_DWELLSTART 2016 #define SCN_DWELLEND 2017 +#define SCN_ZOOM 2018 //--Autogenerated -- end of section automatically generated from Scintilla.iface // These structures are defined to be exactly the same shape as the Win32 |