kconfig: Fix indention when using menuconfig in text-onle consoles
[firefly-linux-kernel-4.4.55.git] / scripts / lxdialog / menubox.c
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 /*
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
61 #define ITEM_IDENT 4   /* Indent of menu entries. Fixed for all menus */
62 static int menu_width;
63
64 /*
65  * Print menu item
66  */
67 static void print_item(WINDOW * win, const char *item, int choice,
68                        int selected, int hotkey)
69 {
70         int j;
71         char *menu_item = malloc(menu_width + 1);
72
73         strncpy(menu_item, item, menu_width);
74         menu_item[menu_width] = 0;
75         j = first_alpha(menu_item, "YyNnMmHh");
76
77         /* Clear 'residue' of last item */
78         wattrset(win, menubox_attr);
79         wmove(win, choice, 0);
80 #if OLD_NCURSES
81         {
82                 int i;
83                 for (i = 0; i < menu_width; i++)
84                         waddch(win, ' ');
85         }
86 #else
87         wclrtoeol(win);
88 #endif
89         wattrset(win, selected ? item_selected_attr : item_attr);
90         mvwaddstr(win, choice, ITEM_IDENT, menu_item);
91         if (hotkey) {
92                 wattrset(win, selected ? tag_key_selected_attr : tag_key_attr);
93                 mvwaddch(win, choice, ITEM_IDENT + j, menu_item[j]);
94         }
95         if (selected) {
96                 wmove(win, choice, ITEM_IDENT + 1);
97         }
98         free(menu_item);
99         wrefresh(win);
100 }
101
102 /*
103  * Print the scroll indicators.
104  */
105 static void print_arrows(WINDOW * win, int item_no, int scroll, int y, int x,
106                          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         } 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         }
125
126         y = y + height + 1;
127         wmove(win, y, x);
128         wrefresh(win);
129
130         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         }
141
142         wmove(win, cur_y, cur_x);
143         wrefresh(win);
144 }
145
146 /*
147  * Display the termination buttons.
148  */
149 static void print_buttons(WINDOW * win, int height, int width, int selected)
150 {
151         int x = width / 2 - 16;
152         int y = height - 2;
153
154         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);
157
158         wmove(win, y, x + 1 + 12 * selected);
159         wrefresh(win);
160 }
161
162 /* scroll up n lines (n may be negative) */
163 static 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
173 /*
174  * Display a menu for choosing among a number of options
175  */
176 int 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)
179 {
180         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;
185
186         max_choice = MIN(menu_height, item_no);
187
188         /* center dialog box on screen */
189         x = (COLS - width) / 2;
190         y = (LINES - height) / 2;
191
192         draw_shadow(stdscr, y, x, height, width);
193
194         dialog = newwin(height, width, y, x);
195         keypad(dialog, TRUE);
196
197         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);
205
206         print_title(dialog, title, width);
207
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
224         /* Set choice to default item */
225         for (i = 0; i < item_no; i++)
226                 if (strcmp(current, items[i * 2]) == 0)
227                         choice = i;
228
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,
262                      box_y, box_x + ITEM_IDENT + 1, menu_height);
263
264         print_buttons(dialog, height, width, 0);
265         wmove(menu, choice, ITEM_IDENT + 1);
266         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++) {
278                                 j = first_alpha(items[(scroll + i) * 2 + 1], "YyNnMmHh");
279                                 if (key == tolower(items[(scroll + i) * 2 + 1][j]))
280                                         break;
281                         }
282                         if (i == max_choice)
283                                 for (i = 0; i < max_choice; i++) {
284                                         j = first_alpha(items [(scroll + i) * 2 + 1], "YyNnMmHh");
285                                         if (key == tolower(items[(scroll + i) * 2 + 1][j]))
286                                                 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) {
294                         /* Remove highligt of current item */
295                         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 */
302                                         do_scroll(menu, &scroll, -1);
303
304                                         print_item(menu, items[scroll * 2 + 1], 0, FALSE,
305                                                    (items[scroll * 2][0] != ':'));
306                                 } else
307                                         choice = MAX(choice - 1, 0);
308
309                         } else if (key == KEY_DOWN || key == '+') {
310
311                                 print_item(menu,
312                                            items[(scroll + choice) * 2 + 1], choice, FALSE,
313                                            (items[(scroll + choice) * 2][0] != ':'));
314
315                                 if ((choice > max_choice - 3) &&
316                                     (scroll + max_choice < item_no)) {
317                                         /* Scroll menu up */
318                                         do_scroll(menu, &scroll, 1);
319
320                                         print_item(menu, items[(scroll + max_choice - 1) * 2 + 1],
321                                                    max_choice - 1, FALSE,
322                                                    (items [(scroll + max_choice - 1) * 2][0] != ':'));
323                                 } else
324                                         choice = MIN(choice + 1, max_choice - 1);
325
326                         } else if (key == KEY_PPAGE) {
327                                 scrollok(menu, TRUE);
328                                 for (i = 0; (i < max_choice); i++) {
329                                         if (scroll > 0) {
330                                                 do_scroll(menu, &scroll, -1);
331                                                 print_item(menu, items[scroll * 2 + 1], 0, FALSE,
332                                                            (items[scroll * 2][0] != ':'));
333                                         } else {
334                                                 if (choice > 0)
335                                                         choice--;
336                                         }
337                                 }
338
339                         } else if (key == KEY_NPAGE) {
340                                 for (i = 0; (i < max_choice); i++) {
341                                         if (scroll + max_choice < item_no) {
342                                                 do_scroll(menu, &scroll, 1);
343                                                 print_item(menu, items[(scroll + max_choice - 1) * 2 + 1],
344                                                            max_choice - 1, FALSE,
345                                                            (items [(scroll + max_choice - 1) * 2][0] != ':'));
346                                         } else {
347                                                 if (choice + 1 < max_choice)
348                                                         choice++;
349                                         }
350                                 }
351                         } else
352                                 choice = i;
353
354                         print_item(menu, items[(scroll + choice) * 2 + 1],
355                                    choice, TRUE, (items[(scroll + choice) * 2][0] != ':'));
356
357                         print_arrows(dialog, item_no, scroll,
358                                      box_y, box_x + ITEM_IDENT + 1, menu_height);
359
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] +
413                                         first_alpha(items [(scroll + choice) * 2 + 1], ""));
414                         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;
425                 }
426         }
427
428         delwin(dialog);
429         remove("lxdialog.scrltmp");
430         return -1;              /* ESC pressed */
431 }