blob: ff991db827bd26f81ac5382914244cefbc870069 [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
Roman Zippel94f25052006-04-09 17:27:14 +020061static int menu_width, item_x;
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
63/*
64 * Print menu item
65 */
Sam Ravnborg59d3cf72005-11-20 23:34:35 +010066static void do_print_item(WINDOW * win, const char *item, int choice,
67 int selected, int hotkey)
Linus Torvalds1da177e2005-04-16 15:20:36 -070068{
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +010069 int j;
Sam Ravnborga06104a2005-11-19 22:17:55 +010070 char *menu_item = malloc(menu_width + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
Roman Zippel94f25052006-04-09 17:27:14 +020072 strncpy(menu_item, item, menu_width - item_x);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +010073 menu_item[menu_width] = 0;
74 j = first_alpha(menu_item, "YyNnMmHh");
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +010076 /* Clear 'residue' of last item */
Sam Ravnborg98e5a152006-07-24 21:40:46 +020077 wattrset(win, dlg.menubox.atr);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +010078 wmove(win, choice, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079#if OLD_NCURSES
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +010080 {
81 int i;
82 for (i = 0; i < menu_width; i++)
83 waddch(win, ' ');
84 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070085#else
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +010086 wclrtoeol(win);
Linus Torvalds1da177e2005-04-16 15:20:36 -070087#endif
Sam Ravnborg98e5a152006-07-24 21:40:46 +020088 wattrset(win, selected ? dlg.item_selected.atr : dlg.item.atr);
Roman Zippel94f25052006-04-09 17:27:14 +020089 mvwaddstr(win, choice, item_x, menu_item);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +010090 if (hotkey) {
Sam Ravnborg98e5a152006-07-24 21:40:46 +020091 wattrset(win, selected ? dlg.tag_key_selected.atr
92 : dlg.tag_key.atr);
Roman Zippel94f25052006-04-09 17:27:14 +020093 mvwaddch(win, choice, item_x + j, menu_item[j]);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +010094 }
95 if (selected) {
Roman Zippel94f25052006-04-09 17:27:14 +020096 wmove(win, choice, item_x + 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
Sam Ravnborg59d3cf72005-11-20 23:34:35 +0100102#define print_item(index, choice, selected) \
103do {\
104 int hotkey = (items[(index) * 2][0] != ':'); \
105 do_print_item(menu, items[(index) * 2 + 1], choice, selected, hotkey); \
106} while (0)
107
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108/*
109 * Print the scroll indicators.
110 */
Sam Ravnborgdec69da2005-11-19 21:56:20 +0100111static void print_arrows(WINDOW * win, int item_no, int scroll, int y, int x,
112 int height)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113{
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100114 int cur_y, cur_x;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100116 getyx(win, cur_y, cur_x);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100118 wmove(win, y, x);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100120 if (scroll > 0) {
Sam Ravnborg98e5a152006-07-24 21:40:46 +0200121 wattrset(win, dlg.uarrow.atr);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100122 waddch(win, ACS_UARROW);
123 waddstr(win, "(-)");
124 } else {
Sam Ravnborg98e5a152006-07-24 21:40:46 +0200125 wattrset(win, dlg.menubox.atr);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100126 waddch(win, ACS_HLINE);
127 waddch(win, ACS_HLINE);
128 waddch(win, ACS_HLINE);
129 waddch(win, ACS_HLINE);
130 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100132 y = y + height + 1;
133 wmove(win, y, x);
Sam Ravnborg7c3badf2005-11-20 23:03:49 +0100134 wrefresh(win);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100136 if ((height < item_no) && (scroll + height < item_no)) {
Sam Ravnborg98e5a152006-07-24 21:40:46 +0200137 wattrset(win, dlg.darrow.atr);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100138 waddch(win, ACS_DARROW);
139 waddstr(win, "(+)");
140 } else {
Sam Ravnborg98e5a152006-07-24 21:40:46 +0200141 wattrset(win, dlg.menubox_border.atr);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100142 waddch(win, ACS_HLINE);
143 waddch(win, ACS_HLINE);
144 waddch(win, ACS_HLINE);
145 waddch(win, ACS_HLINE);
146 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100148 wmove(win, cur_y, cur_x);
Sam Ravnborg7c3badf2005-11-20 23:03:49 +0100149 wrefresh(win);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150}
151
152/*
153 * Display the termination buttons.
154 */
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100155static void print_buttons(WINDOW * win, int height, int width, int selected)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156{
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100157 int x = width / 2 - 16;
158 int y = height - 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100160 print_button(win, "Select", y, x, selected == 0);
161 print_button(win, " Exit ", y, x + 12, selected == 1);
162 print_button(win, " Help ", y, x + 24, selected == 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100164 wmove(win, y, x + 1 + 12 * selected);
165 wrefresh(win);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166}
167
Sam Ravnborg7c3badf2005-11-20 23:03:49 +0100168/* scroll up n lines (n may be negative) */
169static void do_scroll(WINDOW *win, int *scroll, int n)
170{
171 /* Scroll menu up */
172 scrollok(win, TRUE);
173 wscrl(win, n);
174 scrollok(win, FALSE);
175 *scroll = *scroll + n;
176 wrefresh(win);
177}
178
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179/*
180 * Display a menu for choosing among a number of options
181 */
Sam Ravnborgdec69da2005-11-19 21:56:20 +0100182int dialog_menu(const char *title, const char *prompt, int height, int width,
183 int menu_height, const char *current, int item_no,
184 const char *const *items)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185{
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100186 int i, j, x, y, box_x, box_y;
Sam Ravnborge067e1f2005-11-21 22:59:32 +0100187 int key = 0, button = 0, scroll = 0, choice = 0;
188 int first_item = 0, max_choice;
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100189 WINDOW *dialog, *menu;
190 FILE *f;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100192 max_choice = MIN(menu_height, item_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100194 /* center dialog box on screen */
195 x = (COLS - width) / 2;
196 y = (LINES - height) / 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100198 draw_shadow(stdscr, y, x, height, width);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100200 dialog = newwin(height, width, y, x);
201 keypad(dialog, TRUE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
Sam Ravnborg98e5a152006-07-24 21:40:46 +0200203 draw_box(dialog, 0, 0, height, width,
204 dlg.dialog.atr, dlg.border.atr);
205 wattrset(dialog, dlg.border.atr);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100206 mvwaddch(dialog, height - 3, 0, ACS_LTEE);
207 for (i = 0; i < width - 2; i++)
208 waddch(dialog, ACS_HLINE);
Sam Ravnborg98e5a152006-07-24 21:40:46 +0200209 wattrset(dialog, dlg.dialog.atr);
210 wbkgdset(dialog, dlg.dialog.atr & A_COLOR);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100211 waddch(dialog, ACS_RTEE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
Sam Ravnborgfa7009d2005-11-19 23:38:06 +0100213 print_title(dialog, title, width);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100214
Sam Ravnborg98e5a152006-07-24 21:40:46 +0200215 wattrset(dialog, dlg.dialog.atr);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100216 print_autowrap(dialog, prompt, width - 2, 1, 3);
217
218 menu_width = width - 6;
219 box_y = height - menu_height - 5;
220 box_x = (width - menu_width) / 2 - 1;
221
222 /* create new window for the menu */
223 menu = subwin(dialog, menu_height, menu_width,
224 y + box_y + 1, x + box_x + 1);
225 keypad(menu, TRUE);
226
227 /* draw a box around the menu items */
228 draw_box(dialog, box_y, box_x, menu_height + 2, menu_width + 2,
Sam Ravnborg98e5a152006-07-24 21:40:46 +0200229 dlg.menubox_border.atr, dlg.menubox.atr);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100230
Roman Zippel94f25052006-04-09 17:27:14 +0200231 item_x = (menu_width - 70) / 2;
232
Sam Ravnborg0e175d02005-11-20 22:41:21 +0100233 /* Set choice to default item */
234 for (i = 0; i < item_no; i++)
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100235 if (strcmp(current, items[i * 2]) == 0)
236 choice = i;
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100237
238 /* get the scroll info from the temp file */
239 if ((f = fopen("lxdialog.scrltmp", "r")) != NULL) {
240 if ((fscanf(f, "%d\n", &scroll) == 1) && (scroll <= choice) &&
241 (scroll + max_choice > choice) && (scroll >= 0) &&
242 (scroll + max_choice <= item_no)) {
243 first_item = scroll;
244 choice = choice - scroll;
245 fclose(f);
246 } else {
247 scroll = 0;
248 remove("lxdialog.scrltmp");
249 fclose(f);
250 f = NULL;
251 }
252 }
253 if ((choice >= max_choice) || (f == NULL && choice >= max_choice / 2)) {
254 if (choice >= item_no - max_choice / 2)
255 scroll = first_item = item_no - max_choice;
256 else
257 scroll = first_item = choice - max_choice / 2;
258 choice = choice - scroll;
259 }
260
261 /* Print the menu */
262 for (i = 0; i < max_choice; i++) {
Sam Ravnborg59d3cf72005-11-20 23:34:35 +0100263 print_item(first_item + i, i, i == choice);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100264 }
265
266 wnoutrefresh(menu);
267
268 print_arrows(dialog, item_no, scroll,
Roman Zippel94f25052006-04-09 17:27:14 +0200269 box_y, box_x + item_x + 1, menu_height);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100270
271 print_buttons(dialog, height, width, 0);
Roman Zippel94f25052006-04-09 17:27:14 +0200272 wmove(menu, choice, item_x + 1);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100273 wrefresh(menu);
274
275 while (key != ESC) {
276 key = wgetch(menu);
277
278 if (key < 256 && isalpha(key))
279 key = tolower(key);
280
281 if (strchr("ynmh", key))
282 i = max_choice;
283 else {
284 for (i = choice + 1; i < max_choice; i++) {
Sam Ravnborgdec69da2005-11-19 21:56:20 +0100285 j = first_alpha(items[(scroll + i) * 2 + 1], "YyNnMmHh");
286 if (key == tolower(items[(scroll + i) * 2 + 1][j]))
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100287 break;
288 }
289 if (i == max_choice)
290 for (i = 0; i < max_choice; i++) {
Sam Ravnborgdec69da2005-11-19 21:56:20 +0100291 j = first_alpha(items [(scroll + i) * 2 + 1], "YyNnMmHh");
292 if (key == tolower(items[(scroll + i) * 2 + 1][j]))
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100293 break;
294 }
295 }
296
297 if (i < max_choice ||
298 key == KEY_UP || key == KEY_DOWN ||
299 key == '-' || key == '+' ||
300 key == KEY_PPAGE || key == KEY_NPAGE) {
Sam Ravnborg0e175d02005-11-20 22:41:21 +0100301 /* Remove highligt of current item */
Sam Ravnborg59d3cf72005-11-20 23:34:35 +0100302 print_item(scroll + choice, choice, FALSE);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100303
304 if (key == KEY_UP || key == '-') {
305 if (choice < 2 && scroll) {
306 /* Scroll menu down */
Sam Ravnborg7c3badf2005-11-20 23:03:49 +0100307 do_scroll(menu, &scroll, -1);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100308
Sam Ravnborg59d3cf72005-11-20 23:34:35 +0100309 print_item(scroll, 0, FALSE);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100310 } else
311 choice = MAX(choice - 1, 0);
312
313 } else if (key == KEY_DOWN || key == '+') {
Sam Ravnborg59d3cf72005-11-20 23:34:35 +0100314 print_item(scroll+choice, choice, FALSE);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100315
316 if ((choice > max_choice - 3) &&
Sam Ravnborgdec69da2005-11-19 21:56:20 +0100317 (scroll + max_choice < item_no)) {
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100318 /* Scroll menu up */
Sam Ravnborg7c3badf2005-11-20 23:03:49 +0100319 do_scroll(menu, &scroll, 1);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100320
Sam Ravnborg59d3cf72005-11-20 23:34:35 +0100321 print_item(scroll+max_choice - 1,
322 max_choice - 1, FALSE);
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 Ravnborg59d3cf72005-11-20 23:34:35 +0100331 print_item(scroll, 0, FALSE);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100332 } else {
333 if (choice > 0)
334 choice--;
335 }
336 }
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100337
338 } else if (key == KEY_NPAGE) {
339 for (i = 0; (i < max_choice); i++) {
340 if (scroll + max_choice < item_no) {
Sam Ravnborg7c3badf2005-11-20 23:03:49 +0100341 do_scroll(menu, &scroll, 1);
Sam Ravnborg59d3cf72005-11-20 23:34:35 +0100342 print_item(scroll+max_choice-1,
343 max_choice - 1, FALSE);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100344 } else {
345 if (choice + 1 < max_choice)
346 choice++;
347 }
348 }
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100349 } else
350 choice = i;
351
Sam Ravnborg59d3cf72005-11-20 23:34:35 +0100352 print_item(scroll + choice, choice, TRUE);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100353
354 print_arrows(dialog, item_no, scroll,
Roman Zippel94f25052006-04-09 17:27:14 +0200355 box_y, box_x + item_x + 1, menu_height);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100356
357 wnoutrefresh(dialog);
358 wrefresh(menu);
359
360 continue; /* wait for another key press */
361 }
362
363 switch (key) {
364 case KEY_LEFT:
365 case TAB:
366 case KEY_RIGHT:
367 button = ((key == KEY_LEFT ? --button : ++button) < 0)
368 ? 2 : (button > 2 ? 0 : button);
369
370 print_buttons(dialog, height, width, button);
371 wrefresh(menu);
372 break;
373 case ' ':
374 case 's':
375 case 'y':
376 case 'n':
377 case 'm':
378 case '/':
379 /* save scroll info */
380 if ((f = fopen("lxdialog.scrltmp", "w")) != NULL) {
381 fprintf(f, "%d\n", scroll);
382 fclose(f);
383 }
384 delwin(dialog);
385 fprintf(stderr, "%s\n", items[(scroll + choice) * 2]);
386 switch (key) {
387 case 's':
388 return 3;
389 case 'y':
390 return 3;
391 case 'n':
392 return 4;
393 case 'm':
394 return 5;
395 case ' ':
396 return 6;
397 case '/':
398 return 7;
399 }
400 return 0;
401 case 'h':
402 case '?':
403 button = 2;
404 case '\n':
405 delwin(dialog);
406 if (button == 2)
407 fprintf(stderr, "%s \"%s\"\n",
408 items[(scroll + choice) * 2],
409 items[(scroll + choice) * 2 + 1] +
Sam Ravnborgdec69da2005-11-19 21:56:20 +0100410 first_alpha(items [(scroll + choice) * 2 + 1], ""));
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100411 else
412 fprintf(stderr, "%s\n",
413 items[(scroll + choice) * 2]);
414
415 remove("lxdialog.scrltmp");
416 return button;
417 case 'e':
418 case 'x':
419 key = ESC;
420 case ESC:
421 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 }
423 }
424
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100425 delwin(dialog);
426 remove("lxdialog.scrltmp");
427 return -1; /* ESC pressed */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428}