diff options
author | Martijn Laan <1092369+martijnlaan@users.noreply.github.com> | 2024-06-25 15:22:23 +1000 |
---|---|---|
committer | Martijn Laan <1092369+martijnlaan@users.noreply.github.com> | 2024-06-25 15:22:23 +1000 |
commit | e1526b995aba2e8cd7b4ee018abaaf62e9897e06 (patch) | |
tree | 00eae91fb58bb8b6dff339f215f17603d56cfe75 /doc | |
parent | e419907a2eec27cf4ffa0823ae62d7ae65ef4c9c (diff) | |
download | scintilla-mirror-e1526b995aba2e8cd7b4ee018abaaf62e9897e06.tar.gz |
Feature [feature-requests:#1519]. Cherry pick SC_MASK_HISTORY from isscint.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/ScintillaDoc.html | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html index 6dda5eaaa..8f9e22290 100644 --- a/doc/ScintillaDoc.html +++ b/doc/ScintillaDoc.html @@ -2232,6 +2232,9 @@ struct Sci_TextToFindFull { </tr> </tbody> </table> + + <p>The bits used for change history markers are specified by <code>SC_MASK_HISTORY</code>, which is commonly + used as an argument to <code>SCI_SETMARGINMASKN</code> when defining a margin to be used for change history.</p> <p>Indicators:</p> @@ -4468,8 +4471,10 @@ struct Sci_TextToFindFull { The mask is a 32-bit value. Each bit corresponds to one of 32 logical symbols that can be displayed in a margin that is enabled for symbols. There is a useful constant, <code>SC_MASK_FOLDERS</code> (0xFE000000 or -33554432), that is a mask for the 7 logical - symbols used to denote folding. You can assign a wide range of symbols and colours to each of - the 32 logical symbols, see <a href="#Markers">Markers</a> for more information. If <code>(mask + symbols used to denote folding, and another, <code>SC_MASK_HISTORY</code> (0x01E00000 or + 31457280), that is a mask for the 4 logical symbols used to denote change history. You can + assign a wide range of symbols and colours to each of the 32 logical symbols, see + <a href="#Markers">Markers</a> for more information. If <code>(mask & SC_MASK_FOLDERS)==0</code>, the margin background colour is controlled by style 33 (<a class="message" href="#StyleDefinition"><code>STYLE_LINENUMBER</code></a>).</p> |