• Home
  • Raw
  • Download

Lines Matching refs:menu

19 static void conf(struct menu *menu);
20 static void check_conf(struct menu *menu);
43 static struct menu *rootEntry;
45 static void print_help(struct menu *menu) in print_help() argument
49 menu_get_ext_help(menu, &help); in print_help()
129 static int conf_string(struct menu *menu) in conf_string() argument
131 struct symbol *sym = menu->sym; in conf_string()
135 printf("%*s%s ", indent - 1, "", _(menu->prompt->text)); in conf_string()
148 print_help(menu); in conf_string()
162 static int conf_sym(struct menu *menu) in conf_sym() argument
164 struct symbol *sym = menu->sym; in conf_sym()
168 printf("%*s%s ", indent - 1, "", _(menu->prompt->text)); in conf_sym()
190 if (menu_has_help(menu)) in conf_sym()
227 print_help(menu); in conf_sym()
231 static int conf_choice(struct menu *menu) in conf_choice() argument
234 struct menu *child; in conf_choice()
237 sym = menu->sym; in conf_choice()
240 conf_sym(menu); in conf_choice()
255 printf("%*s%s\n", indent - 1, "", _(menu_get_prompt(menu))); in conf_choice()
265 printf("%*s%s\n", indent - 1, "", _(menu_get_prompt(menu))); in conf_choice()
269 for (child = menu->list; child; child = child->next) { in conf_choice()
295 if (menu_has_help(menu)) in conf_choice()
313 print_help(menu); in conf_choice()
328 for (child = menu->list; child; child = child->next) { in conf_choice()
350 static void conf(struct menu *menu) in conf() argument
354 struct menu *child; in conf()
356 if (!menu_is_visible(menu)) in conf()
359 sym = menu->sym; in conf()
360 prop = menu->prompt; in conf()
369 rootEntry != menu) { in conf()
370 check_conf(menu); in conf()
375 prompt = menu_get_prompt(menu); in conf()
390 conf_choice(menu); in conf()
400 conf_string(menu); in conf()
403 conf_sym(menu); in conf()
410 for (child = menu->list; child; child = child->next) in conf()
416 static void check_conf(struct menu *menu) in check_conf() argument
419 struct menu *child; in check_conf()
421 if (!menu_is_visible(menu)) in check_conf()
424 sym = menu->sym; in check_conf()
435 rootEntry = menu_get_parent_menu(menu); in check_conf()
441 for (child = menu->list; child; child = child->next) in check_conf()