diff options
author | nyamatongwe <devnull@localhost> | 2004-04-27 22:13:00 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2004-04-27 22:13:00 +0000 |
commit | 8680d7580a9a94f6cd46b2fc21f9d81851a0b3d8 (patch) | |
tree | 211ca7e06ffa83b909aba98c601e0e8907c963b9 /include/Scintilla.iface | |
parent | 816681de6b0d5ed45f6886dfaf18f35ef7c7d191 (diff) | |
download | scintilla-mirror-8680d7580a9a94f6cd46b2fc21f9d81851a0b3d8.tar.gz |
Continuation Marker feature from Hans Eckardt.
Diffstat (limited to 'include/Scintilla.iface')
-rw-r--r-- | include/Scintilla.iface | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/include/Scintilla.iface b/include/Scintilla.iface index 29101fb64..4960e564e 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -1001,6 +1001,34 @@ set void SetWrapMode=2268(int mode,) # Retrieve whether text is word wrapped. get int GetWrapMode=2269(,) +enu WrapVisualFlag=SC_WRAPVISUALFLAG_ +val SC_WRAPVISUALFLAG_NONE=0x0000 +val SC_WRAPVISUALFLAG_END=0x0001 +val SC_WRAPVISUALFLAG_START=0x0002 + +# Set the display mode of visual flags for wrapped lines. +set void SetWrapVisualFlags=2460(int wrapVisualFlags,) + +# Retrive the display mode of visual flags for wrapped lines. +get int GetWrapVisualFlags=2461(,) + +enu WrapVisualLocation=SC_WRAPVISUALFLAGLOC_ +val SC_WRAPVISUALFLAGLOC_DEFAULT=0x0000 +val SC_WRAPVISUALFLAGLOC_END_BY_TEXT=0x0001 +val SC_WRAPVISUALFLAGLOC_START_BY_TEXT=0x0002 + +# Set the location of visual flags for wrapped lines. +set void SetWrapVisualFlagsLocation=2462(int wrapVisualFlagsLocation,) + +# Retrive the location of visual flags for wrapped lines. +get int GetWrapVisualFlagsLocation=2463(,) + +# Set the start indent for wrapped lines. +fun void SetWrapStartIndent=2464(int indent,) + +# Retrive the start indent for wrapped lines. +get int GetWrapStartIndent=2465(,) + enu LineCache=SC_CACHE_ val SC_CACHE_NONE=0 val SC_CACHE_CARET=1 |