mirror of
				https://github.com/labwc/labwc.git
				synced 2025-11-03 09:01:51 -05:00 
			
		
		
		
	src/view.c: refactor is_toplevel()
This commit is contained in:
		
							parent
							
								
									7610063b46
								
							
						
					
					
						commit
						40c606a78d
					
				
					 1 changed files with 3 additions and 4 deletions
				
			
		| 
						 | 
					@ -1,16 +1,15 @@
 | 
				
			||||||
#include "labwc.h"
 | 
					#include "labwc.h"
 | 
				
			||||||
 | 
					#include "common/bug-on.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
static bool is_toplevel(struct view *view)
 | 
					static bool is_toplevel(struct view *view)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
	if (!view)
 | 
						if (!view || !view->been_mapped)
 | 
				
			||||||
		return false;
 | 
					 | 
				
			||||||
	if (!view->been_mapped)
 | 
					 | 
				
			||||||
		return false;
 | 
							return false;
 | 
				
			||||||
	switch (view->type) {
 | 
						switch (view->type) {
 | 
				
			||||||
	case LAB_XDG_SHELL_VIEW:
 | 
						case LAB_XDG_SHELL_VIEW:
 | 
				
			||||||
		return view->xdg_surface->role == WLR_XDG_SURFACE_ROLE_TOPLEVEL;
 | 
							return view->xdg_surface->role == WLR_XDG_SURFACE_ROLE_TOPLEVEL;
 | 
				
			||||||
	case LAB_XWAYLAND_VIEW:
 | 
						case LAB_XWAYLAND_VIEW:
 | 
				
			||||||
		return xwl_nr_parents(view) == 0;
 | 
							return view->xwayland_surface->parent == NULL;
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
	return false;
 | 
						return false;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue