From 91241e7907cc06c0206dfb967fcdda8126b21f71 Mon Sep 17 00:00:00 2001
From: nyamatongwe
SCI_SETTABWIDTH sets the size of a tab as a multiple of the size of a space character in the style of the
first style definition. SCI_SETINDENT sets the size of indentation in terms of characters.
- SCI_SETUSETABS determines whether indentation should be created out of a micture of tabs
+ SCI_SETUSETABS determines whether indentation should be created out of a mixture of tabs
and space or be based purely on spaces.
The amount of indentation on a line can be discovered and set with SCI_GETLINEINDENTATION and
- SCI_SETLINEINDENTATION. The indnetation is measuered in character columns which correspond
+ SCI_SETLINEINDENTATION. The indentation is measured in character columns which correspond
to the width of space characters.
SCI_GETLINEINDENTPOSITION returns the position at the end of indentation of a line.
@@ -425,7 +425,7 @@ SCI_GETLINEINDENTPOSITION(int line)
@@ -781,7 +781,7 @@ SCI_GETZOOM
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 + The zoom level can be retrieved 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.
@@ -801,7 +801,7 @@ SCI_SETEDGECOLOUR(int colour) vertical line can be displayed at the specified column number (EDGE_LINE) or characters after that column can be displayed with a specified background colour (EDGE_BACKGROUND). The vertical line works well for monospaced fonts but not for proportional fonts which should use - EDGE_BACKGROUND. The defaullt is to not have any form of long line marking (EDGE_NONE). + EDGE_BACKGROUND. The default is to not have any form of long line marking (EDGE_NONE).If the SciLexer version of Scintilla is used, then lexing support for some programming languages is included. A particular lexer may be chosen from the SCLEX* enumeration and it is invoked - automatically to dtyle the coument as required. + automatically to style the document as required. If the lexer is set to SCLEX_CONTAINER then the container is notified to perform styling as is the case with the standard Scintilla.DLL version. Styling may be requested for a range of the document by using SCI_COLOURISE. @@ -824,7 +824,7 @@ SCI_SETKEYWORDS(int keywordset, char *keywordlist)
Settings can be communicated to the lexers using SCI_SETPROPERTY. Currently the "fold" property is defined for the SCLEX_PYTHON, SCLEX_CPP, and SCLEX_SQL lexers to - set the fold stucture if set to "1". SCLEX_PYTHON understands "tab.timmy.whinge.level" + set the fold structure if set to "1". SCLEX_PYTHON understands "tab.timmy.whinge.level" as a setting that determines how to indicate bad indentation. Many languages style a set of keywords distinctly from other words. Some languages, such as HTML may contain embedded languages, VBScript and Javascript are common for HTML. SCI_SETKEYWORDS specifies the keywords @@ -972,21 +972,15 @@ EM_GETIMEOPTIONS EM_SETIMEOPTIONS EM_GETOPTIONS EM_SETOPTIONS EM_GETPUNCTUATION EM_SETPUNCTUATION EM_GETTHUMB - -
- Scintilla tries to be a superset of the standard windows Edit and Richedit controls wherever - that makes sense. As it is not intended for use in a word processor, some edit messages can - not be sensibly handled. Unsupported messages have no effect. -
-EM_GETEVENTMASK EM_SETEVENTMASK EM_DISPLAYBAND EM_SETTARGETDEVICE
- To support printing better and control the notifications fired, these messages should be - supported but are not yet. + Scintilla tries to be a superset of the standard windows Edit and Richedit controls wherever + that makes sense. As it is not intended for use in a word processor, some edit messages can + not be sensibly handled. Unsupported messages have no effect.