aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/Scintilla.h
diff options
context:
space:
mode:
authornyamatongwe <unknown>2001-12-19 02:52:29 +0000
committernyamatongwe <unknown>2001-12-19 02:52:29 +0000
commit1e7d2a3aa5987481c1258da5ed8d087ede816a71 (patch)
treefe77b79aae08106c2e22d4806a64d19256ef55cd /include/Scintilla.h
parentfc233a92e3cc15ba62c3ebc8ec907e070644af89 (diff)
downloadscintilla-mirror-1e7d2a3aa5987481c1258da5ed8d087ede816a71.tar.gz
Patch from Philippe to show control characters as a particular character
rather than as the default blobs.
Diffstat (limited to 'include/Scintilla.h')
-rw-r--r--include/Scintilla.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/include/Scintilla.h b/include/Scintilla.h
index 370aa6d50..fb099f9ec 100644
--- a/include/Scintilla.h
+++ b/include/Scintilla.h
@@ -436,6 +436,8 @@ typedef sptr_t (*SciFnDirect)(sptr_t ptr, unsigned int iMessage, uptr_t wParam,
#define SC_CURSORWAIT 3
#define SCI_SETCURSOR 2386
#define SCI_GETCURSOR 2387
+#define SCI_SETCONTROLCHARSYMBOL 2388
+#define SCI_GETCONTROLCHARSYMBOL 2389
#define SCI_WORDPARTLEFT 2390
#define SCI_WORDPARTLEFTEXTEND 2391
#define SCI_WORDPARTRIGHT 2392
@@ -532,7 +534,7 @@ struct TextToFind {
#ifdef PLATFORM_H
-// This structure is used in printing and requires some of the graphics types
+// This structure is used in printing and requires some of the graphics types
// from Platform.h. Not needed by most client code.
struct RangeToFormat {
@@ -549,7 +551,7 @@ struct NotifyHeader {
// hwndFrom is really an environment specifc window handle or pointer
// but most clients of Scintilla.h do not have this type visible.
//WindowID hwndFrom;
- void *hwndFrom;
+ void *hwndFrom;
unsigned int idFrom;
unsigned int code;
};