From e904ecce4b1fc41ec71ed600669c5d4f96eeffec Mon Sep 17 00:00:00 2001 From: nyamatongwe Date: Fri, 22 Apr 2011 11:07:17 +1000 Subject: INDIC_ROUNDBOX can set alpha of outline. Feature #3290434. From Marko Njezic. --- doc/ScintillaDoc.html | 20 +++++++++++++++----- 1 file changed, 15 insertions(+), 5 deletions(-) (limited to 'doc') diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html index 7fa92a273..5a241e6d6 100644 --- a/doc/ScintillaDoc.html +++ b/doc/ScintillaDoc.html @@ -79,7 +79,7 @@

Scintilla Documentation

-

Last edited 4/April/2011 NH

+

Last edited 20/April/2011 NH

There is an overview of the internal design of Scintilla.
@@ -3557,6 +3557,8 @@ struct Sci_TextToFind { SCI_INDICGETFORE(int indicatorNumber)
SCI_INDICSETALPHA(int indicatorNumber, int alpha)
SCI_INDICGETALPHA(int indicatorNumber)
+ SCI_INDICSETOUTLINEALPHA(int indicatorNumber, int alpha)
+ SCI_INDICGETOUTLINEALPHA(int indicatorNumber)
SCI_INDICSETUNDER(int indicatorNumber, bool under)
SCI_INDICGETUNDER(int indicatorNumber)
@@ -3641,9 +3643,10 @@ struct Sci_TextToFind { 7 A rectangle with rounded corners around the text using translucent drawing with the - interior more transparent than the border. You can use - SCI_INDICSETALPHA - to control the alpha transparency value. The default alpha value is 30. + interior usually more transparent than the border. You can use + SCI_INDICSETALPHA and + SCI_INDICSETOUTLINEALPHA + to control the alpha transparency values. The default alpha values are 30 for fill colour and 50 for outline colour. @@ -3665,7 +3668,14 @@ struct Sci_TextToFind {

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 + fill colour of the INDIC_ROUNDBOX rectangle. The alpha value can range from + 0 (completely transparent) to 255 (no transparency). +

+ +

SCI_INDICSETOUTLINEALPHA(int indicatorNumber, int alpha)
+ SCI_INDICGETOUTLINEALPHA(int indicatorNumber)
+ These two messages set and get the alpha transparency used for drawing the + outline colour of the INDIC_ROUNDBOX rectangle. The alpha value can range from 0 (completely transparent) to 255 (no transparency).

-- cgit v1.2.3