mirror of
https://github.com/labwc/labwc.git
synced 2025-11-02 09:01:47 -05:00
Support inactive unpressed icons
This commit is contained in:
parent
e62c251a74
commit
83331e57ed
6 changed files with 48 additions and 17 deletions
|
|
@ -13,11 +13,19 @@
|
|||
struct theme {
|
||||
float window_active_title_bg_color[4];
|
||||
float window_active_handle_bg_color[4];
|
||||
|
||||
float window_inactive_title_bg_color[4];
|
||||
|
||||
float window_active_button_unpressed_image_color[4];
|
||||
struct wlr_texture *xbm_close;
|
||||
struct wlr_texture *xbm_maximize;
|
||||
struct wlr_texture *xbm_iconify;
|
||||
float window_inactive_button_unpressed_image_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;
|
||||
};
|
||||
|
||||
extern struct theme theme;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue