mirror of
https://gitlab.freedesktop.org/wayland/wayland.git
synced 2026-04-10 08:21:15 -04:00
Introduce 'shell' object for moving and resizing surfaces in the compositor
This commit is contained in:
parent
a1f3f60bea
commit
83fc061c9c
8 changed files with 299 additions and 119 deletions
|
|
@ -75,6 +75,18 @@ wl_compositor_add_listener(struct wl_compositor *compostior,
|
|||
const struct wl_compositor_listener *listener,
|
||||
void *data);
|
||||
|
||||
int
|
||||
wl_shell_add_listener(struct wl_shell *shell,
|
||||
const struct wl_shell_listener *listener,
|
||||
void *data);
|
||||
void
|
||||
wl_shell_move(struct wl_shell *shell,
|
||||
struct wl_surface *surface, struct wl_input_device *device,
|
||||
uint32_t time);
|
||||
void
|
||||
wl_shell_resize(struct wl_shell *shell,
|
||||
struct wl_surface *surface, struct wl_input_device *device,
|
||||
uint32_t time, uint32_t edges);
|
||||
|
||||
void wl_surface_destroy(struct wl_surface *surface);
|
||||
void wl_surface_attach(struct wl_surface *surface, uint32_t name,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue