mirror of
				https://gitlab.freedesktop.org/wlroots/wlroots.git
				synced 2025-11-03 09:01:40 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			25 lines
		
	
	
	
		
			572 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
	
		
			572 B
		
	
	
	
		
			C
		
	
	
	
	
	
#ifndef ROOTSTON_LAYERS_H
 | 
						|
#define ROOTSTON_LAYERS_H
 | 
						|
#include <stdbool.h>
 | 
						|
#include <wlr/config.h>
 | 
						|
#include <wlr/types/wlr_box.h>
 | 
						|
#include <wlr/types/wlr_surface.h>
 | 
						|
#include <wlr/types/wlr_layer_shell.h>
 | 
						|
 | 
						|
struct roots_layer_surface {
 | 
						|
	struct wlr_layer_surface *layer_surface;
 | 
						|
	struct wl_list link;
 | 
						|
 | 
						|
	struct wl_listener destroy;
 | 
						|
	struct wl_listener map;
 | 
						|
	struct wl_listener unmap;
 | 
						|
	struct wl_listener surface_commit;
 | 
						|
	struct wl_listener output_destroy;
 | 
						|
	struct wl_listener output_mode;
 | 
						|
	struct wl_listener output_transform;
 | 
						|
 | 
						|
	bool configured;
 | 
						|
	struct wlr_box geo;
 | 
						|
};
 | 
						|
 | 
						|
#endif
 |