diff options
Diffstat (limited to 'doc/ScintillaDoc.html')
-rw-r--r-- | doc/ScintillaDoc.html | 17 |
1 files changed, 14 insertions, 3 deletions
diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html index e54059624..58e8da944 100644 --- a/doc/ScintillaDoc.html +++ b/doc/ScintillaDoc.html @@ -50,6 +50,7 @@ table.standard tr:nth-child(even) {background: #F0F0F0} table.standard td { padding: 1px 5px 1px 5px; + vertical-align:top; } tr.section { border-top:1px solid #808080; @@ -128,7 +129,7 @@ <h1>Scintilla Documentation</h1> - <p>Last edited 12 November 2021 NH</p> + <p>Last edited 2 February 2021 NH</p> <p style="background:#90F0C0">Scintilla 5 has moved the lexers from Scintilla into a new <a href="Lexilla.html">Lexilla</a> project.<br /> @@ -4691,13 +4692,15 @@ struct Sci_TextToFind { <tr> <td><code>SC_SUPPORTS_LINE_DRAWS_FINAL</code></td> <td>0</td> - <td>Whether drawing a line draws its final position. Only false on Win32 GDI.</td> + <td>Whether drawing a line draws its final position.<br /> + Only false on Win32 GDI.</div></td> </tr> <tr> <td><code>SC_SUPPORTS_PIXEL_DIVISIONS</code></td> <td>1</td> - <td>Are logical pixels larger than physical pixels? Currently only true for macOS Cocoa with 'retina' displays. + <td>Are logical pixels larger than physical pixels?<br /> + Currently only true for macOS Cocoa with 'retina' displays.<br /> When true, creating pixmaps at twice the resolution can produce clearer output with less blur.</td> </tr> @@ -4719,6 +4722,14 @@ struct Sci_TextToFind { <td>Can individual pixels be modified? This is false for character cell platforms like curses.</td> </tr> + <tr> + <td><code>SC_SUPPORTS_THREAD_SAFE_MEASURE_WIDTHS</code></td> + <td>5</td> + <td>Can text measurement be safely performed concurrently on multiple threads?<br /> + Currently only true for macOS Cocoa, DirectWrite on Win32, and GTK on X or Wayland. + </td> + </tr> + </tbody> </table> |