mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-04 04:06:06 -05:00
sixel: split -> overwrite
This commit is contained in:
parent
ae727e372a
commit
186a07c364
3 changed files with 28 additions and 24 deletions
11
sixel.h
11
sixel.h
|
|
@ -12,14 +12,17 @@ void sixel_unhook(struct terminal *term);
|
|||
|
||||
void sixel_destroy(struct sixel *sixel);
|
||||
|
||||
/* Row numbers are relative to current grid offset */
|
||||
/* Deletes all sixels that are touched by the specified row(s). Row
|
||||
* numbers are relative to the current grid aoffset */
|
||||
void sixel_delete_in_range(struct terminal *term, int row_start, int row_end);
|
||||
void sixel_delete_at_row(struct terminal *term, int row);
|
||||
|
||||
void sixel_split_by_rectangle(
|
||||
/* Remove sixel data from the specified location. Row numbers are
|
||||
* relative to the current grid offset */
|
||||
void sixel_overwrite_by_rectangle(
|
||||
struct terminal *term, int row, int col, int height, int width);
|
||||
void sixel_split_by_row(struct terminal *term, int row, int col, int width);
|
||||
void sixel_split_at_cursor(struct terminal *term);
|
||||
void sixel_overwrite_by_row(struct terminal *term, int row, int col, int width);
|
||||
void sixel_overwrite_at_cursor(struct terminal *term);
|
||||
|
||||
void sixel_colors_report_current(struct terminal *term);
|
||||
void sixel_colors_reset(struct terminal *term);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue