mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-05-29 21:38:03 -04:00
This change introduces a new `scrollback` Meson build option (enabled by default) that lets foot be compiled without scrollback history. When the option is off, `FOOT_HAVE_SCROLLBACK` is left undefined and the relevant code is excluded from the build, producing a slimmer terminal for use cases that do not need it. With scrollback disabled: - The `[scrollback]` section in `foot.ini` and its key bindings become no-ops. - In-terminal search is removed, along with the "pipe scrollback" action, the scrollback indicator, and their colors/overlays. - IME hooks for the search box, mouse-wheel scrollback handling, and related `terminal` state are compiled out. - Selection auto-scroll (the timer that scrolls the viewport while a drag-selection extends past the visible area) is removed, since with no scrollback there is nowhere to scroll to. The associated function declarations, `enum selection_scroll_direction`, the `auto_scroll` field on `terminal::selection`, and their init/teardown sites are all excluded from the build. To keep action enumerations stable across build configurations, two range markers (`BIND_ACTION_PIPE_FIRST` / `BIND_ACTION_PIPE_LAST`) are introduced so that pipe-action handling does not depend on `PIPE_SCROLLBACK` being present. The build summary and `foot --version` now report `+scrollback` or `-scrollback`, and the config tests have been updated to account for optional section.
54 lines
1.5 KiB
C
54 lines
1.5 KiB
C
#pragma once
|
|
#include <stdbool.h>
|
|
|
|
#include "terminal.h"
|
|
#include "fdm.h"
|
|
#include "wayland.h"
|
|
#include "misc.h"
|
|
|
|
struct renderer;
|
|
struct renderer *render_init(struct fdm *fdm, struct wayland *wayl);
|
|
void render_destroy(struct renderer *renderer);
|
|
|
|
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_app_id(struct terminal *term);
|
|
void render_refresh_icon(struct terminal *term);
|
|
void render_refresh_csd(struct terminal *term);
|
|
#if defined(FOOT_HAVE_SCROLLBACK)
|
|
void render_refresh_search(struct terminal *term);
|
|
#endif
|
|
void render_refresh_title(struct terminal *term);
|
|
void render_refresh_urls(struct terminal *term);
|
|
bool render_xcursor_set(
|
|
struct seat *seat, struct terminal *term, enum cursor_shape shape);
|
|
bool render_xcursor_is_valid(const struct seat *seat, const char *cursor);
|
|
|
|
void render_overlay(struct terminal *term);
|
|
|
|
struct render_worker_context {
|
|
int my_id;
|
|
struct terminal *term;
|
|
};
|
|
int render_worker_thread(void *_ctx);
|
|
|
|
struct csd_data {
|
|
int x;
|
|
int y;
|
|
int width;
|
|
int height;
|
|
};
|
|
|
|
struct csd_data get_csd_data(const struct terminal *term, enum csd_surface surf_idx);
|
|
|
|
void render_buffer_release_callback(struct buffer *buf, void *data);
|
|
void render_wait_for_preapply_damage(struct terminal *term);
|