Searched refs:theme (Results 1 - 10 of 10) sorted by relevance

/u-boot/include/
H A Dbootstd.h35 * @theme: Node containing the theme information
49 ofnode theme; member in struct:bootstd_priv
H A Dexpo.h57 * struct expo_theme - theme for the expo
85 * @theme: Information about fonts styles, etc.
99 struct expo_theme theme; member in struct:expo
719 * expo_apply_theme() - Apply a theme to an expo
722 * @node: Node containing the theme
/u-boot/boot/
H A Dexpo.c253 struct expo_theme *theme = &exp->theme; local
256 log_debug("Applying theme %s\n", ofnode_get_name(node));
258 memset(theme, '\0', sizeof(struct expo_theme));
259 ofnode_read_u32(node, "font-size", &theme->font_size);
260 ofnode_read_u32(node, "menu-inset", &theme->menu_inset);
261 ofnode_read_u32(node, "menuitem-gap-y", &theme->menuitem_gap_y);
264 ret = scene_apply_theme(scn, theme);
H A Dscene_menu.c121 const struct expo_theme *theme = &menu->obj.scene->expo->theme; local
131 theme->menu_inset, bbox);
138 theme->menu_inset, label_bbox);
145 label_bbox->y1 -= theme->menuitem_gap_y;
177 const struct expo_theme *theme = &exp->theme; local
230 x + theme->menu_inset, y);
266 y += height + theme->menuitem_gap_y;
H A Dscene_textline.c50 const struct expo_theme *theme = &tline->obj.scene->expo->theme; local
57 scene_bbox_union(tline->obj.scene, tline->edit_id, theme->menu_inset,
H A Dscene_internal.h117 * scene_apply_theme() - Apply a theme to a scene
120 * @theme: Theme to apply
123 int scene_apply_theme(struct scene *scn, struct expo_theme *theme);
H A Dscene.c338 const struct expo_theme *theme = &exp->theme; local
345 uint inset = theme->menu_inset;
381 const struct expo_theme *theme = &exp->theme; local
436 video_fill_part(dev, x - theme->menu_inset, y,
768 int scene_apply_theme(struct scene *scn, struct expo_theme *theme) argument
774 scene_txt_set_font(scn, scn->title_id, NULL, theme->font_size);
785 theme->font_size);
H A Dbootflow_menu.c142 log_debug("Applying theme %s\n", ofnode_get_name(node));
192 if (ofnode_valid(std->theme)) {
193 ret = bootflow_menu_apply_theme(exp, std->theme);
H A Dbootstd-uclass.c38 priv->theme = ofnode_find_subnode(dev_ofnode(dev), "theme");
/u-boot/scripts/kconfig/lxdialog/
H A Dutil.c147 * Select color theme
149 static int set_theme(const char *theme) argument
152 if (!theme)
154 else if (strcmp(theme, "classic") == 0)
156 else if (strcmp(theme, "bluetitle") == 0)
158 else if (strcmp(theme, "blackbg") == 0)
160 else if (strcmp(theme, "mono") == 0)
214 static void color_setup(const char *theme) argument
218 use_color = set_theme(theme);

Completed in 87 milliseconds