diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2023-06-07 21:52:37 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2023-06-07 21:52:37 -0700 |
commit | a9c68776db3dde49e090f223ec098f04c62b588a (patch) | |
tree | 356276424c6113e2f75b38dd006596b493beb022 /reference.md | |
parent | 208f40535d004720ce37561e1a3aba82d7a9697c (diff) | |
parent | e8a5faaa4cbdb6a9f15ad4edf1ca4e86879edf19 (diff) | |
download | view.love-a9c68776db3dde49e090f223ec098f04c62b588a.tar.gz |
Merge text.love
Diffstat (limited to 'reference.md')
-rw-r--r-- | reference.md | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/reference.md b/reference.md index 0e3e53d..2c8b07c 100644 --- a/reference.md +++ b/reference.md @@ -231,6 +231,14 @@ locations in the widget are `cursor1` describing where text is inserted or deleted and `screen_top1` which specifies how far down the lines is currently visible on screen. +Some constants that affect editor behavior: +* `Margin_top`, `Margin_left`, `Margin_right` are integers in pixel units that + affect where the editor is drawn on window (it always extends to bottom of + window as needed) + +* Various color constants are represented as tables with r/g/b keys: + * `Text_color`, `Cursor_color`, `Highlight_color` for drawing text. + ### clickable buttons There's a facility for rendering buttons and responding to events when they're |