xdg-toplevel-icon-v1: add implementation

This commit is contained in:
Kirill Primak 2024-06-06 13:46:50 +03:00 committed by Simon Zeni
parent 061aa1bd15
commit bcf8e467db
4 changed files with 375 additions and 0 deletions

View file

@ -0,0 +1,80 @@
/*
* This an unstable interface of wlroots. No guarantees are made regarding the
* future consistency of this API.
*/
#ifndef WLR_USE_UNSTABLE
#error "Add -DWLR_USE_UNSTABLE to enable unstable wlroots features"
#endif
#ifndef WLR_TYPES_WLR_XDG_TOPLEVEL_ICON_V1_H
#define WLR_TYPES_WLR_XDG_TOPLEVEL_ICON_V1_H
#include <wayland-server-core.h>
#include <wlr/util/addon.h>
struct wlr_xdg_toplevel_icon_manager_v1 {
struct wl_global *global;
struct wl_list resources;
int *sizes;
size_t n_sizes;
struct {
struct wl_signal set_icon; // struct wlr_xdg_toplevel_icon_manager_v1_set_icon_event
struct wl_signal destroy;
} events;
struct {
struct wl_listener display_destroy;
} WLR_PRIVATE;
};
struct wlr_xdg_toplevel_icon_manager_v1_set_icon_event {
struct wlr_xdg_toplevel *toplevel;
// Must be referenced to be used after the event is emitted
struct wlr_xdg_toplevel_icon_v1 *icon; // May be NULL
};
struct wlr_xdg_toplevel_icon_v1_buffer {
struct wlr_buffer *buffer;
int scale;
struct wl_list link; // wlr_xdg_toplevel_icon_v1.buffers
};
struct wlr_xdg_toplevel_icon_v1 {
char *name; // May be NULL
struct wl_list buffers; // wlr_xdg_toplevel_icon_v1_buffer.link
struct {
int n_refs;
bool immutable;
} WLR_PRIVATE;
};
struct wlr_xdg_toplevel_icon_manager_v1 *wlr_xdg_toplevel_icon_manager_v1_create(
struct wl_display *display, uint32_t version);
/**
* Set icon size preferences.
*
* The list may be empty.
*/
void wlr_xdg_toplevel_icon_manager_v1_set_sizes(struct wlr_xdg_toplevel_icon_manager_v1 *manager,
int *sizes, size_t n_sizes);
/**
* Reference an icon.
*/
struct wlr_xdg_toplevel_icon_v1 *wlr_xdg_toplevel_icon_v1_ref(
struct wlr_xdg_toplevel_icon_v1 *icon);
/**
* Unreference an icon. When the icon reference count reaches 0, it is destroyed.
*/
void wlr_xdg_toplevel_icon_v1_unref(struct wlr_xdg_toplevel_icon_v1 *icon);
#endif