From 8d49281805d033bc8e6ca0da7ef74ed6de37d25f Mon Sep 17 00:00:00 2001 From: Neil Date: Tue, 30 Jun 2015 14:06:48 +1000 Subject: Added SC_CASE_CAMEL to the case mode style attribute. --- doc/ScintillaDoc.html | 4 ++-- doc/ScintillaHistory.html | 3 +++ 2 files changed, 5 insertions(+), 2 deletions(-) (limited to 'doc') diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html index 6e3bab3a6..ed0429efc 100644 --- a/doc/ScintillaDoc.html +++ b/doc/ScintillaDoc.html @@ -2699,8 +2699,8 @@ struct Sci_TextToFind {

SCI_STYLESETCASE(int styleNumber, int caseMode)
SCI_STYLEGETCASE(int styleNumber)
The value of caseMode determines how text is displayed. You can set upper case - (SC_CASE_UPPER, 1) or lower case (SC_CASE_LOWER, 2) or display - normally (SC_CASE_MIXED, 0). This does not change the stored text, only how it is + (SC_CASE_UPPER, 1) or lower case (SC_CASE_LOWER, 2) or camel case (SC_CASE_CAMEL, 3) + or display normally (SC_CASE_MIXED, 0). This does not change the stored text, only how it is displayed.

SCI_STYLESETVISIBLE(int styleNumber, bool visible)
diff --git a/doc/ScintillaHistory.html b/doc/ScintillaHistory.html index e0954a858..f2e9528eb 100644 --- a/doc/ScintillaHistory.html +++ b/doc/ScintillaHistory.html @@ -498,6 +498,9 @@ This change in behaviours is conditional on setting the SCI_SETADDITIONALSELECTIONTYPING property.

  • + The case mode style attribute can now be SC_CASE_CAMEL. +
  • +
  • On Cocoa fix problems with positioning of autocompletion lists near screen edge or under dock. Cancel autocompletion when window moved. Bug #1740. -- cgit v1.2.3