Add wlr_primary_selection_device_manager and wlr_primary_selection_source

This commit is contained in:
emersion 2017-12-22 19:20:12 +01:00
parent 0a370c5298
commit 0a171d3ace
No known key found for this signature in database
GPG key ID: 0FDE7BE0E88F5E48
6 changed files with 391 additions and 0 deletions

View file

@ -0,0 +1,31 @@
#ifndef WLR_TYPES_WLR_PRIMARY_SELECTION_H
#define WLR_TYPES_WLR_PRIMARY_SELECTION_H
#include <wayland-server.h>
struct wlr_primary_selection_device_manager {
struct wl_global *global;
struct wl_listener display_destroy;
void *data;
};
struct wlr_primary_selection_source {
struct wl_resource *resource;
struct wl_array mime_types;
struct {
struct wl_signal destroy;
} events;
void *data;
};
struct wlr_primary_selection_device_manager *
wlr_primary_selection_device_manager_create(struct wl_display *display);
void wlr_primary_selection_device_manager_destroy(
struct wlr_primary_selection_device_manager *manager);
#endif