checklist.c 9.5 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
/*
 *  checklist.c -- implements the checklist box
 *
 *  ORIGINAL AUTHOR: Savio Lam (lam836@cs.cuhk.hk)
 *     Stuart Herbert - S.Herbert@sheffield.ac.uk: radiolist extension
 *     Alessandro Rubini - rubini@ipvvis.unipv.it: merged the two
 *  MODIFIED FOR LINUX KERNEL CONFIG BY: William Roadcap (roadcap@cfw.com)
 *
 *  This program is free software; you can redistribute it and/or
 *  modify it under the terms of the GNU General Public License
 *  as published by the Free Software Foundation; either version 2
 *  of the License, or (at your option) any later version.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program; if not, write to the Free Software
 *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 */

#include "dialog.h"

static int list_width, check_x, item_x, checkflag;

/*
 * Print list item
 */
S
Sam Ravnborg 已提交
31 32
static void print_item(WINDOW * win, const char *item, int status, int choice,
		       int selected)
L
Linus Torvalds 已提交
33
{
S
Sam Ravnborg 已提交
34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
	int i;

	/* Clear 'residue' of last item */
	wattrset(win, menubox_attr);
	wmove(win, choice, 0);
	for (i = 0; i < list_width; i++)
		waddch(win, ' ');

	wmove(win, choice, check_x);
	wattrset(win, selected ? check_selected_attr : check_attr);
	if (checkflag == FLAG_CHECK)
		wprintw(win, "[%c]", status ? 'X' : ' ');
	else
		wprintw(win, "(%c)", status ? 'X' : ' ');

	wattrset(win, selected ? tag_selected_attr : tag_attr);
	mvwaddch(win, choice, item_x, item[0]);
	wattrset(win, selected ? item_selected_attr : item_attr);
	waddstr(win, (char *)item + 1);
	if (selected) {
		wmove(win, choice, check_x + 1);
		wrefresh(win);
	}
L
Linus Torvalds 已提交
57 58 59 60 61
}

/*
 * Print the scroll indicators.
 */
S
Sam Ravnborg 已提交
62
static void print_arrows(WINDOW * win, int choice, int item_no, int scroll,
S
Sam Ravnborg 已提交
63
	     int y, int x, int height)
L
Linus Torvalds 已提交
64
{
S
Sam Ravnborg 已提交
65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92
	wmove(win, y, x);

	if (scroll > 0) {
		wattrset(win, uarrow_attr);
		waddch(win, ACS_UARROW);
		waddstr(win, "(-)");
	} else {
		wattrset(win, menubox_attr);
		waddch(win, ACS_HLINE);
		waddch(win, ACS_HLINE);
		waddch(win, ACS_HLINE);
		waddch(win, ACS_HLINE);
	}

	y = y + height + 1;
	wmove(win, y, x);

	if ((height < item_no) && (scroll + choice < item_no - 1)) {
		wattrset(win, darrow_attr);
		waddch(win, ACS_DARROW);
		waddstr(win, "(+)");
	} else {
		wattrset(win, menubox_border_attr);
		waddch(win, ACS_HLINE);
		waddch(win, ACS_HLINE);
		waddch(win, ACS_HLINE);
		waddch(win, ACS_HLINE);
	}
L
Linus Torvalds 已提交
93 94 95 96 97
}

/*
 *  Display the termination buttons
 */
S
Sam Ravnborg 已提交
98
static void print_buttons(WINDOW * dialog, int height, int width, int selected)
L
Linus Torvalds 已提交
99
{
S
Sam Ravnborg 已提交
100 101
	int x = width / 2 - 11;
	int y = height - 2;
L
Linus Torvalds 已提交
102

S
Sam Ravnborg 已提交
103 104
	print_button(dialog, "Select", y, x, selected == 0);
	print_button(dialog, " Help ", y, x + 14, selected == 1);
L
Linus Torvalds 已提交
105

S
Sam Ravnborg 已提交
106 107
	wmove(dialog, y, x + 1 + 14 * selected);
	wrefresh(dialog);
L
Linus Torvalds 已提交
108 109 110 111 112 113
}

/*
 * Display a dialog box with a list of options that can be turned on or off
 * The `flag' parameter is used to select between radiolist and checklist.
 */
S
Sam Ravnborg 已提交
114 115 116
int dialog_checklist(const char *title, const char *prompt, int height,
		     int width, int list_height, int item_no,
		     const char *const *items, int flag)
