menubox.c 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428
  1. /*
  2. * menubox.c -- implements the menu box
  3. *
  4. * ORIGINAL AUTHOR: Savio Lam (lam836@cs.cuhk.hk)
  5. * MODIFIED FOR LINUX KERNEL CONFIG BY: William Roadcap (roadcapw@cfw.com)
  6. *
  7. * This program is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU General Public License
  9. * as published by the Free Software Foundation; either version 2
  10. * of the License, or (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program; if not, write to the Free Software
  19. * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  20. */
  21. /*
  22. * Changes by Clifford Wolf (god@clifford.at)
  23. *
  24. * [ 1998-06-13 ]
  25. *
  26. * *) A bugfix for the Page-Down problem
  27. *
  28. * *) Formerly when I used Page Down and Page Up, the cursor would be set
  29. * to the first position in the menu box. Now lxdialog is a bit
  30. * smarter and works more like other menu systems (just have a look at
  31. * it).
  32. *
  33. * *) Formerly if I selected something my scrolling would be broken because
  34. * lxdialog is re-invoked by the Menuconfig shell script, can't
  35. * remember the last scrolling position, and just sets it so that the
  36. * cursor is at the bottom of the box. Now it writes the temporary file
  37. * lxdialog.scrltmp which contains this information. The file is
  38. * deleted by lxdialog if the user leaves a submenu or enters a new
  39. * one, but it would be nice if Menuconfig could make another "rm -f"
  40. * just to be sure. Just try it out - you will recognise a difference!
  41. *
  42. * [ 1998-06-14 ]
  43. *
  44. * *) Now lxdialog is crash-safe against broken "lxdialog.scrltmp" files
  45. * and menus change their size on the fly.
  46. *
  47. * *) If for some reason the last scrolling position is not saved by
  48. * lxdialog, it sets the scrolling so that the selected item is in the
  49. * middle of the menu box, not at the bottom.
  50. *
  51. * 02 January 1999, Michael Elizabeth Chastain (mec@shout.net)
  52. * Reset 'scroll' to 0 if the value from lxdialog.scrltmp is bogus.
  53. * This fixes a bug in Menuconfig where using ' ' to descend into menus
  54. * would leave mis-synchronized lxdialog.scrltmp files lying around,
  55. * fscanf would read in 'scroll', and eventually that value would get used.
  56. */
  57. #include "dialog.h"
  58. static int menu_width, item_x;
  59. /*
  60. * Print menu item
  61. */
  62. static void do_print_item(WINDOW * win, const char *item, int choice,
  63. int selected, int hotkey)
  64. {
  65. int j;
  66. char *menu_item = malloc(menu_width + 1);
  67. strncpy(menu_item, item, menu_width - item_x);
  68. menu_item[menu_width] = 0;
  69. j = first_alpha(menu_item, "YyNnMmHh");
  70. /* Clear 'residue' of last item */
  71. wattrset(win, dlg.menubox.atr);
  72. wmove(win, choice, 0);
  73. #if OLD_NCURSES
  74. {
  75. int i;
  76. for (i = 0; i < menu_width; i++)
  77. waddch(win, ' ');
  78. }
  79. #else
  80. wclrtoeol(win);
  81. #endif
  82. wattrset(win, selected ? dlg.item_selected.atr : dlg.item.atr);
  83. mvwaddstr(win, choice, item_x, menu_item);
  84. if (hotkey) {
  85. wattrset(win, selected ? dlg.tag_key_selected.atr
  86. : dlg.tag_key.atr);
  87. mvwaddch(win, choice, item_x + j, menu_item[j]);
  88. }
  89. if (selected) {
  90. wmove(win, choice, item_x + 1);
  91. }
  92. free(menu_item);
  93. wrefresh(win);
  94. }
  95. #define print_item(index, choice, selected) \
  96. do {\
  97. int hotkey = (items[(index) * 2][0] != ':'); \
  98. do_print_item(menu, items[(index) * 2 + 1], choice, selected, hotkey); \
  99. } while (0)
  100. /*
  101. * Print the scroll indicators.
  102. */
  103. static void print_arrows(WINDOW * win, int item_no, int scroll, int y, int x,
  104. int height)
  105. {
  106. int cur_y, cur_x;
  107. getyx(win, cur_y, cur_x);
  108. wmove(win, y, x);
  109. if (scroll > 0) {
  110. wattrset(win, dlg.uarrow.atr);
  111. waddch(win, ACS_UARROW);
  112. waddstr(win, "(-)");
  113. } else {
  114. wattrset(win, dlg.menubox.atr);
  115. waddch(win, ACS_HLINE);
  116. waddch(win, ACS_HLINE);
  117. waddch(win, ACS_HLINE);
  118. waddch(win, ACS_HLINE);
  119. }
  120. y = y + height + 1;
  121. wmove(win, y, x);
  122. wrefresh(win);
  123. if ((height < item_no) && (scroll + height < item_no)) {
  124. wattrset(win, dlg.darrow.atr);
  125. waddch(win, ACS_DARROW);
  126. waddstr(win, "(+)");
  127. } else {
  128. wattrset(win, dlg.menubox_border.atr);
  129. waddch(win, ACS_HLINE);
  130. waddch(win, ACS_HLINE);
  131. waddch(win, ACS_HLINE);
  132. waddch(win, ACS_HLINE);
  133. }
  134. wmove(win, cur_y, cur_x);
  135. wrefresh(win);
  136. }
  137. /*
  138. * Display the termination buttons.
  139. */
  140. static void print_buttons(WINDOW * win, int height, int width, int selected)
  141. {
  142. int x = width / 2 - 16;
  143. int y = height - 2;
  144. print_button(win, "Select", y, x, selected == 0);
  145. print_button(win, " Exit ", y, x + 12, selected == 1);
  146. print_button(win, " Help ", y, x + 24, selected == 2);
  147. wmove(win, y, x + 1 + 12 * selected);
  148. wrefresh(win);
  149. }
  150. /* scroll up n lines (n may be negative) */
  151. static void do_scroll(WINDOW *win, int *scroll, int n)
  152. {
  153. /* Scroll menu up */
  154. scrollok(win, TRUE);
  155. wscrl(win, n);
  156. scrollok(win, FALSE);
  157. *scroll = *scroll + n;
  158. wrefresh(win);
  159. }
  160. /*
  161. * Display a menu for choosing among a number of options
  162. */
  163. int dialog_menu(const char *title, const char *prompt, int height, int width,
  164. int menu_height, const char *current, int item_no,
  165. const char *const *items)
  166. {
  167. int i, j, x, y, box_x, box_y;
  168. int key = 0, button = 0, scroll = 0, choice = 0;
  169. int first_item = 0, max_choice;
  170. WINDOW *dialog, *menu;
  171. FILE *f;
  172. max_choice = MIN(menu_height, item_no);
  173. /* center dialog box on screen */
  174. x = (COLS - width) / 2;
  175. y = (LINES - height) / 2;
  176. draw_shadow(stdscr, y, x, height, width);
  177. dialog = newwin(height, width, y, x);
  178. keypad(dialog, TRUE);
  179. draw_box(dialog, 0, 0, height, width,
  180. dlg.dialog.atr, dlg.border.atr);
  181. wattrset(dialog, dlg.border.atr);
  182. mvwaddch(dialog, height - 3, 0, ACS_LTEE);
  183. for (i = 0; i < width - 2; i++)
  184. waddch(dialog, ACS_HLINE);
  185. wattrset(dialog, dlg.dialog.atr);
  186. wbkgdset(dialog, dlg.dialog.atr & A_COLOR);
  187. waddch(dialog, ACS_RTEE);
  188. print_title(dialog, title, width);
  189. wattrset(dialog, dlg.dialog.atr);
  190. print_autowrap(dialog, prompt, width - 2, 1, 3);
  191. menu_width = width - 6;
  192. box_y = height - menu_height - 5;
  193. box_x = (width - menu_width) / 2 - 1;
  194. /* create new window for the menu */
  195. menu = subwin(dialog, menu_height, menu_width,
  196. y + box_y + 1, x + box_x + 1);
  197. keypad(menu, TRUE);
  198. /* draw a box around the menu items */
  199. draw_box(dialog, box_y, box_x, menu_height + 2, menu_width + 2,
  200. dlg.menubox_border.atr, dlg.menubox.atr);
  201. item_x = (menu_width - 70) / 2;
  202. /* Set choice to default item */
  203. for (i = 0; i < item_no; i++)
  204. if (strcmp(current, items[i * 2]) == 0)
  205. choice = i;
  206. /* get the scroll info from the temp file */
  207. if ((f = fopen("lxdialog.scrltmp", "r")) != NULL) {
  208. if ((fscanf(f, "%d\n", &scroll) == 1) && (scroll <= choice) &&
  209. (scroll + max_choice > choice) && (scroll >= 0) &&
  210. (scroll + max_choice <= item_no)) {
  211. first_item = scroll;
  212. choice = choice - scroll;
  213. fclose(f);
  214. } else {
  215. scroll = 0;
  216. remove("lxdialog.scrltmp");
  217. fclose(f);
  218. f = NULL;
  219. }
  220. }
  221. if ((choice >= max_choice) || (f == NULL && choice >= max_choice / 2)) {
  222. if (choice >= item_no - max_choice / 2)
  223. scroll = first_item = item_no - max_choice;
  224. else
  225. scroll = first_item = choice - max_choice / 2;
  226. choice = choice - scroll;
  227. }
  228. /* Print the menu */
  229. for (i = 0; i < max_choice; i++) {
  230. print_item(first_item + i, i, i == choice);
  231. }
  232. wnoutrefresh(menu);
  233. print_arrows(dialog, item_no, scroll,
  234. box_y, box_x + item_x + 1, menu_height);
  235. print_buttons(dialog, height, width, 0);
  236. wmove(menu, choice, item_x + 1);
  237. wrefresh(menu);
  238. while (key != ESC) {
  239. key = wgetch(menu);
  240. if (key < 256 && isalpha(key))
  241. key = tolower(key);
  242. if (strchr("ynmh", key))
  243. i = max_choice;
  244. else {
  245. for (i = choice + 1; i < max_choice; i++) {
  246. j = first_alpha(items[(scroll + i) * 2 + 1], "YyNnMmHh");
  247. if (key == tolower(items[(scroll + i) * 2 + 1][j]))
  248. break;
  249. }
  250. if (i == max_choice)
  251. for (i = 0; i < max_choice; i++) {
  252. j = first_alpha(items [(scroll + i) * 2 + 1], "YyNnMmHh");
  253. if (key == tolower(items[(scroll + i) * 2 + 1][j]))
  254. break;
  255. }
  256. }
  257. if (i < max_choice ||
  258. key == KEY_UP || key == KEY_DOWN ||
  259. key == '-' || key == '+' ||
  260. key == KEY_PPAGE || key == KEY_NPAGE) {
  261. /* Remove highligt of current item */
  262. print_item(scroll + choice, choice, FALSE);
  263. if (key == KEY_UP || key == '-') {
  264. if (choice < 2 && scroll) {
  265. /* Scroll menu down */
  266. do_scroll(menu, &scroll, -1);
  267. print_item(scroll, 0, FALSE);
  268. } else
  269. choice = MAX(choice - 1, 0);
  270. } else if (key == KEY_DOWN || key == '+') {
  271. print_item(scroll+choice, choice, FALSE);
  272. if ((choice > max_choice - 3) &&
  273. (scroll + max_choice < item_no)) {
  274. /* Scroll menu up */
  275. do_scroll(menu, &scroll, 1);
  276. print_item(scroll+max_choice - 1,
  277. max_choice - 1, FALSE);
  278. } else
  279. choice = MIN(choice + 1, max_choice - 1);
  280. } else if (key == KEY_PPAGE) {
  281. scrollok(menu, TRUE);
  282. for (i = 0; (i < max_choice); i++) {
  283. if (scroll > 0) {
  284. do_scroll(menu, &scroll, -1);
  285. print_item(scroll, 0, FALSE);
  286. } else {
  287. if (choice > 0)
  288. choice--;
  289. }
  290. }
  291. } else if (key == KEY_NPAGE) {
  292. for (i = 0; (i < max_choice); i++) {
  293. if (scroll + max_choice < item_no) {
  294. do_scroll(menu, &scroll, 1);
  295. print_item(scroll+max_choice-1,
  296. max_choice - 1, FALSE);
  297. } else {
  298. if (choice + 1 < max_choice)
  299. choice++;
  300. }
  301. }
  302. } else
  303. choice = i;
  304. print_item(scroll + choice, choice, TRUE);
  305. print_arrows(dialog, item_no, scroll,
  306. box_y, box_x + item_x + 1, menu_height);
  307. wnoutrefresh(dialog);
  308. wrefresh(menu);
  309. continue; /* wait for another key press */
  310. }
  311. switch (key) {
  312. case KEY_LEFT:
  313. case TAB:
  314. case KEY_RIGHT:
  315. button = ((key == KEY_LEFT ? --button : ++button) < 0)
  316. ? 2 : (button > 2 ? 0 : button);
  317. print_buttons(dialog, height, width, button);
  318. wrefresh(menu);
  319. break;
  320. case ' ':
  321. case 's':
  322. case 'y':
  323. case 'n':
  324. case 'm':
  325. case '/':
  326. /* save scroll info */
  327. if ((f = fopen("lxdialog.scrltmp", "w")) != NULL) {
  328. fprintf(f, "%d\n", scroll);
  329. fclose(f);
  330. }
  331. delwin(dialog);
  332. fprintf(stderr, "%s\n", items[(scroll + choice) * 2]);
  333. switch (key) {
  334. case 's':
  335. return 3;
  336. case 'y':
  337. return 3;
  338. case 'n':
  339. return 4;
  340. case 'm':
  341. return 5;
  342. case ' ':
  343. return 6;
  344. case '/':
  345. return 7;
  346. }
  347. return 0;
  348. case 'h':
  349. case '?':
  350. button = 2;
  351. case '\n':
  352. delwin(dialog);
  353. if (button == 2)
  354. fprintf(stderr, "%s \"%s\"\n",
  355. items[(scroll + choice) * 2],
  356. items[(scroll + choice) * 2 + 1] +
  357. first_alpha(items [(scroll + choice) * 2 + 1], ""));
  358. else
  359. fprintf(stderr, "%s\n",
  360. items[(scroll + choice) * 2]);
  361. remove("lxdialog.scrltmp");
  362. return button;
  363. case 'e':
  364. case 'x':
  365. key = ESC;
  366. case ESC:
  367. break;
  368. }
  369. }
  370. delwin(dialog);
  371. remove("lxdialog.scrltmp");
  372. return -1; /* ESC pressed */
  373. }