This commit is contained in:
Devin J. Pohly 2020-04-30 10:20:01 -05:00
parent 53e71957f8
commit 979ef3ce89
2 changed files with 67 additions and 52 deletions

View File

@ -78,7 +78,7 @@ static const Key keys[] = {
}; };
static const Button buttons[] = { static const Button buttons[] = {
{ MODKEY, BTN_LEFT, movemouse, {0} }, { MODKEY, BTN_LEFT, moveresize, {.ui = CurMove} },
{ MODKEY, BTN_MIDDLE, togglefloating, {0} }, { MODKEY, BTN_MIDDLE, togglefloating, {0} },
{ MODKEY, BTN_RIGHT, resizemouse, {0} }, { MODKEY, BTN_RIGHT, moveresize, {.ui = CurResize} },
}; };

115
dwl.c
View File

@ -129,6 +129,7 @@ static void arrange(Monitor *m);
static void axisnotify(struct wl_listener *listener, void *data); static void axisnotify(struct wl_listener *listener, void *data);
static void buttonpress(struct wl_listener *listener, void *data); static void buttonpress(struct wl_listener *listener, void *data);
static void chvt(const Arg *arg); static void chvt(const Arg *arg);
static void cleanup(void);
static void createkeyboard(struct wlr_input_device *device); static void createkeyboard(struct wlr_input_device *device);
static void createmon(struct wl_listener *listener, void *data); static void createmon(struct wl_listener *listener, void *data);
static void createnotify(struct wl_listener *listener, void *data); static void createnotify(struct wl_listener *listener, void *data);
@ -148,7 +149,7 @@ static void maprequest(struct wl_listener *listener, void *data);
static void motionabsolute(struct wl_listener *listener, void *data); static void motionabsolute(struct wl_listener *listener, void *data);
static void motionnotify(uint32_t time); static void motionnotify(uint32_t time);
static void motionrelative(struct wl_listener *listener, void *data); static void motionrelative(struct wl_listener *listener, void *data);
static void movemouse(const Arg *arg); static void moveresize(const Arg *arg);
static void pointerfocus(Client *c, struct wlr_surface *surface, static void pointerfocus(Client *c, struct wlr_surface *surface,
double sx, double sy, uint32_t time); double sx, double sy, uint32_t time);
static void quit(const Arg *arg); static void quit(const Arg *arg);
@ -157,7 +158,6 @@ static void render(struct wlr_surface *surface, int sx, int sy, void *data);
static void renderclients(Monitor *m, struct timespec *now); static void renderclients(Monitor *m, struct timespec *now);
static void rendermon(struct wl_listener *listener, void *data); static void rendermon(struct wl_listener *listener, void *data);
static void resize(Client *c, int x, int y, int w, int h, int interact); static void resize(Client *c, int x, int y, int w, int h, int interact);
static void resizemouse(const Arg *arg);
static void run(char *startup_cmd); static void run(char *startup_cmd);
static void scalebox(struct wlr_box *box, float scale); static void scalebox(struct wlr_box *box, float scale);
static Client *selclient(void); static Client *selclient(void);
@ -205,7 +205,7 @@ static struct wl_listener request_cursor;
static struct wl_list keyboards; static struct wl_list keyboards;
static unsigned int cursor_mode; static unsigned int cursor_mode;
static Client *grabc; static Client *grabc;
static double grabsx, grabsy; /* surface-relative */ static double grabcx, grabcy; /* surface-relative */
static struct wlr_output_layout *output_layout; static struct wlr_output_layout *output_layout;
static struct wlr_box sgeom; static struct wlr_box sgeom;
@ -308,6 +308,28 @@ buttonpress(struct wl_listener *listener, void *data)
event->time_msec, event->button, event->state); event->time_msec, event->button, event->state);
} }
void
cleanup(void)
{
wl_display_destroy_clients(dpy);
/* XXX handle destroy events */
Keyboard *kb, *tmp;
wl_list_for_each_safe(kb, tmp, &keyboards, link) {
wl_list_remove(&kb->link);
free(kb);
}
Monitor *m, *mtmp;
wl_list_for_each_safe(m, mtmp, &mons, link) {
wl_list_remove(&m->link);
free(m);
}
wlr_xcursor_manager_destroy(cursor_mgr);
wlr_cursor_destroy(cursor);
wlr_output_layout_destroy(output_layout);
//wlr_renderer_destroy(drw);
wlr_backend_destroy(backend);
}
void void
createkeyboard(struct wlr_input_device *device) createkeyboard(struct wlr_input_device *device)
{ {
@ -466,7 +488,7 @@ focusclient(Client *c, struct wlr_surface *surface, int lift)
{ {
if (c) { if (c) {
/* assert(VISIBLEON(c, c->mon)); ? */ /* assert(VISIBLEON(c, c->mon)); ? */
/* If no surface provided, use the client's xdg_surface */ /* Use top level surface if nothing more specific given */
if (!surface) if (!surface)
surface = c->xdg_surface->surface; surface = c->xdg_surface->surface;
/* Focus the correct monitor as well */ /* Focus the correct monitor as well */
@ -691,8 +713,7 @@ motionnotify(uint32_t time)
if (cursor_mode == CurMove) { if (cursor_mode == CurMove) {
/* Move the grabbed client to the new position. */ /* Move the grabbed client to the new position. */
/* XXX assumes the surface is at (0,0) within grabc */ /* XXX assumes the surface is at (0,0) within grabc */
resize(grabc, cursor->x - grabsx - grabc->bw, resize(grabc, cursor->x - grabcx, cursor->y - grabcy,
cursor->y - grabsy - grabc->bw,
grabc->geom.width, grabc->geom.height, 1); grabc->geom.width, grabc->geom.height, 1);
return; return;
} else if (cursor_mode == CurResize) { } else if (cursor_mode == CurResize) {
@ -733,23 +754,40 @@ motionrelative(struct wl_listener *listener, void *data)
} }
void void
movemouse(const Arg *arg) moveresize(const Arg *arg)
{ {
struct wlr_surface *surface; struct wlr_surface *surface;
grabc = xytoclient(cursor->x, cursor->y, &surface, &grabsx, &grabsy); double sx, sy;
grabc = xytoclient(cursor->x, cursor->y, &surface, &sx, &sy);
if (!grabc) if (!grabc)
return; return;
/* Float the window and tell motionnotify to grab it */ /* Float the window and tell motionnotify to grab it */
setfloating(grabc, 1); setfloating(grabc, 1);
cursor_mode = CurMove; switch (cursor_mode = arg->ui) {
wlr_xcursor_manager_set_cursor_image(cursor_mgr, "fleur", cursor); case CurMove:
grabcx = cursor->x - grabc->geom.x;
grabcy = cursor->y - grabc->geom.y;
wlr_xcursor_manager_set_cursor_image(cursor_mgr, "fleur", cursor);
break;
case CurResize:
/* Doesn't work for X11 output - the next absolute motion event
* returns the cursor to where it started */
wlr_cursor_warp_closest(cursor, NULL,
grabc->geom.x + grabc->geom.width,
grabc->geom.y + grabc->geom.height);
wlr_xcursor_manager_set_cursor_image(cursor_mgr,
"bottom_right_corner", cursor);
break;
}
} }
void void
pointerfocus(Client *c, struct wlr_surface *surface, double sx, double sy, pointerfocus(Client *c, struct wlr_surface *surface, double sx, double sy,
uint32_t time) uint32_t time)
{ {
if (c && !surface)
surface = c->xdg_surface->surface;
/* If surface is already focused, only notify of motion */ /* If surface is already focused, only notify of motion */
if (surface && surface == seat->pointer_state.focused_surface) { if (surface && surface == seat->pointer_state.focused_surface) {
wlr_seat_pointer_notify_motion(seat, time, sx, sy); wlr_seat_pointer_notify_motion(seat, time, sx, sy);
@ -939,27 +977,6 @@ resize(Client *c, int x, int y, int w, int h, int interact)
c->geom.width - 2 * c->bw, c->geom.height - 2 * c->bw); c->geom.width - 2 * c->bw, c->geom.height - 2 * c->bw);
} }
void
resizemouse(const Arg *arg)
{
struct wlr_surface *surface;
grabc = xytoclient(cursor->x, cursor->y, &surface, &grabsx, &grabsy);
if (!grabc)
return;
/* Doesn't work for X11 output - the next absolute motion event
* returns the cursor to where it started */
wlr_cursor_warp_closest(cursor, NULL,
grabc->geom.x + grabc->geom.width,
grabc->geom.y + grabc->geom.height);
/* Float the window and tell motionnotify to resize it */
setfloating(grabc, 1);
cursor_mode = CurResize;
wlr_xcursor_manager_set_cursor_image(cursor_mgr,
"bottom_right_corner", cursor);
}
void void
run(char *startup_cmd) run(char *startup_cmd)
{ {
@ -1179,7 +1196,9 @@ setup(void)
/* Creates an xcursor manager, another wlroots utility which loads up /* Creates an xcursor manager, another wlroots utility which loads up
* Xcursor themes to source cursor images from and makes sure that cursor * Xcursor themes to source cursor images from and makes sure that cursor
* images are available at all scale factors on the screen (necessary for * images are available at all scale factors on the screen (necessary for
* HiDPI support). Scaled cursors will be loaded with each output. */ * HiDPI support). We will load appropriately scaled cursor themes as
* outputs appear.
*/
cursor_mgr = wlr_xcursor_manager_create(NULL, 24); cursor_mgr = wlr_xcursor_manager_create(NULL, 24);
/* /*
@ -1359,24 +1378,20 @@ xytoclient(double x, double y,
/* Skip clients that aren't visible */ /* Skip clients that aren't visible */
if (!VISIBLEON(c, c->mon)) if (!VISIBLEON(c, c->mon))
continue; continue;
/* if (wlr_box_contains_point(&c->geom, x, y)) {
* XDG toplevels may have nested surfaces, such as popup windows /*
* for context menus or tooltips. This function tests if any of * XDG toplevels may have nested surfaces, such as popup windows
* those are underneath the coordinates x and y (in layout * for context menus or tooltips. This function tests if any of
* coordinates). If so, it sets the surface pointer to that * those are underneath the coordinates x and y (in layout
* wlr_surface and the sx and sy coordinates to the coordinates * coordinates). If so, it sets the surface pointer to that
* relative to that surface's top-left corner. * wlr_surface and the sx and sy coordinates to the coordinates
*/ * relative to that surface's top-left corner.
double _sx, _sy; */
struct wlr_surface *_surface = NULL; /* XXX return xdg_surface->surface instead of NULL? what
_surface = wlr_xdg_surface_surface_at(c->xdg_surface, * should sx/sy be in that case? */
*surface = wlr_xdg_surface_surface_at(c->xdg_surface,
x - c->geom.x - c->bw, y - c->geom.y - c->bw, x - c->geom.x - c->bw, y - c->geom.y - c->bw,
&_sx, &_sy); sx, sy);
if (_surface) {
*sx = _sx;
*sy = _sy;
*surface = _surface;
return c; return c;
} }
} }
@ -1428,9 +1443,9 @@ main(int argc, char *argv[])
setup(); setup();
run(startup_cmd); run(startup_cmd);
cleanup();
/* Once wl_display_run returns, we shut down the server. */ /* Once wl_display_run returns, we shut down the server. */
wl_display_destroy_clients(dpy);
wl_display_destroy(dpy); wl_display_destroy(dpy);
return EXIT_SUCCESS; return EXIT_SUCCESS;
} }