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 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975
|
/* The lwlib interface to Motif widgets.
Copyright (C) 1992 Lucid, Inc.
This file is part of the Lucid Widget Library.
The Lucid Widget Library is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 1, or (at your option)
any later version.
The Lucid Widget Library 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 General Public License for more details.
You should have received a copy of the GNU General Public License
along with GNU Emacs; see the file COPYING. If not, write to
the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA. */
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <unistd.h>
#include <stdio.h>
#include <X11/StringDefs.h>
#include <X11/IntrinsicP.h>
#include <X11/ObjectP.h>
#include <X11/CoreP.h>
#include <X11/CompositeP.h>
#include "lwlib-Xm.h"
#include "lwlib-utils.h"
#include <Xm/BulletinB.h>
#include <Xm/CascadeB.h>
#include <Xm/CascadeBG.h>
#include <Xm/DrawingA.h>
#include <Xm/FileSB.h>
#include <Xm/Label.h>
#include <Xm/List.h>
#include <Xm/MainW.h>
#include <Xm/MenuShell.h>
#include <Xm/MessageB.h>
#include <Xm/PanedW.h>
#include <Xm/PushB.h>
#include <Xm/PushBG.h>
#include <Xm/ArrowB.h>
#include <Xm/SelectioB.h>
#include <Xm/Text.h>
#include <Xm/TextF.h>
#include <Xm/ToggleB.h>
#include <Xm/ToggleBG.h>
#include <Xm/RowColumn.h>
#include <Xm/ScrolledW.h>
#include <Xm/Separator.h>
#include <Xm/DialogS.h>
#include <Xm/Form.h>
#if defined __STDC__ || defined PROTOTYPES
#define P_(X) X
#else
#define P_(X) ()
#endif
enum do_call_type { pre_activate, selection, no_selection, post_activate };
/* Structures to keep destroyed instances */
typedef struct _destroyed_instance
{
char* name;
char* type;
Widget widget;
Widget parent;
Boolean pop_up_p;
struct _destroyed_instance* next;
} destroyed_instance;
static destroyed_instance *make_destroyed_instance P_ ((char *, char *,
Widget, Widget,
Boolean));
static void free_destroyed_instance P_ ((destroyed_instance*));
Widget first_child P_ ((Widget));
Boolean lw_motif_widget_p P_ ((Widget));
static XmString resource_motif_string P_ ((Widget, char *));
static void destroy_all_children P_ ((Widget, int));
static void xm_update_label P_ ((widget_instance *, Widget, widget_value *));
static void xm_update_list P_ ((widget_instance *, Widget, widget_value *));
static void xm_update_pushbutton P_ ((widget_instance *, Widget,
widget_value *));
static void xm_update_cascadebutton P_ ((widget_instance *, Widget,
widget_value *));
static void xm_update_toggle P_ ((widget_instance *, Widget, widget_value *));
static void xm_update_radiobox P_ ((widget_instance *, Widget, widget_value *));
static void make_menu_in_widget P_ ((widget_instance *, Widget,
widget_value *, int));
static void update_one_menu_entry P_ ((widget_instance *, Widget,
widget_value *, Boolean));
static void xm_update_menu P_ ((widget_instance *, Widget, widget_value *,
Boolean));
static void xm_update_text P_ ((widget_instance *, Widget, widget_value *));
static void xm_update_text_field P_ ((widget_instance *, Widget,
widget_value *));
void xm_update_one_value P_ ((widget_instance *, Widget, widget_value *));
static void activate_button P_ ((Widget, XtPointer, XtPointer));
static Widget make_dialog P_ ((char *, Widget, Boolean, char *, char *,
Boolean, Boolean, Boolean, int, int));
static destroyed_instance* find_matching_instance P_ ((widget_instance*));
static void mark_dead_instance_destroyed P_ ((Widget, XtPointer, XtPointer));
static void recenter_widget P_ ((Widget));
static Widget recycle_instance P_ ((destroyed_instance*));
Widget xm_create_dialog P_ ((widget_instance*));
static Widget make_menubar P_ ((widget_instance*));
static void remove_grabs P_ ((Widget, XtPointer, XtPointer));
static Widget make_popup_menu P_ ((widget_instance*));
static Widget make_main P_ ((widget_instance*));
void xm_destroy_instance P_ ((widget_instance*));
void xm_popup_menu P_ ((Widget, XEvent *));
static void set_min_dialog_size P_ ((Widget));
static void do_call P_ ((Widget, XtPointer, enum do_call_type));
static void xm_generic_callback P_ ((Widget, XtPointer, XtPointer));
static void xm_nosel_callback P_ ((Widget, XtPointer, XtPointer));
static void xm_pull_down_callback P_ ((Widget, XtPointer, XtPointer));
static void xm_pop_down_callback P_ ((Widget, XtPointer, XtPointer));
void xm_set_keyboard_focus P_ ((Widget, Widget));
void xm_set_main_areas P_ ((Widget, Widget, Widget));
static void xm_internal_update_other_instances P_ ((Widget, XtPointer,
XtPointer));
static void xm_arm_callback P_ ((Widget, XtPointer, XtPointer));
#if 0
void xm_update_one_widget P_ ((widget_instance *, Widget, widget_value *,
Boolean));
void xm_pop_instance P_ ((widget_instance*, Boolean));
void xm_manage_resizing P_ ((Widget, Boolean));
#endif
#if 0
/* Print the complete X resource name of widget WIDGET to stderr.
This is sometimes handy to have available. */
void
x_print_complete_resource_name (widget)
Widget widget;
{
int i;
String names[100];
for (i = 0; i < 100 && widget != NULL; ++i)
{
names[i] = XtName (widget);
widget = XtParent (widget);
}
for (--i; i >= 1; --i)
fprintf (stderr, "%s.", names[i]);
fprintf (stderr, "%s\n", names[0]);
}
#endif /* 0 */
static destroyed_instance *all_destroyed_instances = NULL;
static destroyed_instance*
make_destroyed_instance (name, type, widget, parent, pop_up_p)
char* name;
char* type;
Widget widget;
Widget parent;
Boolean pop_up_p;
{
destroyed_instance* instance =
(destroyed_instance*)malloc (sizeof (destroyed_instance));
instance->name = safe_strdup (name);
instance->type = safe_strdup (type);
instance->widget = widget;
instance->parent = parent;
instance->pop_up_p = pop_up_p;
instance->next = NULL;
return instance;
}
static void
free_destroyed_instance (instance)
destroyed_instance* instance;
{
free (instance->name);
free (instance->type);
free (instance);
}
/* motif utility functions */
Widget
first_child (widget)
Widget widget;
{
return ((CompositeWidget)widget)->composite.children [0];
}
Boolean
lw_motif_widget_p (widget)
Widget widget;
{
return
XtClass (widget) == xmDialogShellWidgetClass
|| XmIsPrimitive (widget) || XmIsManager (widget) || XmIsGadget (widget);
}
static XmString
resource_motif_string (widget, name)
Widget widget;
char* name;
{
XtResource resource;
XmString result = 0;
resource.resource_name = name;
resource.resource_class = XmCXmString;
resource.resource_type = XmRXmString;
resource.resource_size = sizeof (XmString);
resource.resource_offset = 0;
resource.default_type = XtRImmediate;
resource.default_addr = 0;
XtGetSubresources (widget, (XtPointer)&result, "dialogString",
"DialogString", &resource, 1, NULL, 0);
return result;
}
/* Destroy all of the children of WIDGET
starting with number FIRST_CHILD_TO_DESTROY. */
static void
destroy_all_children (widget, first_child_to_destroy)
Widget widget;
int first_child_to_destroy;
{
Widget* children;
unsigned int number;
int i;
children = XtCompositeChildren (widget, &number);
if (children)
{
XtUnmanageChildren (children + first_child_to_destroy,
number - first_child_to_destroy);
/* Unmanage all children and destroy them. They will only be
really destroyed when we get out of DispatchEvent. */
for (i = first_child_to_destroy; i < number; i++)
{
Arg al[2];
Widget submenu = 0;
/* Cascade buttons have submenus,and these submenus
need to be freed. But they are not included in
XtCompositeChildren. So get it out of the cascade button
and free it. If this child is not a cascade button,
then submenu should remain unchanged. */
XtSetArg (al[0], XmNsubMenuId, &submenu);
XtGetValues (children[i], al, 1);
if (submenu)
{
destroy_all_children (submenu, 0);
XtDestroyWidget (submenu);
}
XtDestroyWidget (children[i]);
}
XtFree ((char *) children);
}
}
/* Callback XmNarmCallback and XmNdisarmCallback for buttons in a
menu. CLIENT_DATA contains a pointer to the widget_value
corresponding to widget W. CALL_DATA contains a
XmPushButtonCallbackStruct containing the reason why the callback
is called. */
static void
xm_arm_callback (w, client_data, call_data)
Widget w;
XtPointer client_data, call_data;
{
XmPushButtonCallbackStruct *cbs = (XmPushButtonCallbackStruct *) call_data;
widget_value *wv = (widget_value *) client_data;
widget_instance *instance;
/* Get the id of the menu bar or popup menu this widget is in. */
while (w != NULL)
{
if (XmIsRowColumn (w))
{
unsigned char type = 0xff;
XtVaGetValues (w, XmNrowColumnType, &type, NULL);
if (type == XmMENU_BAR || type == XmMENU_POPUP)
break;
}
w = XtParent (w);
}
if (w != NULL)
{
instance = lw_get_widget_instance (w);
if (instance && instance->info->highlight_cb)
{
call_data = cbs->reason == XmCR_DISARM ? NULL : wv;
instance->info->highlight_cb (w, instance->info->id, call_data);
}
}
}
/* Update the label of widget WIDGET. WIDGET must be a Label widget
or a subclass of Label. WIDGET_INSTANCE is unused. VAL contains
the value to update.
Menus:
Emacs fills VAL->name with the text to display in the menu, and
sets VAL->value to null. Function make_menu_in_widget creates
widgets with VAL->name as resource name. This works because the
Label widget uses its resource name for display if no
XmNlabelString is set.
Dialogs:
VAL->name is again set to the resource name, but VAL->value is
not null, and contains the label string to display. */
static void
xm_update_label (instance, widget, val)
widget_instance* instance;
Widget widget;
widget_value* val;
{
XmString res_string = 0;
XmString built_string = 0;
XmString key_string = 0;
Arg al [256];
int ac;
ac = 0;
if (val->value)
{
/* A label string is specified, i.e. we are in a dialog. First
see if it is overridden by something from the resource file. */
res_string = resource_motif_string (widget, val->value);
if (res_string)
{
XtSetArg (al [ac], XmNlabelString, res_string); ac++;
}
else
{
built_string =
XmStringCreateLtoR (val->value, XmSTRING_DEFAULT_CHARSET);
XtSetArg (al [ac], XmNlabelString, built_string); ac++;
}
XtSetArg (al [ac], XmNlabelType, XmSTRING); ac++;
}
if (val->key)
{
key_string = XmStringCreateLtoR (val->key, XmSTRING_DEFAULT_CHARSET);
XtSetArg (al [ac], XmNacceleratorText, key_string); ac++;
}
if (ac)
XtSetValues (widget, al, ac);
if (built_string)
XmStringFree (built_string);
if (key_string)
XmStringFree (key_string);
}
/* update of list */
static void
xm_update_list (instance, widget, val)
widget_instance* instance;
Widget widget;
widget_value* val;
{
widget_value* cur;
int i;
XtRemoveAllCallbacks (widget, XmNsingleSelectionCallback);
XtAddCallback (widget, XmNsingleSelectionCallback, xm_generic_callback,
instance);
for (cur = val->contents, i = 0; cur; cur = cur->next)
if (cur->value)
{
XmString xmstr = XmStringCreate (cur->value, XmSTRING_DEFAULT_CHARSET);
i += 1;
XmListAddItem (widget, xmstr, 0);
if (cur->selected)
XmListSelectPos (widget, i, False);
XmStringFree (xmstr);
}
}
/* update of buttons */
static void
xm_update_pushbutton (instance, widget, val)
widget_instance* instance;
Widget widget;
widget_value* val;
{
XtVaSetValues (widget, XmNalignment, XmALIGNMENT_CENTER, NULL);
XtRemoveAllCallbacks (widget, XmNactivateCallback);
XtAddCallback (widget, XmNactivateCallback, xm_generic_callback, instance);
}
static void
xm_update_cascadebutton (instance, widget, val)
widget_instance* instance;
Widget widget;
widget_value* val;
{
/* Should also rebuild the menu by calling ...update_menu... */
XtRemoveAllCallbacks (widget, XmNcascadingCallback);
XtAddCallback (widget, XmNcascadingCallback, xm_pull_down_callback,
instance);
}
/* update toggle and radiobox */
static void
xm_update_toggle (instance, widget, val)
widget_instance* instance;
Widget widget;
widget_value* val;
{
XtRemoveAllCallbacks (widget, XmNvalueChangedCallback);
XtAddCallback (widget, XmNvalueChangedCallback,
xm_generic_callback, instance);
XtVaSetValues (widget, XmNset, val->selected,
XmNalignment, XmALIGNMENT_BEGINNING, NULL);
}
static void
xm_update_radiobox (instance, widget, val)
widget_instance* instance;
Widget widget;
widget_value* val;
{
Widget toggle;
widget_value* cur;
/* update the callback */
XtRemoveAllCallbacks (widget, XmNentryCallback);
XtAddCallback (widget, XmNentryCallback, xm_generic_callback, instance);
/* first update all the toggles */
/* Energize kernel interface is currently bad. It sets the selected widget
with the selected flag but returns it by its name. So we currently
have to support both setting the selection with the selected slot
of val contents and setting it with the "value" slot of val. The latter
has a higher priority. This to be removed when the kernel is fixed. */
for (cur = val->contents; cur; cur = cur->next)
{
toggle = XtNameToWidget (widget, cur->value);
if (toggle)
{
XtSetSensitive (toggle, cur->enabled);
if (!val->value && cur->selected)
XtVaSetValues (toggle, XmNset, cur->selected, NULL);
if (val->value && strcmp (val->value, cur->value))
XtVaSetValues (toggle, XmNset, False, NULL);
}
}
/* The selected was specified by the value slot */
if (val->value)
{
toggle = XtNameToWidget (widget, val->value);
if (toggle)
XtVaSetValues (toggle, XmNset, True, NULL);
}
}
/* update a popup menu, pulldown menu or a menubar */
/* KEEP_FIRST_CHILDREN gives the number of initial children to keep. */
static void
make_menu_in_widget (instance, widget, val, keep_first_children)
widget_instance* instance;
Widget widget;
widget_value* val;
int keep_first_children;
{
Widget* children = 0;
int num_children;
int child_index;
widget_value* cur;
Widget button = 0;
Widget title = 0;
Widget menu;
Arg al [256];
int ac;
Boolean menubar_p;
unsigned char type;
Widget* old_children;
unsigned int old_num_children;
old_children = XtCompositeChildren (widget, &old_num_children);
/* Allocate the children array */
for (num_children = 0, cur = val; cur; num_children++, cur = cur->next)
;
children = (Widget*)XtMalloc (num_children * sizeof (Widget));
/* WIDGET should be a RowColumn. */
if (!XmIsRowColumn (widget))
abort ();
/* Determine whether WIDGET is a menu bar. */
type = -1;
XtSetArg (al[0], XmNrowColumnType, &type);
XtGetValues (widget, al, 1);
if (type != XmMENU_BAR && type != XmMENU_PULLDOWN && type != XmMENU_POPUP)
abort ();
menubar_p = type == XmMENU_BAR;
/* Add a callback to popups and pulldowns that is called when
it is made invisible again. */
if (!menubar_p)
XtAddCallback (XtParent (widget), XmNpopdownCallback,
xm_pop_down_callback, (XtPointer)instance);
/* Preserve the first KEEP_FIRST_CHILDREN old children. */
for (child_index = 0, cur = val; child_index < keep_first_children;
child_index++, cur = cur->next)
children[child_index] = old_children[child_index];
/* Check that those are all we have
(the caller should have deleted the rest). */
if (old_num_children != keep_first_children)
abort ();
/* Create the rest. */
for (child_index = keep_first_children; cur; child_index++, cur = cur->next)
{
enum menu_separator separator;
ac = 0;
XtSetArg (al[ac], XmNsensitive, cur->enabled); ac++;
XtSetArg (al[ac], XmNalignment, XmALIGNMENT_BEGINNING); ac++;
XtSetArg (al[ac], XmNuserData, cur->call_data); ac++;
if (instance->pop_up_p && !cur->contents && !cur->call_data
&& !lw_separator_p (cur->name, &separator, 1))
{
ac = 0;
XtSetArg (al[ac], XmNalignment, XmALIGNMENT_CENTER); ac++;
title = button = XmCreateLabel (widget, cur->name, al, ac);
}
else if (lw_separator_p (cur->name, &separator, 1))
{
ac = 0;
XtSetArg (al[ac], XmNseparatorType, separator); ++ac;
button = XmCreateSeparator (widget, cur->name, al, ac);
}
else if (!cur->contents)
{
if (menubar_p)
button = XmCreateCascadeButton (widget, cur->name, al, ac);
else if (!cur->call_data)
button = XmCreateLabel (widget, cur->name, al, ac);
else if (cur->button_type == BUTTON_TYPE_TOGGLE
|| cur->button_type == BUTTON_TYPE_RADIO)
{
XtSetArg (al[ac], XmNset, cur->selected); ++ac;
XtSetArg (al[ac], XmNvisibleWhenOff, True); ++ac;
XtSetArg (al[ac], XmNindicatorType,
(cur->button_type == BUTTON_TYPE_TOGGLE
? XmN_OF_MANY : XmONE_OF_MANY));
++ac;
button = XmCreateToggleButton (widget, cur->name, al, ac);
XtAddCallback (button, XmNarmCallback, xm_arm_callback, cur);
XtAddCallback (button, XmNdisarmCallback, xm_arm_callback, cur);
}
else
{
button = XmCreatePushButton (widget, cur->name, al, ac);
XtAddCallback (button, XmNarmCallback, xm_arm_callback, cur);
XtAddCallback (button, XmNdisarmCallback, xm_arm_callback, cur);
}
xm_update_label (instance, button, cur);
/* Add a callback that is called when the button is
selected. Toggle buttons don't support
XmNactivateCallback, we use XmNvalueChangedCallback in
that case. Don't add a callback to a simple label. */
if (cur->button_type)
xm_update_toggle (instance, button, cur);
else if (cur->call_data)
XtAddCallback (button, XmNactivateCallback, xm_generic_callback,
(XtPointer)instance);
}
else
{
menu = XmCreatePulldownMenu (widget, cur->name, NULL, 0);
make_menu_in_widget (instance, menu, cur->contents, 0);
XtSetArg (al[ac], XmNsubMenuId, menu); ac++;
button = XmCreateCascadeButton (widget, cur->name, al, ac);
xm_update_label (instance, button, cur);
XtAddCallback (button, XmNcascadingCallback, xm_pull_down_callback,
(XtPointer)instance);
}
children[child_index] = button;
}
/* Last entry is the help button. The original comment read "Has to
be done after managing the buttons otherwise the menubar is only
4 pixels high." This is no longer true, and to make
XmNmenuHelpWidget work, we need to set it before managing the
children.. --gerd. */
if (button)
XtVaSetValues (widget, XmNmenuHelpWidget, button, NULL);
if (num_children)
XtManageChildren (children, num_children);
XtFree ((char *) children);
if (old_children)
XtFree ((char *) old_children);
}
static void
update_one_menu_entry (instance, widget, val, deep_p)
widget_instance* instance;
Widget widget;
widget_value* val;
Boolean deep_p;
{
Arg al [256];
int ac;
Widget menu;
widget_value* contents;
if (val->this_one_change == NO_CHANGE)
return;
/* update the sensitivity and userdata */
/* Common to all widget types */
XtSetSensitive (widget, val->enabled);
XtVaSetValues (widget, XmNuserData, val->call_data, NULL);
/* update the menu button as a label. */
if (val->this_one_change >= VISIBLE_CHANGE)
{
xm_update_label (instance, widget, val);
if (val->button_type)
xm_update_toggle (instance, widget, val);
}
/* update the pulldown/pullaside as needed */
ac = 0;
menu = NULL;
XtSetArg (al [ac], XmNsubMenuId, &menu); ac++;
XtGetValues (widget, al, ac);
contents = val->contents;
if (!menu)
{
if (contents)
{
unsigned int old_num_children, i;
Widget parent;
Widget *widget_list;
parent = XtParent (widget);
widget_list = XtCompositeChildren (parent, &old_num_children);
/* Find the widget position within the parent's widget list. */
for (i = 0; i < old_num_children; i++)
if (strcmp (XtName (widget_list[i]), XtName (widget)) == 0)
break;
if (i == old_num_children)
abort ();
if (XmIsCascadeButton (widget_list[i]))
{
menu = XmCreatePulldownMenu (parent, XtName(widget), NULL, 0);
make_menu_in_widget (instance, menu, contents, 0);
ac = 0;
XtSetArg (al [ac], XmNsubMenuId, menu); ac++;
XtSetValues (widget, al, ac);
}
else
{
Widget button;
/* The current menuitem is a XmPushButtonGadget, it
needs to be replaced by a CascadeButtonGadget */
XtDestroyWidget (widget_list[i]);
menu = XmCreatePulldownMenu (parent, val->name, NULL, 0);
make_menu_in_widget (instance, menu, contents, 0);
ac = 0;
XtSetArg (al [ac], XmNsubMenuId, menu); ac++;
/* Non-zero values don't work reliably in
conjunction with Emacs' event loop */
XtSetArg (al [ac], XmNmappingDelay, 0); ac++;
#ifdef XmNpositionIndex /* This is undefined on SCO ODT 2.0. */
/* Tell Motif to put it in the right place */
XtSetArg (al [ac], XmNpositionIndex , i); ac++;
#endif
button = XmCreateCascadeButton (parent, val->name, al, ac);
xm_update_label (instance, button, val);
XtAddCallback (button, XmNcascadingCallback, xm_pull_down_callback,
(XtPointer)instance);
XtManageChild (button);
}
if (widget_list)
XtFree ((char*) widget_list);
}
}
else if (!contents)
{
ac = 0;
XtSetArg (al [ac], XmNsubMenuId, NULL); ac++;
XtSetValues (widget, al, ac);
XtDestroyWidget (menu);
}
else if (deep_p && contents->change != NO_CHANGE)
xm_update_menu (instance, menu, val, 1);
}
static void
xm_update_menu (instance, widget, val, deep_p)
widget_instance* instance;
Widget widget;
widget_value* val;
Boolean deep_p;
{
Widget* children;
unsigned int num_children;
int num_children_to_keep = 0;
int i;
widget_value* cur;
children = XtCompositeChildren (widget, &num_children);
/* Widget is a RowColumn widget whose contents have to be updated
* to reflect the list of items in val->contents */
/* See how many buttons we can keep, and how many we
must completely replace. */
if (val->contents == 0)
num_children_to_keep = 0;
else if (val->contents->change == STRUCTURAL_CHANGE)
{
if (children)
{
for (i = 0, cur = val->contents;
(i < num_children
&& cur); /* how else to ditch unwanted children ?? - mgd */
i++, cur = cur->next)
{
if (cur->this_one_change == STRUCTURAL_CHANGE)
break;
}
num_children_to_keep = i;
}
}
else
num_children_to_keep = num_children;
/* Update all the buttons of the RowColumn, in order,
except for those we are going to replace entirely. */
if (children)
{
for (i = 0, cur = val->contents; i < num_children_to_keep; i++)
{
if (!cur)
{
num_children_to_keep = i;
break;
}
if (children [i]->core.being_destroyed
|| strcmp (XtName (children [i]), cur->name))
continue;
update_one_menu_entry (instance, children [i], cur, deep_p);
cur = cur->next;
}
}
/* Now replace from scratch all the buttons after the last
place that the top-level structure changed. */
if (val->contents->change == STRUCTURAL_CHANGE)
{
destroy_all_children (widget, num_children_to_keep);
make_menu_in_widget (instance, widget, val->contents,
num_children_to_keep);
}
XtFree ((char *) children);
}
/* update text widgets */
static void
xm_update_text (instance, widget, val)
widget_instance* instance;
Widget widget;
widget_value* val;
{
XmTextSetString (widget, val->value ? val->value : "");
XtRemoveAllCallbacks (widget, XmNactivateCallback);
XtAddCallback (widget, XmNactivateCallback, xm_generic_callback, instance);
XtRemoveAllCallbacks (widget, XmNvalueChangedCallback);
XtAddCallback (widget, XmNvalueChangedCallback,
xm_internal_update_other_instances, instance);
}
static void
xm_update_text_field (instance, widget, val)
widget_instance* instance;
Widget widget;
widget_value* val;
{
XmTextFieldSetString (widget, val->value ? val->value : "");
XtRemoveAllCallbacks (widget, XmNactivateCallback);
XtAddCallback (widget, XmNactivateCallback, xm_generic_callback, instance);
XtRemoveAllCallbacks (widget, XmNvalueChangedCallback);
XtAddCallback (widget, XmNvalueChangedCallback,
xm_internal_update_other_instances, instance);
}
/* update a motif widget */
void
xm_update_one_widget (instance, widget, val, deep_p)
widget_instance* instance;
Widget widget;
widget_value* val;
Boolean deep_p;
{
WidgetClass class;
/* Mark as not edited */
val->edited = False;
/* Common to all widget types */
XtSetSensitive (widget, val->enabled);
XtVaSetValues (widget, XmNuserData, val->call_data, NULL);
/* Common to all label like widgets */
if (XtIsSubclass (widget, xmLabelWidgetClass))
xm_update_label (instance, widget, val);
class = XtClass (widget);
/* Class specific things */
if (class == xmPushButtonWidgetClass ||
class == xmArrowButtonWidgetClass)
{
xm_update_pushbutton (instance, widget, val);
}
else if (class == xmCascadeButtonWidgetClass)
{
xm_update_cascadebutton (instance, widget, val);
}
else if (class == xmToggleButtonWidgetClass
|| class == xmToggleButtonGadgetClass)
{
xm_update_toggle (instance, widget, val);
}
else if (class == xmRowColumnWidgetClass)
{
Boolean radiobox = 0;
int ac = 0;
Arg al [1];
XtSetArg (al [ac], XmNradioBehavior, &radiobox); ac++;
XtGetValues (widget, al, ac);
if (radiobox)
xm_update_radiobox (instance, widget, val);
else
xm_update_menu (instance, widget, val, deep_p);
}
else if (class == xmTextWidgetClass)
{
xm_update_text (instance, widget, val);
}
else if (class == xmTextFieldWidgetClass)
{
xm_update_text_field (instance, widget, val);
}
else if (class == xmListWidgetClass)
{
xm_update_list (instance, widget, val);
}
}
/* getting the value back */
void
xm_update_one_value (instance, widget, val)
widget_instance* instance;
Widget widget;
widget_value* val;
{
WidgetClass class = XtClass (widget);
widget_value *old_wv;
/* copy the call_data slot into the "return" widget_value */
for (old_wv = instance->info->val->contents; old_wv; old_wv = old_wv->next)
if (!strcmp (val->name, old_wv->name))
{
val->call_data = old_wv->call_data;
break;
}
if (class == xmToggleButtonWidgetClass || class == xmToggleButtonGadgetClass)
{
XtVaGetValues (widget, XmNset, &val->selected, NULL);
val->edited = True;
}
else if (class == xmTextWidgetClass)
{
if (val->value)
free (val->value);
val->value = XmTextGetString (widget);
val->edited = True;
}
else if (class == xmTextFieldWidgetClass)
{
if (val->value)
free (val->value);
val->value = XmTextFieldGetString (widget);
val->edited = True;
}
else if (class == xmRowColumnWidgetClass)
{
Boolean radiobox = 0;
int ac = 0;
Arg al [1];
XtSetArg (al [ac], XmNradioBehavior, &radiobox); ac++;
XtGetValues (widget, al, ac);
if (radiobox)
{
CompositeWidget radio = (CompositeWidget)widget;
int i;
for (i = 0; i < radio->composite.num_children; i++)
{
int set = False;
Widget toggle = radio->composite.children [i];
XtVaGetValues (toggle, XmNset, &set, NULL);
if (set)
{
if (val->value)
free (val->value);
val->value = safe_strdup (XtName (toggle));
}
}
val->edited = True;
}
}
else if (class == xmListWidgetClass)
{
int pos_cnt;
int* pos_list;
if (XmListGetSelectedPos (widget, &pos_list, &pos_cnt))
{
int i;
widget_value* cur;
for (cur = val->contents, i = 0; cur; cur = cur->next)
if (cur->value)
{
int j;
cur->selected = False;
i += 1;
for (j = 0; j < pos_cnt; j++)
if (pos_list [j] == i)
{
cur->selected = True;
val->value = safe_strdup (cur->name);
}
}
val->edited = 1;
XtFree ((char *) pos_list);
}
}
}
/* This function is for activating a button from a program. It's wrong because
we pass a NULL argument in the call_data which is not Motif compatible.
This is used from the XmNdefaultAction callback of the List widgets to
have a double-click put down a dialog box like the button would do.
I could not find a way to do that with accelerators.
*/
static void
activate_button (widget, closure, call_data)
Widget widget;
XtPointer closure;
XtPointer call_data;
{
Widget button = (Widget)closure;
XtCallCallbacks (button, XmNactivateCallback, NULL);
}
/* creation functions */
/* dialogs */
static Widget
make_dialog (name, parent, pop_up_p, shell_title, icon_name, text_input_slot,
radio_box, list, left_buttons, right_buttons)
char* name;
Widget parent;
Boolean pop_up_p;
char* shell_title;
char* icon_name;
Boolean text_input_slot;
Boolean radio_box;
Boolean list;
int left_buttons;
int right_buttons;
{
Widget result;
Widget form;
Widget row;
Widget icon;
Widget icon_separator;
Widget message;
Widget value = 0;
Widget separator;
Widget button = 0;
Widget children [16]; /* for the final XtManageChildren */
int n_children;
Arg al[64]; /* Arg List */
int ac; /* Arg Count */
int i;
if (pop_up_p)
{
ac = 0;
XtSetArg(al[ac], XmNtitle, shell_title); ac++;
XtSetArg(al[ac], XtNallowShellResize, True); ac++;
XtSetArg(al[ac], XmNdeleteResponse, XmUNMAP); ac++;
result = XmCreateDialogShell (parent, "dialog", al, ac);
ac = 0;
XtSetArg(al[ac], XmNautoUnmanage, FALSE); ac++;
/* XtSetArg(al[ac], XmNautoUnmanage, TRUE); ac++; */ /* ####is this ok? */
XtSetArg(al[ac], XmNnavigationType, XmTAB_GROUP); ac++;
form = XmCreateForm (result, shell_title, al, ac);
}
else
{
ac = 0;
XtSetArg(al[ac], XmNautoUnmanage, FALSE); ac++;
XtSetArg(al[ac], XmNnavigationType, XmTAB_GROUP); ac++;
form = XmCreateForm (parent, shell_title, al, ac);
result = form;
}
n_children = left_buttons + right_buttons + 1;
ac = 0;
XtSetArg(al[ac], XmNpacking, n_children == 3?
XmPACK_COLUMN: XmPACK_TIGHT); ac++;
XtSetArg(al[ac], XmNorientation, n_children == 3?
XmVERTICAL: XmHORIZONTAL); ac++;
XtSetArg(al[ac], XmNnumColumns, left_buttons + right_buttons + 1); ac++;
XtSetArg(al[ac], XmNmarginWidth, 0); ac++;
XtSetArg(al[ac], XmNmarginHeight, 0); ac++;
XtSetArg(al[ac], XmNspacing, 13); ac++;
XtSetArg(al[ac], XmNadjustLast, False); ac++;
XtSetArg(al[ac], XmNalignment, XmALIGNMENT_CENTER); ac++;
XtSetArg(al[ac], XmNisAligned, True); ac++;
XtSetArg(al[ac], XmNtopAttachment, XmATTACH_NONE); ac++;
XtSetArg(al[ac], XmNbottomAttachment, XmATTACH_FORM); ac++;
XtSetArg(al[ac], XmNbottomOffset, 13); ac++;
XtSetArg(al[ac], XmNleftAttachment, XmATTACH_FORM); ac++;
XtSetArg(al[ac], XmNleftOffset, 13); ac++;
XtSetArg(al[ac], XmNrightAttachment, XmATTACH_FORM); ac++;
XtSetArg(al[ac], XmNrightOffset, 13); ac++;
row = XmCreateRowColumn (form, "row", al, ac);
n_children = 0;
for (i = 0; i < left_buttons; i++)
{
char button_name [16];
sprintf (button_name, "button%d", i + 1);
ac = 0;
if (i == 0)
{
XtSetArg(al[ac], XmNhighlightThickness, 1); ac++;
XtSetArg(al[ac], XmNshowAsDefault, TRUE); ac++;
}
XtSetArg(al[ac], XmNmarginWidth, 10); ac++;
XtSetArg(al[ac], XmNnavigationType, XmTAB_GROUP); ac++;
children [n_children] = XmCreatePushButton (row, button_name, al, ac);
if (i == 0)
{
button = children [n_children];
ac = 0;
XtSetArg(al[ac], XmNdefaultButton, button); ac++;
XtSetValues (row, al, ac);
}
n_children++;
}
/* invisible separator button */
ac = 0;
XtSetArg (al[ac], XmNmappedWhenManaged, FALSE); ac++;
children [n_children] = XmCreateLabel (row, "separator_button", al, ac);
n_children++;
for (i = 0; i < right_buttons; i++)
{
char button_name [16];
sprintf (button_name, "button%d", left_buttons + i + 1);
ac = 0;
XtSetArg(al[ac], XmNmarginWidth, 10); ac++;
XtSetArg(al[ac], XmNnavigationType, XmTAB_GROUP); ac++;
children [n_children] = XmCreatePushButton (row, button_name, al, ac);
if (! button) button = children [n_children];
n_children++;
}
XtManageChildren (children, n_children);
ac = 0;
XtSetArg(al[ac], XmNtopAttachment, XmATTACH_NONE); ac++;
XtSetArg(al[ac], XmNbottomAttachment, XmATTACH_WIDGET); ac++;
XtSetArg(al[ac], XmNbottomOffset, 13); ac++;
XtSetArg(al[ac], XmNbottomWidget, row); ac++;
XtSetArg(al[ac], XmNleftAttachment, XmATTACH_FORM); ac++;
XtSetArg(al[ac], XmNleftOffset, 0); ac++;
XtSetArg(al[ac], XmNrightAttachment, XmATTACH_FORM); ac++;
XtSetArg(al[ac], XmNrightOffset, 0); ac++;
separator = XmCreateSeparator (form, "", al, ac);
ac = 0;
XtSetArg(al[ac], XmNlabelType, XmPIXMAP); ac++;
XtSetArg(al[ac], XmNtopAttachment, XmATTACH_FORM); ac++;
XtSetArg(al[ac], XmNtopOffset, 13); ac++;
XtSetArg(al[ac], XmNbottomAttachment, XmATTACH_NONE); ac++;
XtSetArg(al[ac], XmNleftAttachment, XmATTACH_FORM); ac++;
XtSetArg(al[ac], XmNleftOffset, 13); ac++;
XtSetArg(al[ac], XmNrightAttachment, XmATTACH_NONE); ac++;
icon = XmCreateLabel (form, icon_name, al, ac);
ac = 0;
XtSetArg(al[ac], XmNmappedWhenManaged, FALSE); ac++;
XtSetArg(al[ac], XmNtopAttachment, XmATTACH_WIDGET); ac++;
XtSetArg(al[ac], XmNtopOffset, 6); ac++;
XtSetArg(al[ac], XmNtopWidget, icon); ac++;
XtSetArg(al[ac], XmNbottomAttachment, XmATTACH_WIDGET); ac++;
XtSetArg(al[ac], XmNbottomOffset, 6); ac++;
XtSetArg(al[ac], XmNbottomWidget, separator); ac++;
XtSetArg(al[ac], XmNleftAttachment, XmATTACH_NONE); ac++;
XtSetArg(al[ac], XmNrightAttachment, XmATTACH_NONE); ac++;
icon_separator = XmCreateLabel (form, "", al, ac);
if (text_input_slot)
{
ac = 0;
XtSetArg(al[ac], XmNcolumns, 50); ac++;
XtSetArg(al[ac], XmNtopAttachment, XmATTACH_NONE); ac++;
XtSetArg(al[ac], XmNbottomAttachment, XmATTACH_WIDGET); ac++;
XtSetArg(al[ac], XmNbottomOffset, 13); ac++;
XtSetArg(al[ac], XmNbottomWidget, separator); ac++;
XtSetArg(al[ac], XmNleftAttachment, XmATTACH_WIDGET); ac++;
XtSetArg(al[ac], XmNleftOffset, 13); ac++;
XtSetArg(al[ac], XmNleftWidget, icon); ac++;
XtSetArg(al[ac], XmNrightAttachment, XmATTACH_FORM); ac++;
XtSetArg(al[ac], XmNrightOffset, 13); ac++;
value = XmCreateTextField (form, "value", al, ac);
}
else if (radio_box)
{
Widget radio_butt;
ac = 0;
XtSetArg(al[ac], XmNmarginWidth, 0); ac++;
XtSetArg(al[ac], XmNmarginHeight, 0); ac++;
XtSetArg(al[ac], XmNspacing, 13); ac++;
XtSetArg(al[ac], XmNalignment, XmALIGNMENT_CENTER); ac++;
XtSetArg(al[ac], XmNorientation, XmHORIZONTAL); ac++;
XtSetArg(al[ac], XmNbottomAttachment, XmATTACH_WIDGET); ac++;
XtSetArg(al[ac], XmNbottomOffset, 13); ac++;
XtSetArg(al[ac], XmNbottomWidget, separator); ac++;
XtSetArg(al[ac], XmNleftAttachment, XmATTACH_WIDGET); ac++;
XtSetArg(al[ac], XmNleftOffset, 13); ac++;
XtSetArg(al[ac], XmNleftWidget, icon); ac++;
XtSetArg(al[ac], XmNrightAttachment, XmATTACH_FORM); ac++;
XtSetArg(al[ac], XmNrightOffset, 13); ac++;
value = XmCreateRadioBox (form, "radiobutton1", al, ac);
ac = 0;
i = 0;
radio_butt = XmCreateToggleButtonGadget (value, "radio1", al, ac);
children [i++] = radio_butt;
radio_butt = XmCreateToggleButtonGadget (value, "radio2", al, ac);
children [i++] = radio_butt;
radio_butt = XmCreateToggleButtonGadget (value, "radio3", al, ac);
children [i++] = radio_butt;
XtManageChildren (children, i);
}
else if (list)
{
ac = 0;
XtSetArg(al[ac], XmNvisibleItemCount, 5); ac++;
XtSetArg(al[ac], XmNtopAttachment, XmATTACH_NONE); ac++;
XtSetArg(al[ac], XmNbottomAttachment, XmATTACH_WIDGET); ac++;
XtSetArg(al[ac], XmNbottomOffset, 13); ac++;
XtSetArg(al[ac], XmNbottomWidget, separator); ac++;
XtSetArg(al[ac], XmNleftAttachment, XmATTACH_WIDGET); ac++;
XtSetArg(al[ac], XmNleftOffset, 13); ac++;
XtSetArg(al[ac], XmNleftWidget, icon); ac++;
XtSetArg(al[ac], XmNrightAttachment, XmATTACH_FORM); ac++;
XtSetArg(al[ac], XmNrightOffset, 13); ac++;
value = XmCreateScrolledList (form, "list", al, ac);
/* this is the easiest way I found to have the dble click in the
list activate the default button */
XtAddCallback (value, XmNdefaultActionCallback, activate_button, button);
}
ac = 0;
XtSetArg(al[ac], XmNalignment, XmALIGNMENT_BEGINNING); ac++;
XtSetArg(al[ac], XmNtopAttachment, XmATTACH_FORM); ac++;
XtSetArg(al[ac], XmNtopOffset, 13); ac++;
XtSetArg(al[ac], XmNbottomAttachment, XmATTACH_WIDGET); ac++;
XtSetArg(al[ac], XmNbottomOffset, 13); ac++;
XtSetArg(al[ac], XmNbottomWidget,
text_input_slot || radio_box || list ? value : separator); ac++;
XtSetArg(al[ac], XmNleftAttachment, XmATTACH_WIDGET); ac++;
XtSetArg(al[ac], XmNleftOffset, 13); ac++;
XtSetArg(al[ac], XmNleftWidget, icon); ac++;
XtSetArg(al[ac], XmNrightAttachment, XmATTACH_FORM); ac++;
XtSetArg(al[ac], XmNrightOffset, 13); ac++;
message = XmCreateLabel (form, "message", al, ac);
if (list)
XtManageChild (value);
i = 0;
children [i] = row; i++;
children [i] = separator; i++;
if (text_input_slot || radio_box)
{
children [i] = value; i++;
}
children [i] = message; i++;
children [i] = icon; i++;
children [i] = icon_separator; i++;
XtManageChildren (children, i);
if (text_input_slot || list)
{
XtInstallAccelerators (value, button);
XtSetKeyboardFocus (result, value);
}
else
{
XtInstallAccelerators (form, button);
XtSetKeyboardFocus (result, button);
}
return result;
}
static destroyed_instance*
find_matching_instance (instance)
widget_instance* instance;
{
destroyed_instance* cur;
destroyed_instance* prev;
char* type = instance->info->type;
char* name = instance->info->name;
for (prev = NULL, cur = all_destroyed_instances;
cur;
prev = cur, cur = cur->next)
{
if (!strcmp (cur->name, name)
&& !strcmp (cur->type, type)
&& cur->parent == instance->parent
&& cur->pop_up_p == instance->pop_up_p)
{
if (prev)
prev->next = cur->next;
else
all_destroyed_instances = cur->next;
return cur;
}
/* do some cleanup */
else if (!cur->widget)
{
if (prev)
prev->next = cur->next;
else
all_destroyed_instances = cur->next;
free_destroyed_instance (cur);
cur = prev ? prev : all_destroyed_instances;
}
}
return NULL;
}
static void
mark_dead_instance_destroyed (widget, closure, call_data)
Widget widget;
XtPointer closure;
XtPointer call_data;
{
destroyed_instance* instance = (destroyed_instance*)closure;
instance->widget = NULL;
}
static void
recenter_widget (widget)
Widget widget;
{
Widget parent = XtParent (widget);
Screen* screen = XtScreen (widget);
Dimension screen_width = WidthOfScreen (screen);
Dimension screen_height = HeightOfScreen (screen);
Dimension parent_width = 0;
Dimension parent_height = 0;
Dimension child_width = 0;
Dimension child_height = 0;
Position x;
Position y;
XtVaGetValues (widget, XtNwidth, &child_width, XtNheight, &child_height, NULL);
XtVaGetValues (parent, XtNwidth, &parent_width, XtNheight, &parent_height,
NULL);
x = (((Position)parent_width) - ((Position)child_width)) / 2;
y = (((Position)parent_height) - ((Position)child_height)) / 2;
XtTranslateCoords (parent, x, y, &x, &y);
if (x + child_width > screen_width)
x = screen_width - child_width;
if (x < 0)
x = 0;
if (y + child_height > screen_height)
y = screen_height - child_height;
if (y < 0)
y = 0;
XtVaSetValues (widget, XtNx, x, XtNy, y, NULL);
}
static Widget
recycle_instance (instance)
destroyed_instance* instance;
{
Widget widget = instance->widget;
/* widget is NULL if the parent was destroyed. */
if (widget)
{
Widget focus;
Widget separator;
/* Remove the destroy callback as the instance is not in the list
anymore */
XtRemoveCallback (instance->parent, XtNdestroyCallback,
mark_dead_instance_destroyed,
(XtPointer)instance);
/* Give the focus to the initial item */
focus = XtNameToWidget (widget, "*value");
if (!focus)
focus = XtNameToWidget (widget, "*button1");
if (focus)
XtSetKeyboardFocus (widget, focus);
/* shrink the separator label back to their original size */
separator = XtNameToWidget (widget, "*separator_button");
if (separator)
XtVaSetValues (separator, XtNwidth, 5, XtNheight, 5, NULL);
/* Center the dialog in its parent */
recenter_widget (widget);
}
free_destroyed_instance (instance);
return widget;
}
Widget
xm_create_dialog (instance)
widget_instance* instance;
{
char* name = instance->info->type;
Widget parent = instance->parent;
Widget widget;
Boolean pop_up_p = instance->pop_up_p;
char* shell_name = 0;
char* icon_name = 0;
Boolean text_input_slot = False;
Boolean radio_box = False;
Boolean list = False;
int total_buttons;
int left_buttons = 0;
int right_buttons = 1;
destroyed_instance* dead_one;
/* try to find a widget to recycle */
dead_one = find_matching_instance (instance);
if (dead_one)
{
Widget recycled_widget = recycle_instance (dead_one);
if (recycled_widget)
return recycled_widget;
}
switch (name [0]){
case 'E': case 'e':
icon_name = "dbox-error";
shell_name = "Error";
break;
case 'I': case 'i':
icon_name = "dbox-info";
shell_name = "Information";
break;
case 'L': case 'l':
list = True;
icon_name = "dbox-question";
shell_name = "Prompt";
break;
case 'P': case 'p':
text_input_slot = True;
icon_name = "dbox-question";
shell_name = "Prompt";
break;
case 'Q': case 'q':
icon_name = "dbox-question";
shell_name = "Question";
break;
}
total_buttons = name [1] - '0';
if (name [3] == 'T' || name [3] == 't')
{
text_input_slot = False;
radio_box = True;
}
else if (name [3])
right_buttons = name [4] - '0';
left_buttons = total_buttons - right_buttons;
widget = make_dialog (name, parent, pop_up_p,
shell_name, icon_name, text_input_slot, radio_box,
list, left_buttons, right_buttons);
XtAddCallback (widget, XmNpopdownCallback, xm_nosel_callback,
(XtPointer) instance);
return widget;
}
/* Create a menu bar. We turn off the f10 key
because we have not yet managed to make it work right in Motif. */
static Widget
make_menubar (instance)
widget_instance* instance;
{
Arg al[3];
int ac;
ac = 0;
XtSetArg(al[ac], XmNmenuAccelerator, 0); ++ac;
return XmCreateMenuBar (instance->parent, instance->info->name, al, ac);
}
static void
remove_grabs (shell, closure, call_data)
Widget shell;
XtPointer closure;
XtPointer call_data;
{
Widget menu = (Widget) closure;
XmRemoveFromPostFromList (menu, XtParent (XtParent (menu)));
}
static Widget
make_popup_menu (instance)
widget_instance* instance;
{
Widget parent = instance->parent;
Window parent_window = parent->core.window;
Widget result;
/* sets the parent window to 0 to fool Motif into not generating a grab */
parent->core.window = 0;
result = XmCreatePopupMenu (parent, instance->info->name, NULL, 0);
XtAddCallback (XtParent (result), XmNpopdownCallback, remove_grabs,
(XtPointer)result);
parent->core.window = parent_window;
return result;
}
static Widget
make_main (instance)
widget_instance* instance;
{
Widget parent = instance->parent;
Widget result;
Arg al[2];
int ac;
ac = 0;
XtSetArg (al[ac], XtNborderWidth, 0); ac++;
XtSetArg (al[ac], XmNspacing, 0); ac++;
result = XmCreateMainWindow (parent, instance->info->name, al, ac);
return result;
}
/* Table of functions to create widgets */
#ifdef ENERGIZE
/* interface with the XDesigner generated functions */
typedef Widget (*widget_maker) (Widget);
extern Widget create_project_p_sheet (Widget parent);
extern Widget create_debugger_p_sheet (Widget parent);
extern Widget create_breaklist_p_sheet (Widget parent);
extern Widget create_le_browser_p_sheet (Widget parent);
extern Widget create_class_browser_p_sheet (Widget parent);
extern Widget create_call_browser_p_sheet (Widget parent);
extern Widget create_build_dialog (Widget parent);
extern Widget create_editmode_dialog (Widget parent);
extern Widget create_search_dialog (Widget parent);
extern Widget create_project_display_dialog (Widget parent);
static Widget
make_one (widget_instance* instance, widget_maker fn)
{
Widget result;
Arg al [64];
int ac = 0;
if (instance->pop_up_p)
{
XtSetArg (al [ac], XmNallowShellResize, TRUE); ac++;
result = XmCreateDialogShell (instance->parent, "dialog", NULL, 0);
XtAddCallback (result, XmNpopdownCallback, &xm_nosel_callback,
(XtPointer) instance);
(*fn) (result);
}
else
{
result = (*fn) (instance->parent);
XtRealizeWidget (result);
}
return result;
}
static Widget
make_project_p_sheet (widget_instance* instance)
{
return make_one (instance, create_project_p_sheet);
}
static Widget
make_debugger_p_sheet (widget_instance* instance)
{
return make_one (instance, create_debugger_p_sheet);
}
static Widget
make_breaklist_p_sheet (widget_instance* instance)
{
return make_one (instance, create_breaklist_p_sheet);
}
static Widget
make_le_browser_p_sheet (widget_instance* instance)
{
return make_one (instance, create_le_browser_p_sheet);
}
static Widget
make_class_browser_p_sheet (widget_instance* instance)
{
return make_one (instance, create_class_browser_p_sheet);
}
static Widget
make_call_browser_p_sheet (widget_instance* instance)
{
return make_one (instance, create_call_browser_p_sheet);
}
static Widget
make_build_dialog (widget_instance* instance)
{
return make_one (instance, create_build_dialog);
}
static Widget
make_editmode_dialog (widget_instance* instance)
{
return make_one (instance, create_editmode_dialog);
}
static Widget
make_search_dialog (widget_instance* instance)
{
return make_one (instance, create_search_dialog);
}
static Widget
make_project_display_dialog (widget_instance* instance)
{
return make_one (instance, create_project_display_dialog);
}
#endif /* ENERGIZE */
widget_creation_entry
xm_creation_table [] =
{
{"menubar", make_menubar},
{"popup", make_popup_menu},
{"main", make_main},
#ifdef ENERGIZE
{"project_p_sheet", make_project_p_sheet},
{"debugger_p_sheet", make_debugger_p_sheet},
{"breaklist_psheet", make_breaklist_p_sheet},
{"leb_psheet", make_le_browser_p_sheet},
{"class_browser_psheet", make_class_browser_p_sheet},
{"ctree_browser_psheet", make_call_browser_p_sheet},
{"build", make_build_dialog},
{"editmode", make_editmode_dialog},
{"search", make_search_dialog},
{"project_display", make_project_display_dialog},
#endif /* ENERGIZE */
{NULL, NULL}
};
/* Destruction of instances */
void
xm_destroy_instance (instance)
widget_instance* instance;
{
Widget widget = instance->widget;
/* recycle the dialog boxes */
/* Disable the recycling until we can find a way to have the dialog box
get reasonable layout after we modify its contents. */
if (0
&& XtClass (widget) == xmDialogShellWidgetClass)
{
destroyed_instance* dead_instance =
make_destroyed_instance (instance->info->name,
instance->info->type,
instance->widget,
instance->parent,
instance->pop_up_p);
dead_instance->next = all_destroyed_instances;
all_destroyed_instances = dead_instance;
XtUnmanageChild (first_child (instance->widget));
XFlush (XtDisplay (instance->widget));
XtAddCallback (instance->parent, XtNdestroyCallback,
mark_dead_instance_destroyed, (XtPointer)dead_instance);
}
else
{
/* This might not be necessary now that the nosel is attached to
popdown instead of destroy, but it can't hurt. */
XtRemoveCallback (instance->widget, XtNdestroyCallback,
xm_nosel_callback, (XtPointer)instance);
XtDestroyWidget (instance->widget);
}
}
/* popup utility */
void
xm_popup_menu (widget, event)
Widget widget;
XEvent *event;
{
XButtonPressedEvent dummy;
if (event == 0)
{
dummy.type = ButtonPress;
dummy.serial = 0;
dummy.send_event = 0;
dummy.display = XtDisplay (widget);
dummy.window = XtWindow (XtParent (widget));
dummy.time = 0;
dummy.button = 0;
XQueryPointer (dummy.display, dummy.window, &dummy.root,
&dummy.subwindow, &dummy.x_root, &dummy.y_root,
&dummy.x, &dummy.y, &dummy.state);
event = (XEvent *) &dummy;
}
if (event->type == ButtonPress || event->type == ButtonRelease)
{
/* Setting the menuPost resource only required by Motif 1.1 and
LessTif 0.84 and earlier. With later versions of LessTif,
setting menuPost is unnecessary and may cause problems, so
don't do it. */
#if XmVersion < 1002 || (defined LESSTIF_VERSION && LESSTIF_VERSION < 84)
{
/* This is so totally ridiculous: there's NO WAY to tell Motif
that *any* button can select a menu item. Only one button
can have that honor. */
char *trans = 0;
if (event->xbutton.state & Button5Mask) trans = "<Btn5Down>";
else if (event->xbutton.state & Button4Mask) trans = "<Btn4Down>";
else if (event->xbutton.state & Button3Mask) trans = "<Btn3Down>";
else if (event->xbutton.state & Button2Mask) trans = "<Btn2Down>";
else if (event->xbutton.state & Button1Mask) trans = "<Btn1Down>";
if (trans) XtVaSetValues (widget, XmNmenuPost, trans, NULL);
}
#endif
XmMenuPosition (widget, (XButtonPressedEvent *) event);
}
XtManageChild (widget);
}
static void
set_min_dialog_size (w)
Widget w;
{
short width;
short height;
XtVaGetValues (w, XmNwidth, &width, XmNheight, &height, NULL);
XtVaSetValues (w, XmNminWidth, width, XmNminHeight, height, NULL);
}
void
xm_pop_instance (instance, up)
widget_instance* instance;
Boolean up;
{
Widget widget = instance->widget;
if (XtClass (widget) == xmDialogShellWidgetClass)
{
Widget widget_to_manage = first_child (widget);
if (up)
{
XtManageChild (widget_to_manage);
set_min_dialog_size (widget);
XtSetKeyboardFocus (instance->parent, widget);
}
else
XtUnmanageChild (widget_to_manage);
}
else
{
if (up)
XtManageChild (widget);
else
XtUnmanageChild (widget);
}
}
/* motif callback */
static void
do_call (widget, closure, type)
Widget widget;
XtPointer closure;
enum do_call_type type;
{
Arg al [256];
int ac;
XtPointer user_data;
widget_instance* instance = (widget_instance*)closure;
Widget instance_widget;
LWLIB_ID id;
if (!instance)
return;
if (widget->core.being_destroyed)
return;
instance_widget = instance->widget;
if (!instance_widget)
return;
id = instance->info->id;
ac = 0;
user_data = NULL;
XtSetArg (al [ac], XmNuserData, &user_data); ac++;
XtGetValues (widget, al, ac);
switch (type)
{
case pre_activate:
if (instance->info->pre_activate_cb)
instance->info->pre_activate_cb (widget, id, user_data);
break;
case selection:
if (instance->info->selection_cb)
instance->info->selection_cb (widget, id, user_data);
break;
case no_selection:
if (instance->info->selection_cb)
instance->info->selection_cb (widget, id, (XtPointer) -1);
break;
case post_activate:
if (instance->info->post_activate_cb)
instance->info->post_activate_cb (widget, id, user_data);
break;
default:
abort ();
}
}
/* Like lw_internal_update_other_instances except that it does not do
anything if its shell parent is not managed. This is to protect
lw_internal_update_other_instances to dereference freed memory
if the widget was ``destroyed'' by caching it in the all_destroyed_instances
list */
static void
xm_internal_update_other_instances (widget, closure, call_data)
Widget widget;
XtPointer closure;
XtPointer call_data;
{
Widget parent;
for (parent = widget; parent; parent = XtParent (parent))
if (XtIsShell (parent))
break;
else if (!XtIsManaged (parent))
return;
lw_internal_update_other_instances (widget, closure, call_data);
}
static void
xm_generic_callback (widget, closure, call_data)
Widget widget;
XtPointer closure;
XtPointer call_data;
{
lw_internal_update_other_instances (widget, closure, call_data);
do_call (widget, closure, selection);
}
static void
xm_nosel_callback (widget, closure, call_data)
Widget widget;
XtPointer closure;
XtPointer call_data;
{
/* This callback is only called when a dialog box is dismissed with
the wm's destroy button (WM_DELETE_WINDOW.) We want the dialog
box to be destroyed in that case, not just unmapped, so that it
releases its keyboard grabs. But there are problems with running
our callbacks while the widget is in the process of being
destroyed, so we set XmNdeleteResponse to XmUNMAP instead of
XmDESTROY and then destroy it ourself after having run the
callback. */
do_call (widget, closure, no_selection);
XtDestroyWidget (widget);
}
static void
xm_pull_down_callback (widget, closure, call_data)
Widget widget;
XtPointer closure;
XtPointer call_data;
{
Widget parent = XtParent (widget);
if (XmIsRowColumn (parent))
{
unsigned char type = 0xff;
XtVaGetValues (parent, XmNrowColumnType, &type, NULL);
if (type == XmMENU_BAR)
do_call (widget, closure, pre_activate);
}
}
/* XmNpopdownCallback for MenuShell widgets. WIDGET is the MenuShell,
CLOSURE is a pointer to the widget_instance of the shell,
Note that this callback is called for each cascade button in a
menu, whether or not its submenu is visible. */
static void
xm_pop_down_callback (widget, closure, call_data)
Widget widget;
XtPointer closure;
XtPointer call_data;
{
widget_instance *instance = (widget_instance *) closure;
if ((!instance->pop_up_p && XtParent (widget) == instance->widget)
|| XtParent (widget) == instance->parent)
do_call (widget, closure, post_activate);
}
/* set the keyboard focus */
void
xm_set_keyboard_focus (parent, w)
Widget parent;
Widget w;
{
XmProcessTraversal (w, 0);
XtSetKeyboardFocus (parent, w);
}
/* Motif hack to set the main window areas. */
void
xm_set_main_areas (parent, menubar, work_area)
Widget parent;
Widget menubar;
Widget work_area;
{
XmMainWindowSetAreas (parent,
menubar, /* menubar (maybe 0) */
0, /* command area (psheets) */
0, /* horizontal scroll */
0, /* vertical scroll */
work_area); /* work area */
}
/* Motif hack to control resizing on the menubar. */
void
xm_manage_resizing (w, flag)
Widget w;
Boolean flag;
{
XtVaSetValues (w, XtNallowShellResize, flag, NULL);
}
|