From 36174e35185c34733a84055cd30dda5f7d947397 Mon Sep 17 00:00:00 2001 From: Nicholas Noll Date: Mon, 4 Oct 2021 13:40:18 -0700 Subject: feat(wm): mouse input --- sys/cmd/wm/wm.h | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'sys/cmd/wm/wm.h') diff --git a/sys/cmd/wm/wm.h b/sys/cmd/wm/wm.h index 2e9ea9f..bc898b1 100644 --- a/sys/cmd/wm/wm.h +++ b/sys/cmd/wm/wm.h @@ -290,14 +290,16 @@ void rules(Client *); void focus(Client *, int lift); void resize(Client *, int x, int y, int w, int h, int interact); void attach(Client *, Monitor *, uint tags); +void floating(Client *, int); +Client *selected_client(void); Client *client_at(double x, double y); struct wlr_surface *client_surface_at(Client *, double cx, double cy, double *sx, double *sy); struct wlr_surface *top_surface(Client *); -void *move_client(Arg *arg); -void *float_client(Arg *arg); -void *resize_client(Arg *arg); +void move_client(Arg *arg); +void float_client(Arg *arg); +void resize_client(Arg *arg); /* monitor.c */ void tile(Monitor *); -- cgit v1.2.1