mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-10 04:27:45 -05:00
feature: add resize-by-cells option to constrain window sizes...
...to multiples of the cell size, and preserve grid size when changing fonts or display scales in floating windows.
This commit is contained in:
parent
e0f3703ae6
commit
21a8d832ce
8 changed files with 120 additions and 55 deletions
11
render.h
11
render.h
|
|
@ -10,8 +10,15 @@ struct renderer;
|
|||
struct renderer *render_init(struct fdm *fdm, struct wayland *wayl);
|
||||
void render_destroy(struct renderer *renderer);
|
||||
|
||||
bool render_resize(struct terminal *term, int width, int height);
|
||||
bool render_resize_force(struct terminal *term, int width, int height);
|
||||
enum resize_options {
|
||||
RESIZE_NORMAL = 0,
|
||||
RESIZE_FORCE = 1 << 0,
|
||||
RESIZE_BY_CELLS = 1 << 1,
|
||||
RESIZE_KEEP_GRID = 1 << 2,
|
||||
};
|
||||
|
||||
bool render_resize(
|
||||
struct terminal *term, int width, int height, uint8_t resize_options);
|
||||
|
||||
void render_refresh(struct terminal *term);
|
||||
void render_refresh_csd(struct terminal *term);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue