mirror of
https://github.com/wizbright/waybox.git
synced 2025-10-29 05:40:20 -04:00
11 lines
339 B
C
11 lines
339 B
C
#ifndef _WB_XDG_SHELL_H
|
|
#define _WB_XDG_SHELL_H
|
|
|
|
#include "waybox/server.h"
|
|
|
|
void init_xdg_shell(struct wb_server *server);
|
|
void focus_view(struct wb_view *view, struct wlr_surface *surface);
|
|
struct wb_view *desktop_view_at(
|
|
struct wb_server *server, double lx, double ly,
|
|
struct wlr_surface **surface, double *sx, double *sy);
|
|
#endif
|