blob: 282511020bcb64b9de9f5bf9d100acfce8065fa0 [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
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100100 print_button(dialog, "Select", y, x, selected == 0);
101 print_button(dialog, " 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 Ravnborg2982de62006-07-27 22:10:27 +0200128 max_choice = MIN(list_height, item_count());
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100129
130 /* center dialog box on screen */
131 x = (COLS - width) / 2;
132 y = (LINES - height) / 2;
133
134 draw_shadow(stdscr, y, x, height, width);
135
136 dialog = newwin(height, width, y, x);
137 keypad(dialog, TRUE);
138
Sam Ravnborg98e5a152006-07-24 21:40:46 +0200139 draw_box(dialog, 0, 0, height, width,
140 dlg.dialog.atr, dlg.border.atr);
141 wattrset(dialog, dlg.border.atr);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100142 mvwaddch(dialog, height - 3, 0, ACS_LTEE);
143 for (i = 0; i < width - 2; i++)
144 waddch(dialog, ACS_HLINE);
Sam Ravnborg98e5a152006-07-24 21:40:46 +0200145 wattrset(dialog, dlg.dialog.atr);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100146 waddch(dialog, ACS_RTEE);
147
Sam Ravnborgfa7009d2005-11-19 23:38:06 +0100148 print_title(dialog, title, width);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100149
Sam Ravnborg98e5a152006-07-24 21:40:46 +0200150 wattrset(dialog, dlg.dialog.atr);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100151 print_autowrap(dialog, prompt, width - 2, 1, 3);
152
153 list_width = width - 6;
154 box_y = height - list_height - 5;
155 box_x = (width - list_width) / 2 - 1;
156
157 /* create new window for the list */
Sam Ravnborgdec69da2005-11-19 21:56:20 +0100158 list = subwin(dialog, list_height, list_width, y + box_y + 1,
159 x + box_x + 1);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100160
161 keypad(list, TRUE);
162
163 /* draw a box around the list items */
164 draw_box(dialog, box_y, box_x, list_height + 2, list_width + 2,
Sam Ravnborg98e5a152006-07-24 21:40:46 +0200165 dlg.menubox_border.atr, dlg.menubox.atr);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100166
167 /* Find length of longest item in order to center checklist */
168 check_x = 0;
Sam Ravnborg2982de62006-07-27 22:10:27 +0200169 item_foreach()
170 check_x = MAX(check_x, strlen(item_str()) + 4);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100171
172 check_x = (list_width - check_x) / 2;
173 item_x = check_x + 4;
174
175 if (choice >= list_height) {
176 scroll = choice - list_height + 1;
177 choice -= scroll;
178 }
179
180 /* Print the list */
181 for (i = 0; i < max_choice; i++) {
Sam Ravnborg2982de62006-07-27 22:10:27 +0200182 item_set(scroll + i);
183 print_item(list, i, i == choice);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100184 }
185
Sam Ravnborg2982de62006-07-27 22:10:27 +0200186 print_arrows(dialog, choice, item_count(), scroll,
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100187 box_y, box_x + check_x + 5, list_height);
188
189 print_buttons(dialog, height, width, 0);
190
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100191 wnoutrefresh(dialog);
Samuel Thibaultf043ca42006-04-12 02:21:25 +0200192 wnoutrefresh(list);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100193 doupdate();
194
195 while (key != ESC) {
196 key = wgetch(dialog);
197
Sam Ravnborg2982de62006-07-27 22:10:27 +0200198 for (i = 0; i < max_choice; i++) {
199 item_set(i + scroll);
200 if (toupper(key) == toupper(item_str()[0]))
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100201 break;
Sam Ravnborg2982de62006-07-27 22:10:27 +0200202 }
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100203
204 if (i < max_choice || key == KEY_UP || key == KEY_DOWN ||
205 key == '+' || key == '-') {
206 if (key == KEY_UP || key == '-') {
207 if (!choice) {
208 if (!scroll)
209 continue;
210 /* Scroll list down */
211 if (list_height > 1) {
212 /* De-highlight current first item */
Sam Ravnborg2982de62006-07-27 22:10:27 +0200213 item_set(scroll);
214 print_item(list, 0, FALSE);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100215 scrollok(list, TRUE);
216 wscrl(list, -1);
217 scrollok(list, FALSE);
218 }
219 scroll--;
Sam Ravnborg2982de62006-07-27 22:10:27 +0200220 item_set(scroll);
221 print_item(list, 0, TRUE);
222 print_arrows(dialog, choice, item_count(),
Sam Ravnborgdec69da2005-11-19 21:56:20 +0100223 scroll, box_y, box_x + check_x + 5, list_height);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100224
Samuel Thibaultf043ca42006-04-12 02:21:25 +0200225 wnoutrefresh(dialog);
226 wrefresh(list);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100227
228 continue; /* wait for another key press */
229 } else
230 i = choice - 1;
231 } else if (key == KEY_DOWN || key == '+') {
232 if (choice == max_choice - 1) {
Sam Ravnborg2982de62006-07-27 22:10:27 +0200233 if (scroll + choice >= item_count() - 1)
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100234 continue;
235 /* Scroll list up */
236 if (list_height > 1) {
237 /* De-highlight current last item before scrolling up */
Sam Ravnborg2982de62006-07-27 22:10:27 +0200238 item_set(scroll + max_choice - 1);
239 print_item(list,
240 max_choice - 1,
241 FALSE);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100242 scrollok(list, TRUE);
243 wscrl(list, 1);
244 scrollok(list, FALSE);
245 }
246 scroll++;
Sam Ravnborg2982de62006-07-27 22:10:27 +0200247 item_set(scroll + max_choice - 1);
248 print_item(list, max_choice - 1, TRUE);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100249
Sam Ravnborg2982de62006-07-27 22:10:27 +0200250 print_arrows(dialog, choice, item_count(),
Sam Ravnborgdec69da2005-11-19 21:56:20 +0100251 scroll, box_y, box_x + check_x + 5, list_height);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100252
Samuel Thibaultf043ca42006-04-12 02:21:25 +0200253 wnoutrefresh(dialog);
254 wrefresh(list);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100255
256 continue; /* wait for another key press */
257 } else
258 i = choice + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 }
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100260 if (i != choice) {
261 /* De-highlight current item */
Sam Ravnborg2982de62006-07-27 22:10:27 +0200262 item_set(scroll + choice);
263 print_item(list, choice, FALSE);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100264 /* Highlight new item */
265 choice = i;
Sam Ravnborg2982de62006-07-27 22:10:27 +0200266 item_set(scroll + choice);
267 print_item(list, choice, TRUE);
Samuel Thibaultf043ca42006-04-12 02:21:25 +0200268 wnoutrefresh(dialog);
269 wrefresh(list);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100270 }
271 continue; /* wait for another key press */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 }
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100273 switch (key) {
274 case 'H':
275 case 'h':
276 case '?':
Sam Ravnborg2982de62006-07-27 22:10:27 +0200277 button = 1;
278 /* fall-through */
279 case 'S':
280 case 's':
281 case ' ':
282 case '\n':
283 item_foreach()
284 item_set_selected(0);
285 item_set(scroll + choice);
286 item_set_selected(1);
287 delwin(list);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100288 delwin(dialog);
Sam Ravnborg2982de62006-07-27 22:10:27 +0200289 return button;
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100290 case TAB:
291 case KEY_LEFT:
292 case KEY_RIGHT:
293 button = ((key == KEY_LEFT ? --button : ++button) < 0)
294 ? 1 : (button > 1 ? 0 : button);
295
296 print_buttons(dialog, height, width, button);
297 wrefresh(dialog);
298 break;
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100299 case 'X':
300 case 'x':
301 key = ESC;
302 case ESC:
303 break;
304 }
305
306 /* Now, update everything... */
307 doupdate();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 }
Sam Ravnborg2982de62006-07-27 22:10:27 +0200309 delwin(list);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100310 delwin(dialog);
Sam Ravnborg2982de62006-07-27 22:10:27 +0200311 return 255; /* ESC pressed */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312}