aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/Scintilla.iface
diff options
context:
space:
mode:
authornyamatongwe <unknown>2000-09-22 11:17:11 +0000
committernyamatongwe <unknown>2000-09-22 11:17:11 +0000
commita72c43d215b4ca861c69c9f4a8d8a13b69e5d196 (patch)
tree790617f5acabf5ce8f6426731a8baaab920083a8 /include/Scintilla.iface
parent31ce0f4f8f3e6657c3849722af440d94e59daf91 (diff)
downloadscintilla-mirror-a72c43d215b4ca861c69c9f4a8d8a13b69e5d196.tar.gz
Added SetFocus and GetFocus for access to the internal focus flag which
determines if the caret is displayed.
Diffstat (limited to 'include/Scintilla.iface')
-rw-r--r--include/Scintilla.iface5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/Scintilla.iface b/include/Scintilla.iface
index 6b511ee1c..50cfa83c5 100644
--- a/include/Scintilla.iface
+++ b/include/Scintilla.iface
@@ -993,6 +993,11 @@ fun void ReleaseDocument=2377(, int doc)
# Get which document modification events are sent to the container.
get int GetModEventMask=2378(,)
+# Change internal focus flag
+set void SetFocus=2380(bool focus,)
+# Get internal focus flag
+get bool GetFocus=2381(,)
+
# Set the focus to this Scintilla widget.
# GTK+ Specific
fun void GrabFocus=2400(,)