diff options
author | nyamatongwe <unknown> | 2005-03-20 01:37:22 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2005-03-20 01:37:22 +0000 |
commit | 0eeee7531d739c2fc06e54eb56d27f361ece0503 (patch) | |
tree | 8395a920bd832f73b878b22182452e5fc86f45c0 /include | |
parent | 6007ca5bf84031f6e353d05907f195ef448769ca (diff) | |
download | scintilla-mirror-0eeee7531d739c2fc06e54eb56d27f361ece0503.tar.gz |
Patch from nissl in RFE 1164540 adds WrapCount method.
Diffstat (limited to 'include')
-rw-r--r-- | include/Scintilla.h | 1 | ||||
-rw-r--r-- | include/Scintilla.iface | 5 |
2 files changed, 5 insertions, 1 deletions
diff --git a/include/Scintilla.h b/include/Scintilla.h index cd1dbd77f..5e5528c0a 100644 --- a/include/Scintilla.h +++ b/include/Scintilla.h @@ -352,6 +352,7 @@ typedef sptr_t (*SciFnDirect)(sptr_t ptr, unsigned int iMessage, uptr_t wParam, #define SCI_CALLTIPSETFOREHLT 2207 #define SCI_VISIBLEFROMDOCLINE 2220 #define SCI_DOCLINEFROMVISIBLE 2221 +#define SCI_WRAPCOUNT 2235 #define SC_FOLDLEVELBASE 0x400 #define SC_FOLDLEVELWHITEFLAG 0x1000 #define SC_FOLDLEVELHEADERFLAG 0x2000 diff --git a/include/Scintilla.iface b/include/Scintilla.iface index 5436fced4..b7e64ed17 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -905,6 +905,9 @@ fun int VisibleFromDocLine=2220(int line,) # Find the document line of a display line taking hidden lines into account. fun int DocLineFromVisible=2221(int lineDisplay,) +# The number of display lines needed to wrap a document line +fun int WrapCount=2235(int line,) + enu FoldLevel=SC_FOLDLEVEL val SC_FOLDLEVELBASE=0x400 val SC_FOLDLEVELWHITEFLAG=0x1000 @@ -1596,7 +1599,7 @@ fun void SetLengthForEncode=2448(int bytes,) # On error return 0. fun int EncodedFromUTF8=2449(string utf8, stringresult encoded) -# Find the position of a column on a line taking into account tabs and +# Find the position of a column on a line taking into account tabs and # multi-byte characters. If beyond end of line, return line end position. fun int FindColumn=2456(int line, int column) |