blob: b90e888a2bc0cb3b500f42e3317c6eaa34d0e66a [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
Petr Baudis00213b12005-12-22 04:44:04 +010026static int list_width, check_x, item_x;
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
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 */
Sam Ravnborg98e5a152006-07-24 21:40:46 +020037 wattrset(win, dlg.menubox.atr);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +010038 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);
Sam Ravnborg98e5a152006-07-24 21:40:46 +020043 wattrset(win, selected ? dlg.check_selected.atr
44 : dlg.check.atr);
Petr Baudis00213b12005-12-22 04:44:04 +010045 wprintw(win, "(%c)", status ? 'X' : ' ');
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
Sam Ravnborg98e5a152006-07-24 21:40:46 +020047 wattrset(win, selected ? dlg.tag_selected.atr : dlg.tag.atr);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +010048 mvwaddch(win, choice, item_x, item[0]);
Sam Ravnborg98e5a152006-07-24 21:40:46 +020049 wattrset(win, selected ? dlg.item_selected.atr : dlg.item.atr);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +010050 waddstr(win, (char *)item + 1);
51 if (selected) {
52 wmove(win, choice, check_x + 1);
53 wrefresh(win);
54 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070055}
56
57/*
58 * Print the scroll indicators.
59 */
Sam Ravnborgdec69da2005-11-19 21:56:20 +010060static void print_arrows(WINDOW * win, int choice, int item_no, int scroll,
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +010061 int y, int x, int height)
Linus Torvalds1da177e2005-04-16 15:20:36 -070062{
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +010063 wmove(win, y, x);
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +010065 if (scroll > 0) {
Sam Ravnborg98e5a152006-07-24 21:40:46 +020066 wattrset(win, dlg.uarrow.atr);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +010067 waddch(win, ACS_UARROW);
68 waddstr(win, "(-)");
69 } else {
Sam Ravnborg98e5a152006-07-24 21:40:46 +020070 wattrset(win, dlg.menubox.atr);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +010071 waddch(win, ACS_HLINE);
72 waddch(win, ACS_HLINE);
73 waddch(win, ACS_HLINE);
74 waddch(win, ACS_HLINE);
75 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +010077 y = y + height + 1;
78 wmove(win, y, x);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +010080 if ((height < item_no) && (scroll + choice < item_no - 1)) {
Sam Ravnborg98e5a152006-07-24 21:40:46 +020081 wattrset(win, dlg.darrow.atr);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +010082 waddch(win, ACS_DARROW);
83 waddstr(win, "(+)");
84 } else {
Sam Ravnborg98e5a152006-07-24 21:40:46 +020085 wattrset(win, dlg.menubox_border.atr);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +010086 waddch(win, ACS_HLINE);
87 waddch(win, ACS_HLINE);
88 waddch(win, ACS_HLINE);
89 waddch(win, ACS_HLINE);
90 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070091}
92
93/*
94 * Display the termination buttons
95 */
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +010096static void print_buttons(WINDOW * dialog, int height, int width, int selected)
Linus Torvalds1da177e2005-04-16 15:20:36 -070097{
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +010098 int x = width / 2 - 11;
99 int y = height - 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100101 print_button(dialog, "Select", y, x, selected == 0);
102 print_button(dialog, " Help ", y, x + 14, selected == 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100104 wmove(dialog, y, x + 1 + 14 * selected);
105 wrefresh(dialog);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106}
107
108/*
109 * Display a dialog box with a list of options that can be turned on or off
Petr Baudis00213b12005-12-22 04:44:04 +0100110 * in the style of radiolist (only one option turned on at a time).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 */
Sam Ravnborgdec69da2005-11-19 21:56:20 +0100112int dialog_checklist(const char *title, const char *prompt, int height,
113 int width, int list_height, int item_no,
Petr Baudis00213b12005-12-22 04:44:04 +0100114 const char *const *items)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115{
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100116 int i, x, y, box_x, box_y;
117 int key = 0, button = 0, choice = 0, scroll = 0, max_choice, *status;
118 WINDOW *dialog, *list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100120 /* Allocate space for storing item on/off status */
121 if ((status = malloc(sizeof(int) * item_no)) == NULL) {
122 endwin();
123 fprintf(stderr,
124 "\nCan't allocate memory in dialog_checklist().\n");
125 exit(-1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100128 /* Initializes status */
129 for (i = 0; i < item_no; i++) {
130 status[i] = !strcasecmp(items[i * 3 + 2], "on");
131 if ((!choice && status[i])
132 || !strcasecmp(items[i * 3 + 2], "selected"))
133 choice = i + 1;
134 }
135 if (choice)
136 choice--;
137
138 max_choice = MIN(list_height, item_no);
139
140 /* center dialog box on screen */
141 x = (COLS - width) / 2;
142 y = (LINES - height) / 2;
143
144 draw_shadow(stdscr, y, x, height, width);
145
146 dialog = newwin(height, width, y, x);
147 keypad(dialog, TRUE);
148
Sam Ravnborg98e5a152006-07-24 21:40:46 +0200149 draw_box(dialog, 0, 0, height, width,
150 dlg.dialog.atr, dlg.border.atr);
151 wattrset(dialog, dlg.border.atr);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100152 mvwaddch(dialog, height - 3, 0, ACS_LTEE);
153 for (i = 0; i < width - 2; i++)
154 waddch(dialog, ACS_HLINE);
Sam Ravnborg98e5a152006-07-24 21:40:46 +0200155 wattrset(dialog, dlg.dialog.atr);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100156 waddch(dialog, ACS_RTEE);
157
Sam Ravnborgfa7009d2005-11-19 23:38:06 +0100158 print_title(dialog, title, width);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100159
Sam Ravnborg98e5a152006-07-24 21:40:46 +0200160 wattrset(dialog, dlg.dialog.atr);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100161 print_autowrap(dialog, prompt, width - 2, 1, 3);
162
163 list_width = width - 6;
164 box_y = height - list_height - 5;
165 box_x = (width - list_width) / 2 - 1;
166
167 /* create new window for the list */
Sam Ravnborgdec69da2005-11-19 21:56:20 +0100168 list = subwin(dialog, list_height, list_width, y + box_y + 1,
169 x + box_x + 1);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100170
171 keypad(list, TRUE);
172
173 /* draw a box around the list items */
174 draw_box(dialog, box_y, box_x, list_height + 2, list_width + 2,
Sam Ravnborg98e5a152006-07-24 21:40:46 +0200175 dlg.menubox_border.atr, dlg.menubox.atr);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100176
177 /* Find length of longest item in order to center checklist */
178 check_x = 0;
179 for (i = 0; i < item_no; i++)
180 check_x = MAX(check_x, +strlen(items[i * 3 + 1]) + 4);
181
182 check_x = (list_width - check_x) / 2;
183 item_x = check_x + 4;
184
185 if (choice >= list_height) {
186 scroll = choice - list_height + 1;
187 choice -= scroll;
188 }
189
190 /* Print the list */
191 for (i = 0; i < max_choice; i++) {
Samuel Thibault66392c42006-06-30 02:18:50 -0700192 if (i != choice)
193 print_item(list, items[(scroll + i) * 3 + 1],
194 status[i + scroll], i, 0);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100195 }
Samuel Thibault66392c42006-06-30 02:18:50 -0700196 print_item(list, items[(scroll + choice) * 3 + 1],
197 status[choice + scroll], choice, 1);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100198
199 print_arrows(dialog, choice, item_no, scroll,
200 box_y, box_x + check_x + 5, list_height);
201
202 print_buttons(dialog, height, width, 0);
203
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100204 wnoutrefresh(dialog);
Samuel Thibaultf043ca42006-04-12 02:21:25 +0200205 wnoutrefresh(list);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100206 doupdate();
207
208 while (key != ESC) {
209 key = wgetch(dialog);
210
211 for (i = 0; i < max_choice; i++)
212 if (toupper(key) ==
213 toupper(items[(scroll + i) * 3 + 1][0]))
214 break;
215
216 if (i < max_choice || key == KEY_UP || key == KEY_DOWN ||
217 key == '+' || key == '-') {
218 if (key == KEY_UP || key == '-') {
219 if (!choice) {
220 if (!scroll)
221 continue;
222 /* Scroll list down */
223 if (list_height > 1) {
224 /* De-highlight current first item */
Sam Ravnborgdec69da2005-11-19 21:56:20 +0100225 print_item(list, items[scroll * 3 + 1],
226 status[scroll], 0, FALSE);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100227 scrollok(list, TRUE);
228 wscrl(list, -1);
229 scrollok(list, FALSE);
230 }
231 scroll--;
Sam Ravnborgdec69da2005-11-19 21:56:20 +0100232 print_item(list, items[scroll * 3 + 1], status[scroll], 0, TRUE);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100233 print_arrows(dialog, choice, item_no,
Sam Ravnborgdec69da2005-11-19 21:56:20 +0100234 scroll, box_y, box_x + check_x + 5, list_height);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100235
Samuel Thibaultf043ca42006-04-12 02:21:25 +0200236 wnoutrefresh(dialog);
237 wrefresh(list);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100238
239 continue; /* wait for another key press */
240 } else
241 i = choice - 1;
242 } else if (key == KEY_DOWN || key == '+') {
243 if (choice == max_choice - 1) {
244 if (scroll + choice >= item_no - 1)
245 continue;
246 /* Scroll list up */
247 if (list_height > 1) {
248 /* De-highlight current last item before scrolling up */
Sam Ravnborgdec69da2005-11-19 21:56:20 +0100249 print_item(list, items[(scroll + max_choice - 1) * 3 + 1],
250 status[scroll + max_choice - 1],
251 max_choice - 1, FALSE);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100252 scrollok(list, TRUE);
253 wscrl(list, 1);
254 scrollok(list, FALSE);
255 }
256 scroll++;
Sam Ravnborgdec69da2005-11-19 21:56:20 +0100257 print_item(list, items[(scroll + max_choice - 1) * 3 + 1],
258 status[scroll + max_choice - 1], max_choice - 1, TRUE);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100259
260 print_arrows(dialog, choice, item_no,
Sam Ravnborgdec69da2005-11-19 21:56:20 +0100261 scroll, box_y, box_x + check_x + 5, list_height);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100262
Samuel Thibaultf043ca42006-04-12 02:21:25 +0200263 wnoutrefresh(dialog);
264 wrefresh(list);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100265
266 continue; /* wait for another key press */
267 } else
268 i = choice + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 }
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100270 if (i != choice) {
271 /* De-highlight current item */
Sam Ravnborgdec69da2005-11-19 21:56:20 +0100272 print_item(list, items[(scroll + choice) * 3 + 1],
273 status[scroll + choice], choice, FALSE);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100274 /* Highlight new item */
275 choice = i;
Sam Ravnborgdec69da2005-11-19 21:56:20 +0100276 print_item(list, items[(scroll + choice) * 3 + 1],
277 status[scroll + choice], choice, TRUE);
Samuel Thibaultf043ca42006-04-12 02:21:25 +0200278 wnoutrefresh(dialog);
279 wrefresh(list);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100280 }
281 continue; /* wait for another key press */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 }
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100283 switch (key) {
284 case 'H':
285 case 'h':
286 case '?':
287 fprintf(stderr, "%s", items[(scroll + choice) * 3]);
288 delwin(dialog);
289 free(status);
290 return 1;
291 case TAB:
292 case KEY_LEFT:
293 case KEY_RIGHT:
294 button = ((key == KEY_LEFT ? --button : ++button) < 0)
295 ? 1 : (button > 1 ? 0 : button);
296
297 print_buttons(dialog, height, width, button);
298 wrefresh(dialog);
299 break;
300 case 'S':
301 case 's':
302 case ' ':
303 case '\n':
304 if (!button) {
Petr Baudis00213b12005-12-22 04:44:04 +0100305 if (!status[scroll + choice]) {
306 for (i = 0; i < item_no; i++)
307 status[i] = 0;
308 status[scroll + choice] = 1;
309 for (i = 0; i < max_choice; i++)
310 print_item(list, items[(scroll + i) * 3 + 1],
311 status[scroll + i], i, i == choice);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100312 }
Samuel Thibaultf043ca42006-04-12 02:21:25 +0200313 wnoutrefresh(dialog);
314 wrefresh(list);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100315
Petr Baudis00213b12005-12-22 04:44:04 +0100316 for (i = 0; i < item_no; i++)
317 if (status[i])
318 fprintf(stderr, "%s", items[i * 3]);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100319 } else
Sam Ravnborgdec69da2005-11-19 21:56:20 +0100320 fprintf(stderr, "%s", items[(scroll + choice) * 3]);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100321 delwin(dialog);
322 free(status);
323 return button;
324 case 'X':
325 case 'x':
326 key = ESC;
327 case ESC:
328 break;
329 }
330
331 /* Now, update everything... */
332 doupdate();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 }
334
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100335 delwin(dialog);
336 free(status);
337 return -1; /* ESC pressed */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338}