source: freewrt/package/config/menubox.c

freewrt_2_0
Last change on this file was 3784d08, checked in by Thorsten Glaser <tg@…>, 14 years ago
  • raise the #142 line length fixed limit (yuk) further, to avoid segfaulting (or worse) with even longer ssh pubkeys
  • MFC the colourkey patch from r2424 while here

git-svn-id: svn://www.freewrt.org/branches/freewrt_1_0@3978 afb5a338-a214-0410-bd46-81f09a774fd1

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