OpenCores
URL https://opencores.org/ocsvn/or1k_old/or1k_old/trunk

Subversion Repositories or1k_old

[/] [or1k_old/] [trunk/] [rc203soc/] [sw/] [uClinux/] [scripts/] [lxdialog/] [checklist.c] - Blame information for rev 1782

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 1629 jcastillo
/*
2
 *  checklist.c -- implements the checklist box
3
 *
4
 *  ORIGINAL AUTHOR: Savio Lam (lam836@cs.cuhk.hk)
5
 *     Stuart Herbert - S.Herbert@sheffield.ac.uk: radiolist extension
6
 *     Alessandro Rubini - rubini@ipvvis.unipv.it: merged the two
7
 *  MODIFIED FOR LINUX KERNEL CONFIG BY: William Roadcap (roadcap@cfw.com)
8
 *
9
 *  This program is free software; you can redistribute it and/or
10
 *  modify it under the terms of the GNU General Public License
11
 *  as published by the Free Software Foundation; either version 2
12
 *  of the License, or (at your option) any later version.
13
 *
14
 *  This program is distributed in the hope that it will be useful,
15
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
16
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17
 *  GNU General Public License for more details.
18
 *
19
 *  You should have received a copy of the GNU General Public License
20
 *  along with this program; if not, write to the Free Software
21
 *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22
 */
23
 
24
#include "dialog.h"
25
 
26
static int list_width, check_x, item_x, checkflag;
27
 
28
/*
29
 * Print list item
30
 */
31
static void
32
print_item (WINDOW * win, const char *item, int status,
33
            int choice, int selected)
34
{
35
    int i;
36
 
37
    /* Clear 'residue' of last item */
38
    wattrset (win, menubox_attr);
39
    wmove (win, choice, 0);
40
    for (i = 0; i < list_width; i++)
41
        waddch (win, ' ');
42
 
43
    wmove (win, choice, check_x);
44
    wattrset (win, selected ? check_selected_attr : check_attr);
45
    if (checkflag == FLAG_CHECK)
46
        wprintw (win, "[%c]", status ? 'X' : ' ');
47
    else
48
        wprintw (win, "(%c)", status ? 'X' : ' ');
49
 
50
    wattrset (win, selected ? tag_selected_attr : tag_attr);
51
    mvwaddch(win, choice, item_x, item[0]);
52
    wattrset (win, selected ? item_selected_attr : item_attr);
53
    waddstr (win, (char *)item+1);
54
}
55
 
56
/*
57
 * Print the scroll indicators.
58
 */
59
static void
60
print_arrows (WINDOW * win, int choice, int item_no, int scroll,
61
                int y, int x, int height)
62
{
63
    wmove(win, y, x);
64
 
65
    if (scroll > 0) {
66
        wattrset (win, uarrow_attr);
67
        waddch (win, ACS_UARROW);
68
        waddstr (win, "(-)");
69
    }
70
    else {
71
        wattrset (win, menubox_attr);
72
        waddch (win, ACS_HLINE);
73
        waddch (win, ACS_HLINE);
74
        waddch (win, ACS_HLINE);
75
        waddch (win, ACS_HLINE);
76
    }
77
 
78
   y = y + height + 1;
79
   wmove(win, y, x);
80
 
81
   if ((height < item_no) && (scroll + choice < item_no - 1)) {
82
        wattrset (win, darrow_attr);
83
        waddch (win, ACS_DARROW);
84
        waddstr (win, "(+)");
85
    }
86
    else {
87
        wattrset (win, menubox_border_attr);
88
        waddch (win, ACS_HLINE);
89
        waddch (win, ACS_HLINE);
90
        waddch (win, ACS_HLINE);
91
        waddch (win, ACS_HLINE);
92
   }
93
}
94
 
95
/*
96
 *  Display the termination buttons
97
 */
98
static void
99
print_buttons( WINDOW *dialog, int height, int width, int selected)
100
{
101
    int x = width / 2 - 11;
102
    int y = height - 2;
103
 
104
    print_button (dialog, "Select", y, x, selected == 0);
105
    print_button (dialog, " Help ", y, x + 14, selected == 1);
106
 
107
    wmove(dialog, y, x+1 + 14*selected);
108
    wrefresh (dialog);
109
}
110
 
111
/*
112
 * Display a dialog box with a list of options that can be turned on or off
113
 * The `flag' parameter is used to select between radiolist and checklist.
114
 */
