mirror of
				https://github.com/labwc/labwc.git
				synced 2025-11-03 09:01:51 -05:00 
			
		
		
		
	Add the following theme keys: - window.active.button.iconify.unpressed.image.color - window.active.button.max.unpressed.image.color - window.active.button.close.unpressed.image.color - window.inactive.button.iconify.unpressed.image.color - window.inactive.button.max.unpressed.image.color - window.inactive.button.close.unpressed.image.color As far as I can tell, the openbox documentation does not mention the entries listed above, but openbox does support them and some themes do use them.
		
			
				
	
	
		
			70 lines
		
	
	
	
		
			2.1 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			70 lines
		
	
	
	
		
			2.1 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
/*
 | 
						|
 * Theme engine for labwc
 | 
						|
 *
 | 
						|
 * Copyright Johan Malm 2020-2021
 | 
						|
 */
 | 
						|
 | 
						|
#ifndef __LABWC_THEME_H
 | 
						|
#define __LABWC_THEME_H
 | 
						|
 | 
						|
#include <stdio.h>
 | 
						|
#include <wlr/render/wlr_renderer.h>
 | 
						|
 | 
						|
struct theme {
 | 
						|
	int border_width;
 | 
						|
	int padding_height;
 | 
						|
 | 
						|
	float window_active_border_color[4];
 | 
						|
	float window_inactive_border_color[4];
 | 
						|
 | 
						|
	float window_active_title_bg_color[4];
 | 
						|
	float window_inactive_title_bg_color[4];
 | 
						|
 | 
						|
	/* buttons */
 | 
						|
	float window_active_button_iconify_unpressed_image_color[4];
 | 
						|
	float window_active_button_max_unpressed_image_color[4];
 | 
						|
	float window_active_button_close_unpressed_image_color[4];
 | 
						|
	float window_inactive_button_iconify_unpressed_image_color[4];
 | 
						|
	float window_inactive_button_max_unpressed_image_color[4];
 | 
						|
	float window_inactive_button_close_unpressed_image_color[4];
 | 
						|
	/* TODO: add pressed and hover colors for buttons */
 | 
						|
 | 
						|
	float menu_items_bg_color[4];
 | 
						|
	float menu_items_text_color[4];
 | 
						|
	float menu_items_active_bg_color[4];
 | 
						|
	float menu_items_active_text_color[4];
 | 
						|
 | 
						|
	struct wlr_texture *xbm_close_active_unpressed;
 | 
						|
	struct wlr_texture *xbm_maximize_active_unpressed;
 | 
						|
	struct wlr_texture *xbm_iconify_active_unpressed;
 | 
						|
 | 
						|
	struct wlr_texture *xbm_close_inactive_unpressed;
 | 
						|
	struct wlr_texture *xbm_maximize_inactive_unpressed;
 | 
						|
	struct wlr_texture *xbm_iconify_inactive_unpressed;
 | 
						|
 | 
						|
	struct wlr_texture *corner_top_left_active_normal;
 | 
						|
	struct wlr_texture *corner_top_right_active_normal;
 | 
						|
	struct wlr_texture *corner_top_left_inactive_normal;
 | 
						|
	struct wlr_texture *corner_top_right_inactive_normal;
 | 
						|
 | 
						|
	/* not set in rc.xml/themerc, but derived from font & padding_height */
 | 
						|
	int title_height;
 | 
						|
};
 | 
						|
 | 
						|
/**
 | 
						|
 * theme_init - read openbox theme and generate button textures
 | 
						|
 * @theme: theme data
 | 
						|
 * @renderer: wlr_renderer for creating button textures
 | 
						|
 * @theme_name: theme-name in <theme-dir>/<theme-name>/openbox-3/themerc
 | 
						|
 * Note <theme-dir> is obtained in theme-dir.c
 | 
						|
 */
 | 
						|
void theme_init(struct theme *theme, struct wlr_renderer *renderer,
 | 
						|
		const char *theme_name);
 | 
						|
 | 
						|
/**
 | 
						|
 * theme_finish - free button textures
 | 
						|
 * @theme: theme data
 | 
						|
 */
 | 
						|
void theme_finish(struct theme *theme);
 | 
						|
 | 
						|
#endif /* __LABWC_THEME_H */
 |