mirror of
https://github.com/swaywm/sway.git
synced 2024-11-11 21:14:10 +01:00
ab8a86369c
This implements the following for floating containers: * move <direction> <amount> * move [absolute] position <x> <y> * move [absolute] position mouse
9 lines
219 B
C
9 lines
219 B
C
#include <wlr/types/wlr_surface.h>
|
|
|
|
struct sway_container;
|
|
|
|
void desktop_damage_surface(struct wlr_surface *surface, double lx, double ly,
|
|
bool whole);
|
|
|
|
void desktop_damage_whole_container(struct sway_container *con);
|