aboutsummaryrefslogtreecommitdiffhomepage
path: root/core/.view.luadoc
diff options
context:
space:
mode:
authorGravatar mitchell <70453897+orbitalquark@users.noreply.github.com>2021-04-13 00:02:12 -0400
committerGravatar mitchell <70453897+orbitalquark@users.noreply.github.com>2021-04-13 00:02:12 -0400
commit3d69ae01c0f2421a89b862ec5fea635a40826896 (patch)
tree0930132b4c69c144538340b48b7c52accc639b61 /core/.view.luadoc
parent19899b518f18165b1dfb6d9b4b18e531f4b56249 (diff)
Updated to Scintilla 5.0.1 and latest Scintillua and Scinterm.
Some of the Scintilla API has changed, and by extension the Scintillua API.
Diffstat (limited to 'core/.view.luadoc')
-rw-r--r--core/.view.luadoc39
1 files changed, 37 insertions, 2 deletions
diff --git a/core/.view.luadoc b/core/.view.luadoc
index 88d9e218..85c3bd3c 100644
--- a/core/.view.luadoc
+++ b/core/.view.luadoc
@@ -146,8 +146,27 @@
-- Draw EOL annotations no decoration.
-- * `view.EOLANNOTATION_BOXED`
-- Draw EOL annotations outlined with a box.
---
--- The default value is `view.EOLANNOTATION_HIDDEN`.
+-- * `view.EOLANNOTATION_STADIUM`
+-- Draw EOL annotations outline with curved ends.
+-- * `view.EOLANNOTATION_FLAT_CIRCLE`
+-- Draw EOL annotations outline with a flat left end and curved right end.
+-- * `view.EOLANNOTATION_ANGLE_CIRCLE`
+-- Draw EOL annotations outline with an angled left end and curved right end.
+-- * `view.EOLANNOTATION_CIRCLE_FLAT`
+-- Draw EOL annotations outline with a curved left end and flat right end.
+-- * `view.EOLANNOTATION_FLATS`
+-- Draw EOL annotations outline with a flat ends.
+-- * `view.EOLANNOTATION_ANGLE_FLAT`
+-- Draw EOL annotations outline with an angled left end and flat right end.
+-- * `view.EOLANNOTATION_CIRCLE_ANGLE`
+-- Draw EOL annotations outline with a curved left end and angled right end.
+-- * `view.EOLANNOTATION_FLAT_ANGLE`
+-- Draw EOL annotations outline with a flat left end and angled right end.
+-- * `view.EOLANNOTATION_ANGLES`
+-- Draw EOL annotations outline with angled ends.
+--
+-- All annotations are drawn with the same shape. The default value is
+-- `view.EOLANNOTATION_HIDDEN`.
-- @field extra_ascent (number)
-- The amount of pixel padding above lines.
-- The default value is `0`.
@@ -251,6 +270,12 @@
-- for indicator numbers from `1` to `32` whose styles are either `INDIC_ROUNDBOX`,
-- `INDIC_STRAIGHTBOX`, or `INDIC_DOTBOX`.
-- The default values are `view.ALPHA_NOALPHA`, for no alpha.
+-- @field indic_stroke_width (table)
+-- Table of stroke widths in hundredths of a pixel for indicator numbers from `1` to `32`
+-- whose styles are either `INDIC_PLAIN`, `INDIC_SQUIGGLE`, `INDIC_TT`, `INDIC_DIAGONAL`,
+-- `INDIC_STRIKE`, `INDIC_BOX`, `INDIC_ROUNDBOX`, `INDIC_STRAIGHTBOX`, `INDIC_FULLBOX`,
+-- `INDIC_DASH`, `INDIC_DOTS`, or `INDIC_SQUIGGLELOW`.
+-- The default values are `100`, or 1 pixel.
-- @field indic_style (table)
-- Table of styles for indicator numbers from `1` to `32`.
--
@@ -391,11 +416,21 @@
-- The default values are `view.ALPHA_NOALPHA`, for no alpha.
-- @field marker_back (table, Write-only)
-- Table of background colors, in "0xBBGGRR" format, of marker numbers from `1` to `32`.
+-- @field marker_back_translucent (table, Write-only)
+-- Table of background colors, in "0xAABBGGRR" format, of marker numbers from `1` to `32`.
-- @field marker_back_selected (table, Write-only)
-- Table of background colors, in "0xBBGGRR" format, of markers whose folding blocks are
-- selected for marker numbers from `1` to `32`.
+-- @field marker_back_selected_translucent (table, Write-only)
+-- Table of background colors, in "0xAABBGGRR" format, of markers whose folding blocks are
+-- selected for marker numbers from `1` to `32`.
-- @field marker_fore (table, Write-only)
-- Table of foreground colors, in "0xBBGGRR" format, of marker numbers from `1` to `32`.
+-- @field marker_fore_translucent (table, Write-only)
+-- Table of foreground colors, in "0xAABBGGRR" format, of marker numbers from `1` to `32`.
+-- @field marker_stroke_width (table, Write-only)
+-- Table of stroke widths in hundredths of a pixel for marker numbers from `1` to `32`.
+-- The default values are `100`, or 1 pixel.
-- @field mouse_dwell_time (number)
-- The number of milliseconds the mouse must idle before generating a `DWELL_START` event. A
-- time of `view.TIME_FOREVER` will never generate one.