From fa4bd51d2caec16b782f136fa4ffa53a89b9b804 Mon Sep 17 00:00:00 2001 From: nyamatongwe Date: Sat, 14 Feb 2009 10:59:38 +0000 Subject: Feature #2586290 INDIC_ROUNDBOX alpha transparency setting from Todd Whiteman of ActiveState. --- doc/ScintillaDoc.html | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) (limited to 'doc') 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 { SCI_INDICSETFORE(int indicatorNumber, int colour)
SCI_INDICGETFORE(int indicatorNumber)
+ SCI_INDICSETALPHA(int indicatorNumber, int alpha)
+ SCI_INDICGETALPHA(int indicatorNumber)
+ SCI_INDICSETUNDER(int indicatorNumber, bool under)
+ SCI_INDICGETUNDER(int indicatorNumber)

SCI_INDICSETSTYLE(int indicatorNumber, int @@ -3104,7 +3108,9 @@ struct TextToFind { 7 A rectangle with rounded corners around the text using translucent drawing with the - interior more transparent than the border. + interior more transparent than the border. You can use + SCI_INDICSETALPHA + to control the alpha transparency value. The default alpha value is 30. @@ -3123,6 +3129,13 @@ struct TextToFind { SCI_INDICSETFORE(1, 0xff0000); (light blue)
SCI_INDICSETFORE(2, 0x0000ff); (light red)

+

SCI_INDICSETALPHA(int indicatorNumber, int alpha)
+ SCI_INDICGETALPHA(int indicatorNumber)
+ 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). +

+

SCI_INDICSETUNDER(int indicatorNumber, bool under)
SCI_INDICGETUNDER(int indicatorNumber)
These two messages set and get whether an indicator is drawn under text or over(default). -- cgit v1.2.3