mirror of
				https://github.com/swaywm/sway.git
				synced 2025-11-03 09:01:43 -05:00 
			
		
		
		
	Implement indicator border
This commit is contained in:
		
							parent
							
								
									ed9e2015b2
								
							
						
					
					
						commit
						700510b45e
					
				
					 1 changed files with 20 additions and 0 deletions
				
			
		| 
						 | 
					@ -245,6 +245,11 @@ static void render_container_simple_border_normal(struct sway_output *output,
 | 
				
			||||||
			output->wlr_output->transform_matrix);
 | 
								output->wlr_output->transform_matrix);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	// Child border - right edge
 | 
						// Child border - right edge
 | 
				
			||||||
 | 
						if (con->parent->children->length == 1 && con->parent->layout == L_HORIZ) {
 | 
				
			||||||
 | 
							memcpy(&color, colors->indicator, sizeof(float) * 3);
 | 
				
			||||||
 | 
						} else {
 | 
				
			||||||
 | 
							memcpy(&color, colors->child_border, sizeof(float) * 3);
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
	box.x = con->x + con->width - con->sway_view->border_thickness;
 | 
						box.x = con->x + con->width - con->sway_view->border_thickness;
 | 
				
			||||||
	box.y = con->y + 1;
 | 
						box.y = con->y + 1;
 | 
				
			||||||
	box.width = con->sway_view->border_thickness;
 | 
						box.width = con->sway_view->border_thickness;
 | 
				
			||||||
| 
						 | 
					@ -254,6 +259,11 @@ static void render_container_simple_border_normal(struct sway_output *output,
 | 
				
			||||||
			output->wlr_output->transform_matrix);
 | 
								output->wlr_output->transform_matrix);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	// Child border - bottom edge
 | 
						// Child border - bottom edge
 | 
				
			||||||
 | 
						if (con->parent->children->length == 1 && con->parent->layout == L_VERT) {
 | 
				
			||||||
 | 
							memcpy(&color, colors->indicator, sizeof(float) * 3);
 | 
				
			||||||
 | 
						} else {
 | 
				
			||||||
 | 
							memcpy(&color, colors->child_border, sizeof(float) * 3);
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
	box.x = con->x;
 | 
						box.x = con->x;
 | 
				
			||||||
	box.y = con->y + con->height - con->sway_view->border_thickness;
 | 
						box.y = con->y + con->height - con->sway_view->border_thickness;
 | 
				
			||||||
	box.width = con->width;
 | 
						box.width = con->width;
 | 
				
			||||||
| 
						 | 
					@ -317,6 +327,11 @@ static void render_container_simple_border_pixel(struct sway_output *output,
 | 
				
			||||||
			output->wlr_output->transform_matrix);
 | 
								output->wlr_output->transform_matrix);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	// Child border - right edge
 | 
						// Child border - right edge
 | 
				
			||||||
 | 
						if (con->parent->children->length == 1 && con->parent->layout == L_HORIZ) {
 | 
				
			||||||
 | 
							memcpy(&color, colors->indicator, sizeof(float) * 3);
 | 
				
			||||||
 | 
						} else {
 | 
				
			||||||
 | 
							memcpy(&color, colors->child_border, sizeof(float) * 3);
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
	box.x = con->x + con->width - con->sway_view->border_thickness;
 | 
						box.x = con->x + con->width - con->sway_view->border_thickness;
 | 
				
			||||||
	box.y = con->y;
 | 
						box.y = con->y;
 | 
				
			||||||
	box.width = con->sway_view->border_thickness;
 | 
						box.width = con->sway_view->border_thickness;
 | 
				
			||||||
| 
						 | 
					@ -335,6 +350,11 @@ static void render_container_simple_border_pixel(struct sway_output *output,
 | 
				
			||||||
			output->wlr_output->transform_matrix);
 | 
								output->wlr_output->transform_matrix);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	// Child border - bottom edge
 | 
						// Child border - bottom edge
 | 
				
			||||||
 | 
						if (con->parent->children->length == 1 && con->parent->layout == L_VERT) {
 | 
				
			||||||
 | 
							memcpy(&color, colors->indicator, sizeof(float) * 3);
 | 
				
			||||||
 | 
						} else {
 | 
				
			||||||
 | 
							memcpy(&color, colors->child_border, sizeof(float) * 3);
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
	box.x = con->x;
 | 
						box.x = con->x;
 | 
				
			||||||
	box.y = con->y + con->height - con->sway_view->border_thickness;
 | 
						box.y = con->y + con->height - con->sway_view->border_thickness;
 | 
				
			||||||
	box.width = con->width;
 | 
						box.width = con->width;
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue