checklist.c 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312
  1. /*
  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. #include "dialog.h"
  24. static int list_width, check_x, item_x;
  25. /*
  26. * Print list item
  27. */
  28. static void print_item(WINDOW * win, int choice, int selected)
  29. {
  30. int i;
  31. /* Clear 'residue' of last item */
  32. wattrset(win, dlg.menubox.atr);
  33. wmove(win, choice, 0);
  34. for (i = 0; i < list_width; i++)
  35. waddch(win, ' ');
  36. wmove(win, choice, check_x);
  37. wattrset(win, selected ? dlg.check_selected.atr
  38. : dlg.check.atr);
  39. wprintw(win, "(%c)", item_is_tag('X') ? 'X' : ' ');
  40. wattrset(win, selected ? dlg.tag_selected.atr : dlg.tag.atr);
  41. mvwaddch(win, choice, item_x, item_str()[0]);
  42. wattrset(win, selected ? dlg.item_selected.atr : dlg.item.atr);
  43. waddstr(win, (char *)item_str() + 1);
  44. if (selected) {
  45. wmove(win, choice, check_x + 1);
  46. wrefresh(win);
  47. }
  48. }
  49. /*
  50. * Print the scroll indicators.
  51. */
  52. static void print_arrows(WINDOW * win, int choice, int item_no, int scroll,
  53. int y, int x, int height)
  54. {
  55. wmove(win, y, x);
  56. if (scroll > 0) {
  57. wattrset(win, dlg.uarrow.atr);
  58. waddch(win, ACS_UARROW);
  59. waddstr(win, "(-)");
  60. } else {
  61. wattrset(win, dlg.menubox.atr);
  62. waddch(win, ACS_HLINE);
  63. waddch(win, ACS_HLINE);
  64. waddch(win, ACS_HLINE);
  65. waddch(win, ACS_HLINE);
  66. }
  67. y = y + height + 1;
  68. wmove(win, y, x);
  69. if ((height < item_no) && (scroll + choice < item_no - 1)) {
  70. wattrset(win, dlg.darrow.atr);
  71. waddch(win, ACS_DARROW);
  72. waddstr(win, "(+)");
  73. } else {
  74. wattrset(win, dlg.menubox_border.atr);
  75. waddch(win, ACS_HLINE);
  76. waddch(win, ACS_HLINE);
  77. waddch(win, ACS_HLINE);
  78. waddch(win, ACS_HLINE);
  79. }
  80. }
  81. /*
  82. * Display the termination buttons
  83. */
  84. static void print_buttons(WINDOW * dialog, int height, int width, int selected)
  85. {
  86. int x = width / 2 - 11;
  87. int y = height - 2;
  88. print_button(dialog, "Select", y, x, selected == 0);
  89. print_button(dialog, " Help ", y, x + 14, selected == 1);
  90. wmove(dialog, y, x + 1 + 14 * selected);
  91. wrefresh(dialog);
  92. }
  93. /*
  94. * Display a dialog box with a list of options that can be turned on or off
  95. * in the style of radiolist (only one option turned on at a time).
  96. */
  97. int dialog_checklist(const char *title, const char *prompt, int height,
  98. int width, int list_height)
  99. {
  100. int i, x, y, box_x, box_y;
  101. int key = 0, button = 0, choice = 0, scroll = 0, max_choice;
  102. WINDOW *dialog, *list;
  103. /* which item to highlight */
  104. item_foreach() {
  105. if (item_is_tag('X'))
  106. choice = item_n();
  107. if (item_is_selected()) {
  108. choice = item_n();
  109. break;
  110. }
  111. }
  112. max_choice = MIN(list_height, item_count());
  113. /* center dialog box on screen */
  114. x = (COLS - width) / 2;
  115. y = (LINES - height) / 2;
  116. draw_shadow(stdscr, y, x, height, width);
  117. dialog = newwin(height, width, y, x);
  118. keypad(dialog, TRUE);
  119. draw_box(dialog, 0, 0, height, width,
  120. dlg.dialog.atr, dlg.border.atr);
  121. wattrset(dialog, dlg.border.atr);
  122. mvwaddch(dialog, height - 3, 0, ACS_LTEE);
  123. for (i = 0; i < width - 2; i++)
  124. waddch(dialog, ACS_HLINE);
  125. wattrset(dialog, dlg.dialog.atr);
  126. waddch(dialog, ACS_RTEE);
  127. print_title(dialog, title, width);
  128. wattrset(dialog, dlg.dialog.atr);
  129. print_autowrap(dialog, prompt, width - 2, 1, 3);
  130. list_width = width - 6;
  131. box_y = height - list_height - 5;
  132. box_x = (width - list_width) / 2 - 1;
  133. /* create new window for the list */
  134. list = subwin(dialog, list_height, list_width, y + box_y + 1,
  135. x + box_x + 1);
  136. keypad(list, TRUE);
  137. /* draw a box around the list items */
  138. draw_box(dialog, box_y, box_x, list_height + 2, list_width + 2,
  139. dlg.menubox_border.atr, dlg.menubox.atr);
  140. /* Find length of longest item in order to center checklist */
  141. check_x = 0;
  142. item_foreach()
  143. check_x = MAX(check_x, strlen(item_str()) + 4);
  144. check_x = (list_width - check_x) / 2;
  145. item_x = check_x + 4;
  146. if (choice >= list_height) {
  147. scroll = choice - list_height + 1;
  148. choice -= scroll;
  149. }
  150. /* Print the list */
  151. for (i = 0; i < max_choice; i++) {
  152. item_set(scroll + i);
  153. print_item(list, i, i == choice);
  154. }
  155. print_arrows(dialog, choice, item_count(), scroll,
  156. box_y, box_x + check_x + 5, list_height);
  157. print_buttons(dialog, height, width, 0);
  158. wnoutrefresh(dialog);
  159. wnoutrefresh(list);
  160. doupdate();
  161. while (key != ESC) {
  162. key = wgetch(dialog);
  163. for (i = 0; i < max_choice; i++) {
  164. item_set(i + scroll);
  165. if (toupper(key) == toupper(item_str()[0]))
  166. break;
  167. }
  168. if (i < max_choice || key == KEY_UP || key == KEY_DOWN ||
  169. key == '+' || key == '-') {
  170. if (key == KEY_UP || key == '-') {
  171. if (!choice) {
  172. if (!scroll)
  173. continue;
  174. /* Scroll list down */
  175. if (list_height > 1) {
  176. /* De-highlight current first item */
  177. item_set(scroll);
  178. print_item(list, 0, FALSE);
  179. scrollok(list, TRUE);
  180. wscrl(list, -1);
  181. scrollok(list, FALSE);
  182. }
  183. scroll--;
  184. item_set(scroll);
  185. print_item(list, 0, TRUE);
  186. print_arrows(dialog, choice, item_count(),
  187. scroll, box_y, box_x + check_x + 5, list_height);
  188. wnoutrefresh(dialog);
  189. wrefresh(list);
  190. continue; /* wait for another key press */
  191. } else
  192. i = choice - 1;
  193. } else if (key == KEY_DOWN || key == '+') {
  194. if (choice == max_choice - 1) {
  195. if (scroll + choice >= item_count() - 1)
  196. continue;
  197. /* Scroll list up */
  198. if (list_height > 1) {
  199. /* De-highlight current last item before scrolling up */
  200. item_set(scroll + max_choice - 1);
  201. print_item(list,
  202. max_choice - 1,
  203. FALSE);
  204. scrollok(list, TRUE);
  205. wscrl(list, 1);
  206. scrollok(list, FALSE);
  207. }
  208. scroll++;
  209. item_set(scroll + max_choice - 1);
  210. print_item(list, max_choice - 1, TRUE);
  211. print_arrows(dialog, choice, item_count(),
  212. scroll, box_y, box_x + check_x + 5, list_height);
  213. wnoutrefresh(dialog);
  214. wrefresh(list);
  215. continue; /* wait for another key press */
  216. } else
  217. i = choice + 1;
  218. }
  219. if (i != choice) {
  220. /* De-highlight current item */
  221. item_set(scroll + choice);
  222. print_item(list, choice, FALSE);
  223. /* Highlight new item */
  224. choice = i;
  225. item_set(scroll + choice);
  226. print_item(list, choice, TRUE);
  227. wnoutrefresh(dialog);
  228. wrefresh(list);
  229. }
  230. continue; /* wait for another key press */
  231. }
  232. switch (key) {
  233. case 'H':
  234. case 'h':
  235. case '?':
  236. button = 1;
  237. /* fall-through */
  238. case 'S':
  239. case 's':
  240. case ' ':
  241. case '\n':
  242. item_foreach()
  243. item_set_selected(0);
  244. item_set(scroll + choice);
  245. item_set_selected(1);
  246. delwin(list);
  247. delwin(dialog);
  248. return button;
  249. case TAB:
  250. case KEY_LEFT:
  251. case KEY_RIGHT:
  252. button = ((key == KEY_LEFT ? --button : ++button) < 0)
  253. ? 1 : (button > 1 ? 0 : button);
  254. print_buttons(dialog, height, width, button);
  255. wrefresh(dialog);
  256. break;
  257. case 'X':
  258. case 'x':
  259. key = ESC;
  260. case ESC:
  261. break;
  262. }
  263. /* Now, update everything... */
  264. doupdate();
  265. }
  266. delwin(list);
  267. delwin(dialog);
  268. return 255; /* ESC pressed */
  269. }