mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-11-18 15:44:02 +08:00
kconfig: handle comment entries within choice/endchoice
Implement support for comment entries within choice groups. Comment entries are displayed visually distinct from normal configs, and selecting them is a no-op. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk> Cc: Roman Zippel <zippel@linux-m68k.org> Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
This commit is contained in:
parent
3af968e066
commit
af6c159885
@ -41,7 +41,8 @@ static void print_item(WINDOW * win, int choice, int selected)
|
|||||||
wmove(win, choice, check_x);
|
wmove(win, choice, check_x);
|
||||||
wattrset(win, selected ? dlg.check_selected.atr
|
wattrset(win, selected ? dlg.check_selected.atr
|
||||||
: dlg.check.atr);
|
: dlg.check.atr);
|
||||||
wprintw(win, "(%c)", item_is_tag('X') ? 'X' : ' ');
|
if (!item_is_tag(':'))
|
||||||
|
wprintw(win, "(%c)", item_is_tag('X') ? 'X' : ' ');
|
||||||
|
|
||||||
wattrset(win, selected ? dlg.tag_selected.atr : dlg.tag.atr);
|
wattrset(win, selected ? dlg.tag_selected.atr : dlg.tag.atr);
|
||||||
mvwaddch(win, choice, item_x, item_str()[0]);
|
mvwaddch(win, choice, item_x, item_str()[0]);
|
||||||
|
@ -732,7 +732,12 @@ static void conf_choice(struct menu *menu)
|
|||||||
for (child = menu->list; child; child = child->next) {
|
for (child = menu->list; child; child = child->next) {
|
||||||
if (!menu_is_visible(child))
|
if (!menu_is_visible(child))
|
||||||
continue;
|
continue;
|
||||||
item_make("%s", _(menu_get_prompt(child)));
|
if (child->sym)
|
||||||
|
item_make("%s", _(menu_get_prompt(child)));
|
||||||
|
else {
|
||||||
|
item_make("*** %s ***", _(menu_get_prompt(child)));
|
||||||
|
item_set_tag(':');
|
||||||
|
}
|
||||||
item_set_data(child);
|
item_set_data(child);
|
||||||
if (child->sym == active)
|
if (child->sym == active)
|
||||||
item_set_selected(1);
|
item_set_selected(1);
|
||||||
@ -748,6 +753,9 @@ static void conf_choice(struct menu *menu)
|
|||||||
case 0:
|
case 0:
|
||||||
if (selected) {
|
if (selected) {
|
||||||
child = item_data();
|
child = item_data();
|
||||||
|
if (!child->sym)
|
||||||
|
break;
|
||||||
|
|
||||||
sym_set_tristate_value(child->sym, yes);
|
sym_set_tristate_value(child->sym, yes);
|
||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
|
Loading…
Reference in New Issue
Block a user