mirror of
https://github.com/labwc/labwc.git
synced 2026-04-12 08:21:13 -04:00
Add files via upload
This commit is contained in:
parent
5f3600b0b8
commit
cacc645fa5
2 changed files with 7 additions and 0 deletions
|
|
@ -24,6 +24,7 @@ struct menu_scene {
|
||||||
struct wlr_scene_tree *tree;
|
struct wlr_scene_tree *tree;
|
||||||
struct wlr_scene_node *text;
|
struct wlr_scene_node *text;
|
||||||
struct wlr_scene_node *background;
|
struct wlr_scene_node *background;
|
||||||
|
|
||||||
struct scaled_font_buffer *buffer;
|
struct scaled_font_buffer *buffer;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
@ -74,6 +75,9 @@ struct menu {
|
||||||
/* Used to match a window-menu to the view that triggered it. */
|
/* Used to match a window-menu to the view that triggered it. */
|
||||||
struct view *triggered_by_view; /* may be NULL */
|
struct view *triggered_by_view; /* may be NULL */
|
||||||
struct wl_list link; /* server.menus */
|
struct wl_list link; /* server.menus */
|
||||||
|
struct wlr_scene_rect *border;
|
||||||
|
struct wlr_scene_rect *background;
|
||||||
|
struct wlr_scene_tree *items_tree;
|
||||||
};
|
};
|
||||||
|
|
||||||
/* For keyboard support */
|
/* For keyboard support */
|
||||||
|
|
|
||||||
|
|
@ -78,6 +78,9 @@ struct theme {
|
||||||
float menu_items_text_color[4];
|
float menu_items_text_color[4];
|
||||||
float menu_items_active_bg_color[4];
|
float menu_items_active_bg_color[4];
|
||||||
float menu_items_active_text_color[4];
|
float menu_items_active_text_color[4];
|
||||||
|
float menu_border_color[4];
|
||||||
|
int menu_border_width;
|
||||||
|
|
||||||
|
|
||||||
int menu_min_width;
|
int menu_min_width;
|
||||||
int menu_max_width;
|
int menu_max_width;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue