aboutsummaryrefslogtreecommitdiff
path: root/sys/cmd/wm/wm.h
diff options
context:
space:
mode:
authorNicholas Noll <nbnoll@eml.cc>2021-10-04 13:40:18 -0700
committerNicholas Noll <nbnoll@eml.cc>2021-10-04 13:40:18 -0700
commit36174e35185c34733a84055cd30dda5f7d947397 (patch)
tree4f9933ed5da5efd231862e44de1f12afb13e2476 /sys/cmd/wm/wm.h
parent93e9672953d849288f27ff3d977cc1c1ff111da8 (diff)
feat(wm): mouse input
Diffstat (limited to 'sys/cmd/wm/wm.h')
-rw-r--r--sys/cmd/wm/wm.h8
1 files changed, 5 insertions, 3 deletions
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 *);