aboutsummaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2007-04-19 13:21:08 +0000
committernyamatongwe <devnull@localhost>2007-04-19 13:21:08 +0000
commit8780a67905c9516b91ee014749ea791427075490 (patch)
treeaba5d8f3e3758feb0f7fba7256d2a4c01b54044b /include
parent6f02bfd7333bd67d7e89531c9e80ee3b6d0915c7 (diff)
downloadscintilla-mirror-8780a67905c9516b91ee014749ea791427075490.tar.gz
Optimized indicator changing with separate SC_MOD_CHANGEINDICATOR
notification flag.
Diffstat (limited to 'include')
-rw-r--r--include/Scintilla.h3
-rw-r--r--include/Scintilla.iface3
2 files changed, 4 insertions, 2 deletions
diff --git a/include/Scintilla.h b/include/Scintilla.h
index 153a5123c..67140a7d3 100644
--- a/include/Scintilla.h
+++ b/include/Scintilla.h
@@ -677,7 +677,8 @@ typedef sptr_t (*SciFnDirect)(sptr_t ptr, unsigned int iMessage, uptr_t wParam,
#define SC_MOD_BEFOREDELETE 0x800
#define SC_MULTILINEUNDOREDO 0x1000
#define SC_STARTACTION 0x2000
-#define SC_MODEVENTMASKALL 0x2FFF
+#define SC_MOD_CHANGEINDICATOR 0x4000
+#define SC_MODEVENTMASKALL 0x6FFF
#define SCEN_CHANGE 768
#define SCEN_SETFOCUS 512
#define SCEN_KILLFOCUS 256
diff --git a/include/Scintilla.iface b/include/Scintilla.iface
index ba9f61ec0..1e8c6478a 100644
--- a/include/Scintilla.iface
+++ b/include/Scintilla.iface
@@ -1819,7 +1819,8 @@ val SC_MOD_BEFOREINSERT=0x400
val SC_MOD_BEFOREDELETE=0x800
val SC_MULTILINEUNDOREDO=0x1000
val SC_STARTACTION=0x2000
-val SC_MODEVENTMASKALL=0x2FFF
+val SC_MOD_CHANGEINDICATOR=0x4000
+val SC_MODEVENTMASKALL=0x6FFF
# For compatibility, these go through the COMMAND notification rather than NOTIFY
# and should have had exactly the same values as the EN_* constants.