blob: ae40a2b3b88543257f0ebafa9a9408d863b6f53c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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
26static int list_width, check_x, item_x, checkflag;
27
28/*
29 * Print list item
30 */
Sam Ravnborgdec69da2005-11-19 21:56:20 +010031static void print_item(WINDOW * win, const char *item, int status, int choice,
32 int selected)
Linus Torvalds1da177e2005-04-16 15:20:36 -070033{
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +010034 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +010036 /* Clear 'residue' of last item */
37 wattrset(win, menubox_attr);
38 wmove(win, choice, 0);
39 for (i = 0; i < list_width; i++)
40 waddch(win, ' ');
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +010042 wmove(win, choice, check_x);
43 wattrset(win, selected ? check_selected_attr : check_attr);
44 if (checkflag == FLAG_CHECK)
45 wprintw(win, "[%c]", status ? 'X' : ' ');
46 else
47 wprintw(win, "(%c)", status ? 'X' : ' ');
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +010049 wattrset(win, selected ? tag_selected_attr : tag_attr);
50 mvwaddch(win, choice, item_x, item[0]);
51 wattrset(win, selected ? item_selected_attr : item_attr);
52 waddstr(win, (char *)item + 1);
53 if (selected) {
54 wmove(win, choice, check_x + 1);
55 wrefresh(win);
56 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070057}
58
59/*
60 * Print the scroll indicators.
61 */
Sam Ravnborgdec69da2005-11-19 21:56:20 +010062static void print_arrows(WINDOW * win, int choice, int item_no, int scroll,
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +010063 int y, int x, int height)
Linus Torvalds1da177e2005-04-16 15:20:36 -070064{
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +010065 wmove(win, y, x);
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +010067 if (scroll > 0) {
68 wattrset(win, uarrow_attr);
69 waddch(win, ACS_UARROW);
70 waddstr(win, "(-)");
71 } else {
72 wattrset(win, menubox_attr);
73 waddch(win, ACS_HLINE);
74 waddch(win, ACS_HLINE);
75 waddch(win, ACS_HLINE);
76 waddch(win, ACS_HLINE);
77 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +010079 y = y + height + 1;
80 wmove(win, y, x);
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +010082 if ((height < item_no) && (scroll + choice < item_no - 1)) {
83 wattrset(win, darrow_attr);
84 waddch(win, ACS_DARROW);
85 waddstr(win, "(+)");
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 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070093}
94
95/*
96 * Display the termination buttons
97 */
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +010098static void print_buttons(WINDOW * dialog, int height, int width, int selected)
Linus Torvalds1da177e2005-04-16 15:20:36 -070099{
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100100 int x = width / 2 - 11;
101 int y = height - 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100103 print_button(dialog, "Select", y, x, selected == 0);
104 print_button(dialog, " Help ", y, x + 14, selected == 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100106 wmove(dialog, y, x + 1 + 14 * selected);
107 wrefresh(dialog);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108}
109
110/*
111 * Display a dialog box with a list of options that can be turned on or off
112 * The `flag' parameter is used to select between radiolist and checklist.
113 */
Sam Ravnborgdec69da2005-11-19 21:56:20 +0100114int dialog_checklist(const char *title, const char *prompt, int height,
115 int width, int list_height, int item_no,
116 const char *const *items, int flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117{
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100118 int i, x, y, box_x, box_y;
119 int key = 0, button = 0, choice = 0, scroll = 0, max_choice, *status;
120 WINDOW *dialog, *list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100122 checkflag = flag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100124 /* Allocate space for storing item on/off status */
125 if ((status = malloc(sizeof(int) * item_no)) == NULL) {
126 endwin();
127 fprintf(stderr,
128 "\nCan't allocate memory in dialog_checklist().\n");
129 exit(-1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100132 /* Initializes status */
133 for (i = 0; i < item_no; i++) {
134 status[i] = !strcasecmp(items[i * 3 + 2], "on");
135 if ((!choice && status[i])
136 || !strcasecmp(items[i * 3 + 2], "selected"))
137 choice = i + 1;
138 }
139 if (choice)
140 choice--;
141
142 max_choice = MIN(list_height, item_no);
143
144 /* center dialog box on screen */
145 x = (COLS - width) / 2;
146 y = (LINES - height) / 2;
147
148 draw_shadow(stdscr, y, x, height, width);
149
150 dialog = newwin(height, width, y, x);
151 keypad(dialog, TRUE);
152
153 draw_box(dialog, 0, 0, height, width, dialog_attr, border_attr);
154 wattrset(dialog, border_attr);
155 mvwaddch(dialog, height - 3, 0, ACS_LTEE);
156 for (i = 0; i < width - 2; i++)
157 waddch(dialog, ACS_HLINE);
158 wattrset(dialog, dialog_attr);
159 waddch(dialog, ACS_RTEE);
160
161 if (title != NULL && strlen(title) >= width - 2) {
162 /* truncate long title -- mec */
163 char *title2 = malloc(width - 2 + 1);
164 memcpy(title2, title, width - 2);
165 title2[width - 2] = '\0';
166 title = title2;
167 }
168
169 if (title != NULL) {
170 wattrset(dialog, title_attr);
171 mvwaddch(dialog, 0, (width - strlen(title)) / 2 - 1, ' ');
172 waddstr(dialog, (char *)title);
173 waddch(dialog, ' ');
174 }
175
176 wattrset(dialog, dialog_attr);
177 print_autowrap(dialog, prompt, width - 2, 1, 3);
178
179 list_width = width - 6;
180 box_y = height - list_height - 5;
181 box_x = (width - list_width) / 2 - 1;
182
183 /* create new window for the list */
Sam Ravnborgdec69da2005-11-19 21:56:20 +0100184 list = subwin(dialog, list_height, list_width, y + box_y + 1,
185 x + box_x + 1);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100186
187 keypad(list, TRUE);
188
189 /* draw a box around the list items */
190 draw_box(dialog, box_y, box_x, list_height + 2, list_width + 2,
Sam Ravnborgdec69da2005-11-19 21:56:20 +0100191 menubox_border_attr, menubox_attr);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100192
193 /* Find length of longest item in order to center checklist */
194 check_x = 0;
195 for (i = 0; i < item_no; i++)
196 check_x = MAX(check_x, +strlen(items[i * 3 + 1]) + 4);
197
198 check_x = (list_width - check_x) / 2;
199 item_x = check_x + 4;
200
201 if (choice >= list_height) {
202 scroll = choice - list_height + 1;
203 choice -= scroll;
204 }
205
206 /* Print the list */
207 for (i = 0; i < max_choice; i++) {
208 print_item(list, items[(scroll + i) * 3 + 1],
209 status[i + scroll], i, i == choice);
210 }
211
212 print_arrows(dialog, choice, item_no, scroll,
213 box_y, box_x + check_x + 5, list_height);
214
215 print_buttons(dialog, height, width, 0);
216
217 wnoutrefresh(list);
218 wnoutrefresh(dialog);
219 doupdate();
220
221 while (key != ESC) {
222 key = wgetch(dialog);
223
224 for (i = 0; i < max_choice; i++)
225 if (toupper(key) ==
226 toupper(items[(scroll + i) * 3 + 1][0]))
227 break;
228
229 if (i < max_choice || key == KEY_UP || key == KEY_DOWN ||
230 key == '+' || key == '-') {
231 if (key == KEY_UP || key == '-') {
232 if (!choice) {
233 if (!scroll)
234 continue;
235 /* Scroll list down */
236 if (list_height > 1) {
237 /* De-highlight current first item */
Sam Ravnborgdec69da2005-11-19 21:56:20 +0100238 print_item(list, items[scroll * 3 + 1],
239 status[scroll], 0, FALSE);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100240 scrollok(list, TRUE);
241 wscrl(list, -1);
242 scrollok(list, FALSE);
243 }
244 scroll--;
Sam Ravnborgdec69da2005-11-19 21:56:20 +0100245 print_item(list, items[scroll * 3 + 1], status[scroll], 0, TRUE);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100246 wnoutrefresh(list);
247
248 print_arrows(dialog, choice, item_no,
Sam Ravnborgdec69da2005-11-19 21:56:20 +0100249 scroll, box_y, box_x + check_x + 5, list_height);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100250
251 wrefresh(dialog);
252
253 continue; /* wait for another key press */
254 } else
255 i = choice - 1;
256 } else if (key == KEY_DOWN || key == '+') {
257 if (choice == max_choice - 1) {
258 if (scroll + choice >= item_no - 1)
259 continue;
260 /* Scroll list up */
261 if (list_height > 1) {
262 /* De-highlight current last item before scrolling up */
Sam Ravnborgdec69da2005-11-19 21:56:20 +0100263 print_item(list, items[(scroll + max_choice - 1) * 3 + 1],
264 status[scroll + max_choice - 1],
265 max_choice - 1, FALSE);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100266 scrollok(list, TRUE);
267 wscrl(list, 1);
268 scrollok(list, FALSE);
269 }
270 scroll++;
Sam Ravnborgdec69da2005-11-19 21:56:20 +0100271 print_item(list, items[(scroll + max_choice - 1) * 3 + 1],
272 status[scroll + max_choice - 1], max_choice - 1, TRUE);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100273 wnoutrefresh(list);
274
275 print_arrows(dialog, choice, item_no,
Sam Ravnborgdec69da2005-11-19 21:56:20 +0100276 scroll, box_y, box_x + check_x + 5, list_height);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100277
278 wrefresh(dialog);
279
280 continue; /* wait for another key press */
281 } else
282 i = choice + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 }
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100284 if (i != choice) {
285 /* De-highlight current item */
Sam Ravnborgdec69da2005-11-19 21:56:20 +0100286 print_item(list, items[(scroll + choice) * 3 + 1],
287 status[scroll + choice], choice, FALSE);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100288 /* Highlight new item */
289 choice = i;
Sam Ravnborgdec69da2005-11-19 21:56:20 +0100290 print_item(list, items[(scroll + choice) * 3 + 1],
291 status[scroll + choice], choice, TRUE);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100292 wnoutrefresh(list);
293 wrefresh(dialog);
294 }
295 continue; /* wait for another key press */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 }
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100297 switch (key) {
298 case 'H':
299 case 'h':
300 case '?':
301 fprintf(stderr, "%s", items[(scroll + choice) * 3]);
302 delwin(dialog);
303 free(status);
304 return 1;
305 case TAB:
306 case KEY_LEFT:
307 case KEY_RIGHT:
308 button = ((key == KEY_LEFT ? --button : ++button) < 0)
309 ? 1 : (button > 1 ? 0 : button);
310
311 print_buttons(dialog, height, width, button);
312 wrefresh(dialog);
313 break;
314 case 'S':
315 case 's':
316 case ' ':
317 case '\n':
318 if (!button) {
319 if (flag == FLAG_CHECK) {
Sam Ravnborgdec69da2005-11-19 21:56:20 +0100320 status[scroll + choice] = !status[scroll + choice];
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100321 wmove(list, choice, check_x);
322 wattrset(list, check_selected_attr);
Sam Ravnborgdec69da2005-11-19 21:56:20 +0100323 wprintw(list, "[%c]", status[scroll + choice] ? 'X' : ' ');
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100324 } else {
325 if (!status[scroll + choice]) {
326 for (i = 0; i < item_no; i++)
327 status[i] = 0;
328 status[scroll + choice] = 1;
329 for (i = 0; i < max_choice; i++)
Sam Ravnborgdec69da2005-11-19 21:56:20 +0100330 print_item(list, items[(scroll + i) * 3 + 1],
331 status[scroll + i], i, i == choice);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100332 }
333 }
334 wnoutrefresh(list);
335 wrefresh(dialog);
336
337 for (i = 0; i < item_no; i++) {
338 if (status[i]) {
339 if (flag == FLAG_CHECK) {
Sam Ravnborgdec69da2005-11-19 21:56:20 +0100340 fprintf(stderr, "\"%s\" ", items[i * 3]);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100341 } else {
Sam Ravnborgdec69da2005-11-19 21:56:20 +0100342 fprintf(stderr, "%s", items[i * 3]);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100343 }
344
345 }
346 }
347 } else
Sam Ravnborgdec69da2005-11-19 21:56:20 +0100348 fprintf(stderr, "%s", items[(scroll + choice) * 3]);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100349 delwin(dialog);
350 free(status);
351 return button;
352 case 'X':
353 case 'x':
354 key = ESC;
355 case ESC:
356 break;
357 }
358
359 /* Now, update everything... */
360 doupdate();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 }
362
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100363 delwin(dialog);
364 free(status);
365 return -1; /* ESC pressed */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366}