blob: 23a38e0fb902858ebcc022f0c5e19c1a98f46bfc [file] [log] [blame]
"Robert P. J. Day"63fc1a92006-07-02 19:47:05 +00001/* vi: set sw=4 ts=4: */
Eric Andersenbdfd0d72001-10-24 05:00:29 +00002/*
3 * menubox.c -- implements the menu box
4 *
5 * ORIGINAL AUTHOR: Savio Lam (lam836@cs.cuhk.hk)
6 * MODIFIED FOR LINUX KERNEL CONFIG BY: William Roadcap (roadcapw@cfw.com)
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version 2
11 * of the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 */
22
23/*
24 * Changes by Clifford Wolf (god@clifford.at)
25 *
26 * [ 1998-06-13 ]
27 *
28 * *) A bugfix for the Page-Down problem
29 *
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000030 * *) Formerly when I used Page Down and Page Up, the cursor would be set
Eric Andersenbdfd0d72001-10-24 05:00:29 +000031 * to the first position in the menu box. Now lxdialog is a bit
32 * smarter and works more like other menu systems (just have a look at
33 * it).
34 *
35 * *) Formerly if I selected something my scrolling would be broken because
36 * lxdialog is re-invoked by the Menuconfig shell script, can't
37 * remember the last scrolling position, and just sets it so that the
38 * cursor is at the bottom of the box. Now it writes the temporary file
39 * lxdialog.scrltmp which contains this information. The file is
40 * deleted by lxdialog if the user leaves a submenu or enters a new
41 * one, but it would be nice if Menuconfig could make another "rm -f"
42 * just to be sure. Just try it out - you will recognise a difference!
43 *
44 * [ 1998-06-14 ]
45 *
46 * *) Now lxdialog is crash-safe against broken "lxdialog.scrltmp" files
47 * and menus change their size on the fly.
48 *
49 * *) If for some reason the last scrolling position is not saved by
50 * lxdialog, it sets the scrolling so that the selected item is in the
51 * middle of the menu box, not at the bottom.
52 *
53 * 02 January 1999, Michael Elizabeth Chastain (mec@shout.net)
54 * Reset 'scroll' to 0 if the value from lxdialog.scrltmp is bogus.
55 * This fixes a bug in Menuconfig where using ' ' to descend into menus
56 * would leave mis-synchronized lxdialog.scrltmp files lying around,
57 * fscanf would read in 'scroll', and eventually that value would get used.
58 */
59
60#include "dialog.h"
61
62static int menu_width, item_x;
63
64/*
65 * Print menu item
66 */
67static void
68print_item (WINDOW * win, const char *item, int choice, int selected, int hotkey)
69{
70 int j;
71 char menu_item[menu_width+1];
72
73 strncpy(menu_item, item, menu_width);
74 menu_item[menu_width] = 0;
Peter Kjellerstedtbae38db2005-04-19 09:55:06 +000075 j = first_alpha(menu_item, "YyNnMmHh");
Eric Andersenbdfd0d72001-10-24 05:00:29 +000076
77 /* Clear 'residue' of last item */
78 wattrset (win, menubox_attr);
79 wmove (win, choice, 0);
80#if OLD_NCURSES
81 {
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000082 int i;
83 for (i = 0; i < menu_width; i++)
Eric Andersenbdfd0d72001-10-24 05:00:29 +000084 waddch (win, ' ');
85 }
86#else
87 wclrtoeol(win);
88#endif
89 wattrset (win, selected ? item_selected_attr : item_attr);
90 mvwaddstr (win, choice, item_x, menu_item);
91 if (hotkey) {
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000092 wattrset (win, selected ? tag_key_selected_attr : tag_key_attr);
93 mvwaddch(win, choice, item_x+j, menu_item[j]);
Eric Andersenbdfd0d72001-10-24 05:00:29 +000094 }
95 if (selected) {
96 wmove (win, choice, item_x+1);
Eric Andersene68afef2003-03-10 17:21:46 +000097 wrefresh (win);
Eric Andersenbdfd0d72001-10-24 05:00:29 +000098 }
99}
100
101/*
102 * Print the scroll indicators.
103 */
104static void
105print_arrows (WINDOW * win, int item_no, int scroll,
106 int y, int x, int height)
107{
108 int cur_y, cur_x;
109
110 getyx(win, cur_y, cur_x);
111
112 wmove(win, y, x);
113
114 if (scroll > 0) {
115 wattrset (win, uarrow_attr);
116 waddch (win, ACS_UARROW);
117 waddstr (win, "(-)");
118 }
119 else {
120 wattrset (win, menubox_attr);
121 waddch (win, ACS_HLINE);
122 waddch (win, ACS_HLINE);
123 waddch (win, ACS_HLINE);
124 waddch (win, ACS_HLINE);
125 }
126
127 y = y + height + 1;
128 wmove(win, y, x);
129
130 if ((height < item_no) && (scroll + height < item_no)) {
131 wattrset (win, darrow_attr);
132 waddch (win, ACS_DARROW);
133 waddstr (win, "(+)");
134 }
135 else {
136 wattrset (win, menubox_border_attr);
137 waddch (win, ACS_HLINE);
138 waddch (win, ACS_HLINE);
139 waddch (win, ACS_HLINE);
140 waddch (win, ACS_HLINE);
141 }
142
143 wmove(win, cur_y, cur_x);
144}
145
146/*
147 * Display the termination buttons.
148 */
149static void
150print_buttons (WINDOW *win, int height, int width, int selected)
151{
152 int x = width / 2 - 16;
153 int y = height - 2;
154
155 print_button (win, "Select", y, x, selected == 0);
156 print_button (win, " Exit ", y, x + 12, selected == 1);
157 print_button (win, " Help ", y, x + 24, selected == 2);
158
159 wmove(win, y, x+1+12*selected);
160 wrefresh (win);
161}
162
163/*
164 * Display a menu for choosing among a number of options
165 */
166int
167dialog_menu (const char *title, const char *prompt, int height, int width,
168 int menu_height, const char *current, int item_no,
Eric Andersenc9f20d92002-12-05 08:41:41 +0000169 struct dialog_list_item ** items)
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000170{
171 int i, j, x, y, box_x, box_y;
172 int key = 0, button = 0, scroll = 0, choice = 0, first_item = 0, max_choice;
173 WINDOW *dialog, *menu;
174 FILE *f;
175
176 max_choice = MIN (menu_height, item_no);
177
178 /* center dialog box on screen */
179 x = (COLS - width) / 2;
180 y = (LINES - height) / 2;
181
182 draw_shadow (stdscr, y, x, height, width);
183
184 dialog = newwin (height, width, y, x);
185 keypad (dialog, TRUE);
186
187 draw_box (dialog, 0, 0, height, width, dialog_attr, border_attr);
188 wattrset (dialog, border_attr);
189 mvwaddch (dialog, height - 3, 0, ACS_LTEE);
190 for (i = 0; i < width - 2; i++)
191 waddch (dialog, ACS_HLINE);
192 wattrset (dialog, dialog_attr);
193 wbkgdset (dialog, dialog_attr & A_COLOR);
194 waddch (dialog, ACS_RTEE);
195
196 if (title != NULL && strlen(title) >= width-2 ) {
197 /* truncate long title -- mec */
198 char * title2 = malloc(width-2+1);
199 memcpy( title2, title, width-2 );
200 title2[width-2] = '\0';
201 title = title2;
202 }
203
204 if (title != NULL) {
205 wattrset (dialog, title_attr);
206 mvwaddch (dialog, 0, (width - strlen(title))/2 - 1, ' ');
207 waddstr (dialog, (char *)title);
208 waddch (dialog, ' ');
209 }
210
211 wattrset (dialog, dialog_attr);
212 print_autowrap (dialog, prompt, width - 2, 1, 3);
213
214 menu_width = width - 6;
215 box_y = height - menu_height - 5;
216 box_x = (width - menu_width) / 2 - 1;
217
218 /* create new window for the menu */
219 menu = subwin (dialog, menu_height, menu_width,
220 y + box_y + 1, x + box_x + 1);
221 keypad (menu, TRUE);
222
223 /* draw a box around the menu items */
224 draw_box (dialog, box_y, box_x, menu_height + 2, menu_width + 2,
225 menubox_border_attr, menubox_attr);
226
227 /*
228 * Find length of longest item in order to center menu.
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000229 * Set 'choice' to default item.
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000230 */
231 item_x = 0;
232 for (i = 0; i < item_no; i++) {
Eric Andersenc9f20d92002-12-05 08:41:41 +0000233 item_x = MAX (item_x, MIN(menu_width, strlen (items[i]->name) + 2));
234 if (strcmp(current, items[i]->tag) == 0) choice = i;
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000235 }
236
237 item_x = (menu_width - item_x) / 2;
238
239 /* get the scroll info from the temp file */
240 if ( (f=fopen("lxdialog.scrltmp","r")) != NULL ) {
241 if ( (fscanf(f,"%d\n",&scroll) == 1) && (scroll <= choice) &&
242 (scroll+max_choice > choice) && (scroll >= 0) &&
243 (scroll+max_choice <= item_no) ) {
244 first_item = scroll;
245 choice = choice - scroll;
246 fclose(f);
247 } else {
248 scroll=0;
249 remove("lxdialog.scrltmp");
250 fclose(f);
251 f=NULL;
252 }
253 }
254 if ( (choice >= max_choice) || (f==NULL && choice >= max_choice/2) ) {
255 if (choice >= item_no-max_choice/2)
256 scroll = first_item = item_no-max_choice;
257 else
258 scroll = first_item = choice - max_choice/2;
259 choice = choice - scroll;
260 }
261
262 /* Print the menu */
263 for (i=0; i < max_choice; i++) {
Eric Andersenc9f20d92002-12-05 08:41:41 +0000264 print_item (menu, items[first_item + i]->name, i, i == choice,
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000265 (items[first_item + i]->tag[0] != ':'));
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000266 }
267
268 wnoutrefresh (menu);
269
270 print_arrows(dialog, item_no, scroll,
271 box_y, box_x+item_x+1, menu_height);
272
273 print_buttons (dialog, height, width, 0);
274 wmove (menu, choice, item_x+1);
275 wrefresh (menu);
276
277 while (key != ESC) {
278 key = wgetch(menu);
279
280 if (key < 256 && isalpha(key)) key = tolower(key);
281
Peter Kjellerstedtbae38db2005-04-19 09:55:06 +0000282 if (strchr("ynmh", key))
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000283 i = max_choice;
284 else {
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000285 for (i = choice+1; i < max_choice; i++) {
Peter Kjellerstedtbae38db2005-04-19 09:55:06 +0000286 j = first_alpha(items[scroll + i]->name, "YyNnMmHh");
Eric Andersenc9f20d92002-12-05 08:41:41 +0000287 if (key == tolower(items[scroll + i]->name[j]))
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000288 break;
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000289 }
290 if (i == max_choice)
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000291 for (i = 0; i < max_choice; i++) {
Peter Kjellerstedtbae38db2005-04-19 09:55:06 +0000292 j = first_alpha(items[scroll + i]->name, "YyNnMmHh");
Eric Andersenc9f20d92002-12-05 08:41:41 +0000293 if (key == tolower(items[scroll + i]->name[j]))
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000294 break;
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000295 }
296 }
297
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000298 if (i < max_choice ||
299 key == KEY_UP || key == KEY_DOWN ||
300 key == '-' || key == '+' ||
301 key == KEY_PPAGE || key == KEY_NPAGE) {
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000302
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000303 print_item (menu, items[scroll + choice]->name, choice, FALSE,
304 (items[scroll + choice]->tag[0] != ':'));
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000305
306 if (key == KEY_UP || key == '-') {
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000307 if (choice < 2 && scroll) {
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000308 /* Scroll menu down */
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000309 scrollok (menu, TRUE);
310 wscrl (menu, -1);
311 scrollok (menu, FALSE);
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000312
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000313 scroll--;
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000314
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000315 print_item (menu, items[scroll]->name, 0, FALSE,
316 (items[scroll]->tag[0] != ':'));
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000317 } else
318 choice = MAX(choice - 1, 0);
319
320 } else if (key == KEY_DOWN || key == '+') {
321
Eric Andersenc9f20d92002-12-05 08:41:41 +0000322 print_item (menu, items[scroll + choice]->name, choice, FALSE,
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000323 (items[scroll + choice]->tag[0] != ':'));
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000324
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000325 if ((choice > max_choice-3) &&
326 (scroll + max_choice < item_no)
327 ) {
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000328 /* Scroll menu up */
329 scrollok (menu, TRUE);
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000330 scroll (menu);
331 scrollok (menu, FALSE);
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000332
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000333 scroll++;
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000334
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000335 print_item (menu, items[scroll + max_choice - 1]->name,
336 max_choice-1, FALSE,
337 (items[scroll + max_choice - 1]->tag[0] != ':'));
338 } else
339 choice = MIN(choice+1, max_choice-1);
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000340
341 } else if (key == KEY_PPAGE) {
342 scrollok (menu, TRUE);
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000343 for (i=0; (i < max_choice); i++) {
344 if (scroll > 0) {
345 wscrl (menu, -1);
346 scroll--;
347 print_item (menu, items[scroll]->name, 0, FALSE,
348 (items[scroll]->tag[0] != ':'));
349 } else {
350 if (choice > 0)
351 choice--;
352 }
353 }
354 scrollok (menu, FALSE);
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000355
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000356 } else if (key == KEY_NPAGE) {
357 for (i=0; (i < max_choice); i++) {
358 if (scroll+max_choice < item_no) {
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000359 scrollok (menu, TRUE);
360 scroll(menu);
361 scrollok (menu, FALSE);
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000362 scroll++;
363 print_item (menu, items[scroll + max_choice - 1]->name,
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000364 max_choice-1, FALSE,
Eric Andersenc9f20d92002-12-05 08:41:41 +0000365 (items[scroll + max_choice - 1]->tag[0] != ':'));
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000366 } else {
367 if (choice+1 < max_choice)
368 choice++;
369 }
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000370 }
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000371
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000372 } else
373 choice = i;
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000374
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000375 print_item (menu, items[scroll + choice]->name, choice, TRUE,
376 (items[scroll + choice]->tag[0] != ':'));
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000377
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000378 print_arrows(dialog, item_no, scroll,
379 box_y, box_x+item_x+1, menu_height);
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000380
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000381 wnoutrefresh (dialog);
382 wrefresh (menu);
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000383
384 continue; /* wait for another key press */
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000385 }
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000386
387 switch (key) {
388 case KEY_LEFT:
389 case TAB:
390 case KEY_RIGHT:
391 button = ((key == KEY_LEFT ? --button : ++button) < 0)
392 ? 2 : (button > 2 ? 0 : button);
393
394 print_buttons(dialog, height, width, button);
395 wrefresh (menu);
396 break;
397 case ' ':
398 case 's':
399 case 'y':
400 case 'n':
401 case 'm':
Peter Kjellerstedtbae38db2005-04-19 09:55:06 +0000402 case '/':
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000403 /* save scroll info */
404 if ( (f=fopen("lxdialog.scrltmp","w")) != NULL ) {
405 fprintf(f,"%d\n",scroll);
406 fclose(f);
407 }
408 delwin (dialog);
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000409 items[scroll + choice]->selected = 1;
410 switch (key) {
411 case 's': return 3;
412 case 'y': return 3;
413 case 'n': return 4;
414 case 'm': return 5;
415 case ' ': return 6;
416 case '/': return 7;
417 }
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000418 return 0;
419 case 'h':
420 case '?':
421 button = 2;
422 case '\n':
423 delwin (dialog);
Eric Andersenc9f20d92002-12-05 08:41:41 +0000424 items[scroll + choice]->selected = 1;
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000425
426 remove("lxdialog.scrltmp");
427 return button;
428 case 'e':
429 case 'x':
430 key = ESC;
431 case ESC:
432 break;
433 }
434 }
435
436 delwin (dialog);
437 remove("lxdialog.scrltmp");
438 return -1; /* ESC pressed */
439}