diff options
author | nyamatongwe <devnull@localhost> | 2013-01-01 12:21:37 +1100 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2013-01-01 12:21:37 +1100 |
commit | d3a36ac23ec1ac9572584b6588e08bb11b57c091 (patch) | |
tree | 4c396e6ddabf8f92753acc4f1f0536d6386b2566 /doc/ScintillaDoc.html | |
parent | 72237ea67ae8f09b6fa11e3b750192f0b5281052 (diff) | |
download | scintilla-mirror-d3a36ac23ec1ac9572584b6588e08bb11b57c091.tar.gz |
Feature #3592730. Option for caret line to be visible without focus.
From Vidya Wasi.
Diffstat (limited to 'doc/ScintillaDoc.html')
-rw-r--r-- | doc/ScintillaDoc.html | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html index 99320a947..afce3aa88 100644 --- a/doc/ScintillaDoc.html +++ b/doc/ScintillaDoc.html @@ -2603,6 +2603,8 @@ struct Sci_TextToFind { <a class="message" href="#SCI_GETCARETLINEBACK">SCI_GETCARETLINEBACK</a><br /> <a class="message" href="#SCI_SETCARETLINEBACKALPHA">SCI_SETCARETLINEBACKALPHA(int alpha)</a><br /> <a class="message" href="#SCI_GETCARETLINEBACKALPHA">SCI_GETCARETLINEBACKALPHA</a><br /> + <a class="message" href="#SCI_SETCARETLINEVISIBLEALWAYS">SCI_SETCARETLINEVISIBLEALWAYS(bool alwaysVisible)</a><br /> + <a class="message" href="#SCI_GETCARETLINEVISIBLEALWAYS">SCI_GETCARETLINEVISIBLEALWAYS</a><br /> <a class="message" href="#SCI_SETCARETPERIOD">SCI_SETCARETPERIOD(int milliseconds)</a><br /> <a class="message" href="#SCI_GETCARETPERIOD">SCI_GETCARETPERIOD</a><br /> <a class="message" href="#SCI_SETCARETSTYLE">SCI_SETCARETSTYLE(int style)</a><br /> @@ -2667,6 +2669,12 @@ struct Sci_TextToFind { the caret line is drawn after all other features so will affect the colour of all other features. </p> + <p><b id="SCI_SETCARETLINEVISIBLEALWAYS">SCI_SETCARETLINEVISIBLEALWAYS(bool alwaysVisible)</b><br /> + <b id="SCI_GETCARETLINEVISIBLEALWAYS">SCI_GETCARETLINEVISIBLEALWAYS</b><br /> + Choose to make the caret line always visible even when the window is not in focus. + Default behaviour <code>SCI_SETCARETLINEVISIBLEALWAYS(false)</code> the caret line is only visible when the window is in focus. + </p> + <p><b id="SCI_SETCARETPERIOD">SCI_SETCARETPERIOD(int milliseconds)</b><br /> <b id="SCI_GETCARETPERIOD">SCI_GETCARETPERIOD</b><br /> The rate at which the caret blinks can be set with <code>SCI_SETCARETPERIOD</code> which |