diff options
Diffstat (limited to 'doc/ScintillaDoc.html')
-rw-r--r-- | doc/ScintillaDoc.html | 25 |
1 files changed, 24 insertions, 1 deletions
diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html index 9f8f6d937..b5ad08649 100644 --- a/doc/ScintillaDoc.html +++ b/doc/ScintillaDoc.html @@ -3804,6 +3804,22 @@ struct Sci_TextToFindFull { <td>Cocoa</td> <td>Background colour of selections when another window has focus</td> </tr> + <tr> + <th align="left"><code>SC_ELEMENT_SELECTION_INACTIVE_ADDITIONAL_TEXT</code></th> + <td>18</td> + <td>Translucent</td> + <td>All</td> + <td></td> + <td>Text colour of additional selections when another window has focus</td> + </tr> + <tr> + <th align="left"><code>SC_ELEMENT_SELECTION_INACTIVE_ADDITIONAL_BACK</code></th> + <td>19</td> + <td>Translucent</td> + <td>All</td> + <td></td> + <td>Background colour of additional selections when another window has focus</td> + </tr> <tr class="section"> <th align="left"><code>SC_ELEMENT_CARET</code></th> <td>40</td> @@ -3911,6 +3927,8 @@ struct Sci_TextToFindFull { <br /> <a class="element" href="#SC_ELEMENT_SELECTION_INACTIVE_TEXT">SC_ELEMENT_SELECTION_INACTIVE_TEXT : colouralpha</a><br /> <a class="element" href="#SC_ELEMENT_SELECTION_INACTIVE_BACK">SC_ELEMENT_SELECTION_INACTIVE_BACK : colouralpha</a><br /> + <a class="element" href="#SC_ELEMENT_SELECTION_INACTIVE_TEXT">SC_ELEMENT_SELECTION_INACTIVE_ADDITIONAL_TEXT : colouralpha</a><br /> + <a class="element" href="#SC_ELEMENT_SELECTION_INACTIVE_BACK">SC_ELEMENT_SELECTION_INACTIVE_ADDITIONAL_BACK : colouralpha</a><br /> <br /> <a class="element" href="#SC_ELEMENT_CARET_LINE_BACK">SC_ELEMENT_CARET_LINE_BACK : colouralpha</a><br /> <a class="message" href="#SCI_SETCARETLINELAYER">SCI_SETCARETLINELAYER(int layer)</a><br /> @@ -4035,8 +4053,13 @@ struct Sci_TextToFindFull { <p> <b id="SC_ELEMENT_SELECTION_INACTIVE_TEXT">SC_ELEMENT_SELECTION_INACTIVE_TEXT : colouralpha</b><br /> <b id="SC_ELEMENT_SELECTION_INACTIVE_BACK">SC_ELEMENT_SELECTION_INACTIVE_BACK : colouralpha</b><br /> + <b id="SC_ELEMENT_SELECTION_INACTIVE_ADDITIONAL_TEXT">SC_ELEMENT_SELECTION_INACTIVE_ADDITIONAL_TEXT : colouralpha</b><br /> + <b id="SC_ELEMENT_SELECTION_INACTIVE_ADDITIONAL_BACK">SC_ELEMENT_SELECTION_INACTIVE_ADDITIONAL_BACK : colouralpha</b><br /> When a window no longer has the keyboard focus, it is customary to make its selection less noticeable by colouring it grey. - These elements define the colours to be used for selections without focus. + These elements define the colours to be used for selections without focus. When the <code>ADDITIONAL</code> elements are not set then + the standard values are used: + <code>SC_ELEMENT_SELECTION_INACTIVE_ADDITIONAL_TEXT</code>→<code>SC_ELEMENT_SELECTION_INACTIVE_TEXT</code> and + <code>SC_ELEMENT_SELECTION_INACTIVE_ADDITIONAL_BACK</code>→<code>SC_ELEMENT_SELECTION_INACTIVE_BACK</code>. </p> <p> |