aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2001-09-11 00:11:47 +0000
committernyamatongwe <devnull@localhost>2001-09-11 00:11:47 +0000
commit005208dabad70dd7cc37fd8aeb26d9319e10e7e0 (patch)
tree7aa40f023e3ae4558198091455f02618e919ec6a
parentcbae3c19442226c42c1172946f22c62f26bda2e8 (diff)
downloadscintilla-mirror-005208dabad70dd7cc37fd8aeb26d9319e10e7e0.tar.gz
Documented SC_MARK_CHARACTER, SCEN_SETFOCUS, and SCEN_KILLFOCUS.
-rw-r--r--doc/ScintillaDoc.html12
1 files changed, 11 insertions, 1 deletions
diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html
index b5dccbbd0..c610de791 100644
--- a/doc/ScintillaDoc.html
+++ b/doc/ScintillaDoc.html
@@ -745,7 +745,8 @@ SCI_MARKERDELETEHANDLE(int handle)
The marker symbols currently available are SC_MARK_CIRCLE, SC_MARK_ROUNDRECT, SC_MARK_ARROW,
SC_MARK_SMALLRECT, SC_MARK_SHORTARROW, SC_MARK_EMPTY, SC_MARK_ARROWDOWN,
SC_MARK_MINUS, SC_MARK_PLUS. The SC_MARK_EMPTY symbol is invisible,
- allowing client code to track the movement of lines.
+ allowing client code to track the movement of lines. Characters can be used as markers by adding
+ the ASCII value of the character to SC_MARK_CHARACTER.
</p>
<p>
There are also marker symbols available for the folding margin in an flattened tree style:
@@ -1265,6 +1266,15 @@ SCN_KEY
sent by Windows version.
</p>
<pre>
+SCEN_SETFOCUS
+SCEN_KILLFOCUS
+</pre>
+ <p>
+ SCEN_SETFOCUS is fired when Scintilla receives focus and SCEN_KILLFOCUS when it loses focus.
+ These notifications are sent using the WM_COMMAND message on Windows and the "Command" signal
+ on GTK+ as this is the behaviour of the standard edit control.
+ </p>
+<pre>
SCN_MODIFIED
SCEN_CHANGE
SCI_SETMODEVENTMASK(int eventmask)