From ceb3ef8f45e5599d3993d347dfff2ac249902d97 Mon Sep 17 00:00:00 2001 From: Neil Date: Fri, 26 Mar 2021 18:02:24 +1100 Subject: Add SC_SUPPORTS_PIXEL_MODIFICATION to differentiate character cell and pixel oriented platforms. --- doc/ScintillaDoc.html | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) (limited to 'doc/ScintillaDoc.html') diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html index f5b20d087..40353de52 100644 --- a/doc/ScintillaDoc.html +++ b/doc/ScintillaDoc.html @@ -4059,23 +4059,33 @@ struct Sci_TextToFind { SC_SUPPORTS_LINE_DRAWS_FINAL + 0 Whether drawing a line draws its final position. Only false on Win32 GDI. SC_SUPPORTS_PIXEL_DIVISIONS + 1 Are logical pixels larger than physical pixels? Currently only true for macOS Cocoa with 'retina' displays. When true, creating pixmaps at twice the resolution can produce clearer output with less blur. SC_SUPPORTS_FRACTIONAL_STROKE_WIDTH + 2 Can lines be drawn with fractional widths like 1.5 or 0.5 pixels? SC_SUPPORTS_TRANSLUCENT_STROKE - Can translucent lines, polygons, and ellipses, be drawn? + 3 + Can translucent lines, polygons, ellipses, and text be drawn? + + + + SC_SUPPORTS_PIXEL_MODIFICATION + 4 + Can individual pixels be modified? This is false for character cell platforms like curses. -- cgit v1.2.3