diff options
| author | nyamatongwe <devnull@localhost> | 2009-02-14 10:59:38 +0000 |
|---|---|---|
| committer | nyamatongwe <devnull@localhost> | 2009-02-14 10:59:38 +0000 |
| commit | fa4bd51d2caec16b782f136fa4ffa53a89b9b804 (patch) | |
| tree | 2b2d33d2c699bd0d35185e67803738c7ec377c0b /doc/ScintillaDoc.html | |
| parent | 220bd0dc5578f5b7814e4deae12b077d27b06b16 (diff) | |
| download | scintilla-mirror-fa4bd51d2caec16b782f136fa4ffa53a89b9b804.tar.gz | |
Feature #2586290 INDIC_ROUNDBOX alpha transparency setting from Todd
Whiteman of ActiveState.
Diffstat (limited to 'doc/ScintillaDoc.html')
| -rw-r--r-- | doc/ScintillaDoc.html | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html index ffa409f71..c56669ba3 100644 --- a/doc/ScintillaDoc.html +++ b/doc/ScintillaDoc.html @@ -3022,6 +3022,10 @@ struct TextToFind { <a class="message" href="#SCI_INDICSETFORE">SCI_INDICSETFORE(int indicatorNumber, int colour)</a><br /> <a class="message" href="#SCI_INDICGETFORE">SCI_INDICGETFORE(int indicatorNumber)</a><br /> + <a class="message" href="#SCI_INDICSETALPHA">SCI_INDICSETALPHA(int indicatorNumber, int alpha)</a><br /> + <a class="message" href="#SCI_INDICGETALPHA">SCI_INDICGETALPHA(int indicatorNumber)</a><br /> + <a class="message" href="#SCI_INDICSETUNDER">SCI_INDICSETUNDER(int indicatorNumber, bool under)</a><br /> + <a class="message" href="#SCI_INDICGETUNDER">SCI_INDICGETUNDER(int indicatorNumber)</a><br /> </code> <p><b id="SCI_INDICSETSTYLE">SCI_INDICSETSTYLE(int indicatorNumber, int @@ -3104,7 +3108,9 @@ struct TextToFind { <td align="center">7</td> <td>A rectangle with rounded corners around the text using translucent drawing with the - interior more transparent than the border.</td> + interior more transparent than the border. You can use + <a class="message" href="#SCI_INDICSETALPHA">SCI_INDICSETALPHA</a> + to control the alpha transparency value. The default alpha value is 30. </tr> </tbody> </table> @@ -3123,6 +3129,13 @@ struct TextToFind { <code>SCI_INDICSETFORE(1, 0xff0000);</code> (light blue)<br /> <code>SCI_INDICSETFORE(2, 0x0000ff);</code> (light red)</p> + <p><b id="SCI_INDICSETALPHA">SCI_INDICSETALPHA(int indicatorNumber, int alpha)</b><br /> + <b id="SCI_INDICGETALPHA">SCI_INDICGETALPHA(int indicatorNumber)</b><br /> + These two messages set and get the alpha transparency used for drawing the + fill color of the INDIC_ROUNDBOX rectangle. The alpha value can range from + 0 (completely transparent) to 100 (no transparency). + </p> + <p><b id="SCI_INDICSETUNDER">SCI_INDICSETUNDER(int indicatorNumber, bool under)</b><br /> <b id="SCI_INDICGETUNDER">SCI_INDICGETUNDER(int indicatorNumber)</b><br /> These two messages set and get whether an indicator is drawn under text or over(default). |
