Documentation for <wlr/types/wlr_fullscreen_shell_v1.h>

Back to index

Table of contents

struct wlr_fullscreen_shell_v1

struct wlr_fullscreen_shell_v1 {
	struct wl_global *global;
	
	struct {
		struct wl_signal destroy;
		// struct wlr_fullscreen_shell_v1_present_surface_event
		struct wl_signal present_surface;
	} events;
	
	struct wl_listener display_destroy;
	
	void *data;
};

wlr_fullscreen_shell_v1_create()

struct wlr_fullscreen_shell_v1 *wlr_fullscreen_shell_v1_create(​struct wl_display *display);

struct wlr_fullscreen_shell_v1_present_surface_event

struct wlr_fullscreen_shell_v1_present_surface_event {
	struct wl_client *client;
	struct wlr_surface *surface; // can be NULL
	enum zwp_fullscreen_shell_v1_present_method method;
	struct wlr_output *output; // can be NULL
};