blob: 461ee08edc05df95ea8155a3a1878846dfe27a14 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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/*
23 * Changes by Clifford Wolf (god@clifford.at)
24 *
25 * [ 1998-06-13 ]
26 *
27 * *) A bugfix for the Page-Down problem
28 *
29 * *) Formerly when I used Page Down and Page Up, the cursor would be set
30 * to the first position in the menu box. Now lxdialog is a bit
31 * smarter and works more like other menu systems (just have a look at
32 * it).
33 *
34 * *) Formerly if I selected something my scrolling would be broken because
35 * lxdialog is re-invoked by the Menuconfig shell script, can't
36 * remember the last scrolling position, and just sets it so that the
37 * cursor is at the bottom of the box. Now it writes the temporary file
38 * lxdialog.scrltmp which contains this information. The file is
39 * deleted by lxdialog if the user leaves a submenu or enters a new
40 * one, but it would be nice if Menuconfig could make another "rm -f"
41 * just to be sure. Just try it out - you will recognise a difference!
42 *
43 * [ 1998-06-14 ]
44 *
45 * *) Now lxdialog is crash-safe against broken "lxdialog.scrltmp" files
46 * and menus change their size on the fly.
47 *
48 * *) If for some reason the last scrolling position is not saved by
49 * lxdialog, it sets the scrolling so that the selected item is in the
50 * middle of the menu box, not at the bottom.
51 *
52 * 02 January 1999, Michael Elizabeth Chastain (mec@shout.net)
53 * Reset 'scroll' to 0 if the value from lxdialog.scrltmp is bogus.
54 * This fixes a bug in Menuconfig where using ' ' to descend into menus
55 * would leave mis-synchronized lxdialog.scrltmp files lying around,
56 * fscanf would read in 'scroll', and eventually that value would get used.
57 */
58
59#include "dialog.h"
60
Sam Ravnborg0e175d02005-11-20 22:41:21 +010061#define ITEM_IDENT 4 /* Indent of menu entries. Fixed for all menus */
62static int menu_width;
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
64/*
65 * Print menu item
66 */
Sam Ravnborgdec69da2005-11-19 21:56:20 +010067static void print_item(WINDOW * win, const char *item, int choice,
68 int selected, int hotkey)
Linus Torvalds1da177e2005-04-16 15:20:36 -070069{
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +010070 int j;
Sam Ravnborga06104a2005-11-19 22:17:55 +010071 char *menu_item = malloc(menu_width + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +010073 strncpy(menu_item, item, menu_width);
74 menu_item[menu_width] = 0;
75 j = first_alpha(menu_item, "YyNnMmHh");
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +010077 /* Clear 'residue' of last item */
78 wattrset(win, menubox_attr);
79 wmove(win, choice, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070080#if OLD_NCURSES
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +010081 {
82 int i;
83 for (i = 0; i < menu_width; i++)
84 waddch(win, ' ');
85 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070086#else
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +010087 wclrtoeol(win);
Linus Torvalds1da177e2005-04-16 15:20:36 -070088#endif
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +010089 wattrset(win, selected ? item_selected_attr : item_attr);
Sam Ravnborg0e175d02005-11-20 22:41:21 +010090 mvwaddstr(win, choice, ITEM_IDENT, menu_item);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +010091 if (hotkey) {
92 wattrset(win, selected ? tag_key_selected_attr : tag_key_attr);
Sam Ravnborg0e175d02005-11-20 22:41:21 +010093 mvwaddch(win, choice, ITEM_IDENT + j, menu_item[j]);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +010094 }
95 if (selected) {
Sam Ravnborg0e175d02005-11-20 22:41:21 +010096 wmove(win, choice, ITEM_IDENT + 1);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +010097 }
Sam Ravnborga06104a2005-11-19 22:17:55 +010098 free(menu_item);
Sam Ravnborg7c3badf2005-11-20 23:03:49 +010099 wrefresh(win);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100}
101
102/*
103 * Print the scroll indicators.
104 */
Sam Ravnborgdec69da2005-11-19 21:56:20 +0100105static void print_arrows(WINDOW * win, int item_no, int scroll, int y, int x,
106 int height)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107{
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100108 int cur_y, cur_x;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100110 getyx(win, cur_y, cur_x);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100112 wmove(win, y, x);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100114 if (scroll > 0) {
115 wattrset(win, uarrow_attr);
116 waddch(win, ACS_UARROW);
117 waddstr(win, "(-)");
118 } else {
119 wattrset(win, menubox_attr);
120 waddch(win, ACS_HLINE);
121 waddch(win, ACS_HLINE);
122 waddch(win, ACS_HLINE);
123 waddch(win, ACS_HLINE);
124 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100126 y = y + height + 1;
127 wmove(win, y, x);
Sam Ravnborg7c3badf2005-11-20 23:03:49 +0100128 wrefresh(win);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100130 if ((height < item_no) && (scroll + height < item_no)) {
131 wattrset(win, darrow_attr);
132 waddch(win, ACS_DARROW);
133 waddstr(win, "(+)");
134 } else {
135 wattrset(win, menubox_border_attr);
136 waddch(win, ACS_HLINE);
137 waddch(win, ACS_HLINE);
138 waddch(win, ACS_HLINE);
139 waddch(win, ACS_HLINE);
140 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100142 wmove(win, cur_y, cur_x);
Sam Ravnborg7c3badf2005-11-20 23:03:49 +0100143 wrefresh(win);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144}
145
146/*
147 * Display the termination buttons.
148 */
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100149static void print_buttons(WINDOW * win, int height, int width, int selected)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150{
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100151 int x = width / 2 - 16;
152 int y = height - 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100154 print_button(win, "Select", y, x, selected == 0);
155 print_button(win, " Exit ", y, x + 12, selected == 1);
156 print_button(win, " Help ", y, x + 24, selected == 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100158 wmove(win, y, x + 1 + 12 * selected);
159 wrefresh(win);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160}
161
Sam Ravnborg7c3badf2005-11-20 23:03:49 +0100162/* scroll up n lines (n may be negative) */
163static void do_scroll(WINDOW *win, int *scroll, int n)
164{
165 /* Scroll menu up */
166 scrollok(win, TRUE);
167 wscrl(win, n);
168 scrollok(win, FALSE);
169 *scroll = *scroll + n;
170 wrefresh(win);
171}
172
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173/*
174 * Display a menu for choosing among a number of options
175 */
Sam Ravnborgdec69da2005-11-19 21:56:20 +0100176int dialog_menu(const char *title, const char *prompt, int height, int width,
177 int menu_height, const char *current, int item_no,
178 const char *const *items)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179{
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100180 int i, j, x, y, box_x, box_y;
181 int key = 0, button = 0, scroll = 0, choice = 0, first_item =
182 0, max_choice;
183 WINDOW *dialog, *menu;
184 FILE *f;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100186 max_choice = MIN(menu_height, item_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100188 /* center dialog box on screen */
189 x = (COLS - width) / 2;
190 y = (LINES - height) / 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100192 draw_shadow(stdscr, y, x, height, width);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100194 dialog = newwin(height, width, y, x);
195 keypad(dialog, TRUE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100197 draw_box(dialog, 0, 0, height, width, dialog_attr, border_attr);
198 wattrset(dialog, border_attr);
199 mvwaddch(dialog, height - 3, 0, ACS_LTEE);
200 for (i = 0; i < width - 2; i++)
201 waddch(dialog, ACS_HLINE);
202 wattrset(dialog, dialog_attr);
203 wbkgdset(dialog, dialog_attr & A_COLOR);
204 waddch(dialog, ACS_RTEE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
Sam Ravnborgfa7009d2005-11-19 23:38:06 +0100206 print_title(dialog, title, width);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100207
208 wattrset(dialog, dialog_attr);
209 print_autowrap(dialog, prompt, width - 2, 1, 3);
210
211 menu_width = width - 6;
212 box_y = height - menu_height - 5;
213 box_x = (width - menu_width) / 2 - 1;
214
215 /* create new window for the menu */
216 menu = subwin(dialog, menu_height, menu_width,
217 y + box_y + 1, x + box_x + 1);
218 keypad(menu, TRUE);
219
220 /* draw a box around the menu items */
221 draw_box(dialog, box_y, box_x, menu_height + 2, menu_width + 2,
222 menubox_border_attr, menubox_attr);
223
Sam Ravnborg0e175d02005-11-20 22:41:21 +0100224 /* Set choice to default item */
225 for (i = 0; i < item_no; i++)
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100226 if (strcmp(current, items[i * 2]) == 0)
227 choice = i;
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100228
229 /* get the scroll info from the temp file */
230 if ((f = fopen("lxdialog.scrltmp", "r")) != NULL) {
231 if ((fscanf(f, "%d\n", &scroll) == 1) && (scroll <= choice) &&
232 (scroll + max_choice > choice) && (scroll >= 0) &&
233 (scroll + max_choice <= item_no)) {
234 first_item = scroll;
235 choice = choice - scroll;
236 fclose(f);
237 } else {
238 scroll = 0;
239 remove("lxdialog.scrltmp");
240 fclose(f);
241 f = NULL;
242 }
243 }
244 if ((choice >= max_choice) || (f == NULL && choice >= max_choice / 2)) {
245 if (choice >= item_no - max_choice / 2)
246 scroll = first_item = item_no - max_choice;
247 else
248 scroll = first_item = choice - max_choice / 2;
249 choice = choice - scroll;
250 }
251
252 /* Print the menu */
253 for (i = 0; i < max_choice; i++) {
254 print_item(menu, items[(first_item + i) * 2 + 1], i,
255 i == choice,
256 (items[(first_item + i) * 2][0] != ':'));
257 }
258
259 wnoutrefresh(menu);
260
261 print_arrows(dialog, item_no, scroll,
Sam Ravnborg0e175d02005-11-20 22:41:21 +0100262 box_y, box_x + ITEM_IDENT + 1, menu_height);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100263
264 print_buttons(dialog, height, width, 0);
Sam Ravnborg0e175d02005-11-20 22:41:21 +0100265 wmove(menu, choice, ITEM_IDENT + 1);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100266 wrefresh(menu);
267
268 while (key != ESC) {
269 key = wgetch(menu);
270
271 if (key < 256 && isalpha(key))
272 key = tolower(key);
273
274 if (strchr("ynmh", key))
275 i = max_choice;
276 else {
277 for (i = choice + 1; i < max_choice; i++) {
Sam Ravnborgdec69da2005-11-19 21:56:20 +0100278 j = first_alpha(items[(scroll + i) * 2 + 1], "YyNnMmHh");
279 if (key == tolower(items[(scroll + i) * 2 + 1][j]))
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100280 break;
281 }
282 if (i == max_choice)
283 for (i = 0; i < max_choice; i++) {
Sam Ravnborgdec69da2005-11-19 21:56:20 +0100284 j = first_alpha(items [(scroll + i) * 2 + 1], "YyNnMmHh");
285 if (key == tolower(items[(scroll + i) * 2 + 1][j]))
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100286 break;
287 }
288 }
289
290 if (i < max_choice ||
291 key == KEY_UP || key == KEY_DOWN ||
292 key == '-' || key == '+' ||
293 key == KEY_PPAGE || key == KEY_NPAGE) {
Sam Ravnborg0e175d02005-11-20 22:41:21 +0100294 /* Remove highligt of current item */
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100295 print_item(menu, items[(scroll + choice) * 2 + 1],
296 choice, FALSE,
297 (items[(scroll + choice) * 2][0] != ':'));
298
299 if (key == KEY_UP || key == '-') {
300 if (choice < 2 && scroll) {
301 /* Scroll menu down */
Sam Ravnborg7c3badf2005-11-20 23:03:49 +0100302 do_scroll(menu, &scroll, -1);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100303
Sam Ravnborgdec69da2005-11-19 21:56:20 +0100304 print_item(menu, items[scroll * 2 + 1], 0, FALSE,
305 (items[scroll * 2][0] != ':'));
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100306 } else
307 choice = MAX(choice - 1, 0);
308
309 } else if (key == KEY_DOWN || key == '+') {
310
311 print_item(menu,
Sam Ravnborgdec69da2005-11-19 21:56:20 +0100312 items[(scroll + choice) * 2 + 1], choice, FALSE,
313 (items[(scroll + choice) * 2][0] != ':'));
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100314
315 if ((choice > max_choice - 3) &&
Sam Ravnborgdec69da2005-11-19 21:56:20 +0100316 (scroll + max_choice < item_no)) {
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100317 /* Scroll menu up */
Sam Ravnborg7c3badf2005-11-20 23:03:49 +0100318 do_scroll(menu, &scroll, 1);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100319
Sam Ravnborgdec69da2005-11-19 21:56:20 +0100320 print_item(menu, items[(scroll + max_choice - 1) * 2 + 1],
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100321 max_choice - 1, FALSE,
Sam Ravnborgdec69da2005-11-19 21:56:20 +0100322 (items [(scroll + max_choice - 1) * 2][0] != ':'));
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100323 } else
Sam Ravnborgdec69da2005-11-19 21:56:20 +0100324 choice = MIN(choice + 1, max_choice - 1);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100325
326 } else if (key == KEY_PPAGE) {
327 scrollok(menu, TRUE);
328 for (i = 0; (i < max_choice); i++) {
329 if (scroll > 0) {
Sam Ravnborg7c3badf2005-11-20 23:03:49 +0100330 do_scroll(menu, &scroll, -1);
Sam Ravnborgdec69da2005-11-19 21:56:20 +0100331 print_item(menu, items[scroll * 2 + 1], 0, FALSE,
332 (items[scroll * 2][0] != ':'));
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100333 } else {
334 if (choice > 0)
335 choice--;
336 }
337 }
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100338
339 } else if (key == KEY_NPAGE) {
340 for (i = 0; (i < max_choice); i++) {
341 if (scroll + max_choice < item_no) {
Sam Ravnborg7c3badf2005-11-20 23:03:49 +0100342 do_scroll(menu, &scroll, 1);
Sam Ravnborgdec69da2005-11-19 21:56:20 +0100343 print_item(menu, items[(scroll + max_choice - 1) * 2 + 1],
344 max_choice - 1, FALSE,
345 (items [(scroll + max_choice - 1) * 2][0] != ':'));
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100346 } else {
347 if (choice + 1 < max_choice)
348 choice++;
349 }
350 }
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100351 } else
352 choice = i;
353
354 print_item(menu, items[(scroll + choice) * 2 + 1],
Sam Ravnborgdec69da2005-11-19 21:56:20 +0100355 choice, TRUE, (items[(scroll + choice) * 2][0] != ':'));
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100356
357 print_arrows(dialog, item_no, scroll,
Sam Ravnborg0e175d02005-11-20 22:41:21 +0100358 box_y, box_x + ITEM_IDENT + 1, menu_height);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100359
360 wnoutrefresh(dialog);
361 wrefresh(menu);
362
363 continue; /* wait for another key press */
364 }
365
366 switch (key) {
367 case KEY_LEFT:
368 case TAB:
369 case KEY_RIGHT:
370 button = ((key == KEY_LEFT ? --button : ++button) < 0)
371 ? 2 : (button > 2 ? 0 : button);
372
373 print_buttons(dialog, height, width, button);
374 wrefresh(menu);
375 break;
376 case ' ':
377 case 's':
378 case 'y':
379 case 'n':
380 case 'm':
381 case '/':
382 /* save scroll info */
383 if ((f = fopen("lxdialog.scrltmp", "w")) != NULL) {
384 fprintf(f, "%d\n", scroll);
385 fclose(f);
386 }
387 delwin(dialog);
388 fprintf(stderr, "%s\n", items[(scroll + choice) * 2]);
389 switch (key) {
390 case 's':
391 return 3;
392 case 'y':
393 return 3;
394 case 'n':
395 return 4;
396 case 'm':
397 return 5;
398 case ' ':
399 return 6;
400 case '/':
401 return 7;
402 }
403 return 0;
404 case 'h':
405 case '?':
406 button = 2;
407 case '\n':
408 delwin(dialog);
409 if (button == 2)
410 fprintf(stderr, "%s \"%s\"\n",
411 items[(scroll + choice) * 2],
412 items[(scroll + choice) * 2 + 1] +
Sam Ravnborgdec69da2005-11-19 21:56:20 +0100413 first_alpha(items [(scroll + choice) * 2 + 1], ""));
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100414 else
415 fprintf(stderr, "%s\n",
416 items[(scroll + choice) * 2]);
417
418 remove("lxdialog.scrltmp");
419 return button;
420 case 'e':
421 case 'x':
422 key = ESC;
423 case ESC:
424 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 }
426 }
427
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100428 delwin(dialog);
429 remove("lxdialog.scrltmp");
430 return -1; /* ESC pressed */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431}