util.c 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664
  1. /*
  2. * util.c
  3. *
  4. * ORIGINAL AUTHOR: Savio Lam (lam836@cs.cuhk.hk)
  5. * MODIFIED FOR LINUX KERNEL CONFIG BY: William Roadcap (roadcap@cfw.com)
  6. *
  7. * This program is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU General Public License
  9. * as published by the Free Software Foundation; either version 2
  10. * of the License, or (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program; if not, write to the Free Software
  19. * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  20. */
  21. #include <stdarg.h>
  22. #include "dialog.h"
  23. /* Needed in signal handler in mconf.c */
  24. int saved_x, saved_y;
  25. struct dialog_info dlg;
  26. static void set_mono_theme(void)
  27. {
  28. dlg.screen.atr = A_NORMAL;
  29. dlg.shadow.atr = A_NORMAL;
  30. dlg.dialog.atr = A_NORMAL;
  31. dlg.title.atr = A_BOLD;
  32. dlg.border.atr = A_NORMAL;
  33. dlg.button_active.atr = A_REVERSE;
  34. dlg.button_inactive.atr = A_DIM;
  35. dlg.button_key_active.atr = A_REVERSE;
  36. dlg.button_key_inactive.atr = A_BOLD;
  37. dlg.button_label_active.atr = A_REVERSE;
  38. dlg.button_label_inactive.atr = A_NORMAL;
  39. dlg.inputbox.atr = A_NORMAL;
  40. dlg.inputbox_border.atr = A_NORMAL;
  41. dlg.searchbox.atr = A_NORMAL;
  42. dlg.searchbox_title.atr = A_BOLD;
  43. dlg.searchbox_border.atr = A_NORMAL;
  44. dlg.position_indicator.atr = A_BOLD;
  45. dlg.menubox.atr = A_NORMAL;
  46. dlg.menubox_border.atr = A_NORMAL;
  47. dlg.item.atr = A_NORMAL;
  48. dlg.item_selected.atr = A_REVERSE;
  49. dlg.tag.atr = A_BOLD;
  50. dlg.tag_selected.atr = A_REVERSE;
  51. dlg.tag_key.atr = A_BOLD;
  52. dlg.tag_key_selected.atr = A_REVERSE;
  53. dlg.check.atr = A_BOLD;
  54. dlg.check_selected.atr = A_REVERSE;
  55. dlg.uarrow.atr = A_BOLD;
  56. dlg.darrow.atr = A_BOLD;
  57. }
  58. #define DLG_COLOR(dialog, f, b, h) \
  59. do { \
  60. dlg.dialog.fg = (f); \
  61. dlg.dialog.bg = (b); \
  62. dlg.dialog.hl = (h); \
  63. } while (0)
  64. static void set_classic_theme(void)
  65. {
  66. DLG_COLOR(screen, COLOR_CYAN, COLOR_BLUE, true);
  67. DLG_COLOR(shadow, COLOR_BLACK, COLOR_BLACK, true);
  68. DLG_COLOR(dialog, COLOR_BLACK, COLOR_WHITE, false);
  69. DLG_COLOR(title, COLOR_YELLOW, COLOR_WHITE, true);
  70. DLG_COLOR(border, COLOR_WHITE, COLOR_WHITE, true);
  71. DLG_COLOR(button_active, COLOR_WHITE, COLOR_BLUE, true);
  72. DLG_COLOR(button_inactive, COLOR_BLACK, COLOR_WHITE, false);
  73. DLG_COLOR(button_key_active, COLOR_WHITE, COLOR_BLUE, true);
  74. DLG_COLOR(button_key_inactive, COLOR_RED, COLOR_WHITE, false);
  75. DLG_COLOR(button_label_active, COLOR_YELLOW, COLOR_BLUE, true);
  76. DLG_COLOR(button_label_inactive, COLOR_BLACK, COLOR_WHITE, true);
  77. DLG_COLOR(inputbox, COLOR_BLACK, COLOR_WHITE, false);
  78. DLG_COLOR(inputbox_border, COLOR_BLACK, COLOR_WHITE, false);
  79. DLG_COLOR(searchbox, COLOR_BLACK, COLOR_WHITE, false);
  80. DLG_COLOR(searchbox_title, COLOR_YELLOW, COLOR_WHITE, true);
  81. DLG_COLOR(searchbox_border, COLOR_WHITE, COLOR_WHITE, true);
  82. DLG_COLOR(position_indicator, COLOR_YELLOW, COLOR_WHITE, true);
  83. DLG_COLOR(menubox, COLOR_BLACK, COLOR_WHITE, false);
  84. DLG_COLOR(menubox_border, COLOR_WHITE, COLOR_WHITE, true);
  85. DLG_COLOR(item, COLOR_BLACK, COLOR_WHITE, false);
  86. DLG_COLOR(item_selected, COLOR_WHITE, COLOR_BLUE, true);
  87. DLG_COLOR(tag, COLOR_YELLOW, COLOR_WHITE, true);
  88. DLG_COLOR(tag_selected, COLOR_YELLOW, COLOR_BLUE, true);
  89. DLG_COLOR(tag_key, COLOR_YELLOW, COLOR_WHITE, true);
  90. DLG_COLOR(tag_key_selected, COLOR_YELLOW, COLOR_BLUE, true);
  91. DLG_COLOR(check, COLOR_BLACK, COLOR_WHITE, false);
  92. DLG_COLOR(check_selected, COLOR_WHITE, COLOR_BLUE, true);
  93. DLG_COLOR(uarrow, COLOR_GREEN, COLOR_WHITE, true);
  94. DLG_COLOR(darrow, COLOR_GREEN, COLOR_WHITE, true);
  95. }
  96. static void set_blackbg_theme(void)
  97. {
  98. DLG_COLOR(screen, COLOR_RED, COLOR_BLACK, true);
  99. DLG_COLOR(shadow, COLOR_BLACK, COLOR_BLACK, false);
  100. DLG_COLOR(dialog, COLOR_WHITE, COLOR_BLACK, false);
  101. DLG_COLOR(title, COLOR_RED, COLOR_BLACK, false);
  102. DLG_COLOR(border, COLOR_BLACK, COLOR_BLACK, true);
  103. DLG_COLOR(button_active, COLOR_YELLOW, COLOR_RED, false);
  104. DLG_COLOR(button_inactive, COLOR_YELLOW, COLOR_BLACK, false);
  105. DLG_COLOR(button_key_active, COLOR_YELLOW, COLOR_RED, true);
  106. DLG_COLOR(button_key_inactive, COLOR_RED, COLOR_BLACK, false);
  107. DLG_COLOR(button_label_active, COLOR_WHITE, COLOR_RED, false);
  108. DLG_COLOR(button_label_inactive, COLOR_BLACK, COLOR_BLACK, true);
  109. DLG_COLOR(inputbox, COLOR_YELLOW, COLOR_BLACK, false);
  110. DLG_COLOR(inputbox_border, COLOR_YELLOW, COLOR_BLACK, false);
  111. DLG_COLOR(searchbox, COLOR_YELLOW, COLOR_BLACK, false);
  112. DLG_COLOR(searchbox_title, COLOR_YELLOW, COLOR_BLACK, true);
  113. DLG_COLOR(searchbox_border, COLOR_BLACK, COLOR_BLACK, true);
  114. DLG_COLOR(position_indicator, COLOR_RED, COLOR_BLACK, false);
  115. DLG_COLOR(menubox, COLOR_YELLOW, COLOR_BLACK, false);
  116. DLG_COLOR(menubox_border, COLOR_BLACK, COLOR_BLACK, true);
  117. DLG_COLOR(item, COLOR_WHITE, COLOR_BLACK, false);
  118. DLG_COLOR(item_selected, COLOR_WHITE, COLOR_RED, false);
  119. DLG_COLOR(tag, COLOR_RED, COLOR_BLACK, false);
  120. DLG_COLOR(tag_selected, COLOR_YELLOW, COLOR_RED, true);
  121. DLG_COLOR(tag_key, COLOR_RED, COLOR_BLACK, false);
  122. DLG_COLOR(tag_key_selected, COLOR_YELLOW, COLOR_RED, true);
  123. DLG_COLOR(check, COLOR_YELLOW, COLOR_BLACK, false);
  124. DLG_COLOR(check_selected, COLOR_YELLOW, COLOR_RED, true);
  125. DLG_COLOR(uarrow, COLOR_RED, COLOR_BLACK, false);
  126. DLG_COLOR(darrow, COLOR_RED, COLOR_BLACK, false);
  127. }
  128. static void set_bluetitle_theme(void)
  129. {
  130. set_classic_theme();
  131. DLG_COLOR(title, COLOR_BLUE, COLOR_WHITE, true);
  132. DLG_COLOR(button_key_active, COLOR_YELLOW, COLOR_BLUE, true);
  133. DLG_COLOR(button_label_active, COLOR_WHITE, COLOR_BLUE, true);
  134. DLG_COLOR(searchbox_title, COLOR_BLUE, COLOR_WHITE, true);
  135. DLG_COLOR(position_indicator, COLOR_BLUE, COLOR_WHITE, true);
  136. DLG_COLOR(tag, COLOR_BLUE, COLOR_WHITE, true);
  137. DLG_COLOR(tag_key, COLOR_BLUE, COLOR_WHITE, true);
  138. }
  139. /*
  140. * Select color theme
  141. */
  142. static int set_theme(const char *theme)
  143. {
  144. int use_color = 1;
  145. if (!theme)
  146. set_bluetitle_theme();
  147. else if (strcmp(theme, "classic") == 0)
  148. set_classic_theme();
  149. else if (strcmp(theme, "bluetitle") == 0)
  150. set_bluetitle_theme();
  151. else if (strcmp(theme, "blackbg") == 0)
  152. set_blackbg_theme();
  153. else if (strcmp(theme, "mono") == 0)
  154. use_color = 0;
  155. return use_color;
  156. }
  157. static void init_one_color(struct dialog_color *color)
  158. {
  159. static int pair = 0;
  160. pair++;
  161. init_pair(pair, color->fg, color->bg);
  162. if (color->hl)
  163. color->atr = A_BOLD | COLOR_PAIR(pair);
  164. else
  165. color->atr = COLOR_PAIR(pair);
  166. }
  167. static void init_dialog_colors(void)
  168. {
  169. init_one_color(&dlg.screen);
  170. init_one_color(&dlg.shadow);
  171. init_one_color(&dlg.dialog);
  172. init_one_color(&dlg.title);
  173. init_one_color(&dlg.border);
  174. init_one_color(&dlg.button_active);
  175. init_one_color(&dlg.button_inactive);
  176. init_one_color(&dlg.button_key_active);
  177. init_one_color(&dlg.button_key_inactive);
  178. init_one_color(&dlg.button_label_active);
  179. init_one_color(&dlg.button_label_inactive);
  180. init_one_color(&dlg.inputbox);
  181. init_one_color(&dlg.inputbox_border);
  182. init_one_color(&dlg.searchbox);
  183. init_one_color(&dlg.searchbox_title);
  184. init_one_color(&dlg.searchbox_border);
  185. init_one_color(&dlg.position_indicator);
  186. init_one_color(&dlg.menubox);
  187. init_one_color(&dlg.menubox_border);
  188. init_one_color(&dlg.item);
  189. init_one_color(&dlg.item_selected);
  190. init_one_color(&dlg.tag);
  191. init_one_color(&dlg.tag_selected);
  192. init_one_color(&dlg.tag_key);
  193. init_one_color(&dlg.tag_key_selected);
  194. init_one_color(&dlg.check);
  195. init_one_color(&dlg.check_selected);
  196. init_one_color(&dlg.uarrow);
  197. init_one_color(&dlg.darrow);
  198. }
  199. /*
  200. * Setup for color display
  201. */
  202. static void color_setup(const char *theme)
  203. {
  204. int use_color;
  205. use_color = set_theme(theme);
  206. if (use_color && has_colors()) {
  207. start_color();
  208. init_dialog_colors();
  209. } else
  210. set_mono_theme();
  211. }
  212. /*
  213. * Set window to attribute 'attr'
  214. */
  215. void attr_clear(WINDOW * win, int height, int width, chtype attr)
  216. {
  217. int i, j;
  218. wattrset(win, attr);
  219. for (i = 0; i < height; i++) {
  220. wmove(win, i, 0);
  221. for (j = 0; j < width; j++)
  222. waddch(win, ' ');
  223. }
  224. touchwin(win);
  225. }
  226. void dialog_clear(void)
  227. {
  228. attr_clear(stdscr, LINES, COLS, dlg.screen.atr);
  229. /* Display background title if it exists ... - SLH */
  230. if (dlg.backtitle != NULL) {
  231. int i;
  232. wattrset(stdscr, dlg.screen.atr);
  233. mvwaddstr(stdscr, 0, 1, (char *)dlg.backtitle);
  234. wmove(stdscr, 1, 1);
  235. for (i = 1; i < COLS - 1; i++)
  236. waddch(stdscr, ACS_HLINE);
  237. }
  238. wnoutrefresh(stdscr);
  239. }
  240. /*
  241. * Do some initialization for dialog
  242. */
  243. int init_dialog(const char *backtitle)
  244. {
  245. int height, width;
  246. initscr(); /* Init curses */
  247. /* Get current cursor position for signal handler in mconf.c */
  248. getyx(stdscr, saved_y, saved_x);
  249. getmaxyx(stdscr, height, width);
  250. if (height < 19 || width < 80) {
  251. endwin();
  252. return -ERRDISPLAYTOOSMALL;
  253. }
  254. dlg.backtitle = backtitle;
  255. color_setup(getenv("MENUCONFIG_COLOR"));
  256. keypad(stdscr, TRUE);
  257. cbreak();
  258. noecho();
  259. dialog_clear();
  260. return 0;
  261. }
  262. void set_dialog_backtitle(const char *backtitle)
  263. {
  264. dlg.backtitle = backtitle;
  265. }
  266. /*
  267. * End using dialog functions.
  268. */
  269. void end_dialog(int x, int y)
  270. {
  271. /* move cursor back to original position */
  272. move(y, x);
  273. refresh();
  274. endwin();
  275. }
  276. /* Print the title of the dialog. Center the title and truncate
  277. * tile if wider than dialog (- 2 chars).
  278. **/
  279. void print_title(WINDOW *dialog, const char *title, int width)
  280. {
  281. if (title) {
  282. int tlen = MIN(width - 2, strlen(title));
  283. wattrset(dialog, dlg.title.atr);
  284. mvwaddch(dialog, 0, (width - tlen) / 2 - 1, ' ');
  285. mvwaddnstr(dialog, 0, (width - tlen)/2, title, tlen);
  286. waddch(dialog, ' ');
  287. }
  288. }
  289. /*
  290. * Print a string of text in a window, automatically wrap around to the
  291. * next line if the string is too long to fit on one line. Newline
  292. * characters '\n' are replaced by spaces. We start on a new line
  293. * if there is no room for at least 4 nonblanks following a double-space.
  294. */
  295. void print_autowrap(WINDOW * win, const char *prompt, int width, int y, int x)
  296. {
  297. int newl, cur_x, cur_y;
  298. int i, prompt_len, room, wlen;
  299. char tempstr[MAX_LEN + 1], *word, *sp, *sp2;
  300. strcpy(tempstr, prompt);
  301. prompt_len = strlen(tempstr);
  302. /*
  303. * Remove newlines
  304. */
  305. for (i = 0; i < prompt_len; i++) {
  306. if (tempstr[i] == '\n')
  307. tempstr[i] = ' ';
  308. }
  309. if (prompt_len <= width - x * 2) { /* If prompt is short */
  310. wmove(win, y, (width - prompt_len) / 2);
  311. waddstr(win, tempstr);
  312. } else {
  313. cur_x = x;
  314. cur_y = y;
  315. newl = 1;
  316. word = tempstr;
  317. while (word && *word) {
  318. sp = strchr(word, ' ');
  319. if (sp)
  320. *sp++ = 0;
  321. /* Wrap to next line if either the word does not fit,
  322. or it is the first word of a new sentence, and it is
  323. short, and the next word does not fit. */
  324. room = width - cur_x;
  325. wlen = strlen(word);
  326. if (wlen > room ||
  327. (newl && wlen < 4 && sp
  328. && wlen + 1 + strlen(sp) > room
  329. && (!(sp2 = strchr(sp, ' '))
  330. || wlen + 1 + (sp2 - sp) > room))) {
  331. cur_y++;
  332. cur_x = x;
  333. }
  334. wmove(win, cur_y, cur_x);
  335. waddstr(win, word);
  336. getyx(win, cur_y, cur_x);
  337. cur_x++;
  338. if (sp && *sp == ' ') {
  339. cur_x++; /* double space */
  340. while (*++sp == ' ') ;
  341. newl = 1;
  342. } else
  343. newl = 0;
  344. word = sp;
  345. }
  346. }
  347. }
  348. /*
  349. * Print a button
  350. */
  351. void print_button(WINDOW * win, const char *label, int y, int x, int selected)
  352. {
  353. int i, temp;
  354. wmove(win, y, x);
  355. wattrset(win, selected ? dlg.button_active.atr
  356. : dlg.button_inactive.atr);
  357. waddstr(win, "<");
  358. temp = strspn(label, " ");
  359. label += temp;
  360. wattrset(win, selected ? dlg.button_label_active.atr
  361. : dlg.button_label_inactive.atr);
  362. for (i = 0; i < temp; i++)
  363. waddch(win, ' ');
  364. wattrset(win, selected ? dlg.button_key_active.atr
  365. : dlg.button_key_inactive.atr);
  366. waddch(win, label[0]);
  367. wattrset(win, selected ? dlg.button_label_active.atr
  368. : dlg.button_label_inactive.atr);
  369. waddstr(win, (char *)label + 1);
  370. wattrset(win, selected ? dlg.button_active.atr
  371. : dlg.button_inactive.atr);
  372. waddstr(win, ">");
  373. wmove(win, y, x + temp + 1);
  374. }
  375. /*
  376. * Draw a rectangular box with line drawing characters
  377. */
  378. void
  379. draw_box(WINDOW * win, int y, int x, int height, int width,
  380. chtype box, chtype border)
  381. {
  382. int i, j;
  383. wattrset(win, 0);
  384. for (i = 0; i < height; i++) {
  385. wmove(win, y + i, x);
  386. for (j = 0; j < width; j++)
  387. if (!i && !j)
  388. waddch(win, border | ACS_ULCORNER);
  389. else if (i == height - 1 && !j)
  390. waddch(win, border | ACS_LLCORNER);
  391. else if (!i && j == width - 1)
  392. waddch(win, box | ACS_URCORNER);
  393. else if (i == height - 1 && j == width - 1)
  394. waddch(win, box | ACS_LRCORNER);
  395. else if (!i)
  396. waddch(win, border | ACS_HLINE);
  397. else if (i == height - 1)
  398. waddch(win, box | ACS_HLINE);
  399. else if (!j)
  400. waddch(win, border | ACS_VLINE);
  401. else if (j == width - 1)
  402. waddch(win, box | ACS_VLINE);
  403. else
  404. waddch(win, box | ' ');
  405. }
  406. }
  407. /*
  408. * Draw shadows along the right and bottom edge to give a more 3D look
  409. * to the boxes
  410. */
  411. void draw_shadow(WINDOW * win, int y, int x, int height, int width)
  412. {
  413. int i;
  414. if (has_colors()) { /* Whether terminal supports color? */
  415. wattrset(win, dlg.shadow.atr);
  416. wmove(win, y + height, x + 2);
  417. for (i = 0; i < width; i++)
  418. waddch(win, winch(win) & A_CHARTEXT);
  419. for (i = y + 1; i < y + height + 1; i++) {
  420. wmove(win, i, x + width);
  421. waddch(win, winch(win) & A_CHARTEXT);
  422. waddch(win, winch(win) & A_CHARTEXT);
  423. }
  424. wnoutrefresh(win);
  425. }
  426. }
  427. /*
  428. * Return the position of the first alphabetic character in a string.
  429. */
  430. int first_alpha(const char *string, const char *exempt)
  431. {
  432. int i, in_paren = 0, c;
  433. for (i = 0; i < strlen(string); i++) {
  434. c = tolower(string[i]);
  435. if (strchr("<[(", c))
  436. ++in_paren;
  437. if (strchr(">])", c) && in_paren > 0)
  438. --in_paren;
  439. if ((!in_paren) && isalpha(c) && strchr(exempt, c) == 0)
  440. return i;
  441. }
  442. return 0;
  443. }
  444. /*
  445. * ncurses uses ESC to detect escaped char sequences. This resutl in
  446. * a small timeout before ESC is actually delivered to the application.
  447. * lxdialog suggest <ESC> <ESC> which is correctly translated to two
  448. * times esc. But then we need to ignore the second esc to avoid stepping
  449. * out one menu too much. Filter away all escaped key sequences since
  450. * keypad(FALSE) turn off ncurses support for escape sequences - and thats
  451. * needed to make notimeout() do as expected.
  452. */
  453. int on_key_esc(WINDOW *win)
  454. {
  455. int key;
  456. int key2;
  457. int key3;
  458. nodelay(win, TRUE);
  459. keypad(win, FALSE);
  460. key = wgetch(win);
  461. key2 = wgetch(win);
  462. do {
  463. key3 = wgetch(win);
  464. } while (key3 != ERR);
  465. nodelay(win, FALSE);
  466. keypad(win, TRUE);
  467. if (key == KEY_ESC && key2 == ERR)
  468. return KEY_ESC;
  469. else if (key != ERR && key != KEY_ESC && key2 == ERR)
  470. ungetch(key);
  471. return -1;
  472. }
  473. /* redraw screen in new size */
  474. int on_key_resize(void)
  475. {
  476. dialog_clear();
  477. return KEY_RESIZE;
  478. }
  479. struct dialog_list *item_cur;
  480. struct dialog_list item_nil;
  481. struct dialog_list *item_head;
  482. void item_reset(void)
  483. {
  484. struct dialog_list *p, *next;
  485. for (p = item_head; p; p = next) {
  486. next = p->next;
  487. free(p);
  488. }
  489. item_head = NULL;
  490. item_cur = &item_nil;
  491. }
  492. void item_make(const char *fmt, ...)
  493. {
  494. va_list ap;
  495. struct dialog_list *p = malloc(sizeof(*p));
  496. if (item_head)
  497. item_cur->next = p;
  498. else
  499. item_head = p;
  500. item_cur = p;
  501. memset(p, 0, sizeof(*p));
  502. va_start(ap, fmt);
  503. vsnprintf(item_cur->node.str, sizeof(item_cur->node.str), fmt, ap);
  504. va_end(ap);
  505. }
  506. void item_add_str(const char *fmt, ...)
  507. {
  508. va_list ap;
  509. size_t avail;
  510. avail = sizeof(item_cur->node.str) - strlen(item_cur->node.str);
  511. va_start(ap, fmt);
  512. vsnprintf(item_cur->node.str + strlen(item_cur->node.str),
  513. avail, fmt, ap);
  514. item_cur->node.str[sizeof(item_cur->node.str) - 1] = '\0';
  515. va_end(ap);
  516. }
  517. void item_set_tag(char tag)
  518. {
  519. item_cur->node.tag = tag;
  520. }
  521. void item_set_data(void *ptr)
  522. {
  523. item_cur->node.data = ptr;
  524. }
  525. void item_set_selected(int val)
  526. {
  527. item_cur->node.selected = val;
  528. }
  529. int item_activate_selected(void)
  530. {
  531. item_foreach()
  532. if (item_is_selected())
  533. return 1;
  534. return 0;
  535. }
  536. void *item_data(void)
  537. {
  538. return item_cur->node.data;
  539. }
  540. char item_tag(void)
  541. {
  542. return item_cur->node.tag;
  543. }
  544. int item_count(void)
  545. {
  546. int n = 0;
  547. struct dialog_list *p;
  548. for (p = item_head; p; p = p->next)
  549. n++;
  550. return n;
  551. }
  552. void item_set(int n)
  553. {
  554. int i = 0;
  555. item_foreach()
  556. if (i++ == n)
  557. return;
  558. }
  559. int item_n(void)
  560. {
  561. int n = 0;
  562. struct dialog_list *p;
  563. for (p = item_head; p; p = p->next) {
  564. if (p == item_cur)
  565. return n;
  566. n++;
  567. }
  568. return 0;
  569. }
  570. const char *item_str(void)
  571. {
  572. return item_cur->node.str;
  573. }
  574. int item_is_selected(void)
  575. {
  576. return (item_cur->node.selected != 0);
  577. }
  578. int item_is_tag(char tag)
  579. {
  580. return (item_cur->node.tag == tag);
  581. }