diff options
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/ScintillaDoc.html | 23 | ||||
| -rw-r--r-- | doc/ScintillaHistory.html | 58 | 
2 files changed, 79 insertions, 2 deletions
| diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html index ee7c309e3..42206a2a5 100644 --- a/doc/ScintillaDoc.html +++ b/doc/ScintillaDoc.html @@ -441,6 +441,12 @@ SCI_SETCODEPAGE(int codepage)        This also stops the caret from moving between the two bytes in a double byte character. Call        with argument set to zero to disable DBCS support.      </p> +    <p> +       On Windows, code page SC_CP_UTF8 (65001) sets Scintilla into Unicode mode with the  +       document treated as a sequence of characters expressed in UTF8. The text is converted to  +       UCS-2 before being drawn by the OS and can thus display Hebrew, Arabic, Cyrillic, and  +       Han characters. +    </p>  <pre>  SCI_SETWORDCHARS(<unused>, char *chars)  </pre> @@ -632,8 +638,6 @@ SCI_NEWLINE  SCI_FORMFEED  SCI_VCHOME  SCI_VCHOMEEXTEND -SCI_ZOOMIN -SCI_ZOOMOUT  SCI_DELWORDLEFT  SCI_DELWORDRIGHT  SCI_LINESCROLLDOWN @@ -769,6 +773,21 @@ SCI_ENSUREVISIBLE(int line)         contracted folds until it reaches the top level. The line will then be visible.      </p>      <h3> +    	Zooming +    </h3> +<pre> +SCI_ZOOMIN +SCI_ZOOMOUT +SCI_SETZOOM +SCI_GETZOOM +</pre> +    <p> +    The text can be made larger and smaller by using SCI_ZOOMIN and SCI_ZOOMOUT. +    The zoom level can be retreived by SCI_GETZOOM and set by SCI_SETZOOM. The zoom factors  +    may range from -10 to + 20 and is added to each styles point size. The calculated point size never  +    goes below 2. +    </p> +    <h3>      	Long Lines      </h3>  <pre> diff --git a/doc/ScintillaHistory.html b/doc/ScintillaHistory.html index 816a9ef26..0eb02c606 100644 --- a/doc/ScintillaHistory.html +++ b/doc/ScintillaHistory.html @@ -95,6 +95,9 @@        <li>        	Paul Winwood        </li> +      <li> +      	Maxim Baranov +      </li>      </ul>      <p>         Sponsorship @@ -105,6 +108,61 @@        </li>      </ul>      <h3> +       <a href="scite125.zip">Release 1.25</a> +    </h3> +    <ul> +      <li> +        Released on 1 May 2000. +      </li> +      <li> +        Some Unicode support on Windows. Treats buffer and API as UTF-8 and displays +	through UCS-2 of Windows. +      </li> +      <li> +        Automatic indentation. +      </li> +      <li> +        Tool bar. +      </li> +      <li> +        Status bar now on Windows as well as GTK+. +      </li> +      <li> +        Auto completion list items may be separated by a chosen character to allow spaces +	in items. The selected item may be changed through the API. +      </li> +      <li> +        Horizontal scrollbar can be turned off. +      </li> +      <li> +        Property to remove trailing spaces when saving file. +      </li> +      <li> +        On Windows, changed font size calculation to be more compatible with  +	other applications. +      </li> +      <li> +        On GTK+, SciTE's global properties files are looked for in the directory specified in the +	SCITE_HOME environment variable if it is set. This allows hiding in a dot directory. +      </li> +      <li> +        Keyword lists in SciTE updated for Javascript to include those destined to be used in  +	the future. IDL includes XPIDL keyords as well as MSIDL keywords. +      </li> +      <li> +        Zoom level can be set and queried through API. +      </li> +      <li> +        New notification sent before insertions and deletions. +      </li> +      <li> +        Fixes to folding including when deletions and additions are performed. +      </li> +      <li> +        Fix for crash with very long lines. +      </li> +    </ul> +    <h3>         <a href="scite124.zip">Release 1.24</a>      </h3>      <ul> | 
