~ubuntu-branches/ubuntu/intrepid/gnunet/intrepid

« back to all changes in this revision

Viewing changes to src/conf/mconf_menubox.c

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Baumann
  • Date: 2008-07-03 14:17:00 UTC
  • mfrom: (1.2.11 upstream) (16 hardy)
  • mto: This revision was merged to the branch mainline in revision 23.
  • Revision ID: james.westby@ubuntu.com-20080703141700-355g0g164kaw2kwk
Tags: 0.8.0-2
* Creating /var/run/gnunetd in initscript in case /var/run is on a tmpfs.
* Adding versioned conflicts/replaces against gnunet in order to allow etch to
  lenny upgrades.
* Updating contact address in po files.

Show diffs side-by-side

added added

removed removed

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