diff options
author | rdaneelolivaw <unknown> | 2005-04-12 18:15:51 +0000 |
---|---|---|
committer | rdaneelolivaw <unknown> | 2005-04-12 18:15:51 +0000 |
commit | a02f000ca8d66dfff378225c36a663d39b19dfa4 (patch) | |
tree | 41b62b7d8307f488d4eb65ac8e692c5d8cadce14 | |
parent | 27bed1120db9c85bcfe1946007e7fab8767b24bd (diff) | |
download | scintilla-mirror-a02f000ca8d66dfff378225c36a663d39b19dfa4.tar.gz |
RBR - Reflect the addition of the SC_MARK_FULLRECT marker symbol.
-rw-r--r-- | doc/ScintillaDoc.html | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html index d841e825b..9a0a84b1f 100644 --- a/doc/ScintillaDoc.html +++ b/doc/ScintillaDoc.html @@ -38,7 +38,7 @@ <h1>Scintilla Documentation</h1> - <p>Last edited 3/April/2005 NH</p> + <p>Last edited 11/April/2005 NH</p> <p>There is <a class="jump" href="Design.html">an overview of the internal design of Scintilla</a>.<br /> @@ -2583,8 +2583,8 @@ struct TextToFind { <code>SC_MARK_CIRCLE</code>, <code>SC_MARK_ROUNDRECT</code>, <code>SC_MARK_ARROW</code>, <code>SC_MARK_SMALLRECT</code>, <code>SC_MARK_SHORTARROW</code>, <code>SC_MARK_EMPTY</code>, <code>SC_MARK_ARROWDOWN</code>, <code>SC_MARK_MINUS</code>, <code>SC_MARK_PLUS</code>, - <code>SC_MARK_ARROWS</code>, <code>SC_MARK_DOTDOTDOT</code>, <code>SC_MARK_EMPTY</code> and - <code>SC_MARK_BACKGROUND</code>.</p> + <code>SC_MARK_ARROWS</code>, <code>SC_MARK_DOTDOTDOT</code>, <code>SC_MARK_EMPTY</code>, + <code>SC_MARK_BACKGROUND</code> and <code>SC_MARK_FULLRECT</code>.</p> <p><b id="SCI_MARKERDEFINEPIXMAP">SCI_MARKERDEFINEPIXMAP(int markerNumber, const char *xpm)</b><br /> @@ -2594,6 +2594,7 @@ struct TextToFind { the XPM format <a class="jump" href="http://koala.ilog.fr/lehors/xpm.html">here</a>.</p> <p>The <code>SC_MARK_BACKGROUND</code> marker changes the background colour of the line only. + The <code>SC_MARK_FULLRECT</code> symbol mirrors this, changing only the margin background colour. The <code>SC_MARK_EMPTY</code> symbol is invisible, allowing client code to track the movement of lines. You would also use it if you changed the folding style and wanted one or more of the <code>SC_FOLDERNUM_</code>* markers to have no associated symbol.</p> |