diff options
author | nyamatongwe <devnull@localhost> | 2009-07-12 02:51:26 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2009-07-12 02:51:26 +0000 |
commit | e235977e950fd79c25d3e1b2a76e46f54ea06c5f (patch) | |
tree | 09c27f5892cba3eb2c1f65520e0f3259ce0c96cb | |
parent | 7d71a29de17601c1d31190ef17ec348ea8f84645 (diff) | |
download | scintilla-mirror-e235977e950fd79c25d3e1b2a76e46f54ea06c5f.tar.gz |
Start of documentation of discontiguous selection and virtual space.
-rw-r--r-- | doc/ScintillaDoc.html | 62 |
1 files changed, 40 insertions, 22 deletions
diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html index c0769ffd6..5fa4bc483 100644 --- a/doc/ScintillaDoc.html +++ b/doc/ScintillaDoc.html @@ -174,100 +174,106 @@ <tr> <td>o <a class="toc" href="#SelectionAndInformation">Selection and information</a></td> + <td>o <a class="toc" href="#DiscontiguousSelectionAndVirtualSpace">Discontiguous Selection and Virtual Space</a></td> + <td>o <a class="toc" href="#ScrollingAndAutomaticScrolling">Scrolling and automatic scrolling</a></td> - - <td>o <a class="toc" href="#WhiteSpace">White space</a></td> </tr> <tr> + <td>o <a class="toc" href="#WhiteSpace">White space</a></td> + <td>o <a class="toc" href="#Cursor">Cursor</a></td> <td>o <a class="toc" href="#MouseCapture">Mouse capture</a></td> - - <td>o <a class="toc" href="#LineEndings">Line endings</a></td> </tr> <tr> + <td>o <a class="toc" href="#LineEndings">Line endings</a></td> + <td>o <a class="toc" href="#Styling">Styling</a></td> <td>o <a class="toc" href="#StyleDefinition">Style definition</a></td> - - <td>o <a class="toc" href="#CaretAndSelectionStyles">Caret, selection, and hotspot styles</a></td> </tr> <tr> + <td>o <a class="toc" href="#CaretAndSelectionStyles">Caret, selection, and hotspot styles</a></td> + <td>o <a class="toc" href="#Margins">Margins</a></td> <td>o <a class="toc" href="#Annotations">Annotations</a></td> - - <td>o <a class="toc" href="#OtherSettings">Other settings</a></td> </tr> <tr> + <td>o <a class="toc" href="#OtherSettings">Other settings</a></td> + <td>o <a class="toc" href="#BraceHighlighting">Brace highlighting</a></td> <td>o <a class="toc" href="#TabsAndIndentationGuides">Tabs and Indentation Guides</a></td> - - <td>o <a class="toc" href="#Markers">Markers</a></td> </tr> <tr> + <td>o <a class="toc" href="#Markers">Markers</a></td> + <td>o <a class="toc" href="#Indicators">Indicators</a></td> <td>o <a class="toc" href="#Autocompletion">Autocompletion</a></td> - - <td>o <a class="toc" href="#UserLists">User lists</a></td> </tr> <tr> + <td>o <a class="toc" href="#UserLists">User lists</a></td> + <td>o <a class="toc" href="#CallTips">Call tips</a></td> <td>o <a class="toc" href="#KeyboardCommands">Keyboard commands</a></td> - - <td>o <a class="toc" href="#KeyBindings">Key bindings</a></td> </tr> <tr> + <td>o <a class="toc" href="#KeyBindings">Key bindings</a></td> + <td>o <a class="toc" href="#PopupEditMenu">Popup edit menu</a></td> <td>o <a class="toc" href="#MacroRecording">Macro recording</a></td> - - <td>o <a class="toc" href="#Printing">Printing</a></td> </tr> <tr> + <td>o <a class="toc" href="#Printing">Printing</a></td> + <td>o <a class="toc" href="#DirectAccess">Direct access</a></td> <td>o <a class="toc" href="#MultipleViews">Multiple views</a></td> - - <td>o <a class="toc" href="#Folding">Folding</a></td> </tr> <tr> + <td>o <a class="toc" href="#Folding">Folding</a></td> + <td>o <a class="toc" href="#LineWrapping">Line wrapping</a></td> <td>o <a class="toc" href="#Zooming">Zooming</a></td> - - <td>o <a class="toc" href="#LongLines">Long lines</a></td> </tr> <tr> + <td>o <a class="toc" href="#LongLines">Long lines</a></td> + <td>o <a class="toc" href="#Lexer">Lexer</a></td> <td>o <a class="toc" href="#Notifications">Notifications</a></td> - - <td>o <a class="toc" href="#GTK">GTK+</a></td> </tr> <tr> + <td>o <a class="toc" href="#GTK">GTK+</a></td> + <td>o <a class="toc" href="#DeprecatedMessages">Deprecated messages</a></td> <td>o <a class="toc" href="#EditMessagesNeverSupportedByScintilla">Edit messages never supported by Scintilla</a></td> + </tr> + + <tr> <td>o <a class="toc" href="#BuildingScintilla">Building Scintilla</a></td> + </tr> </tbody> </table> @@ -1395,6 +1401,18 @@ struct TextToFind { user and this value is then used when moving vertically such as by using the up and down keys. This message sets the current x position of the caret as the remembered value.</p> + <h2 id="DiscontiguousSelectionAndVirtualSpace">Discontiguous Selection and Virtual Space</h2> + + <p> + Additional selections may be made by holding down the Ctrl key while dragging with the mouse. + The most recent selection is the main selection and determines which part of the document is shown automatically. + </p> + + <p> + Virtual space is space beyond the end of each line. The caret may be moved into virtual space but no real space will be + added to the document until there is some text typed or some other text insertion command is used. + </p> + <h2 id="ScrollingAndAutomaticScrolling">Scrolling and automatic scrolling</h2> <code><a class="message" href="#SCI_LINESCROLL">SCI_LINESCROLL(int column, int line)</a><br /> <a class="message" href="#SCI_SCROLLCARET">SCI_SCROLLCARET</a><br /> |