diff options
author | nyamatongwe <unknown> | 2001-01-28 12:13:38 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2001-01-28 12:13:38 +0000 |
commit | bd2fc92a257da4f630a9e55a6e4ac735e3a29470 (patch) | |
tree | e0ae00f0e767a9771c77fdb4764263dea1ceaa43 | |
parent | 6cc47f75fb2bf23cc3f733faa48886990cc1f041 (diff) | |
download | scintilla-mirror-bd2fc92a257da4f630a9e55a6e4ac735e3a29470.tar.gz |
Updating documentation to include additions for 1.35.
-rw-r--r-- | doc/ScintillaDoc.html | 23 | ||||
-rw-r--r-- | doc/ScintillaDownload.html | 8 | ||||
-rw-r--r-- | doc/ScintillaHistory.html | 109 | ||||
-rw-r--r-- | doc/index.html | 16 |
4 files changed, 147 insertions, 9 deletions
diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html index 36868b308..1ed2a6783 100644 --- a/doc/ScintillaDoc.html +++ b/doc/ScintillaDoc.html @@ -198,6 +198,7 @@ SCI_LINESONSCREEN SCI_SELECTIONISRECTANGLE SCI_SETHSCROLLBAR(bool visible) SCI_GETHSCROLLBAR +SCI_MOVECARETINSIDEVIEW </pre> <p> Scintilla maintains a selection which stretches between two points, the anchor and the @@ -652,7 +653,7 @@ SCI_INDICGETFORE(int indicatornumber) Autocompletion </h3> <pre> -SCI_AUTOCSHOW(int lenEntered;,char *list) +SCI_AUTOCSHOW(int lenEntered,char *list) SCI_AUTOCCANCEL SCI_AUTOCACTIVE SCI_AUTOCPOSSTART @@ -692,6 +693,19 @@ SCI_AUTOCGETIGNORECASE word being completed. </p> <h3> + User lists + </h3> +<pre> +SCI_USERLISTSHOW(int listType,char *list) +</pre> + <p> + User lists are similar to auto completion but do not insert text when an item is selected, + instead notifying the container with a SCN_USERLISTSELECTION. + The listType parameter is returned to the container and + can be used to differentiate between different types of list such as between a list of + buffers and a list of keywords. + </p> + <h3> Calltips </h3> <pre> @@ -1140,6 +1154,13 @@ SCN_PAINTED Painting has just been done. Useful when you want to update some other widgets based on a change in Scintilla, but want to have the paint occur first to appear more responsive. </p> +<pre> +SCN_USERLISTSELECTION +</pre> + <p> + User has selected an item in a user list. + The list type is available in wParam and the text chosen in text. + </p> <h3> Edit messages currently supported by Scintilla which will be removed in the future. </h3> diff --git a/doc/ScintillaDownload.html b/doc/ScintillaDownload.html index 3dfedd9fd..09ffc6c7e 100644 --- a/doc/ScintillaDownload.html +++ b/doc/ScintillaDownload.html @@ -25,7 +25,7 @@ <table bgcolor="#CCCCCC" width="100%" cellspacing="0" cellpadding="8" border="0"> <tr> <td> - <font size="4"> <a href="scintilla134.zip">Windows</a> <a href="scintilla134.tgz"> + <font size="4"> <a href="scintilla135.zip">Windows</a> <a href="scintilla135.tgz"> GTK+/Linux</a> </font> </td> </tr> @@ -38,7 +38,7 @@ containing very few restrictions. </p> <h3> - Release 1.34 + Release 1.35 </h3> <h4> Source Code @@ -46,8 +46,8 @@ The source code package contains all of the source code for Scintilla but no binary executable code and is available in <ul> - <li><a href="scintilla134.zip">zip format</a> (290K) commonly used on Windows</li> - <li><a href="scintilla134.tgz">tgz format</a> (250K) commonly used on Linux and compatible operating systems</li> + <li><a href="scintilla135.zip">zip format</a> (300K) commonly used on Windows</li> + <li><a href="scintilla135.tgz">tgz format</a> (260K) commonly used on Linux and compatible operating systems</li> </ul> Instructions for building on both Windows and Linux are included in the readme file. <p> diff --git a/doc/ScintillaHistory.html b/doc/ScintillaHistory.html index a19cabaa6..06bd4fe03 100644 --- a/doc/ScintillaHistory.html +++ b/doc/ScintillaHistory.html @@ -168,6 +168,115 @@ </li> </ul> <h3> + <a href="scite135.zip">Release 1.35</a> + </h3> + <ul> + <li> + Released on 29 January 2001. + </li> + <li> + <font color=red> + TODO: <br /> + Undo problem <br /> + Visiibility policy settings in SciTE + </font> + </li> + <li> + Rewritten and simplified widget code for the GTK+ version to enhance + solidity and make more fully compliant with platform norms. This includes more + normal handling of keystrokes so they are forwarded to containers correctly. + </li> + <li> + User defined lists can be shown. + </li> + <li> + Many fixes to the Perl lexer. + </li> + <li> + Pascal lexer handles comments more correctly. + </li> + <li> + C/C++/Java/JavaScipt lexer has a state for line doc comments. + </li> + <li> + Error output lexer understands Sun CC messages. + </li> + <li> + Make file lexer has variable, preprocessor, and operator states. + </li> + <li> + Wider area given to an italics character that is at the end of a line to prevent it + being cut off. + </li> + <li> + Call to move the caret inside the currently visible area. + </li> + <li> + Paste Rectangular will space fill on the left hand side of the pasted text as + needed to ensure it is kept rectangular. + </li> + <li> + Cut and Paste Rectangular does nothing in read-only mode. + </li> + <li> + Undo batching changed so that a paste followed by typing creates two undo actions.. + </li> + <li> + A "visibility policy" setting for Scintilla determines which range of lines are displayed + when a particular line is moved to. Also exposed as a property in SciTE. + </li> + <li> + SciTE command line allows property settings. + </li> + <li> + SciTE has a View Output command to hide or show the output pane. + </li> + <li> + SciTE's Edit menu has been split in two with searching commands moved to a + new Search menu. Find Previous and Previous Bookmark are in the Search menu. + </li> + <li> + SciTE on Windows has options for setting print margins, headers and footers. + </li> + <li> + SciTE on Windows has tooltips for toolbar. + </li> + <li> + SciTE on GTK+ has properties for setting size of file selector. + </li> + <li> + Visual and audio cues in SciTE on Windows enhanced. + </li> + <li> + Fixed performance problem in SciTE for GTK+ by dropping the extra 3D + effect on the content windows. + </li> + <li> + Fixed problem in SciTE where choosing a specific lexer then meant + that no lexer was chosen when files opened. + </li> + <li> + Default selection colour changed to be visible on low colour displays. + </li> + <li> + Fixed problems with automatically reloading changed documents in SciTE on + Windows. + </li> + <li> + Fixed problem with uppercase file extensions in SciTE. + </li> + <li> + Fixed some problems when using characters >= 128, some of which werre being + incorrectly treated as spaces. + </li> + <li> + Fixed handling multiple line tags, non-inline scripts, and XML end tags /> in HTML/XML lexer. + </li> + <li> + Bookmarks in SciTE no longer disappear when switching between buffers. + </li> + </ul> + <h3> <a href="scite134.zip">Release 1.34</a> </h3> <ul> diff --git a/doc/index.html b/doc/index.html index 50d22354e..963d9dbe9 100644 --- a/doc/index.html +++ b/doc/index.html @@ -9,7 +9,7 @@ <meta name="keywords" content="Scintilla, SciTE, Editing Component, Text Editor" /> <meta name="Description" content="www.scintilla.org is the home of the Scintilla editing component and SciTE text editor application." /> - <meta name="Date.Modified" content="20001128" /> + <meta name="Date.Modified" content="20010129" /> <script> function IsRemote() { var loc = '' + window.location; @@ -31,8 +31,8 @@ GTK+</font> </td> <td width="40%" align="right"> - <font color="#FFCC99" size="3"> Release version 1.34<br /> - Site last modified November 28 2000</font> + <font color="#FFCC99" size="3"> Release version 1.35<br /> + Site last modified January 29 2001</font> </td> <td width="20%"> @@ -76,6 +76,13 @@ better performance and compliance on GTK+.</font> </td> </tr> + <tr> + <td width="100%"> + <font color="#FFCC99" size="3"> Version 1.35 contains rewritten + widget code for the GTK+ version to enhance solidity and correctly + forward events to containers.</font> + </td> + </tr> </table> <table bgcolor="#CCCCCC" width="100%" cellspacing="0" cellpadding="8" border="0"> <tr> @@ -152,7 +159,8 @@ if (IsRemote()) { </p> <p> You can write to me, <a href="mailto:nhodgson@bigpond.net.au">Neil Hodgson</a>, at - nhodgson@bigpond.net.au.<br /> + nhodgson@bigpond.net.au. If you need to hire someone to work on Scintilla based projects, you can + contact me or advertise on the mailing list.<br /> There is a <a href="https://sourceforge.net/mail/?group_id=2439">scintilla-interest</a> mailing list, |