README.menu 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. /*
  2. * Copyright 2010-2011 Calxeda, Inc.
  3. *
  4. * This program is free software; you can redistribute it and/or modify it
  5. * under the terms of the GNU General Public License as published by the Free
  6. * Software Foundation; either version 2 of the License, or (at your option)
  7. * any later version.
  8. *
  9. * This program is distributed in the hope it will be useful, but WITHOUT
  10. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
  12. * more details.
  13. *
  14. * You should have received a copy of the GNU General Public License along with
  15. * this program. If not, see <http://www.gnu.org/licenses/>.
  16. */
  17. U-boot provides a set of interfaces for creating and using simple, text
  18. based menus. Menus are displayed as lists of labeled entries on the
  19. console, and an entry can be selected by entering its label.
  20. To use the menu code, enable CONFIG_MENU, and include "menu.h" where
  21. the interfaces should be available.
  22. Menus are composed of items. Each item has a key used to identify it in
  23. the menu, and an opaque pointer to data controlled by the consumer.
  24. If you want to show a menu, instead starting the shell, define
  25. CONFIG_MENU_SHOW. You have to code the int menu_show(int bootdelay)
  26. function, which handle your menu. This function returns the remaining
  27. bootdelay.
  28. Interfaces
  29. ----------
  30. #include "menu.h"
  31. /*
  32. * Consumers of the menu interfaces will use a struct menu * as the
  33. * handle for a menu. struct menu is only fully defined in menu.c,
  34. * preventing consumers of the menu interfaces from accessing its
  35. * contents directly.
  36. */
  37. struct menu;
  38. /*
  39. * NOTE: See comments in common/menu.c for more detailed documentation on
  40. * these interfaces.
  41. */
  42. /*
  43. * menu_create() - Creates a menu handle with default settings
  44. */
  45. struct menu *menu_create(char *title, int timeout, int prompt,
  46. void (*item_data_print)(void *),
  47. char *(*item_choice)(void *),
  48. void *item_choice_data);
  49. /*
  50. * menu_item_add() - Adds or replaces a menu item
  51. */
  52. int menu_item_add(struct menu *m, char *item_key, void *item_data);
  53. /*
  54. * menu_default_set() - Sets the default choice for the menu
  55. */
  56. int menu_default_set(struct menu *m, char *item_key);
  57. /*
  58. * menu_default_choice() - Set *choice to point to the default item's data
  59. */
  60. int menu_default_choice(struct menu *m, void **choice);
  61. /*
  62. * menu_get_choice() - Returns the user's selected menu entry, or the
  63. * default if the menu is set to not prompt or the timeout expires.
  64. */
  65. int menu_get_choice(struct menu *m, void **choice);
  66. /*
  67. * menu_destroy() - frees the memory used by a menu and its items.
  68. */
  69. int menu_destroy(struct menu *m);
  70. /*
  71. * menu_display_statusline(struct menu *m);
  72. * shows a statusline for every menu_display call.
  73. */
  74. void menu_display_statusline(struct menu *m);
  75. Example Code
  76. ------------
  77. This example creates a menu that always prompts, and allows the user
  78. to pick from a list of tools. The item key and data are the same.
  79. #include "menu.h"
  80. char *tools[] = {
  81. "Hammer",
  82. "Screwdriver",
  83. "Nail gun",
  84. NULL
  85. };
  86. char *pick_a_tool(void)
  87. {
  88. struct menu *m;
  89. int i;
  90. char *tool = NULL;
  91. m = menu_create("Tools", 0, 1, NULL);
  92. for(i = 0; tools[i]; i++) {
  93. if (menu_item_add(m, tools[i], tools[i]) != 1) {
  94. printf("failed to add item!");
  95. menu_destroy(m);
  96. return NULL;
  97. }
  98. }
  99. if (menu_get_choice(m, (void **)&tool) != 1)
  100. printf("Problem picking tool!\n");
  101. menu_destroy(m);
  102. return tool;
  103. }
  104. void caller(void)
  105. {
  106. char *tool = pick_a_tool();
  107. if (tool) {
  108. printf("picked a tool: %s\n", tool);
  109. use_tool(tool);
  110. }
  111. }