blob: b2a878c936d63c793bca031b9b5d52f62b9e2e19 [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 Ravnborg2982de62006-07-27 22:10:27 +020031static void print_item(WINDOW * win, int choice, int selected)
Linus Torvalds1da177e2005-04-16 15:20:36 -070032{
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +010033 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +010035 /* Clear 'residue' of last item */
Sam Ravnborg98e5a152006-07-24 21:40:46 +020036 wattrset(win, dlg.menubox.atr);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +010037 wmove(win, choice, 0);
38 for (i = 0; i < list_width; i++)
39 waddch(win, ' ');
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +010041 wmove(win, choice, check_x);
Sam Ravnborg98e5a152006-07-24 21:40:46 +020042 wattrset(win, selected ? dlg.check_selected.atr
43 : dlg.check.atr);
Sam Ravnborg2982de62006-07-27 22:10:27 +020044 wprintw(win, "(%c)", item_is_tag('X') ? 'X' : ' ');
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
Sam Ravnborg98e5a152006-07-24 21:40:46 +020046 wattrset(win, selected ? dlg.tag_selected.atr : dlg.tag.atr);
Sam Ravnborg2982de62006-07-27 22:10:27 +020047 mvwaddch(win, choice, item_x, item_str()[0]);
Sam Ravnborg98e5a152006-07-24 21:40:46 +020048 wattrset(win, selected ? dlg.item_selected.atr : dlg.item.atr);
Sam Ravnborg2982de62006-07-27 22:10:27 +020049 waddstr(win, (char *)item_str() + 1);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +010050 if (selected) {
51 wmove(win, choice, check_x + 1);
52 wrefresh(win);
53 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070054}
55
56/*
57 * Print the scroll indicators.
58 */
Sam Ravnborgdec69da2005-11-19 21:56:20 +010059static void print_arrows(WINDOW * win, int choice, int item_no, int scroll,
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +010060 int y, int x, int height)
Linus Torvalds1da177e2005-04-16 15:20:36 -070061{
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +010062 wmove(win, y, x);
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +010064 if (scroll > 0) {
Sam Ravnborg98e5a152006-07-24 21:40:46 +020065 wattrset(win, dlg.uarrow.atr);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +010066 waddch(win, ACS_UARROW);
67 waddstr(win, "(-)");
68 } else {
Sam Ravnborg98e5a152006-07-24 21:40:46 +020069 wattrset(win, dlg.menubox.atr);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +010070 waddch(win, ACS_HLINE);
71 waddch(win, ACS_HLINE);
72 waddch(win, ACS_HLINE);
73 waddch(win, ACS_HLINE);
74 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +010076 y = y + height + 1;
77 wmove(win, y, x);
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +010079 if ((height < item_no) && (scroll + choice < item_no - 1)) {
Sam Ravnborg98e5a152006-07-24 21:40:46 +020080 wattrset(win, dlg.darrow.atr);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +010081 waddch(win, ACS_DARROW);
82 waddstr(win, "(+)");
83 } else {
Sam Ravnborg98e5a152006-07-24 21:40:46 +020084 wattrset(win, dlg.menubox_border.atr);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +010085 waddch(win, ACS_HLINE);
86 waddch(win, ACS_HLINE);
87 waddch(win, ACS_HLINE);
88 waddch(win, ACS_HLINE);
89 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070090}
91
92/*
93 * Display the termination buttons
94 */
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +010095static void print_buttons(WINDOW * dialog, int height, int width, int selected)
Linus Torvalds1da177e2005-04-16 15:20:36 -070096{
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +010097 int x = width / 2 - 11;
98 int y = height - 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
EGRY Gabor75c0a8a2008-01-11 23:42:54 +0100100 print_button(dialog, gettext("Select"), y, x, selected == 0);
101 print_button(dialog, gettext(" Help "), y, x + 14, selected == 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100103 wmove(dialog, y, x + 1 + 14 * selected);
104 wrefresh(dialog);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105}
106
107/*
108 * Display a dialog box with a list of options that can be turned on or off
Petr Baudis00213b12005-12-22 04:44:04 +0100109 * in the style of radiolist (only one option turned on at a time).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 */
Sam Ravnborgdec69da2005-11-19 21:56:20 +0100111int dialog_checklist(const char *title, const char *prompt, int height,
Sam Ravnborg2982de62006-07-27 22:10:27 +0200112 int width, int list_height)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113{
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100114 int i, x, y, box_x, box_y;
Sam Ravnborg2982de62006-07-27 22:10:27 +0200115 int key = 0, button = 0, choice = 0, scroll = 0, max_choice;
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100116 WINDOW *dialog, *list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
Sam Ravnborg2982de62006-07-27 22:10:27 +0200118 /* which item to highlight */
119 item_foreach() {
120 if (item_is_tag('X'))
121 choice = item_n();
122 if (item_is_selected()) {
123 choice = item_n();
124 break;
125 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
Sam Ravnborgc8dc68a2006-07-29 22:48:57 +0200128do_resize:
129 if (getmaxy(stdscr) < (height + 6))
130 return -ERRDISPLAYTOOSMALL;
131 if (getmaxx(stdscr) < (width + 6))
132 return -ERRDISPLAYTOOSMALL;
133
Sam Ravnborg2982de62006-07-27 22:10:27 +0200134 max_choice = MIN(list_height, item_count());
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100135
136 /* center dialog box on screen */
137 x = (COLS - width) / 2;
138 y = (LINES - height) / 2;
139
140 draw_shadow(stdscr, y, x, height, width);
141
142 dialog = newwin(height, width, y, x);
143 keypad(dialog, TRUE);
144
Sam Ravnborg98e5a152006-07-24 21:40:46 +0200145 draw_box(dialog, 0, 0, height, width,
146 dlg.dialog.atr, dlg.border.atr);
147 wattrset(dialog, dlg.border.atr);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100148 mvwaddch(dialog, height - 3, 0, ACS_LTEE);
149 for (i = 0; i < width - 2; i++)
150 waddch(dialog, ACS_HLINE);
Sam Ravnborg98e5a152006-07-24 21:40:46 +0200151 wattrset(dialog, dlg.dialog.atr);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100152 waddch(dialog, ACS_RTEE);
153
Sam Ravnborgfa7009d2005-11-19 23:38:06 +0100154 print_title(dialog, title, width);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100155
Sam Ravnborg98e5a152006-07-24 21:40:46 +0200156 wattrset(dialog, dlg.dialog.atr);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100157 print_autowrap(dialog, prompt, width - 2, 1, 3);
158
159 list_width = width - 6;
160 box_y = height - list_height - 5;
161 box_x = (width - list_width) / 2 - 1;
162
163 /* create new window for the list */
Sam Ravnborgdec69da2005-11-19 21:56:20 +0100164 list = subwin(dialog, list_height, list_width, y + box_y + 1,
165 x + box_x + 1);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100166
167 keypad(list, TRUE);
168
169 /* draw a box around the list items */
170 draw_box(dialog, box_y, box_x, list_height + 2, list_width + 2,
Sam Ravnborg98e5a152006-07-24 21:40:46 +0200171 dlg.menubox_border.atr, dlg.menubox.atr);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100172
173 /* Find length of longest item in order to center checklist */
174 check_x = 0;
Sam Ravnborg2982de62006-07-27 22:10:27 +0200175 item_foreach()
176 check_x = MAX(check_x, strlen(item_str()) + 4);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100177
178 check_x = (list_width - check_x) / 2;
179 item_x = check_x + 4;
180
181 if (choice >= list_height) {
182 scroll = choice - list_height + 1;
183 choice -= scroll;
184 }
185
186 /* Print the list */
187 for (i = 0; i < max_choice; i++) {
Sam Ravnborg2982de62006-07-27 22:10:27 +0200188 item_set(scroll + i);
189 print_item(list, i, i == choice);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100190 }
191
Sam Ravnborg2982de62006-07-27 22:10:27 +0200192 print_arrows(dialog, choice, item_count(), scroll,
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100193 box_y, box_x + check_x + 5, list_height);
194
195 print_buttons(dialog, height, width, 0);
196
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100197 wnoutrefresh(dialog);
Samuel Thibaultf043ca42006-04-12 02:21:25 +0200198 wnoutrefresh(list);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100199 doupdate();
200
Sam Ravnborgf3cbcdc2006-07-28 23:57:48 +0200201 while (key != KEY_ESC) {
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100202 key = wgetch(dialog);
203
Sam Ravnborg2982de62006-07-27 22:10:27 +0200204 for (i = 0; i < max_choice; i++) {
205 item_set(i + scroll);
206 if (toupper(key) == toupper(item_str()[0]))
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100207 break;
Sam Ravnborg2982de62006-07-27 22:10:27 +0200208 }
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100209
210 if (i < max_choice || key == KEY_UP || key == KEY_DOWN ||
211 key == '+' || key == '-') {
212 if (key == KEY_UP || key == '-') {
213 if (!choice) {
214 if (!scroll)
215 continue;
216 /* Scroll list down */
217 if (list_height > 1) {
218 /* De-highlight current first item */
Sam Ravnborg2982de62006-07-27 22:10:27 +0200219 item_set(scroll);
220 print_item(list, 0, FALSE);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100221 scrollok(list, TRUE);
222 wscrl(list, -1);
223 scrollok(list, FALSE);
224 }
225 scroll--;
Sam Ravnborg2982de62006-07-27 22:10:27 +0200226 item_set(scroll);
227 print_item(list, 0, TRUE);
228 print_arrows(dialog, choice, item_count(),
Sam Ravnborgdec69da2005-11-19 21:56:20 +0100229 scroll, box_y, box_x + check_x + 5, list_height);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100230
Samuel Thibaultf043ca42006-04-12 02:21:25 +0200231 wnoutrefresh(dialog);
232 wrefresh(list);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100233
234 continue; /* wait for another key press */
235 } else
236 i = choice - 1;
237 } else if (key == KEY_DOWN || key == '+') {
238 if (choice == max_choice - 1) {
Sam Ravnborg2982de62006-07-27 22:10:27 +0200239 if (scroll + choice >= item_count() - 1)
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100240 continue;
241 /* Scroll list up */
242 if (list_height > 1) {
243 /* De-highlight current last item before scrolling up */
Sam Ravnborg2982de62006-07-27 22:10:27 +0200244 item_set(scroll + max_choice - 1);
245 print_item(list,
246 max_choice - 1,
247 FALSE);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100248 scrollok(list, TRUE);
249 wscrl(list, 1);
250 scrollok(list, FALSE);
251 }
252 scroll++;
Sam Ravnborg2982de62006-07-27 22:10:27 +0200253 item_set(scroll + max_choice - 1);
254 print_item(list, max_choice - 1, TRUE);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100255
Sam Ravnborg2982de62006-07-27 22:10:27 +0200256 print_arrows(dialog, choice, item_count(),
Sam Ravnborgdec69da2005-11-19 21:56:20 +0100257 scroll, box_y, box_x + check_x + 5, list_height);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100258
Samuel Thibaultf043ca42006-04-12 02:21:25 +0200259 wnoutrefresh(dialog);
260 wrefresh(list);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100261
262 continue; /* wait for another key press */
263 } else
264 i = choice + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 }
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100266 if (i != choice) {
267 /* De-highlight current item */
Sam Ravnborg2982de62006-07-27 22:10:27 +0200268 item_set(scroll + choice);
269 print_item(list, choice, FALSE);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100270 /* Highlight new item */
271 choice = i;
Sam Ravnborg2982de62006-07-27 22:10:27 +0200272 item_set(scroll + choice);
273 print_item(list, choice, TRUE);
Samuel Thibaultf043ca42006-04-12 02:21:25 +0200274 wnoutrefresh(dialog);
275 wrefresh(list);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100276 }
277 continue; /* wait for another key press */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 }
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100279 switch (key) {
280 case 'H':
281 case 'h':
282 case '?':
Sam Ravnborg2982de62006-07-27 22:10:27 +0200283 button = 1;
284 /* fall-through */
285 case 'S':
286 case 's':
287 case ' ':
288 case '\n':
289 item_foreach()
290 item_set_selected(0);
291 item_set(scroll + choice);
292 item_set_selected(1);
293 delwin(list);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100294 delwin(dialog);
Sam Ravnborg2982de62006-07-27 22:10:27 +0200295 return button;
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100296 case TAB:
297 case KEY_LEFT:
298 case KEY_RIGHT:
299 button = ((key == KEY_LEFT ? --button : ++button) < 0)
300 ? 1 : (button > 1 ? 0 : button);
301
302 print_buttons(dialog, height, width, button);
303 wrefresh(dialog);
304 break;
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100305 case 'X':
306 case 'x':
Sam Ravnborgf3cbcdc2006-07-28 23:57:48 +0200307 key = KEY_ESC;
308 break;
309 case KEY_ESC:
310 key = on_key_esc(dialog);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100311 break;
Sam Ravnborgc8dc68a2006-07-29 22:48:57 +0200312 case KEY_RESIZE:
313 delwin(list);
314 delwin(dialog);
315 on_key_resize();
316 goto do_resize;
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100317 }
318
319 /* Now, update everything... */
320 doupdate();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 }
Sam Ravnborg2982de62006-07-27 22:10:27 +0200322 delwin(list);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100323 delwin(dialog);
Sam Ravnborgf3cbcdc2006-07-28 23:57:48 +0200324 return key; /* ESC pressed */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325}