L
Linus Torvalds 已提交
117
{
S
Sam Ravnborg 已提交
118 119 120 121 122 123 124 125 126 127 128 129
	int i, x, y, box_x, box_y;
	int key = 0, button = 0, choice = 0, scroll = 0, max_choice, *status;
	WINDOW *dialog, *list;

	checkflag = flag;

	/* Allocate space for storing item on/off status */
	if ((status = malloc(sizeof(int) * item_no)) == NULL) {
		endwin();
		fprintf(stderr,
			"\nCan't allocate memory in dialog_checklist().\n");
		exit(-1);
L
Linus Torvalds 已提交
130 131
	}

S
Sam Ravnborg 已提交
132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183
	/* Initializes status */
	for (i = 0; i < item_no; i++) {
		status[i] = !strcasecmp(items[i * 3 + 2], "on");
		if ((!choice && status[i])
		    || !strcasecmp(items[i * 3 + 2], "selected"))
			choice = i + 1;
	}
	if (choice)
		choice--;

	max_choice = MIN(list_height, item_no);

	/* center dialog box on screen */
	x = (COLS - width) / 2;
	y = (LINES - height) / 2;

	draw_shadow(stdscr, y, x, height, width);

	dialog = newwin(height, width, y, x);
	keypad(dialog, TRUE);

	draw_box(dialog, 0, 0, height, width, dialog_attr, border_attr);
	wattrset(dialog, border_attr);
	mvwaddch(dialog, height - 3, 0, ACS_LTEE);
	for (i = 0; i < width - 2; i++)
		waddch(dialog, ACS_HLINE);
	wattrset(dialog, dialog_attr);
	waddch(dialog, ACS_RTEE);

	if (title != NULL && strlen(title) >= width - 2) {
		/* truncate long title -- mec */
		char *title2 = malloc(width - 2 + 1);
		memcpy(title2, title, width - 2);
		title2[width - 2] = '\0';
		title = title2;
	}

	if (title != NULL) {
		wattrset(dialog, title_attr);
		mvwaddch(dialog, 0, (width - strlen(title)) / 2 - 1, ' ');
		waddstr(dialog, (char *)title);
		waddch(dialog, ' ');
	}

	wattrset(dialog, dialog_attr);
	print_autowrap(dialog, prompt, width - 2, 1, 3);

	list_width = width - 6;
	box_y = height - list_height - 5;
	box_x = (width - list_width) / 2 - 1;

	/* create new window for the list */
S
Sam Ravnborg 已提交
184 185
	list = subwin(dialog, list_height, list_width, y + box_y + 1,
	              x + box_x + 1);
S
Sam Ravnborg 已提交
186 187 188 189 190

	keypad(list, TRUE);

	/* draw a box around the list items */
	draw_box(dialog, box_y, box_x, list_height + 2, list_width + 2,
S
Sam Ravnborg 已提交
191
	         menubox_border_attr, menubox_attr);
S
Sam Ravnborg 已提交
192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209

	/* Find length of longest item in order to center checklist */
	check_x = 0;
	for (i = 0; i < item_no; i++)
		check_x = MAX(check_x, +strlen(items[i * 3 + 1]) + 4);

	check_x = (list_width - check_x) / 2;
	item_x = check_x + 4;

	if (choice >= list_height) {
		scroll = choice - list_height + 1;
		choice -= scroll;
	}

	/* Print the list */
	for (i = 0; i < max_choice; i++) {
		print_item(list, items[(scroll + i) * 3 + 1],
			   status[i + scroll], i, i == choice);
L
Linus Torvalds 已提交
210 211
	}

S
Sam Ravnborg 已提交
212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237
	print_arrows(dialog, choice, item_no, scroll,
		     box_y, box_x + check_x + 5, list_height);

	print_buttons(dialog, height, width, 0);

	wnoutrefresh(list);
	wnoutrefresh(dialog);
	doupdate();

	while (key != ESC) {
		key = wgetch(dialog);

		for (i = 0; i < max_choice; i++)
			if (toupper(key) ==
			    toupper(items[(scroll + i) * 3 + 1][0]))
				break;

		if (i < max_choice || key == KEY_UP || key == KEY_DOWN ||
		    key == '+' || key == '-') {
			if (key == KEY_UP || key == '-') {
				if (!choice) {
					if (!scroll)
						continue;
					/* Scroll list down */
					if (list_height > 1) {
						/* De-highlight current first item */
S
Sam Ravnborg 已提交
238 239
						print_item(list, items[scroll * 3 + 1],
							   status[scroll], 0, FALSE);
S
Sam Ravnborg 已提交
240 241 242 243 244
						scrollok(list, TRUE);
						wscrl(list, -1);
						scrollok(list, FALSE);
					}
					scroll--;
S
Sam Ravnborg 已提交
245
					print_item(list, items[scroll * 3 + 1], status[scroll], 0, TRUE);
S
Sam Ravnborg 已提交
246 247 248
					wnoutrefresh(list);

					print_arrows(dialog, choice, item_no,
S
Sam Ravnborg 已提交
249
						     scroll, box_y, box_x + check_x + 5, list_height);
S
Sam Ravnborg 已提交
250 251 252 253 254 255 256 257 258 259 260 261 262

					wrefresh(dialog);

					continue;	/* wait for another key press */
				} else
					i = choice - 1;
			} else if (key == KEY_DOWN || key == '+') {
				if (choice == max_choice - 1) {
					if (scroll + choice >= item_no - 1)
						continue;
					/* Scroll list up */
					if (list_height > 1) {
						/* De-highlight current last item before scrolling up */
S
Sam Ravnborg 已提交
263 264 265
						print_item(list, items[(scroll + max_choice - 1) * 3 + 1],
							   status[scroll + max_choice - 1],
							   max_choice - 1, FALSE);
S
Sam Ravnborg 已提交
266 267 268 269 270
						scrollok(list, TRUE);
						wscrl(list, 1);
						scrollok(list, FALSE);
					}
					scroll++;
S
Sam Ravnborg 已提交
271 272
					print_item(list, items[(scroll + max_choice - 1) * 3 + 1],
						   status[scroll + max_choice - 1], max_choice - 1, TRUE);
S
Sam Ravnborg 已提交
273 274 275
					wnoutrefresh(list);

					print_arrows(dialog, choice, item_no,
S
Sam Ravnborg 已提交
276
						     scroll, box_y, box_x + check_x + 5, list_height);
S
Sam Ravnborg 已提交
277 278 279 280 281 282 283 284 285

					wrefresh(dialog);

					continue;	/* wait for another key press */
				} else
					i = choice + 1;
			}
			if (i != choice) {
				/* De-highlight current item */
S
Sam Ravnborg 已提交
286 287
				print_item(list, items[(scroll + choice) * 3 + 1],
					   status[scroll + choice], choice, FALSE);
S
Sam Ravnborg 已提交
288 289
				/* Highlight new item */
				choice = i;
S
Sam Ravnborg 已提交
290 291
				print_item(list, items[(scroll + choice) * 3 + 1],
					   status[scroll + choice], choice, TRUE);
S
Sam Ravnborg 已提交
292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319
				wnoutrefresh(list);
				wrefresh(dialog);
			}
			continue;	/* wait for another key press */
		}
		switch (key) {
		case 'H':
		case 'h':
		case '?':
			fprintf(stderr, "%s", items[(scroll + choice) * 3]);
			delwin(dialog);
			free(status);
			return 1;
		case TAB:
		case KEY_LEFT:
		case KEY_RIGHT:
			button = ((key == KEY_LEFT ? --button : ++button) < 0)
			    ? 1 : (button > 1 ? 0 : button);

			print_buttons(dialog, height, width, button);
			wrefresh(dialog);
			break;
		case 'S':
		case 's':
		case ' ':
		case '\n':
			if (!button) {
				if (flag == FLAG_CHECK) {
S
Sam Ravnborg 已提交
320
					status[scroll + choice] = !status[scroll + choice];
S
Sam Ravnborg 已提交
321 322
					wmove(list, choice, check_x);
					wattrset(list, check_selected_attr);
S
Sam Ravnborg 已提交
323
					wprintw(list, "[%c]", status[scroll + choice] ? 'X' : ' ');
S
Sam Ravnborg 已提交
324 325 326 327 328 329
				} else {
					if (!status[scroll + choice]) {
						for (i = 0; i < item_no; i++)
							status[i] = 0;
						status[scroll + choice] = 1;
						for (i = 0; i < max_choice; i++)
S
Sam Ravnborg 已提交
330 331
							print_item(list, items[(scroll + i) * 3 + 1],
								   status[scroll + i], i, i == choice);
S
Sam Ravnborg 已提交
332 333 334 335 336 337 338 339
					}
				}
				wnoutrefresh(list);
				wrefresh(dialog);

				for (i = 0; i < item_no; i++) {
					if (status[i]) {
						if (flag == FLAG_CHECK) {
S
Sam Ravnborg 已提交
340
							fprintf(stderr, "\"%s\" ", items[i * 3]);
S
Sam Ravnborg 已提交
341
						} else {
S
Sam Ravnborg 已提交
342
							fprintf(stderr, "%s", items[i * 3]);
S
Sam Ravnborg 已提交
343 344 345 346 347
						}

					}
				}
			} else
S
Sam Ravnborg 已提交
348
				fprintf(stderr, "%s", items[(scroll + choice) * 3]);
S
Sam Ravnborg 已提交
349 350 351 352 353 354 355 356 357 358 359 360 361
			delwin(dialog);
			free(status);
			return button;
		case 'X':
		case 'x':
			key = ESC;
		case ESC:
			break;
		}

		/* Now, update everything... */
		doupdate();
	}
L
Linus Torvalds 已提交
362

S
Sam Ravnborg 已提交
363 364 365
	delwin(dialog);
	free(status);
	return -1;		/* ESC pressed */
L
Linus Torvalds 已提交
366
}