115
int
116
dialog_checklist (const char *title, const char *prompt, int height, int width,
117
        int list_height, int item_no, const char * const * items, int flag)
118
 
119
{
120
    int i, x, y, box_x, box_y;
121
    int key = 0, button = 0, choice = 0, scroll = 0, max_choice, *status;
122
    WINDOW *dialog, *list;
123
 
124
    checkflag = flag;
125
 
126
    /* Allocate space for storing item on/off status */
127
    if ((status = malloc (sizeof (int) * item_no)) == NULL) {
128
        endwin ();
129
        fprintf (stderr,
130
                 "\nCan't allocate memory in dialog_checklist().\n");
131
        exit (-1);
132
    }
133
 
134
    /* Initializes status */
135
    for (i = 0; i < item_no; i++) {
136
        status[i] = !strcasecmp (items[i * 3 + 2], "on");
137
        if (!choice && status[i])
138
            choice = i;
139
    }
140
 
141
    max_choice = MIN (list_height, item_no);
142
 
143
    /* center dialog box on screen */
144
    x = (COLS - width) / 2;
145
    y = (LINES - height) / 2;
146
 
147
    draw_shadow (stdscr, y, x, height, width);
148
 
149
    dialog = newwin (height, width, y, x);
150
    keypad (dialog, TRUE);
151
 
152
    draw_box (dialog, 0, 0, height, width, dialog_attr, border_attr);
153
    wattrset (dialog, border_attr);
154
    mvwaddch (dialog, height-3, 0, ACS_LTEE);
155
    for (i = 0; i < width - 2; i++)
156
        waddch (dialog, ACS_HLINE);
157
    wattrset (dialog, dialog_attr);
158
    waddch (dialog, ACS_RTEE);
159
 
160
    if (title != NULL) {
161
        wattrset (dialog, title_attr);
162
        mvwaddch (dialog, 0, (width - strlen(title))/2 - 1, ' ');
163
        waddstr (dialog, (char *)title);
164
        waddch (dialog, ' ');
165
    }
166
 
167
    wattrset (dialog, dialog_attr);
168
    print_autowrap (dialog, prompt, width - 2, 1, 3);
169
 
170
    list_width = width - 6;
171
    box_y = height - list_height - 5;
172
    box_x = (width - list_width) / 2 - 1;
173
 
174
    /* create new window for the list */
175
    list = subwin (dialog, list_height, list_width, y+box_y+1, x+box_x+1);
176
 
177
    keypad (list, TRUE);
178
 
179
    /* draw a box around the list items */
180
    draw_box (dialog, box_y, box_x, list_height + 2, list_width + 2,
181
              menubox_border_attr, menubox_attr);
182
 
183
    /* Find length of longest item in order to center checklist */
184
    check_x = 0;
185
    for (i = 0; i < item_no; i++)
186
        check_x = MAX (check_x, + strlen (items[i * 3 + 1]) + 4);
187
 
188
    check_x = (list_width - check_x) / 2;
189
    item_x = check_x + 4;
190
 
191
    if (choice >= list_height) {
192
        scroll = choice - list_height + 1;
193
        choice -= scroll;
194
    }
195
 
196
    /* Print the list */
197
    for (i = 0; i < max_choice; i++) {
198
        print_item (list, items[(scroll+i) * 3 + 1],
199
                    status[i+scroll], i, i == choice);
200
    }
201
 
202
    wnoutrefresh (list);
203
 
204
    print_arrows(dialog, choice, item_no, scroll,
205
                        box_y, box_x + check_x + 5, list_height);
206
 
207
    print_buttons(dialog, height, width, 0);
208
 
209
    while (key != ESC) {
210
        key = wgetch (dialog);
211
 
212
        for (i = 0; i < max_choice; i++)
213
            if (toupper(key) == toupper(items[(scroll+i)*3+1][0]))
214
                break;
215
 
216
 
217
        if ( i < max_choice || key == KEY_UP || key == KEY_DOWN ||
218
            key == '+' || key == '-' ) {
219
            if (key == KEY_UP || key == '-') {
220
                if (!choice) {
221
                    if (!scroll)
222
                        continue;
223
                    /* Scroll list down */
224
                    if (list_height > 1) {
225
                        /* De-highlight current first item */
226
                        print_item (list, items[scroll * 3 + 1],
227
                                        status[scroll], 0, FALSE);
228
                        scrollok (list, TRUE);
229
                        wscrl (list, -1);
230
                        scrollok (list, FALSE);
231
                    }
232
                    scroll--;
233
                    print_item (list, items[scroll * 3 + 1],
234
                                status[scroll], 0, TRUE);
235
                    wnoutrefresh (list);
236
 
237
                    print_arrows(dialog, choice, item_no, scroll,
238
                                box_y, box_x + check_x + 5, list_height);
239
 
240
                    wrefresh (dialog);
241
 
242
                    continue;   /* wait for another key press */
243
                } else
244
                    i = choice - 1;
245
            } else if (key == KEY_DOWN || key == '+') {
246
                if (choice == max_choice - 1) {
247
                    if (scroll + choice >= item_no - 1)
248
                        continue;
249
                    /* Scroll list up */
250
                    if (list_height > 1) {
251
                        /* De-highlight current last item before scrolling up */
252
                        print_item (list, items[(scroll + max_choice - 1) * 3 + 1],
253
                                    status[scroll + max_choice - 1],
254
                                    max_choice - 1, FALSE);
255
                        scrollok (list, TRUE);
256
                        scroll (list);
257
                        scrollok (list, FALSE);
258
                    }
259
                    scroll++;
260
                    print_item (list, items[(scroll + max_choice - 1) * 3 + 1],
261
                                status[scroll + max_choice - 1],
262
                                max_choice - 1, TRUE);
263
                    wnoutrefresh (list);
264
 
265
                    print_arrows(dialog, choice, item_no, scroll,
266
                                box_y, box_x + check_x + 5, list_height);
267
 
268
                    wrefresh (dialog);
269
 
270
                    continue;   /* wait for another key press */
271
                } else
272
                    i = choice + 1;
273
            }
274
            if (i != choice) {
275
                /* De-highlight current item */
276
                print_item (list, items[(scroll + choice) * 3 + 1],
277
                            status[scroll + choice], choice, FALSE);
278
                /* Highlight new item */
279
                choice = i;
280
                print_item (list, items[(scroll + choice) * 3 + 1],
281
                            status[scroll + choice], choice, TRUE);
282
                wnoutrefresh (list);
283
                wrefresh (dialog);
284
            }
285
            continue;           /* wait for another key press */
286
        }
287
        switch (key) {
288
        case 'H':
289
        case 'h':
290
        case '?':
291
            delwin (dialog);
292
            free (status);
293
            return 1;
294
        case TAB:
295
        case KEY_LEFT:
296
        case KEY_RIGHT:
297
            button = ((key == KEY_LEFT ? --button : ++button) < 0)
298
                        ? 1 : (button > 1 ? 0 : button);
299
 
300
            print_buttons(dialog, height, width, button);
301
            wrefresh (dialog);
302
            break;
303
        case 'S':
304
        case 's':
305
        case ' ':
306
        case '\n':
307
            if (!button) {
308
                if (flag == FLAG_CHECK) {
309
                    status[scroll + choice] = !status[scroll + choice];
310
                    wmove (list, choice, check_x);
311
                    wattrset (list, check_selected_attr);
312
                    wprintw (list, "[%c]", status[scroll + choice] ? 'X' : ' ');
313
                } else {
314
                    if (!status[scroll + choice]) {
315
                        for (i = 0; i < item_no; i++)
316
                            status[i] = 0;
317
                        status[scroll + choice] = 1;
318
                        for (i = 0; i < max_choice; i++)
319
                            print_item (list, items[(scroll + i) * 3 + 1],
320
                                        status[scroll + i], i, i == choice);
321
                    }
322
                }
323
                wnoutrefresh (list);
324
                wrefresh (dialog);
325
 
326
                for (i = 0; i < item_no; i++) {
327
                    if (status[i]) {
328
                        if (flag == FLAG_CHECK) {
329
                            fprintf (stderr, "\"%s\" ", items[i * 3]);
330
                        } else {
331
                            fprintf (stderr, "%s", items[i * 3]);
332
                        }
333
 
334
                    }
335
                }
336
            }
337
            delwin (dialog);
338
            free (status);
339
            return button;
340
        case 'X':
341
        case 'x':
342
            key = ESC;
343
        case ESC:
344
            break;
345
        }
346
    }
347
 
348
    delwin (dialog);
349
    free (status);
350
    return -1;                  /* ESC pressed */
351
}

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.