aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/Scintilla.h
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2004-04-27 22:13:00 +0000
committernyamatongwe <devnull@localhost>2004-04-27 22:13:00 +0000
commit8680d7580a9a94f6cd46b2fc21f9d81851a0b3d8 (patch)
tree211ca7e06ffa83b909aba98c601e0e8907c963b9 /include/Scintilla.h
parent816681de6b0d5ed45f6886dfaf18f35ef7c7d191 (diff)
downloadscintilla-mirror-8680d7580a9a94f6cd46b2fc21f9d81851a0b3d8.tar.gz
Continuation Marker feature from Hans Eckardt.
Diffstat (limited to 'include/Scintilla.h')
-rw-r--r--include/Scintilla.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/include/Scintilla.h b/include/Scintilla.h
index d39e3b7ed..1a4e48872 100644
--- a/include/Scintilla.h
+++ b/include/Scintilla.h
@@ -388,6 +388,18 @@ typedef sptr_t (*SciFnDirect)(sptr_t ptr, unsigned int iMessage, uptr_t wParam,
#define SC_WRAP_WORD 1
#define SCI_SETWRAPMODE 2268
#define SCI_GETWRAPMODE 2269
+#define SC_WRAPVISUALFLAG_NONE 0x0000
+#define SC_WRAPVISUALFLAG_END 0x0001
+#define SC_WRAPVISUALFLAG_START 0x0002
+#define SCI_SETWRAPVISUALFLAGS 2460
+#define SCI_GETWRAPVISUALFLAGS 2461
+#define SC_WRAPVISUALFLAGLOC_DEFAULT 0x0000
+#define SC_WRAPVISUALFLAGLOC_END_BY_TEXT 0x0001
+#define SC_WRAPVISUALFLAGLOC_START_BY_TEXT 0x0002
+#define SCI_SETWRAPVISUALFLAGSLOCATION 2462
+#define SCI_GETWRAPVISUALFLAGSLOCATION 2463
+#define SCI_SETWRAPSTARTINDENT 2464
+#define SCI_GETWRAPSTARTINDENT 2465
#define SC_CACHE_NONE 0
#define SC_CACHE_CARET 1
#define SC_CACHE_PAGE 2