From cab7d5eeb8f11e54723df01a7e03a7e380db6f71 Mon Sep 17 00:00:00 2001 From: nyamatongwe Date: Thu, 27 Nov 2003 12:32:28 +0000 Subject: Documented additions for 1.57. --- doc/ScintillaDoc.html | 35 ++++++++++++++++++++++++++++++++++- 1 file changed, 34 insertions(+), 1 deletion(-) diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html index 54dc260f0..f93aaea89 100644 --- a/doc/ScintillaDoc.html +++ b/doc/ScintillaDoc.html @@ -898,6 +898,8 @@ struct TextToFind { SCI_SELECTIONISRECTANGLE
SCI_SETSELECTIONMODE
SCI_GETSELECTIONMODE
+ SCI_GETLINESELSTARTPOSITION(int line)
+ SCI_GETLINESELENDPOSITION(int line)
SCI_MOVECARETINSIDEVIEW
SCI_WORDENDPOSITION(int position, bool onlyWordCharacters)
@@ -1089,6 +1091,11 @@ struct TextToFind { The get function returns the current mode even if the selection was made by mouse or with regular extended moves.

+

SCI_GETLINESELSTARTPOSITION(int line)
+ SCI_GETLINESELENDPOSITION(int line)
+ Retrieve the position of the start and end of the selection at the given line with + INVALID_POSITION returned if no selection on this line.

+

SCI_MOVECARETINSIDEVIEW
If the caret is off the top or bottom of the view, it is moved to the nearest line that is visible to its current position. Any selection is lost.

@@ -2029,6 +2036,7 @@ struct TextToFind { SCI_SETHOTSPOTACTIVEFORE
SCI_SETHOTSPOTACTIVEBACK
SCI_SETHOTSPOTACTIVEUNDERLINE
+ SCI_SETHOTSPOTSINGLELINE
SCI_SETCONTROLCHARSYMBOL(int symbol)
SCI_GETCONTROLCHARSYMBOL
@@ -2081,8 +2089,10 @@ struct TextToFind { SCI_SETHOTSPOTACTIVEBACK(bool useHotSpotBackColour, int colour)
SCI_SETHOTSPOTACTIVEUNDERLINE(bool underline,)
+ SCI_SETHOTSPOTSINGLELINE(bool singleLine,)
While the cursor hovers over text in a style with the hotspot attribute set, - the default colouring can be modified and an underline drawn with these settings.

+ the default colouring can be modified and an underline drawn with these settings. + Single line mode stops a hotspot from wrapping onto next line.

SCI_SETCONTROLCHARSYMBOL(int symbol)
SCI_GETCONTROLCHARSYMBOL
@@ -3164,6 +3174,16 @@ struct TextToFind { SCI_WORDRIGHTEXTEND + + SCI_WORDLEFTEND + + SCI_WORDLEFTENDEXTEND + + SCI_WORDRIGHTEND + + SCI_WORDRIGHTENDEXTEND + + SCI_WORDPARTLEFT @@ -3250,6 +3270,19 @@ struct TextToFind { SCI_PAGEDOWNRECTEXTEND + + + SCI_STUTTEREDPAGEUP + + SCI_STUTTEREDPAGEUPEXTEND + + + + SCI_STUTTEREDPAGEDOWN + + SCI_STUTTEREDPAGEDOWNEXTEND + + SCI_DELETEBACK -- cgit v1.2.3