From 8bc63ca16fc5b97d3c8bd384f32a2d279cf0d77b Mon Sep 17 00:00:00 2001
From: nyamatongwe
Date: Sun, 21 May 2006 02:53:47 +0000
Subject: Added translucency for selection and markers.
---
doc/ScintillaDoc.html | 13 +++++++++++++
1 file changed, 13 insertions(+)
(limited to 'doc/ScintillaDoc.html')
diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html
index 0139a93f7..2669de6b5 100644
--- a/doc/ScintillaDoc.html
+++ b/doc/ScintillaDoc.html
@@ -2114,6 +2114,8 @@ struct TextToFind {
colour)
SCI_SETSELBACK(bool useSelectionBackColour, int
colour)
+ SCI_SETSELALPHA(int alpha)
+ SCI_GETSELALPHA
SCI_SETCARETFORE(int colour)
SCI_GETCARETFORE
SCI_SETCARETLINEVISIBLE(bool
@@ -2147,6 +2149,10 @@ struct TextToFind {
you provide is used if you set useSelection*Colour to true. If it is
set to false, the default colour colouring is used and the colour
argument has no effect.
+ SCI_SETSELALPHA(int alpha)
+ SCI_GETSELALPHA
+ The selection background can be drawn translucently in the selection background colour by
+ setting an alpha value.
SCI_SETCARETFORE(int colour)
@@ -2617,6 +2623,8 @@ struct TextToFind {
colour)
SCI_MARKERSETBACK(int markerNumber, int
colour)
+ SCI_MARKERSETALPHA(int markerNumber, int
+ alpha)
SCI_MARKERADD(int line, int markerNumber)
SCI_MARKERADDSET(int line, int markerMask)
SCI_MARKERDELETE(int line, int
@@ -2790,6 +2798,11 @@ struct TextToFind {
SCI_MARKERSETBACK(int markerNumber, int colour)
These two messages set the foreground and background colour of a marker number.
+ SCI_MARKERSETALPHA(int markerNumber, int alpha)
+ When markers are drawn in the content area, either because there is no margin for them or
+ they are of SC_MARK_BACKGROUND type, they may be drawn translucently by
+ setting an alpha value.
SCI_MARKERADD(int line, int markerNumber)
This message adds marker number markerNumber to a line. The message returns -1 if
--
cgit v1.2.3