mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-05 04:06:08 -05:00
Vim, for example, changes the scroll region every time you scroll a single line. Thus, resetting the damage queue is slow. This reworks the damage handling of scroll updates: * Split damage queue into two: one for scroll operations and one for update/erase operations. * Don't separate update/erase operations inside/outside the scroll region * Store the current scroll region in the scroll damage operation. This allows us to stack multiple scroll operations with different scroll regions. * When updating update/erase operations after a scroll operation, split the update/erase operations if necessary (the current scroll operation may have a scroll region different from before, thus forcing us to split existing update/erase operations. * The renderer no longer erases after a scroll. The scroll operation also adds an erase operation. This also means that erase operation are subject to adjustments by later scroll operations.
32 lines
1.1 KiB
C
32 lines
1.1 KiB
C
#pragma once
|
|
|
|
#include "terminal.h"
|
|
|
|
void grid_damage_all(struct grid *grid);
|
|
void grid_damage_update(struct grid *grid, int start, int length);
|
|
void grid_damage_erase(struct grid *grid, int start, int length);
|
|
void grid_damage_scroll(
|
|
struct grid *grid, enum damage_type damage_type,
|
|
struct scroll_region region, int lines);
|
|
|
|
void grid_erase(struct grid *grid, int start, int end);
|
|
|
|
void grid_cursor_to(struct grid *grid, int row, int col);
|
|
void grid_cursor_left(struct grid *grid, int count);
|
|
void grid_cursor_right(struct grid *grid, int count);
|
|
void grid_cursor_up(struct grid *grid, int count);
|
|
void grid_cursor_down(struct grid *grid, int count);
|
|
|
|
void grid_scroll(struct grid *grid, int rows);
|
|
void grid_scroll_reverse(struct grid *grid, int rows);
|
|
|
|
void grid_scroll_partial(
|
|
struct grid *grid, struct scroll_region region, int rows);
|
|
void grid_scroll_reverse_partial(
|
|
struct grid *grid, struct scroll_region region, int rows);
|
|
|
|
int grid_cursor_linear(const struct grid *grid, int row, int col);
|
|
|
|
|
|
//void grid_cursor_to(struct grid *grid, int pos);
|
|
//void grid_cursor_move(struct grid *grid, int cols);
|