diff options
Diffstat (limited to 'doc/Scintilla/ScintillaDoc.html')
-rwxr-xr-x | doc/Scintilla/ScintillaDoc.html | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/doc/Scintilla/ScintillaDoc.html b/doc/Scintilla/ScintillaDoc.html index 3767b3b..4d0b584 100755 --- a/doc/Scintilla/ScintillaDoc.html +++ b/doc/Scintilla/ScintillaDoc.html @@ -473,7 +473,7 @@ <a class="message" href="#SCI_GETSTYLEBITSNEEDED">SCI_GETSTYLEBITSNEEDED</a>.</p> <p><b id="TextRange">TextRange</b> and <b id="CharacterRange">CharacterRange</b><br /> - These structures are defined to be exactly the same shape as the Win32 <code>TEXTRANGE</code> + These structures are defined to be exactly the same tqshape as the Win32 <code>TEXTRANGE</code> and <code>CHARRANGE</code>, so that older code that treats Scintilla as a RichEdit will work.</p> <pre> @@ -677,7 +677,7 @@ struct TextRange { href="#SCI_SEARCHINTARGET">SCI_SEARCHINTARGET</a></code></p> <p><b id="TextToFind">TextToFind</b><br /> - This structure is defined to have exactly the same shape as the Win32 structure + This structure is defined to have exactly the same tqshape as the Win32 structure <code>FINDTEXTEX</code> for old code that treated Scintilla as a RichEdit control.</p> <pre> struct TextToFind { @@ -2370,10 +2370,10 @@ struct TextToFind { 20 Windows system colours.</p> <p>To see an example of how to enable palette support in Scintilla, search the text of SciTE - for <code>WM_PALETTECHANGED</code>, <code>WM_QUERYNEWPALETTE</code> and + for <code>WM_PALETTECHANGED</code>, <code>WM_TQUERYNEWPALETTE</code> and <code>SCI_SETUSEPALETTE</code>. The Windows messages to forward are:<br /> <code>WM_SYSCOLORCHANGE</code>, <code>WM_PALETTECHANGED</code>, - <code>WM_QUERYNEWPALETTE</code> (should return <code>TRUE</code>).</p> + <code>WM_TQUERYNEWPALETTE</code> (should return <code>TRUE</code>).</p> <p>To forward a message <code>(WM_XXXX, WPARAM, LPARAM)</code> to Scintilla, you can use <code>SendMessage(hScintilla, WM_XXXX, WPARAM, LPARAM)</code> where <code>hScintilla</code> is @@ -2449,7 +2449,7 @@ struct TextToFind { function. For example, if you don't allow '_' in your set of characters use:<br /> - <code>SCI_SETWORDCHARS(0, "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789")</code>;</p> + <code>SCI_SETWORDCHARS(0, "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPTQRSTUVWXYZ0123456789")</code>;</p> <p><b id="SCI_SETWHITESPACECHARS">SCI_SETWHITESPACECHARS(<unused>, const char *chars)</b><br /> Similar to <code>SCI_SETWORDCHARS</code>, this message allows the user to define which chars Scintilla considers @@ -2873,7 +2873,7 @@ struct TextToFind { style information (for 32 styles) and 3 bits of indicator information for 3 independent indicators so that, for example, syntax errors, deprecated names and bad indentation could all be displayed at once. Indicators may be displayed as simple underlines, squiggly underlines, a - line of small 'T' shapes, a line of diagonal hatching, a strike-out or a rectangle around the text.</p> + line of small 'T' tqshapes, a line of diagonal hatching, a strike-out or a rectangle around the text.</p> <p>The indicators are set using <a class="message" href="#SCI_STARTSTYLING"><code>SCI_STARTSTYLING</code></a> with a <code>INDICS_MASK</code> mask @@ -2886,7 +2886,7 @@ struct TextToFind { Use <a class="message" href="#SCI_GETENDSTYLED"><code>SCI_GETENDSTYLED</code></a> to retrieve the current "styled to" position and <a class="message" href="#SCI_STARTSTYLING"><code>SCI_STARTSTYLING</code></a> - to reset the styling position and mask (<code>0x1f </code> in the default layout of 5 style bits and 3 indicator bits) + to reset the styling position and mask (<code>0x1f </code> in the default tqlayout of 5 style bits and 3 indicator bits) when you are done.</p> <p>The number of bits used for styles can be altered with <a class="message" @@ -2935,7 +2935,7 @@ struct TextToFind { </tr> <tr> - <td align="left"><code>INDIC_SQUIGGLE</code></td> + <td align="left"><code>INDIC_STQUIGGLE</code></td> <td align="center">1</td> @@ -2947,7 +2947,7 @@ struct TextToFind { <td align="center">2</td> - <td>A line of small T shapes.</td> + <td>A line of small T tqshapes.</td> </tr> <tr> @@ -2994,7 +2994,7 @@ struct TextToFind { </table> <p>The default indicator styles are equivalent to:<br /> - <code>SCI_INDICSETSTYLE(0, INDIC_SQUIGGLE);</code><br /> + <code>SCI_INDICSETSTYLE(0, INDIC_STQUIGGLE);</code><br /> <code>SCI_INDICSETSTYLE(1, INDIC_TT);</code><br /> <code>SCI_INDICSETSTYLE(2, INDIC_PLAIN);</code></p> @@ -4110,10 +4110,10 @@ sptr_t CallScintilla(unsigned int iMessage, uptr_t wParam, sptr_t lParam){ Independent from drawing a visual flag at the begin the subline can have an indention.</p> <p>Much of the time used by Scintilla is spent on laying out and drawing text. The same text - layout calculations may be performed many times even when the data used in these calculations - does not change. To avoid these unnecessary calculations in some circumstances, the line layout + tqlayout calculations may be performed many times even when the data used in these calculations + does not change. To avoid these unnecessary calculations in some circumstances, the line tqlayout cache can store the results of the calculations. The cache is invalidated whenever the - underlying data, such as the contents or styling of the document changes. Caching the layout of + underlying data, such as the contents or styling of the document changes. Caching the tqlayout of the whole document has the most effect, making dynamic line wrap as much as 20 times faster but this requires 7 times the memory required by the document contents plus around 80 bytes per line.</p> |