From bd2fc92a257da4f630a9e55a6e4ac735e3a29470 Mon Sep 17 00:00:00 2001
From: nyamatongwe
Date: Sun, 28 Jan 2001 12:13:38 +0000
Subject: Updating documentation to include additions for 1.35.
---
doc/ScintillaDoc.html | 23 +++++++++-
doc/ScintillaDownload.html | 8 ++--
doc/ScintillaHistory.html | 109 +++++++++++++++++++++++++++++++++++++++++++++
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
Scintilla maintains a selection which stretches between two points, the anchor and the
@@ -652,7 +653,7 @@ SCI_INDICGETFORE(int indicatornumber)
Autocompletion
-SCI_AUTOCSHOW(int lenEntered;,char *list)
+SCI_AUTOCSHOW(int lenEntered,char *list)
SCI_AUTOCCANCEL
SCI_AUTOCACTIVE
SCI_AUTOCPOSSTART
@@ -691,6 +692,19 @@ SCI_AUTOCGETIGNORECASE
a false argument, the list is not cancelled until the caret moves before the first character of the
word being completed.
+
+ User lists
+
+
+SCI_USERLISTSHOW(int listType,char *list)
+
+
+ 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.
+
Calltips
@@ -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.
+
+SCN_USERLISTSELECTION
+
+
+ User has selected an item in a user list.
+ The list type is available in wParam and the text chosen in text.
+
Edit messages currently supported by Scintilla which will be removed in the future.
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 @@
|
- Windows
+ Windows
GTK+/Linux
|
@@ -38,7 +38,7 @@
containing very few restrictions.
- Release 1.34
+ Release 1.35
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
- - zip format (290K) commonly used on Windows
- - tgz format (250K) commonly used on Linux and compatible operating systems
+ - zip format (300K) commonly used on Windows
+ - tgz format (260K) commonly used on Linux and compatible operating systems
Instructions for building on both Windows and Linux are included in the readme file.
diff --git a/doc/ScintillaHistory.html b/doc/ScintillaHistory.html
index a19cabaa6..06bd4fe03 100644
--- a/doc/ScintillaHistory.html
+++ b/doc/ScintillaHistory.html
@@ -167,6 +167,115 @@
Icons Copyright(C) 1998 by Dean S. Jones
+
+
+ -
+ Released on 29 January 2001.
+
+ -
+
+ TODO:
+ Undo problem
+ Visiibility policy settings in SciTE
+
+
+ -
+ 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.
+
+ -
+ User defined lists can be shown.
+
+ -
+ Many fixes to the Perl lexer.
+
+ -
+ Pascal lexer handles comments more correctly.
+
+ -
+ C/C++/Java/JavaScipt lexer has a state for line doc comments.
+
+ -
+ Error output lexer understands Sun CC messages.
+
+ -
+ Make file lexer has variable, preprocessor, and operator states.
+
+ -
+ Wider area given to an italics character that is at the end of a line to prevent it
+ being cut off.
+
+ -
+ Call to move the caret inside the currently visible area.
+
+ -
+ Paste Rectangular will space fill on the left hand side of the pasted text as
+ needed to ensure it is kept rectangular.
+
+ -
+ Cut and Paste Rectangular does nothing in read-only mode.
+
+ -
+ Undo batching changed so that a paste followed by typing creates two undo actions..
+
+ -
+ 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.
+
+ -
+ SciTE command line allows property settings.
+
+ -
+ SciTE has a View Output command to hide or show the output pane.
+
+ -
+ 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.
+
+ -
+ SciTE on Windows has options for setting print margins, headers and footers.
+
+ -
+ SciTE on Windows has tooltips for toolbar.
+
+ -
+ SciTE on GTK+ has properties for setting size of file selector.
+
+ -
+ Visual and audio cues in SciTE on Windows enhanced.
+
+ -
+ Fixed performance problem in SciTE for GTK+ by dropping the extra 3D
+ effect on the content windows.
+
+ -
+ Fixed problem in SciTE where choosing a specific lexer then meant
+ that no lexer was chosen when files opened.
+
+ -
+ Default selection colour changed to be visible on low colour displays.
+
+ -
+ Fixed problems with automatically reloading changed documents in SciTE on
+ Windows.
+
+ -
+ Fixed problem with uppercase file extensions in SciTE.
+
+ -
+ Fixed some problems when using characters >= 128, some of which werre being
+ incorrectly treated as spaces.
+
+ -
+ Fixed handling multiple line tags, non-inline scripts, and XML end tags /> in HTML/XML lexer.
+
+ -
+ Bookmarks in SciTE no longer disappear when switching between buffers.
+
+
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 @@
-
+