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 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 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 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 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 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 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 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 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 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790
|
/*
* $Id: util.c,v 1.165 2006/01/18 21:11:08 tom Exp $
*
* util.c -- miscellaneous utilities for dialog
*
* Copyright 2000-2005,2006 Thomas E. Dickey
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this program; if not, write to
* Free Software Foundation, Inc.
* 51 Franklin St., Fifth Floor
* Boston, MA 02110, USA.
*
* An earlier version of this program lists as authors
* Savio Lam (lam836@cs.cuhk.hk)
*/
#include <dialog.h>
#include <dlg_keys.h>
#include <stdarg.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <time.h>
#ifdef NCURSES_VERSION
#if defined(HAVE_NCURSESW_TERM_H)
#include <ncursesw/term.h>
#elif defined(HAVE_NCURSES_TERM_H)
#include <ncurses/term.h>
#else
#include <term.h>
#endif
#endif
#ifndef O_BINARY
#define O_BINARY 0
#endif
#ifndef S_IRUSR
#define S_IRUSR 0400
#endif
#ifndef S_IWUSR
#define S_IWUSR 0200
#endif
#ifndef DIALOG_TMPDIR
#define DIALOG_TMPDIR NULL
#endif
#define LOCK_PERMITS (S_IRUSR | S_IWUSR)
#define LOCK_TIMEOUT 10 /* timeout for locking, in seconds */
/* globals */
DIALOG_STATE dialog_state;
DIALOG_VARS dialog_vars;
#define concat(a,b) a##b
#ifdef HAVE_RC_FILE
#define RC_DATA(name,comment) , #name "_color", comment " color"
#else
#define RC_DATA(name,comment) /*nothing */
#endif
#ifdef HAVE_COLOR
#include <dlg_colors.h>
#define COLOR_DATA(upr) , \
concat(DLGC_FG_,upr), \
concat(DLGC_BG_,upr), \
concat(DLGC_HL_,upr)
#else
#define COLOR_DATA(upr) /*nothing */
#endif
#define DATA(atr,upr,lwr,cmt) { atr COLOR_DATA(upr) RC_DATA(lwr,cmt) }
/*
* Table of color and attribute values, default is for mono display.
*/
/* *INDENT-OFF* */
DIALOG_COLORS dlg_color_table[] =
{
DATA(A_NORMAL, SCREEN, screen, "Screen"),
DATA(A_NORMAL, SHADOW, shadow, "Shadow"),
DATA(A_REVERSE, DIALOG, dialog, "Dialog box"),
DATA(A_REVERSE, TITLE, title, "Dialog box title"),
DATA(A_REVERSE, BORDER, border, "Dialog box border"),
DATA(A_BOLD, BUTTON_ACTIVE, button_active, "Active button"),
DATA(A_DIM, BUTTON_INACTIVE, button_inactive, "Inactive button"),
DATA(A_UNDERLINE, BUTTON_KEY_ACTIVE, button_key_active, "Active button key"),
DATA(A_UNDERLINE, BUTTON_KEY_INACTIVE, button_key_inactive, "Inactive button key"),
DATA(A_NORMAL, BUTTON_LABEL_ACTIVE, button_label_active, "Active button label"),
DATA(A_NORMAL, BUTTON_LABEL_INACTIVE, button_label_inactive, "Inactive button label"),
DATA(A_REVERSE, INPUTBOX, inputbox, "Input box"),
DATA(A_REVERSE, INPUTBOX_BORDER, inputbox_border, "Input box border"),
DATA(A_REVERSE, SEARCHBOX, searchbox, "Search box"),
DATA(A_REVERSE, SEARCHBOX_TITLE, searchbox_title, "Search box title"),
DATA(A_REVERSE, SEARCHBOX_BORDER, searchbox_border, "Search box border"),
DATA(A_REVERSE, POSITION_INDICATOR, position_indicator, "File position indicator"),
DATA(A_REVERSE, MENUBOX, menubox, "Menu box"),
DATA(A_REVERSE, MENUBOX_BORDER, menubox_border, "Menu box border"),
DATA(A_REVERSE, ITEM, item, "Item"),
DATA(A_NORMAL, ITEM_SELECTED, item_selected, "Selected item"),
DATA(A_REVERSE, TAG, tag, "Tag"),
DATA(A_REVERSE, TAG_SELECTED, tag_selected, "Selected tag"),
DATA(A_NORMAL, TAG_KEY, tag_key, "Tag key"),
DATA(A_BOLD, TAG_KEY_SELECTED, tag_key_selected, "Selected tag key"),
DATA(A_REVERSE, CHECK, check, "Check box"),
DATA(A_REVERSE, CHECK_SELECTED, check_selected, "Selected check box"),
DATA(A_REVERSE, UARROW, uarrow, "Up arrow"),
DATA(A_REVERSE, DARROW, darrow, "Down arrow"),
DATA(A_NORMAL, ITEMHELP, itemhelp, "Item help-text"),
DATA(A_BOLD, FORM_ACTIVE_TEXT, form_active_text, "Active form text"),
DATA(A_REVERSE, FORM_TEXT, form_text, "Form text"),
};
/* *INDENT-ON* */
/*
* Display background title if it exists ...
*/
void
dlg_put_backtitle(void)
{
int i;
if (dialog_vars.backtitle != NULL) {
chtype attr = A_NORMAL;
int backwidth = dlg_count_columns(dialog_vars.backtitle);
wattrset(stdscr, screen_attr);
(void) wmove(stdscr, 0, 1);
dlg_print_text(stdscr, dialog_vars.backtitle, COLS - 2, &attr);
for (i = 0; i < COLS - backwidth; i++)
(void) waddch(stdscr, ' ');
(void) wmove(stdscr, 1, 1);
for (i = 0; i < COLS - 2; i++)
(void) waddch(stdscr, ACS_HLINE);
}
(void) wnoutrefresh(stdscr);
}
/*
* Set window to attribute 'attr'. There are more efficient ways to do this,
* but will not work on older/buggy ncurses versions.
*/
void
dlg_attr_clear(WINDOW *win, int height, int width, chtype attr)
{
int i, j;
wattrset(win, attr);
for (i = 0; i < height; i++) {
(void) wmove(win, i, 0);
for (j = 0; j < width; j++)
(void) waddch(win, ' ');
}
(void) touchwin(win);
}
void
dlg_clear(void)
{
dlg_attr_clear(stdscr, LINES, COLS, screen_attr);
}
#define isprivate(s) ((s) != 0 && strstr(s, "\033[?") != 0)
#define TTY_DEVICE "/dev/tty"
/*
* If $DIALOG_TTY exists, allow the program to try to open the terminal
* directly when stdout is redirected. By default we require the "--stdout"
* option to be given, but some scripts were written making use of the
* behavior of dialog which tried opening the terminal anyway.
*/
static char *
dialog_tty(void)
{
char *result = getenv("DIALOG_TTY");
if (result != 0 && atoi(result) == 0)
result = 0;
return result;
}
/*
* Open the terminal directly. If one of stdin, stdout or stderr really points
* to a tty, use it. Otherwise give up and open /dev/tty.
*/
static int
open_terminal(char **result, int mode)
{
const char *device = TTY_DEVICE;
if (!isatty(fileno(stderr))
|| (device = ttyname(fileno(stderr))) == 0) {
if (!isatty(fileno(stdout))
|| (device = ttyname(fileno(stdout))) == 0) {
if (!isatty(fileno(stdin))
|| (device = ttyname(fileno(stdin))) == 0) {
device = TTY_DEVICE;
}
}
}
*result = dlg_strclone(device);
return open(device, mode);
}
/*
* Do some initialization for dialog.
*
* 'input' is the real tty input of dialog. Usually it is stdin, but if
* --input-fd option is used, it may be anything.
*
* 'output' is where dialog will send its result. Usually it is stderr, but
* if --stdout or --output-fd is used, it may be anything. We are concerned
* mainly with the case where it happens to be the same as stdout.
*/
void
init_dialog(FILE *input, FILE *output)
{
int fd1, fd2;
char *device = 0;
dialog_state.output = output;
dialog_state.tab_len = TAB_LEN;
dialog_state.aspect_ratio = DEFAULT_ASPECT_RATIO;
#ifdef HAVE_COLOR
dialog_state.use_colors = USE_COLORS; /* use colors by default? */
dialog_state.use_shadow = USE_SHADOW; /* shadow dialog boxes by default? */
#endif
#ifdef HAVE_RC_FILE
if (dlg_parse_rc() == -1) /* Read the configuration file */
dlg_exiterr("init_dialog: dlg_parse_rc");
#endif
/*
* Some widgets (such as gauge) may read from the standard input. Pipes
* only connect stdout/stdin, so there is not much choice. But reading a
* pipe would get in the way of curses' normal reading stdin for getch.
*
* As in the --stdout (see below), reopening the terminal does not always
* work properly. dialog provides a --pipe-fd option for this purpose. We
* test that case first (differing fileno's for input/stdin). If the
* fileno's are equal, but we're not reading from a tty, see if we can open
* /dev/tty.
*/
dialog_state.pipe_input = stdin;
if (fileno(input) != fileno(stdin)) {
if ((fd1 = dup(fileno(input))) >= 0
&& (fd2 = dup(fileno(stdin))) >= 0) {
(void) dup2(fileno(input), fileno(stdin));
dialog_state.pipe_input = fdopen(fd2, "r");
if (fileno(stdin) != 0) /* some functions may read fd #0 */
(void) dup2(fileno(stdin), 0);
} else
dlg_exiterr("cannot open tty-input");
} else if (!isatty(fileno(stdin))) {
if ((fd1 = open_terminal(&device, O_RDONLY)) >= 0
&& (fd2 = dup(fileno(stdin))) >= 0) {
dialog_state.pipe_input = fdopen(fd2, "r");
if (freopen(device, "r", stdin) == 0)
dlg_exiterr("cannot open tty-input");
if (fileno(stdin) != 0) /* some functions may read fd #0 */
(void) dup2(fileno(stdin), 0);
}
free(device);
}
/*
* If stdout is not a tty and dialog is called with the --stdout option, we
* have to provide for a way to write to the screen.
*
* The curses library normally writes its output to stdout, leaving stderr
* free for scripting. Scripts are simpler when stdout is redirected. The
* newterm function is useful; it allows us to specify where the output
* goes. Reopening the terminal is not portable since several
* configurations do not allow this to work properly:
*
* a) some getty implementations (and possibly broken tty drivers, e.g., on
* HPUX 10 and 11) cause stdin to act as if it is still in cooked mode
* even though results from ioctl's state that it is successfully
* altered to raw mode. Broken is the proper term.
*
* b) the user may not have permissions on the device, e.g., if one su's
* from the login user to another non-privileged user.
*/
if (!isatty(fileno(stdout))
&& (fileno(stdout) == fileno(output) || dialog_tty())) {
if ((fd1 = open_terminal(&device, O_WRONLY)) >= 0
&& (dialog_state.screen_output = fdopen(fd1, "w")) != 0) {
if (newterm(NULL, dialog_state.screen_output, stdin) == 0) {
dlg_exiterr("cannot initialize curses");
}
free(device);
} else {
dlg_exiterr("cannot open tty-output");
}
} else {
dialog_state.screen_output = stdout;
(void) initscr();
}
#ifdef NCURSES_VERSION
/*
* Cancel xterm's alternate-screen mode.
*/
if ((dialog_state.screen_output != stdout || isatty(fileno(dialog_state.screen_output)))
&& key_mouse != 0 /* xterm and kindred */
&& isprivate(enter_ca_mode)
&& isprivate(exit_ca_mode)) {
/*
* initscr() or newterm() already did putp(enter_ca_mode) as a side
* effect of initializing the screen. It would be nice to not even
* do that, but we do not really have access to the correct copy of
* the terminfo description until those functions have been invoked.
*/
(void) putp(exit_ca_mode);
(void) putp(clear_screen);
/*
* Prevent ncurses from switching "back" to the normal screen when
* exiting from dialog. That would move the cursor to the original
* location saved in xterm. Normally curses sets the cursor position
* to the first line after the display, but the alternate screen
* switching is done after that point.
*
* Cancelling the strings altogether also works around the buggy
* implementation of alternate-screen in rxvt, etc., which clear
* more of the display than they should.
*/
enter_ca_mode = 0;
exit_ca_mode = 0;
}
#endif
#ifdef HAVE_FLUSHINP
(void) flushinp();
#endif
(void) keypad(stdscr, TRUE);
(void) cbreak();
(void) noecho();
mouse_open();
dialog_state.screen_initialized = TRUE;
#ifdef HAVE_COLOR
if (dialog_state.use_colors || dialog_state.use_shadow)
dlg_color_setup(); /* Set up colors */
#endif
/* Set screen to screen attribute */
dlg_clear();
}
#ifdef HAVE_COLOR
static int defined_colors = 1; /* pair-0 is reserved */
/*
* Setup for color display
*/
void
dlg_color_setup(void)
{
unsigned i;
if (has_colors()) { /* Terminal supports color? */
(void) start_color();
#if defined(__NetBSD__) && defined(_CURSES_)
#define C_ATTR(x,y) (((x) != 0 ? A_BOLD : 0) | COLOR_PAIR((y)))
/* work around bug in NetBSD curses */
for (i = 0; i < sizeof(dlg_color_table) /
sizeof(dlg_color_table[0]); i++) {
/* Initialize color pairs */
(void) init_pair(i + 1,
dlg_color_table[i].fg,
dlg_color_table[i].bg);
/* Setup color attributes */
dlg_color_table[i].atr = C_ATTR(dlg_color_table[i].hilite, i + 1);
}
defined_colors = i + 1;
#else
for (i = 0; i < sizeof(dlg_color_table) /
sizeof(dlg_color_table[0]); i++) {
/* Initialize color pairs */
chtype color = dlg_color_pair(dlg_color_table[i].fg,
dlg_color_table[i].bg);
/* Setup color attributes */
dlg_color_table[i].atr = ((dlg_color_table[i].hilite
? A_BOLD
: 0)
| color);
}
#endif
}
}
int
dlg_color_count(void)
{
return sizeof(dlg_color_table) / sizeof(dlg_color_table[0]);
}
/*
* Reuse color pairs (they are limited), returning a COLOR_PAIR() value if we
* have (or can) define a pair with the given color as foreground on the
* window's defined background.
*/
chtype
dlg_color_pair(int foreground, int background)
{
chtype result = 0;
int pair;
short fg, bg;
bool found = FALSE;
for (pair = 1; pair < defined_colors; ++pair) {
if (pair_content(pair, &fg, &bg) != ERR
&& fg == foreground
&& bg == background) {
result = COLOR_PAIR(pair);
found = TRUE;
break;
}
}
if (!found && (defined_colors + 1) < COLOR_PAIRS) {
pair = defined_colors++;
(void) init_pair(pair, foreground, background);
result = COLOR_PAIR(pair);
}
return result;
}
/*
* Reuse color pairs (they are limited), returning a COLOR_PAIR() value if we
* have (or can) define a pair with the given color as foreground on the
* window's defined background.
*/
static chtype
define_color(WINDOW *win, int foreground)
{
chtype attrs = getattrs(win);
int pair;
short fg, bg, background;
if ((pair = PAIR_NUMBER(attrs)) != 0
&& pair_content(pair, &fg, &bg) != ERR) {
background = bg;
} else {
background = COLOR_BLACK;
}
return dlg_color_pair(foreground, background);
}
#endif
/*
* End using dialog functions.
*/
void
end_dialog(void)
{
if (dialog_state.screen_initialized) {
dialog_state.screen_initialized = FALSE;
mouse_close();
(void) endwin();
(void) fflush(stdout);
}
}
#define isOurEscape(p) (((p)[0] == '\\') && ((p)[1] == 'Z') && ((p)[2] != 0))
static int
centered(int width, const char *string)
{
int len = dlg_count_columns(string);
int left;
int hide = 0;
int n;
if (dialog_vars.colors) {
for (n = 0; n < len; ++n) {
if (isOurEscape(string + n)) {
hide += 3;
}
}
}
left = (width - (len - hide)) / 2 - 1;
if (left < 0)
left = 0;
return left;
}
/*
* Print up to 'cols' columns from 'text', optionally rendering our escape
* sequence for attributes and color.
*/
void
dlg_print_text(WINDOW *win, const char *txt, int cols, chtype *attr)
{
int y_origin, x_origin;
int y_before, x_before = 0;
int y_after, x_after;
int tabbed = 0;
bool thisTab;
bool ended = FALSE;
chtype useattr;
getyx(win, y_origin, x_origin);
while (cols > 0 && (*txt != '\0')) {
if (dialog_vars.colors) {
while (isOurEscape(txt)) {
int code;
txt += 2;
switch (code = CharOf(*txt)) {
#ifdef HAVE_COLOR
case '0':
case '1':
case '2':
case '3':
case '4':
case '5':
case '6':
case '7':
*attr &= ~A_COLOR;
*attr |= define_color(win, code - '0');
break;
#endif
case 'B':
*attr &= ~A_BOLD;
break;
case 'b':
*attr |= A_BOLD;
break;
case 'R':
*attr &= ~A_REVERSE;
break;
case 'r':
*attr |= A_REVERSE;
break;
case 'U':
*attr &= ~A_UNDERLINE;
break;
case 'u':
*attr |= A_UNDERLINE;
break;
case 'n':
*attr = A_NORMAL;
break;
}
++txt;
}
}
if (ended || *txt == '\n' || *txt == '\0')
break;
useattr = (*attr) & A_ATTRIBUTES;
#ifdef HAVE_COLOR
/*
* Prevent this from making text invisible when the foreground and
* background colors happen to be the same, and there's no bold
* attribute.
*/
if ((useattr & A_COLOR) != 0 && (useattr & A_BOLD) == 0) {
short pair = PAIR_NUMBER(useattr);
short fg, bg;
if (pair_content(pair, &fg, &bg) != ERR
&& fg == bg) {
useattr &= ~A_COLOR;
useattr |= dlg_color_pair(fg, ((bg == COLOR_BLACK)
? COLOR_WHITE
: COLOR_BLACK));
}
}
#endif
/*
* Write the character, using curses to tell exactly how wide it
* is. If it is a tab, discount that, since the caller thinks
* tabs are nonprinting, and curses will expand tabs to one or
* more blanks.
*/
thisTab = (CharOf(*txt) == TAB);
if (thisTab)
getyx(win, y_before, x_before);
(void) waddch(win, CharOf(*txt++) | useattr);
getyx(win, y_after, x_after);
if (thisTab && (y_after == y_origin))
tabbed += (x_after - x_before);
if (y_after != y_origin || x_after >= cols + tabbed + x_origin) {
ended = TRUE;
}
}
}
/*
* Print one line of the prompt in the window within the limits of the
* specified right margin. The line will end on a word boundary and a pointer
* to the start of the next line is returned, or a NULL pointer if the end of
* *prompt is reached.
*/
static const char *
print_line(WINDOW *win, chtype *attr, const char *prompt, int lm, int rm, int *x)
{
const char *wrap_ptr = prompt;
const char *test_ptr = prompt;
const int *cols = dlg_index_columns(prompt);
const int *indx = dlg_index_wchars(prompt);
int wrap_inx = 0;
int test_inx = 0;
int cur_x = lm;
int hidden = 0;
int limit = dlg_count_wchars(prompt);
int n;
int tabbed = 0;
*x = 1;
/*
* Set *test_ptr to the end of the line or the right margin (rm), whichever
* is less, and set wrap_ptr to the end of the last word in the line.
*/
for (n = 0; n < limit; ++n) {
test_ptr = prompt + indx[test_inx];
if (*test_ptr == '\n' || *test_ptr == '\0' || cur_x >= (rm + hidden))
break;
if (*test_ptr == '\t' && n == 0) {
tabbed = 8; /* workaround for leading tabs */
} else if (*test_ptr == ' ' && n != 0 && prompt[indx[n - 1]] != ' ') {
wrap_inx = n;
*x = cur_x;
} else if (isOurEscape(test_ptr)) {
hidden += 3;
n += 2;
}
cur_x = lm + tabbed + cols[n + 1];
if (cur_x > (rm + hidden))
break;
test_inx = n + 1;
}
/*
* If the line doesn't reach the right margin in the middle of a word, then
* we don't have to wrap it at the end of the previous word.
*/
test_ptr = prompt + indx[test_inx];
if (*test_ptr == '\n' || *test_ptr == ' ' || *test_ptr == '\0') {
wrap_inx = test_inx;
while (wrap_inx > 0 && prompt[indx[wrap_inx - 1]] == ' ') {
wrap_inx--;
}
*x = lm + indx[wrap_inx];
} else if (*x == 1 && cur_x >= rm) {
/*
* If the line has no spaces, then wrap it anyway at the right margin
*/
*x = rm;
wrap_inx = test_inx;
}
wrap_ptr = prompt + indx[wrap_inx];
/*
* Print the line if we have a window pointer. Otherwise this routine
* is just being called for sizing the window.
*/
if (win) {
dlg_print_text(win, prompt, (cols[wrap_inx] - hidden), attr);
}
/* *x tells the calling function how long the line was */
if (*x == 1)
*x = rm;
/* Find the start of the next line and return a pointer to it */
test_ptr = wrap_ptr;
while (*test_ptr == ' ')
test_ptr++;
if (*test_ptr == '\n')
test_ptr++;
return (test_ptr);
}
static void
justify_text(WINDOW *win,
const char *prompt,
int limit_y,
int limit_x,
int *high, int *wide)
{
chtype attr = A_NORMAL;
int x = (2 * MARGIN);
int y = MARGIN;
int max_x = 2;
int lm = (2 * MARGIN); /* left margin (box-border plus a space) */
int rm = limit_x; /* right margin */
int bm = limit_y; /* bottom margin */
int last_y = 0, last_x = 0;
if (win) {
rm -= (2 * MARGIN);
bm -= (2 * MARGIN);
}
if (prompt == 0)
prompt = "";
if (win != 0)
getyx(win, last_y, last_x);
while (y <= bm && *prompt) {
x = lm;
if (*prompt == '\n') {
while (*prompt == '\n' && y < bm) {
if (*(prompt + 1) != '\0') {
++y;
if (win != 0)
(void) wmove(win, y, lm);
}
prompt++;
}
} else if (win != 0)
(void) wmove(win, y, lm);
if (*prompt) {
prompt = print_line(win, &attr, prompt, lm, rm, &x);
if (win != 0)
getyx(win, last_y, last_x);
}
if (*prompt) {
++y;
if (win != 0)
(void) wmove(win, y, lm);
}
max_x = MAX(max_x, x);
}
/* Move back to the last position after drawing prompt, for msgbox. */
if (win != 0)
(void) wmove(win, last_y, last_x);
/* Set the final height and width for the calling function */
if (high != 0)
*high = y;
if (wide != 0)
*wide = max_x;
}
/*
* Print a string of text in a window, automatically wrap around to the next
* line if the string is too long to fit on one line. Note that the string may
* contain embedded newlines.
*/
void
dlg_print_autowrap(WINDOW *win, const char *prompt, int height, int width)
{
justify_text(win, prompt,
height,
width,
(int *) 0, (int *) 0);
}
/*
* Calculate the window size for preformatted text. This will calculate box
* dimensions that are at or close to the specified aspect ratio for the prompt
* string with all spaces and newlines preserved and additional newlines added
* as necessary.
*/
static void
auto_size_preformatted(const char *prompt, int *height, int *width)
{
int high = 0, wide = 0;
float car; /* Calculated Aspect Ratio */
float diff;
int max_y = SLINES - 1;
int max_x = SCOLS - 2;
int max_width = max_x;
int ar = dialog_state.aspect_ratio;
/* Get the initial dimensions */
justify_text((WINDOW *) 0, prompt, max_y, max_x, &high, &wide);
car = (float) (wide / high);
/*
* If the aspect ratio is greater than it should be, then decrease the
* width proportionately.
*/
if (car > ar) {
diff = car / (float) ar;
max_x = wide / diff + 4;
justify_text((WINDOW *) 0, prompt, max_y, max_x, &high, &wide);
car = (float) wide / high;
}
/*
* If the aspect ratio is too small after decreasing the width, then
* incrementally increase the width until the aspect ratio is equal to or
* greater than the specified aspect ratio.
*/
while (car < ar && max_x < max_width) {
max_x += 4;
justify_text((WINDOW *) 0, prompt, max_y, max_x, &high, &wide);
car = (float) (wide / high);
}
*height = high;
*width = wide;
}
/*
* Find the length of the longest "word" in the given string. By setting the
* widget width at least this long, we can avoid splitting a word on the
* margin.
*/
static int
longest_word(const char *string)
{
int length, result = 0;
while (*string != '\0') {
length = 0;
while (*string != '\0' && !isspace(UCH(*string))) {
length++;
string++;
}
result = MAX(result, length);
if (*string != '\0')
string++;
}
return result;
}
/*
* if (height or width == -1) Maximize()
* if (height or width == 0), justify and return actual limits.
*/
static void
real_auto_size(const char *title,
const char *prompt,
int *height, int *width,
int boxlines, int mincols)
{
int x = (dialog_vars.begin_set ? dialog_vars.begin_x : 2);
int y = (dialog_vars.begin_set ? dialog_vars.begin_y : 1);
int title_length = title ? dlg_count_columns(title) : 0;
int nc = 4;
int high;
int wide;
int save_high = *height;
int save_wide = *width;
if (prompt == 0) {
if (*height == 0)
*height = -1;
if (*width == 0)
*width = -1;
}
if (*height > 0) {
high = *height;
} else {
high = SLINES - y;
}
if (*width > 0) {
wide = *width;
} else if (prompt != 0) {
wide = MAX(title_length, mincols);
if (strchr(prompt, '\n') == 0) {
double val = dialog_state.aspect_ratio * dlg_count_columns(prompt);
int tmp = sqrt(val);
wide = MAX(wide, tmp);
wide = MAX(wide, longest_word(prompt));
justify_text((WINDOW *) 0, prompt, high, wide, height, width);
} else {
auto_size_preformatted(prompt, height, width);
}
} else {
wide = SCOLS - x;
justify_text((WINDOW *) 0, prompt, high, wide, height, width);
}
if (*width < title_length) {
justify_text((WINDOW *) 0, prompt, high, title_length, height, width);
*width = title_length;
}
if (*width < mincols && save_wide == 0)
*width = mincols;
if (prompt != 0) {
*width += nc;
*height += boxlines + 2;
}
if (save_high > 0)
*height = save_high;
if (save_wide > 0)
*width = save_wide;
}
/* End of real_auto_size() */
void
dlg_auto_size(const char *title,
const char *prompt,
int *height,
int *width,
int boxlines,
int mincols)
{
real_auto_size(title, prompt, height, width, boxlines, mincols);
if (*width > SCOLS) {
(*height)++;
*width = SCOLS;
}
if (*height > SLINES)
*height = SLINES;
}
/*
* if (height or width == -1) Maximize()
* if (height or width == 0)
* height=MIN(SLINES, num.lines in fd+n);
* width=MIN(SCOLS, MAX(longer line+n, mincols));
*/
void
dlg_auto_sizefile(const char *title,
const char *file,
int *height,
int *width,
int boxlines,
int mincols)
{
int count = 0;
int len = title ? dlg_count_columns(title) : 0;
int nc = 4;
int numlines = 2;
long offset;
int ch;
FILE *fd;
/* Open input file for reading */
if ((fd = fopen(file, "rb")) == NULL)
dlg_exiterr("dlg_auto_sizefile: Cannot open input file %s", file);
if ((*height == -1) || (*width == -1)) {
*height = SLINES - (dialog_vars.begin_set ? dialog_vars.begin_y : 0);
*width = SCOLS - (dialog_vars.begin_set ? dialog_vars.begin_x : 0);
}
if ((*height != 0) && (*width != 0)) {
(void) fclose(fd);
return;
}
while (!feof(fd)) {
offset = 0;
while (((ch = getc(fd)) != '\n') && !feof(fd))
if ((ch == TAB) && (dialog_vars.tab_correct))
offset += dialog_state.tab_len - (offset % dialog_state.tab_len);
else
offset++;
if (offset > len)
len = offset;
count++;
}
/* now 'count' has the number of lines of fd and 'len' the max lenght */
*height = MIN(SLINES, count + numlines + boxlines);
*width = MIN(SCOLS, MAX((len + nc), mincols));
/* here width and height can be maximized if > SCOLS|SLINES because
textbox-like widgets don't put all <file> on the screen.
Msgbox-like widget instead have to put all <text> correctly. */
(void) fclose(fd);
}
/*
* Draw a rectangular box with line drawing characters.
*
* borderchar is used to color the upper/left edges.
*
* boxchar is used to color the right/lower edges. It also is fill-color used
* for the box contents.
*
* Normally, if you are drawing a scrollable box, use menubox_border_attr for
* boxchar, and menubox_attr for borderchar since the scroll-arrows are drawn
* with menubox_attr at the top, and menubox_border_attr at the bottom. That
* also (given the default color choices) produces a recessed effect.
*
* If you want a raised effect (and are not going to use the scroll-arrows),
* reverse this choice.
*/
void
dlg_draw_box(WINDOW *win, int y, int x, int height, int width,
chtype boxchar, chtype borderchar)
{
int i, j;
chtype save = getattrs(win);
wattrset(win, 0);
for (i = 0; i < height; i++) {
(void) wmove(win, y + i, x);
for (j = 0; j < width; j++)
if (!i && !j)
(void) waddch(win, borderchar | ACS_ULCORNER);
else if (i == height - 1 && !j)
(void) waddch(win, borderchar | ACS_LLCORNER);
else if (!i && j == width - 1)
(void) waddch(win, boxchar | ACS_URCORNER);
else if (i == height - 1 && j == width - 1)
(void) waddch(win, boxchar | ACS_LRCORNER);
else if (!i)
(void) waddch(win, borderchar | ACS_HLINE);
else if (i == height - 1)
(void) waddch(win, boxchar | ACS_HLINE);
else if (!j)
(void) waddch(win, borderchar | ACS_VLINE);
else if (j == width - 1)
(void) waddch(win, boxchar | ACS_VLINE);
else
(void) waddch(win, boxchar | ' ');
}
wattrset(win, save);
}
#ifdef HAVE_COLOR
/*
* Draw shadows along the right and bottom edge to give a more 3D look
* to the boxes
*/
void
dlg_draw_shadow(WINDOW *win, int y, int x, int height, int width)
{
int i, j;
if (has_colors()) { /* Whether terminal supports color? */
wattrset(win, shadow_attr);
for (i = y + height; i < y + height + SHADOW_ROWS; ++i) {
if (wmove(win, i, x + SHADOW_COLS) != ERR) {
for (j = 0; j < width; ++j)
(void) waddch(win, CharOf(winch(win)));
}
}
for (i = y + SHADOW_ROWS; i < y + height + SHADOW_ROWS; i++) {
if (wmove(win, i, x + width) != ERR) {
for (j = 0; j < SHADOW_COLS; ++j)
(void) waddch(win, CharOf(winch(win)));
}
}
(void) wnoutrefresh(win);
}
}
#endif
/*
* Allow shell scripts to remap the exit codes so they can distinguish ESC
* from ERROR.
*/
void
dlg_exit(int code)
{
/* *INDENT-OFF* */
static const struct {
int code;
const char *name;
} table[] = {
{ DLG_EXIT_CANCEL, "DIALOG_CANCEL" },
{ DLG_EXIT_ERROR, "DIALOG_ERROR" },
{ DLG_EXIT_ESC, "DIALOG_ESC" },
{ DLG_EXIT_EXTRA, "DIALOG_EXTRA" },
{ DLG_EXIT_HELP, "DIALOG_HELP" },
{ DLG_EXIT_OK, "DIALOG_OK" },
{ DLG_EXIT_ITEM_HELP, "DIALOG_ITEM_HELP" },
};
/* *INDENT-ON* */
unsigned n;
char *name;
char *temp;
long value;
bool overridden = FALSE;
retry:
for (n = 0; n < sizeof(table) / sizeof(table[0]); n++) {
if (table[n].code == code) {
if ((name = getenv(table[n].name)) != 0) {
value = strtol(name, &temp, 0);
if (temp != 0 && temp != name && *temp == '\0') {
code = value;
overridden = TRUE;
}
}
break;
}
}
/*
* Prior to 2004/12/19, a widget using --item-help would exit with "OK"
* if the help button were selected. Now we want to exit with "HELP",
* but allow the environment variable to override.
*/
if (code == DLG_EXIT_ITEM_HELP && !overridden) {
code = DLG_EXIT_HELP;
goto retry;
}
#ifdef NO_LEAKS
_dlg_inputstr_leaks();
#if defined(NCURSES_VERSION) && defined(HAVE__NC_FREE_AND_EXIT)
_nc_free_and_exit(code);
#endif
#endif
exit(code);
}
/* quit program killing all tailbg */
void
dlg_exiterr(const char *fmt,...)
{
int retval;
va_list ap;
end_dialog();
(void) fputc('\n', stderr);
va_start(ap, fmt);
(void) vfprintf(stderr, fmt, ap);
va_end(ap);
(void) fputc('\n', stderr);
dlg_killall_bg(&retval);
(void) fflush(stderr);
(void) fflush(stdout);
dlg_exit(DLG_EXIT_ERROR);
}
void
dlg_beeping(void)
{
if (dialog_vars.beep_signal) {
(void) beep();
dialog_vars.beep_signal = 0;
}
}
void
dlg_print_size(int height, int width)
{
if (dialog_vars.print_siz)
fprintf(dialog_state.output, "Size: %d, %d\n", height, width);
}
void
dlg_ctl_size(int height, int width)
{
if (dialog_vars.size_err) {
if ((width > COLS) || (height > LINES)) {
dlg_exiterr("Window too big. (height, width) = (%d, %d). Max allowed (%d, %d).",
height, width, LINES, COLS);
}
#ifdef HAVE_COLOR
else if ((dialog_state.use_shadow)
&& ((width > SCOLS || height > SLINES))) {
dlg_exiterr("Window+Shadow too big. (height, width) = (%d, %d). Max allowed (%d, %d).",
height, width, SLINES, SCOLS);
}
#endif
}
}
/*
* If the --tab-correct was not selected, convert tabs to single spaces.
*/
void
dlg_tab_correct_str(char *prompt)
{
char *ptr;
if (dialog_vars.tab_correct) {
while ((ptr = strchr(prompt, TAB)) != NULL) {
*ptr = ' ';
prompt = ptr;
}
}
}
void
dlg_calc_listh(int *height, int *list_height, int item_no)
{
/* calculate new height and list_height */
int rows = SLINES - (dialog_vars.begin_set ? dialog_vars.begin_y : 0);
if (rows - (*height) > 0) {
if (rows - (*height) > item_no)
*list_height = item_no;
else
*list_height = rows - (*height);
}
(*height) += (*list_height);
}
/* obsolete */
int
dlg_calc_listw(int item_no, char **items, int group)
{
int n, i, len1 = 0, len2 = 0;
for (i = 0; i < (item_no * group); i += group) {
if ((n = dlg_count_columns(items[i])) > len1)
len1 = n;
if ((n = dlg_count_columns(items[i + 1])) > len2)
len2 = n;
}
return len1 + len2;
}
int
dlg_calc_list_width(int item_no, DIALOG_LISTITEM * items)
{
int n, i, len1 = 0, len2 = 0;
for (i = 0; i < item_no; ++i) {
if ((n = dlg_count_columns(items[i].name)) > len1)
len1 = n;
if ((n = dlg_count_columns(items[i].text)) > len2)
len2 = n;
}
return len1 + len2;
}
char *
dlg_strclone(const char *cprompt)
{
char *prompt = (char *) malloc(strlen(cprompt) + 1);
assert_ptr(prompt, "dlg_strclone");
strcpy(prompt, cprompt);
return prompt;
}
int
dlg_box_x_ordinate(int width)
{
int x;
if (dialog_vars.begin_set == 1) {
x = dialog_vars.begin_x;
} else {
/* center dialog box on screen unless --begin-set */
x = (SCOLS - width) / 2;
}
return x;
}
int
dlg_box_y_ordinate(int height)
{
int y;
if (dialog_vars.begin_set == 1) {
y = dialog_vars.begin_y;
} else {
/* center dialog box on screen unless --begin-set */
y = (SLINES - height) / 2;
}
return y;
}
void
dlg_draw_title(WINDOW *win, const char *title)
{
if (title != NULL) {
chtype attr = A_NORMAL;
chtype save = getattrs(win);
int x = centered(getmaxx(win), title);
wattrset(win, title_attr);
wmove(win, 0, x);
dlg_print_text(win, title, getmaxx(win) - x, &attr);
wattrset(win, save);
}
}
void
dlg_draw_bottom_box(WINDOW *win)
{
int width = getmaxx(win);
int height = getmaxy(win);
int i;
wattrset(win, border_attr);
(void) wmove(win, height - 3, 0);
(void) waddch(win, ACS_LTEE);
for (i = 0; i < width - 2; i++)
(void) waddch(win, ACS_HLINE);
wattrset(win, dialog_attr);
(void) waddch(win, ACS_RTEE);
(void) wmove(win, height - 2, 1);
for (i = 0; i < width - 2; i++)
(void) waddch(win, ' ');
}
/*
* Remove a window, repainting everything else. This would be simpler if we
* used the panel library, but that is not _always_ available.
*/
void
dlg_del_window(WINDOW *win)
{
DIALOG_WINDOWS *p, *q, *r;
/*
* If --keep-window was set, do not delete/repaint the windows.
*/
if (dialog_vars.keep_window)
return;
/* Leave the main window untouched if there are no background windows.
* We do this so the current window will not be cleared on exit, allowing
* things like the infobox demo to run without flicker.
*/
if (dialog_state.getc_callbacks != 0) {
touchwin(stdscr);
wnoutrefresh(stdscr);
}
for (p = dialog_state.all_windows, r = 0; p != 0; r = p, p = q) {
q = p->next;
if (p->normal == win) {
if (p->shadow != 0)
delwin(p->shadow);
delwin(p->normal);
dlg_unregister_window(p->normal);
if (r == 0) {
dialog_state.all_windows = q;
} else {
r->next = q;
}
free(p);
} else {
if (p->shadow != 0) {
touchwin(p->shadow);
wnoutrefresh(p->shadow);
}
touchwin(p->normal);
wnoutrefresh(p->normal);
}
}
doupdate();
}
/*
* Create a window, optionally with a shadow.
*/
WINDOW *
dlg_new_window(int height, int width, int y, int x)
{
WINDOW *win;
DIALOG_WINDOWS *p = (DIALOG_WINDOWS *) calloc(1, sizeof(DIALOG_WINDOWS));
#ifdef HAVE_COLOR
if (dialog_state.use_shadow) {
if ((win = newwin(height, width,
y + SHADOW_ROWS,
x + SHADOW_COLS)) != 0) {
dlg_draw_shadow(win, -SHADOW_ROWS, -SHADOW_COLS, height, width);
}
p->shadow = win;
}
#endif
if ((win = newwin(height, width, y, x)) == 0) {
dlg_exiterr("Can't make new window at (%d,%d), size (%d,%d).\n",
y, x, height, width);
}
p->next = dialog_state.all_windows;
p->normal = win;
dialog_state.all_windows = p;
(void) keypad(win, TRUE);
return win;
}
WINDOW *
dlg_sub_window(WINDOW *parent, int height, int width, int y, int x)
{
WINDOW *win;
if ((win = subwin(parent, height, width, y, x)) == 0) {
dlg_exiterr("Can't make sub-window at (%d,%d), size (%d,%d).\n",
y, x, height, width);
}
(void) keypad(win, TRUE);
return win;
}
/* obsolete */
int
dlg_default_item(char **items, int llen)
{
int result = 0;
if (dialog_vars.default_item != 0) {
int count = 0;
while (*items != 0) {
if (!strcmp(dialog_vars.default_item, *items)) {
result = count;
break;
}
items += llen;
count++;
}
}
return result;
}
int
dlg_default_listitem(DIALOG_LISTITEM * items)
{
int result = 0;
if (dialog_vars.default_item != 0) {
int count = 0;
while (items->name != 0) {
if (!strcmp(dialog_vars.default_item, items->name)) {
result = count;
break;
}
++items;
count++;
}
}
return result;
}
/*
* Draw the string for item_help
*/
void
dlg_item_help(char *txt)
{
if (USE_ITEM_HELP(txt)) {
chtype attr = A_NORMAL;
int y, x;
wattrset(stdscr, itemhelp_attr);
(void) wmove(stdscr, LINES - 1, 0);
(void) wclrtoeol(stdscr);
(void) addch(' ');
dlg_print_text(stdscr, txt, COLS - 1, &attr);
if (itemhelp_attr & A_COLOR) {
/* fill the remainder of the line with the window's attributes */
getyx(stdscr, y, x);
while (x < COLS) {
(void) addch(' ');
++x;
}
}
(void) wnoutrefresh(stdscr);
}
}
#ifndef HAVE_STRCASECMP
int
dlg_strcmp(const char *a, const char *b)
{
int ac, bc, cmp;
for (;;) {
ac = UCH(*a++);
bc = UCH(*b++);
if (isalpha(ac) && islower(ac))
ac = _toupper(ac);
if (isalpha(bc) && islower(bc))
bc = _toupper(bc);
cmp = ac - bc;
if (ac == 0 || bc == 0 || cmp != 0)
break;
}
return cmp;
}
#endif
/*
* Returns true if 'dst' points to a blank which follows another blank which
* is not a leading blank on a line.
*/
static bool
trim_blank(char *base, char *dst)
{
int count = 0;
while (dst-- != base) {
if (*dst == '\n') {
return FALSE;
} else if (*dst != ' ') {
return (count > 1);
} else {
count++;
}
}
return FALSE;
}
/*
* Change embedded "\n" substrings to '\n' characters and tabs to single
* spaces. If there are no "\n"s, it will strip all extra spaces, for
* justification. If it has "\n"'s, it will preserve extra spaces. If cr_wrap
* is set, it will preserve '\n's.
*/
void
dlg_trim_string(char *s)
{
char *base = s;
char *p1;
char *p = s;
int has_newlines = (strstr(s, "\\n") != 0);
while (*p != '\0') {
if (*p == '\t' && !dialog_vars.nocollapse)
*p = ' ';
if (has_newlines) { /* If prompt contains "\n" strings */
if (*p == '\\' && *(p + 1) == 'n') {
*s++ = '\n';
p += 2;
p1 = p;
/*
* Handle end of lines intelligently. If '\n' follows "\n"
* then ignore the '\n'. This eliminates the need to escape
* the '\n' character (no need to use "\n\").
*/
while (*p1 == ' ')
p1++;
if (*p1 == '\n')
p = p1 + 1;
} else if (*p == '\n') {
if (dialog_vars.cr_wrap)
*s++ = *p++;
else {
/* Replace the '\n' with a space if cr_wrap is not set */
if (!trim_blank(base, s))
*s++ = ' ';
p++;
}
} else /* If *p != '\n' */
*s++ = *p++;
} else if (dialog_vars.trim_whitespace) {
if (*p == ' ') {
if (*(s - 1) != ' ') {
*s++ = ' ';
p++;
} else
p++;
} else if (*p == '\n') {
if (dialog_vars.cr_wrap)
*s++ = *p++;
else if (*(s - 1) != ' ') {
/* Strip '\n's if cr_wrap is not set. */
*s++ = ' ';
p++;
} else
p++;
} else
*s++ = *p++;
} else { /* If there are no "\n" strings */
if (*p == ' ' && !dialog_vars.nocollapse) {
if (!trim_blank(base, s))
*s++ = *p;
p++;
} else
*s++ = *p++;
}
}
*s = '\0';
}
void
dlg_set_focus(WINDOW *parent, WINDOW *win)
{
if (win != 0) {
(void) wmove(parent,
getpary(win) + getcury(win),
getparx(win) + getcurx(win));
(void) wnoutrefresh(win);
(void) doupdate();
}
}
/*
* Free storage used for the result buffer.
*/
void
dlg_clr_result(void)
{
if (dialog_vars.input_length) {
dialog_vars.input_length = 0;
if (dialog_vars.input_result)
free(dialog_vars.input_result);
}
dialog_vars.input_result = 0;
}
/*
* Setup a fixed-buffer for the result.
*/
char *
dlg_set_result(const char *string)
{
unsigned need = string ? strlen(string) + 1 : 0;
/* inputstr.c needs a fixed buffer */
if (need < MAX_LEN)
need = MAX_LEN;
/*
* If the buffer is not big enough, allocate a new one.
*/
if (dialog_vars.input_length != 0
|| dialog_vars.input_result == 0
|| need > MAX_LEN) {
dlg_clr_result();
dialog_vars.input_length = need;
dialog_vars.input_result = malloc(need);
assert_ptr(dialog_vars.input_result, "dlg_set_result");
}
strcpy(dialog_vars.input_result, string ? string : "");
return dialog_vars.input_result;
}
/*
* Accumulate results in dynamically allocated buffer.
* If input_length is zero, it is a MAX_LEN buffer belonging to the caller.
*/
void
dlg_add_result(char *string)
{
unsigned have = (dialog_vars.input_result
? strlen(dialog_vars.input_result)
: 0);
unsigned want = strlen(string) + 1 + have;
if ((want >= MAX_LEN)
|| (dialog_vars.input_length != 0)
|| (dialog_vars.input_result == 0)) {
if (dialog_vars.input_length == 0
|| dialog_vars.input_result == 0) {
char *save = dialog_vars.input_result;
dialog_vars.input_length = want * 2;
dialog_vars.input_result = malloc(dialog_vars.input_length);
assert_ptr(dialog_vars.input_result, "dlg_add_result malloc");
dialog_vars.input_result[0] = 0;
if (save != 0)
strcpy(dialog_vars.input_result, save);
} else if (want >= dialog_vars.input_length) {
dialog_vars.input_length = want * 2;
dialog_vars.input_result = realloc(dialog_vars.input_result,
dialog_vars.input_length);
assert_ptr(dialog_vars.input_result, "dlg_add_result realloc");
}
}
strcat(dialog_vars.input_result, string);
}
#define FIX_SINGLE "\n\\'"
#define FIX_DOUBLE "\n\\\"[]{}?*;`~#$^&()|<>\t "
/*
* Add a quoted string to the result buffer.
*/
void
dlg_add_quoted(char *string)
{
char temp[2];
char *my_quote = dialog_vars.single_quoted ? "'" : "\"";
char *must_fix = (dialog_vars.single_quoted
? FIX_SINGLE
: FIX_DOUBLE);
if (dialog_vars.single_quoted
&& strlen(string) != 0
&& strcspn(string, FIX_DOUBLE FIX_SINGLE) == strlen(string)) {
dlg_add_result(string);
} else {
temp[1] = '\0';
dlg_add_result(my_quote);
while (*string != '\0') {
temp[0] = *string++;
if (strchr(must_fix, *temp) != 0)
dlg_add_result("\\");
dlg_add_result(temp);
}
dlg_add_result(my_quote);
}
}
/*
* Called each time a widget is invoked which may do output, increment a count.
*/
void
dlg_does_output(void)
{
dialog_state.output_count += 1;
}
/*
* Compatibility for different versions of curses.
*/
#if !(defined(HAVE_GETBEGX) && defined(HAVE_GETBEGY))
int
getbegx(WINDOW *win)
{
int y, x;
getbegyx(win, y, x);
return x;
}
int
getbegy(WINDOW *win)
{
int y, x;
getbegyx(win, y, x);
return y;
}
#endif
#if !(defined(HAVE_GETCURX) && defined(HAVE_GETCURY))
int
getcurx(WINDOW *win)
{
int y, x;
getyx(win, y, x);
return x;
}
int
getcury(WINDOW *win)
{
int y, x;
getyx(win, y, x);
return y;
}
#endif
#if !(defined(HAVE_GETMAXX) && defined(HAVE_GETMAXY))
int
getmaxx(WINDOW *win)
{
int y, x;
getmaxyx(win, y, x);
return x;
}
int
getmaxy(WINDOW *win)
{
int y, x;
getmaxyx(win, y, x);
return y;
}
#endif
#if !(defined(HAVE_GETPARX) && defined(HAVE_GETPARY))
int
getparx(WINDOW *win)
{
int y, x;
getparyx(win, y, x);
return x;
}
int
getpary(WINDOW *win)
{
int y, x;
getparyx(win, y, x);
return y;
}
#endif
|