mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-05 04:06:08 -05:00
When printing to the right-most-cell, don't advance the cursor. Instead, set a flag that indicates that the *next* print should line-wrap.
75 lines
1.2 KiB
C
75 lines
1.2 KiB
C
#pragma once
|
|
|
|
#include <stdint.h>
|
|
#include <stdbool.h>
|
|
#include <stddef.h>
|
|
|
|
struct attributes {
|
|
bool bold;
|
|
bool italic;
|
|
bool underline;
|
|
bool strikethrough;
|
|
bool blink;
|
|
bool conceal;
|
|
bool reverse;
|
|
uint32_t foreground;
|
|
uint32_t background;
|
|
};
|
|
|
|
struct cell {
|
|
bool dirty;
|
|
char c[5];
|
|
struct attributes attrs;
|
|
};
|
|
|
|
struct grid {
|
|
int cols;
|
|
int rows;
|
|
int cell_width;
|
|
int cell_height;
|
|
|
|
int cursor;
|
|
bool print_needs_wrap;
|
|
struct cell *cells;
|
|
|
|
uint32_t foreground;
|
|
uint32_t background;
|
|
|
|
bool dirty;
|
|
bool all_dirty;
|
|
};
|
|
|
|
struct vt {
|
|
int state; /* enum state */
|
|
struct {
|
|
struct {
|
|
unsigned value;
|
|
struct {
|
|
unsigned value[16];
|
|
size_t idx;
|
|
} sub;
|
|
} v[16];
|
|
size_t idx;
|
|
} params;
|
|
struct {
|
|
uint8_t data[2];
|
|
size_t idx;
|
|
} intermediates;
|
|
struct {
|
|
uint8_t data[1024];
|
|
size_t idx;
|
|
} osc;
|
|
struct {
|
|
uint8_t data[4];
|
|
size_t idx;
|
|
size_t left;
|
|
} utf8;
|
|
struct attributes attrs;
|
|
bool dim;
|
|
};
|
|
|
|
struct terminal {
|
|
int ptmx;
|
|
struct vt vt;
|
|
struct grid grid;
|
|
};
|