Files
absinthe/include/absinthe-toplevel.h
T

11 lines
648 B
C
Raw Normal View History

2026-01-02 22:53:34 +07:00
#include "types.h"
struct absinthe_toplevel *absinthe_toplevel_at(struct absinthe_server *server, double lx, double ly, struct wlr_surface **surface, double *sx, double *sy);
2026-01-06 01:41:46 +07:00
void absinthe_toplevel_set_position(struct absinthe_toplevel *toplevel, int32_t x, int32_t y);
void absinthe_toplevel_set_size(struct absinthe_toplevel *toplevel, int32_t width, int32_t height);
2026-01-10 23:16:46 +07:00
void absinthe_toplevel_set_fullscreen(struct absinthe_toplevel *toplevel, bool fullscreen);
2026-01-06 01:41:46 +07:00
void absinthe_toplevel_set_border_color(struct absinthe_toplevel *toplevel, const float color[4]);
2026-01-07 20:35:41 +07:00
void absinthe_toplevel_update_borders_geometry(struct absinthe_toplevel *toplevel);