diff options
author | adnano <me@adnano.co> | 2024-05-02 17:03:07 -0400 |
---|---|---|
committer | adnano <me@adnano.co> | 2024-05-02 17:03:07 -0400 |
commit | 6284eea24b44d05260f96fe842fa9dd752185942 (patch) | |
tree | 10fc9a65d709781fb31d08b64d50c8723c83f19f /wayland.h | |
parent | 6a39269d2e73273de324ed156eba71e5bdcd9602 (diff) | |
download | wmenu-6284eea24b44d05260f96fe842fa9dd752185942.tar.gz |
Separate menu state from Wayland state
Diffstat (limited to 'wayland.h')
-rw-r--r-- | wayland.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/wayland.h b/wayland.h new file mode 100644 index 0000000..bca663f --- /dev/null +++ b/wayland.h @@ -0,0 +1,17 @@ +#ifndef WMENU_WAYLAND_H +#define WMENU_WAYLAND_H + +#include "menu.h" +#include <wayland-client-protocol.h> + +struct wl_context; + +int menu_run(struct menu *menu); + +int context_get_scale(struct wl_context *context); +struct wl_shm *context_get_shm(struct wl_context *context); +struct wl_surface *context_get_surface(struct wl_context *context); +struct xkb_state *context_get_xkb_state(struct wl_context *context); +bool context_paste(struct wl_context *context); + +#endif |