mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-03-17 05:33:52 -04:00
terminal: move print_needs_wrap from grid to terminal
This commit is contained in:
parent
a8f4cb55af
commit
8cff861f38
3 changed files with 4 additions and 5 deletions
|
|
@ -210,7 +210,7 @@ term_cursor_to(struct terminal *term, int row, int col)
|
||||||
|
|
||||||
term_damage_update(term, term->cursor.linear, 1);
|
term_damage_update(term, term->cursor.linear, 1);
|
||||||
term_damage_update(term, new_linear, 1);
|
term_damage_update(term, new_linear, 1);
|
||||||
term->grid.print_needs_wrap = false;
|
term->print_needs_wrap = false;
|
||||||
|
|
||||||
term->cursor.linear = new_linear;
|
term->cursor.linear = new_linear;
|
||||||
term->cursor.col = col;
|
term->cursor.col = col;
|
||||||
|
|
|
||||||
|
|
@ -62,8 +62,6 @@ struct damage {
|
||||||
};
|
};
|
||||||
|
|
||||||
struct grid {
|
struct grid {
|
||||||
bool print_needs_wrap;
|
|
||||||
|
|
||||||
struct cell *cells;
|
struct cell *cells;
|
||||||
struct cell *normal_grid;
|
struct cell *normal_grid;
|
||||||
struct cell *alt_grid;
|
struct cell *alt_grid;
|
||||||
|
|
@ -144,6 +142,7 @@ struct terminal {
|
||||||
int cell_width;
|
int cell_width;
|
||||||
int cell_height;
|
int cell_height;
|
||||||
|
|
||||||
|
bool print_needs_wrap;
|
||||||
struct scroll_region scroll_region;
|
struct scroll_region scroll_region;
|
||||||
|
|
||||||
struct rgba foreground;
|
struct rgba foreground;
|
||||||
|
|
|
||||||
4
vt.c
4
vt.c
|
|
@ -670,7 +670,7 @@ action(struct terminal *term, enum action action, uint8_t c)
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case ACTION_PRINT: {
|
case ACTION_PRINT: {
|
||||||
if (term->grid.print_needs_wrap) {
|
if (term->print_needs_wrap) {
|
||||||
if (term->cursor.row == term->scroll_region.end - 1) {
|
if (term->cursor.row == term->scroll_region.end - 1) {
|
||||||
term_scroll(term, 1);
|
term_scroll(term, 1);
|
||||||
term_cursor_to(term, term->cursor.row, 0);
|
term_cursor_to(term, term->cursor.row, 0);
|
||||||
|
|
@ -697,7 +697,7 @@ action(struct terminal *term, enum action action, uint8_t c)
|
||||||
if (term->cursor.col < term->cols - 1)
|
if (term->cursor.col < term->cols - 1)
|
||||||
term_cursor_right(term, 1);
|
term_cursor_right(term, 1);
|
||||||
else
|
else
|
||||||
term->grid.print_needs_wrap = true;
|
term->print_needs_wrap = true;
|
||||||
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue