mirror of
				https://gitlab.freedesktop.org/wlroots/wlroots.git
				synced 2025-11-03 09:01:40 -05:00 
			
		
		
		
	rootston: add title/app_id/class listeners
This commit is contained in:
		
							parent
							
								
									5b1b9657bf
								
							
						
					
					
						commit
						f387a840d8
					
				
					 4 changed files with 60 additions and 0 deletions
				
			
		| 
						 | 
				
			
			@ -265,6 +265,8 @@ static void destroy(struct roots_view *view) {
 | 
			
		|||
	wl_list_remove(&roots_xdg_surface->request_resize.link);
 | 
			
		||||
	wl_list_remove(&roots_xdg_surface->request_maximize.link);
 | 
			
		||||
	wl_list_remove(&roots_xdg_surface->request_fullscreen.link);
 | 
			
		||||
	wl_list_remove(&roots_xdg_surface->set_title.link);
 | 
			
		||||
	wl_list_remove(&roots_xdg_surface->set_app_id.link);
 | 
			
		||||
	free(roots_xdg_surface);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			@ -325,6 +327,16 @@ static void handle_request_fullscreen(struct wl_listener *listener,
 | 
			
		|||
	view_set_fullscreen(view, e->fullscreen, e->output);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
static void handle_set_title(struct wl_listener *listener, void *data) {
 | 
			
		||||
	struct roots_xdg_surface_v6 *roots_xdg_surface =
 | 
			
		||||
		wl_container_of(listener, roots_xdg_surface, set_title);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
static void handle_set_app_id(struct wl_listener *listener, void *data) {
 | 
			
		||||
	struct roots_xdg_surface_v6 *roots_xdg_surface =
 | 
			
		||||
		wl_container_of(listener, roots_xdg_surface, set_title);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
static void handle_surface_commit(struct wl_listener *listener, void *data) {
 | 
			
		||||
	struct roots_xdg_surface_v6 *roots_surface =
 | 
			
		||||
		wl_container_of(listener, roots_surface, surface_commit);
 | 
			
		||||
| 
						 | 
				
			
			@ -437,6 +449,11 @@ void handle_xdg_shell_v6_surface(struct wl_listener *listener, void *data) {
 | 
			
		|||
	roots_surface->request_fullscreen.notify = handle_request_fullscreen;
 | 
			
		||||
	wl_signal_add(&surface->toplevel->events.request_fullscreen,
 | 
			
		||||
		&roots_surface->request_fullscreen);
 | 
			
		||||
	roots_surface->set_title.notify = handle_set_title;
 | 
			
		||||
	wl_signal_add(&surface->toplevel->events.set_title, &roots_surface->set_title);
 | 
			
		||||
	roots_surface->set_app_id.notify = handle_set_app_id;
 | 
			
		||||
	wl_signal_add(&surface->toplevel->events.set_app_id,
 | 
			
		||||
			&roots_surface->set_app_id);
 | 
			
		||||
	roots_surface->new_popup.notify = handle_new_popup;
 | 
			
		||||
	wl_signal_add(&surface->events.new_popup, &roots_surface->new_popup);
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue