kconfig: Lindent scripts/lxdialog
[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 static int menu_width, item_x;
62
63 /*
64  * Print menu item
65  */
66 static void
67 print_item(WINDOW * win, const char *item, int choice, int selected, int hotkey)
68 {
69         int j;
70         char menu_item[menu_width + 1];
71
72         strncpy(menu_item, item, menu_width);
73         menu_item[menu_width] = 0;
74         j = first_alpha(menu_item, "YyNnMmHh");
75
76         /* Clear 'residue' of last item */
77         wattrset(win, menubox_attr);
78         wmove(win, choice, 0);
79 #if OLD_NCURSES
80         {
81                 int i;
82                 for (i = 0; i < menu_width; i++)
83                         waddch(win, ' ');
84         }
85 #else
86         wclrtoeol(win);
87 #endif
88         wattrset(win, selected ? item_selected_attr : item_attr);
89         mvwaddstr(win, choice, item_x, menu_item);
90         if (hotkey) {
91                 wattrset(win, selected ? tag_key_selected_attr : tag_key_attr);
92                 mvwaddch(win, choice, item_x + j, menu_item[j]);
93         }
94         if (selected) {
95                 wmove(win, choice, item_x + 1);
96                 wrefresh(win);
97         }
98 }
99
100 /*
101  * Print the scroll indicators.
102  */
103 static void
104 print_arrows(WINDOW * win, int item_no, int scroll, int y, int x, int height)
105 {
106         int cur_y, cur_x;
107
108         getyx(win, cur_y, cur_x);
109
110         wmove(win, y, x);
111
112         if (scroll > 0) {
113                 wattrset(win, uarrow_attr);
114                 waddch(win, ACS_UARROW);
115                 waddstr(win, "(-)");
116         } else {
117                 wattrset(win, menubox_attr);
118                 waddch(win, ACS_HLINE);
119                 waddch(win, ACS_HLINE);
120                 waddch(win, ACS_HLINE);
121                 waddch(win, ACS_HLINE);
122         }
123
124         y = y + height + 1;
125         wmove(win, y, x);
126
127         if ((height < item_no) && (scroll + height < item_no)) {
128                 wattrset(win, darrow_attr);
129                 waddch(win, ACS_DARROW);
130                 waddstr(win, "(+)");
131         } else {
132                 wattrset(win, menubox_border_attr);
133                 waddch(win, ACS_HLINE);
134                 waddch(win, ACS_HLINE);
135                 waddch(win, ACS_HLINE);
136                 waddch(win, ACS_HLINE);
137         }
138
139         wmove(win, cur_y, cur_x);
140 }
141
142 /*
143  * Display the termination buttons.
144  */
145 static void print_buttons(WINDOW * win, int height, int width, int selected)
146 {
147         int x = width / 2 - 16;
148         int y = height - 2;
149
150         print_button(win, "Select", y, x, selected == 0);
151         print_button(win, " Exit ", y, x + 12, selected == 1);
152         print_button(win, " Help ", y, x + 24, selected == 2);
153
154         wmove(win, y, x + 1 + 12 * selected);
155         wrefresh(win);
156 }
157
158 /*
159  * Display a menu for choosing among a number of options
160  */
161 int
162 dialog_menu(const char *title, const char *prompt, int height, int width,
163             int menu_height, const char *current, int item_no,
164             const char *const *items)
165 {
166         int i, j, x, y, box_x, box_y;
167         int key = 0, button = 0, scroll = 0, choice = 0, first_item =
168             0, max_choice;
169         WINDOW *dialog, *menu;
170         FILE *f;
171
172         max_choice = MIN(menu_height, item_no);
173
174         /* center dialog box on screen */
175         x = (COLS - width) / 2;
176         y = (LINES - height) / 2;
177
178         draw_shadow(stdscr, y, x, height, width);
179
180         dialog = newwin(height, width, y, x);
181         keypad(dialog, TRUE);
182
183         draw_box(dialog, 0, 0, height, width, dialog_attr, border_attr);
184         wattrset(dialog, border_attr);
185         mvwaddch(dialog, height - 3, 0, ACS_LTEE);
186         for (i = 0; i < width - 2; i++)
187                 waddch(dialog, ACS_HLINE);
188         wattrset(dialog, dialog_attr);
189         wbkgdset(dialog, dialog_attr & A_COLOR);
190         waddch(dialog, ACS_RTEE);
191
192         if (title != NULL && strlen(title) >= width - 2) {
193                 /* truncate long title -- mec */
194                 char *title2 = malloc(width - 2 + 1);
195                 memcpy(title2, title, width - 2);
196                 title2[width - 2] = '\0';
197                 title = title2;
198         }
199
200         if (title != NULL) {
201                 wattrset(dialog, title_attr);
202                 mvwaddch(dialog, 0, (width - strlen(title)) / 2 - 1, ' ');
203                 waddstr(dialog, (char *)title);
204                 waddch(dialog, ' ');
205         }
206
207         wattrset(dialog, dialog_attr);
208         print_autowrap(dialog, prompt, width - 2, 1, 3);
209
210         menu_width = width - 6;
211         box_y = height - menu_height - 5;
212         box_x = (width - menu_width) / 2 - 1;
213
214         /* create new window for the menu */
215         menu = subwin(dialog, menu_height, menu_width,
216                       y + box_y + 1, x + box_x + 1);
217         keypad(menu, TRUE);
218
219         /* draw a box around the menu items */
220         draw_box(dialog, box_y, box_x, menu_height + 2, menu_width + 2,
221                  menubox_border_attr, menubox_attr);
222
223         /*
224          * Find length of longest item in order to center menu.
225          * Set 'choice' to default item. 
226          */
227         item_x = 0;
228         for (i = 0; i < item_no; i++) {
229                 item_x =
230                     MAX(item_x, MIN(menu_width, strlen(items[i * 2 + 1]) + 2));
231                 if (strcmp(current, items[i * 2]) == 0)
232                         choice = i;
233         }
234
235         item_x = (menu_width - item_x) / 2;
236
237         /* get the scroll info from the temp file */
238         if ((f = fopen("lxdialog.scrltmp", "r")) != NULL) {
239                 if ((fscanf(f, "%d\n", &scroll) == 1) && (scroll <= choice) &&
240                     (scroll + max_choice > choice) && (scroll >= 0) &&
241                     (scroll + max_choice <= item_no)) {
242                         first_item = scroll;
243                         choice = choice - scroll;
244                         fclose(f);
245                 } else {
246                         scroll = 0;
247                         remove("lxdialog.scrltmp");
248                         fclose(f);
249                         f = NULL;
250                 }
251         }
252         if ((choice >= max_choice) || (f == NULL && choice >= max_choice / 2)) {
253                 if (choice >= item_no - max_choice / 2)
254                         scroll = first_item = item_no - max_choice;
255                 else
256                         scroll = first_item = choice - max_choice / 2;
257                 choice = choice - scroll;
258         }
259
260         /* Print the menu */
261         for (i = 0; i < max_choice; i++) {
262                 print_item(menu, items[(first_item + i) * 2 + 1], i,
263                            i == choice,
264                            (items[(first_item + i) * 2][0] != ':'));
265         }
266
267         wnoutrefresh(menu);
268
269         print_arrows(dialog, item_no, scroll,
270                      box_y, box_x + item_x + 1, menu_height);
271
272         print_buttons(dialog, height, width, 0);
273         wmove(menu, choice, item_x + 1);
274         wrefresh(menu);
275
276         while (key != ESC) {
277                 key = wgetch(menu);
278
279                 if (key < 256 && isalpha(key))
280                         key = tolower(key);
281
282                 if (strchr("ynmh", key))
283                         i = max_choice;
284                 else {
285                         for (i = choice + 1; i < max_choice; i++) {
286                                 j = first_alpha(items[(scroll + i) * 2 + 1],
287                                                 "YyNnMmHh");
288                                 if (key ==
289                                     tolower(items[(scroll + i) * 2 + 1][j]))
290                                         break;
291                         }
292                         if (i == max_choice)
293                                 for (i = 0; i < max_choice; i++) {
294                                         j = first_alpha(items
295                                                         [(scroll + i) * 2 + 1],
296                                                         "YyNnMmHh");
297                                         if (key ==
298                                             tolower(items[(scroll + i) * 2 + 1]
299                                                     [j]))
300                                                 break;
301                                 }
302                 }
303
304                 if (i < max_choice ||
305                     key == KEY_UP || key == KEY_DOWN ||
306                     key == '-' || key == '+' ||
307                     key == KEY_PPAGE || key == KEY_NPAGE) {
308
309                         print_item(menu, items[(scroll + choice) * 2 + 1],
310                                    choice, FALSE,
311                                    (items[(scroll + choice) * 2][0] != ':'));
312
313                         if (key == KEY_UP || key == '-') {
314                                 if (choice < 2 && scroll) {
315                                         /* Scroll menu down */
316                                         scrollok(menu, TRUE);
317                                         wscrl(menu, -1);
318                                         scrollok(menu, FALSE);
319
320                                         scroll--;
321
322                                         print_item(menu, items[scroll * 2 + 1],
323                                                    0, FALSE,
324                                                    (items[scroll * 2][0] !=
325                                                     ':'));
326                                 } else
327                                         choice = MAX(choice - 1, 0);
328
329                         } else if (key == KEY_DOWN || key == '+') {
330
331                                 print_item(menu,
332                                            items[(scroll + choice) * 2 + 1],
333                                            choice, FALSE,
334                                            (items[(scroll + choice) * 2][0] !=
335                                             ':'));
336
337                                 if ((choice > max_choice - 3) &&
338                                     (scroll + max_choice < item_no)
339                                     ) {
340                                         /* Scroll menu up */
341                                         scrollok(menu, TRUE);
342                                         wscrl(menu, 1);
343                                         scrollok(menu, FALSE);
344
345                                         scroll++;
346
347                                         print_item(menu,
348                                                    items[(scroll + max_choice -
349                                                           1) * 2 + 1],
350                                                    max_choice - 1, FALSE,
351                                                    (items
352                                                     [(scroll + max_choice -
353                                                       1) * 2][0] != ':'));
354                                 } else
355                                         choice =
356                                             MIN(choice + 1, max_choice - 1);
357
358                         } else if (key == KEY_PPAGE) {
359                                 scrollok(menu, TRUE);
360                                 for (i = 0; (i < max_choice); i++) {
361                                         if (scroll > 0) {
362                                                 wscrl(menu, -1);
363                                                 scroll--;
364                                                 print_item(menu,
365                                                            items[scroll * 2 +
366                                                                  1], 0, FALSE,
367                                                            (items[scroll * 2][0]
368                                                             != ':'));
369                                         } else {
370                                                 if (choice > 0)
371                                                         choice--;
372                                         }
373                                 }
374                                 scrollok(menu, FALSE);
375
376                         } else if (key == KEY_NPAGE) {
377                                 for (i = 0; (i < max_choice); i++) {
378                                         if (scroll + max_choice < item_no) {
379                                                 scrollok(menu, TRUE);
380                                                 wscrl(menu, 1);
381                                                 scrollok(menu, FALSE);
382                                                 scroll++;
383                                                 print_item(menu,
384                                                            items[(scroll +
385                                                                   max_choice -
386                                                                   1) * 2 + 1],
387                                                            max_choice - 1,
388                                                            FALSE,
389                                                            (items
390                                                             [(scroll +
391                                                               max_choice -
392                                                               1) * 2][0] !=
393                                                             ':'));
394                                         } else {
395                                                 if (choice + 1 < max_choice)
396                                                         choice++;
397                                         }
398                                 }
399
400                         } else
401                                 choice = i;
402
403                         print_item(menu, items[(scroll + choice) * 2 + 1],
404                                    choice, TRUE,
405                                    (items[(scroll + choice) * 2][0] != ':'));
406
407                         print_arrows(dialog, item_no, scroll,
408                                      box_y, box_x + item_x + 1, menu_height);
409
410                         wnoutrefresh(dialog);
411                         wrefresh(menu);
412
413                         continue;       /* wait for another key press */
414                 }
415
416                 switch (key) {
417                 case KEY_LEFT:
418                 case TAB:
419                 case KEY_RIGHT:
420                         button = ((key == KEY_LEFT ? --button : ++button) < 0)
421                             ? 2 : (button > 2 ? 0 : button);
422
423                         print_buttons(dialog, height, width, button);
424                         wrefresh(menu);
425                         break;
426                 case ' ':
427                 case 's':
428                 case 'y':
429                 case 'n':
430                 case 'm':
431                 case '/':
432                         /* save scroll info */
433                         if ((f = fopen("lxdialog.scrltmp", "w")) != NULL) {
434                                 fprintf(f, "%d\n", scroll);
435                                 fclose(f);
436                         }
437                         delwin(dialog);
438                         fprintf(stderr, "%s\n", items[(scroll + choice) * 2]);
439                         switch (key) {
440                         case 's':
441                                 return 3;
442                         case 'y':
443                                 return 3;
444                         case 'n':
445                                 return 4;
446                         case 'm':
447                                 return 5;
448                         case ' ':
449                                 return 6;
450                         case '/':
451                                 return 7;
452                         }
453                         return 0;
454                 case 'h':
455                 case '?':
456                         button = 2;
457                 case '\n':
458                         delwin(dialog);
459                         if (button == 2)
460                                 fprintf(stderr, "%s \"%s\"\n",
461                                         items[(scroll + choice) * 2],
462                                         items[(scroll + choice) * 2 + 1] +
463                                         first_alpha(items
464                                                     [(scroll + choice) * 2 + 1],
465                                                     ""));
466                         else
467                                 fprintf(stderr, "%s\n",
468                                         items[(scroll + choice) * 2]);
469
470                         remove("lxdialog.scrltmp");
471                         return button;
472                 case 'e':
473                 case 'x':
474                         key = ESC;
475                 case ESC:
476                         break;
477                 }
478         }
479
480         delwin(dialog);
481         remove("lxdialog.scrltmp");
482         return -1;              /* ESC pressed */
483 }