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
|
/*
* Motif
*
* Copyright (c) 1987-2012, The Open Group. All rights reserved.
*
* These libraries and programs are free software; you can
* redistribute them and/or modify them under the terms of the GNU
* Lesser General Public License as published by the Free Software
* Foundation; either version 2 of the License, or (at your option)
* any later version.
*
* These libraries and programs are distributed in the hope that
* they 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 these librararies and programs; if not, write
* to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
* Floor, Boston, MA 02110-1301 USA
*
*/
/************************************************************
* INCLUDE FILES
************************************************************/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <stdio.h>
#include <stdlib.h>
#include <ctype.h>
#include "ColorSP.h"
#include <Xm/Xm.h>
#include <Xm/VaSimpleP.h>
#include <Xm/ButtonBox.h>
#include <Xm/Scale.h>
#include <Xm/ScrolledW.h>
#include <Xm/List.h>
#include <Xm/RowColumn.h>
#include <Xm/ToggleB.h>
#include <Xm/Frame.h>
#include <Xm/Label.h>
#include <Xm/ExtP.h>
#include "XmI.h"
/************************************************************
* TYPEDEFS AND DEFINES
************************************************************/
#define SUPERCLASS ((WidgetClass) &xmManagerClassRec)
/************************************************************
* MACROS
************************************************************/
/************************************************************
* GLOBAL DECLARATIONS
************************************************************/
extern void XmeNavigChangeManaged(Widget);
/************************************************************
* STATIC FUNCTION DECLARATIONS
************************************************************/
static void ChangeManaged(Widget w);
static void ClassInitialize(void), Destroy(Widget), Resize(Widget);
static void ClassPartInitialize(WidgetClass w_class);
static void Initialize(Widget, Widget, ArgList, Cardinal *);
static Boolean SetValues(Widget, Widget, Widget, ArgList, Cardinal *);
static XtGeometryResult GeometryHandler(Widget, XtWidgetGeometry *,
XtWidgetGeometry *);
static XtGeometryResult QueryGeometry(Widget, XtWidgetGeometry *,
XtWidgetGeometry *);
static Boolean UpdateColorWindow(XmColorSelectorWidget, Boolean);
static Boolean color_name_changed(XmColorSelectorWidget, char *);
static Boolean FindColor(XmColorSelectorWidget, int *);
static Boolean CvtStringToColorMode(Display *, XrmValuePtr, Cardinal,
XrmValuePtr, XrmValuePtr, XtPointer *);
static Boolean DefaultVisualDisplay(XmColorSelectorWidget, Pixel, XColor, char *);
static void CalcPreferredSize(XmColorSelectorWidget, Dimension *, Dimension *);
static void SelectColor(XmColorSelectorWidget);
static void slider_changed(Widget, XtPointer, XtPointer);
static void list_selected(Widget, XtPointer, XtPointer);
static void change_mode(Widget, XtPointer, XtPointer);
static void new_mode(XmColorSelectorWidget, XmColorMode);
static void compute_size(XmColorSelectorWidget);
static void read_rgb_file(XmColorSelectorWidget, ArgList, Cardinal, Boolean);
static void SetSliders(XmColorSelectorWidget);
static void CreateColorSliders(XmColorSelectorWidget, ArgList, Cardinal);
static void CreateSelectorRadio(XmColorSelectorWidget, ArgList, Cardinal);
static void CreateColorWindow(XmColorSelectorWidget, ArgList, Cardinal);
static void NoPrivateColormaps(XmColorSelectorWidget, Pixel, XColor, char *);
static void PrivateColormaps(XmColorSelectorWidget, Pixel, XColor, char *);
#ifdef notdef
static void CreateTypes(XmColorSelectorWidget, Widget, ArgList, Cardinal);
#endif
static int CmpColors(const void *, const void *);
static char *find_name(char *);
static int GetVisual(XmColorSelectorWidget);
static void GetValues_XmNredSliderLabel ( Widget w, int n, XtArgVal *value) ;
static void GetValues_XmNgreenSliderLabel( Widget w, int n, XtArgVal *value) ;
static void GetValues_XmNblueSliderLabel( Widget w, int n, XtArgVal *value) ;
static void GetValues_XmNcolorListTogLabel( Widget w, int n, XtArgVal *value) ;
static void GetValues_XmNsliderTogLabel( Widget w, int n, XtArgVal *value) ;
static void GetValues_XmNnoCellError( Widget w, int n, XtArgVal *value) ;
static void GetValues_XmNfileReadError( Widget w, int n, XtArgVal *value) ;
/************************************************************
* STATIC DECLARATIONS
************************************************************/
#ifndef X11RGBPATH
#define X11RGBPATH "/usr/lib/X11/rgb.txt"
#endif
static XtResource resources[] =
{
{
XmNcolorMode, XmCColorMode, XmRXmColorMode,
sizeof(XmColorMode), XtOffsetOf(XmColorSelectorRec, cs.color_mode),
XmRImmediate, (XtPointer) XmScaleMode
},
{
XmNcolorName, XmCString, XmRString,
sizeof(String), XtOffsetOf(XmColorSelectorRec, cs.color_name),
XmRString, "White"
},
#ifdef VMS
{
XmNrgbFile, XmCString, XmRString,
sizeof(String), XtOffsetOf(XmColorSelectorRec, cs.rgb_file),
XmRString, (XtPointer) "sys$manager:decw$rgb.dat"
},
#else
{
XmNrgbFile, XmCString, XmRString,
sizeof(String), XtOffsetOf(XmColorSelectorRec, cs.rgb_file),
XmRString, (XtPointer) X11RGBPATH
},
#endif
{
XmNmarginWidth, XmCMargin, XmRHorizontalDimension,
sizeof(Dimension), XtOffsetOf(XmColorSelectorRec, cs.margin_width),
XmRImmediate, (XtPointer) 2
},
{
XmNmarginHeight, XmCMargin, XmRVerticalDimension,
sizeof(Dimension), XtOffsetOf(XmColorSelectorRec, cs.margin_height),
XmRImmediate, (XtPointer) 2
},
{
XmNredSliderLabel, XmCSliderLabel, XmRXmString,
sizeof(XmString), XtOffsetOf(XmColorSelectorRec, cs.strings.slider_labels[0]),
XmRString, (XtPointer) "Red"
},
{
XmNgreenSliderLabel, XmCSliderLabel, XmRXmString,
sizeof(XmString), XtOffsetOf(XmColorSelectorRec, cs.strings.slider_labels[1]),
XmRString, (XtPointer) "Green"
},
{
XmNblueSliderLabel, XmCSliderLabel, XmRXmString,
sizeof(XmString), XtOffsetOf(XmColorSelectorRec, cs.strings.slider_labels[2]),
XmRString, (XtPointer) "Blue"
},
{
XmNcolorListTogLabel, XmCTogLabel, XmRXmString,
sizeof(XmString), XtOffsetOf(XmColorSelectorRec, cs.strings.tog_labels[0]),
XmRString, (XtPointer) "Color List"
},
{
XmNsliderTogLabel, XmCTogLabel, XmRXmString,
sizeof(XmString), XtOffsetOf(XmColorSelectorRec, cs.strings.tog_labels[1]),
XmRString,(XtPointer)"Color Sliders"
},
{
XmNnoCellError, XmCNoCellError, XmRXmString,
sizeof(XmString), XtOffsetOf(XmColorSelectorRec, cs.strings.no_cell_error),
XmRString, (XtPointer)"\n\nNo Color Cell Available!"
},
{
XmNfileReadError, XmCFileReadError, XmRXmString,
sizeof(XmString), XtOffsetOf(XmColorSelectorRec, cs.strings.file_read_error),
XmRString, (XtPointer)"Could not read rgb.txt file:"
}
};
static XmSyntheticResource get_resources[] =
{
{
XmNmarginWidth, sizeof(Dimension),
XtOffsetOf(XmColorSelectorRec, cs.margin_width),
XmeFromHorizontalPixels, (XmImportProc) XmeToHorizontalPixels
},
{
XmNmarginHeight, sizeof(Dimension),
XtOffsetOf(XmColorSelectorRec, cs.margin_height),
XmeFromVerticalPixels, (XmImportProc) XmeToVerticalPixels
},
{
XmNredSliderLabel, sizeof(XmString),
XtOffsetOf(XmColorSelectorRec, cs.strings.slider_labels[0]),
GetValues_XmNredSliderLabel, NULL
},
{
XmNgreenSliderLabel, sizeof(XmString),
XtOffsetOf(XmColorSelectorRec, cs.strings.slider_labels[1]),
GetValues_XmNgreenSliderLabel, NULL
},
{
XmNblueSliderLabel, sizeof(XmString),
XtOffsetOf(XmColorSelectorRec, cs.strings.slider_labels[2]),
GetValues_XmNblueSliderLabel, NULL
},
{
XmNcolorListTogLabel, sizeof(XmString),
XtOffsetOf(XmColorSelectorRec, cs.strings.tog_labels[0]),
GetValues_XmNcolorListTogLabel, NULL
},
{
XmNsliderTogLabel, sizeof(XmString),
XtOffsetOf(XmColorSelectorRec, cs.strings.tog_labels[1]),
GetValues_XmNsliderTogLabel, NULL
},
{
XmNnoCellError, sizeof(XmString),
XtOffsetOf(XmColorSelectorRec, cs.strings.no_cell_error),
GetValues_XmNnoCellError, NULL
},
{
XmNfileReadError, sizeof(XmString),
XtOffsetOf(XmColorSelectorRec, cs.strings.file_read_error),
GetValues_XmNfileReadError, NULL
}
};
XmColorSelectorClassRec xmColorSelectorClassRec = {
{ /* core fields */
/* superclass */ SUPERCLASS,
/* class_name */ "XmColorSelector",
/* widget_size */ sizeof(XmColorSelectorRec),
/* class_initialize */ ClassInitialize,
/* class_part_initialize */ ClassPartInitialize,
/* class_inited */ False,
/* initialize */ Initialize,
/* initialize_hook */ NULL,
/* realize */ XtInheritRealize,
/* actions */ NULL,
/* num_actions */ (Cardinal)0,
/* resources */ (XtResource*)resources,
/* num_resources */ XtNumber(resources),
/* xrm_class */ NULLQUARK,
/* compress_motion */ True,
/* compress_exposure */ True,
/* compress_enterleave */ True,
/* visible_interest */ False,
/* destroy */ Destroy,
/* resize */ Resize,
/* expose */ NULL,
/* set_values */ SetValues,
/* set_values_hook */ NULL,
/* set_values_almost */ XtInheritSetValuesAlmost,
/* get_values_hook */ NULL,
/* accept_focus */ NULL,
/* version */ XtVersion,
/* callback_private */ NULL,
/* tm_table */ XtInheritTranslations,
/* query_geometry */ (XtGeometryHandler) QueryGeometry,
/* display_accelerator */ XtInheritDisplayAccelerator,
/* extension */ NULL,
},
{ /* composite_class fields */
/* geometry_manager */ GeometryHandler,
/* change_managed */ ChangeManaged,
/* insert_child */ XtInheritInsertChild,
/* delete_child */ XtInheritDeleteChild,
/* extension */ NULL,
},
{ /* constraint_class fields */
/* resource list */ NULL,
/* num resources */ 0,
/* constraint size */ sizeof(XmColorSelectorConstraintRec),
/* destroy proc */ NULL,
/* init proc */ NULL,
/* set values proc */ NULL,
/* extension */ NULL,
},
{ /* manager_class fields */
/* default translations */ XtInheritTranslations,
/* syn_resources */ get_resources,
/* num_syn_resources */ XtNumber(get_resources),
/* syn_cont_resources */ NULL,
/* num_syn_cont_resources */ 0,
/* parent_process */ NULL,
/* extension */ NULL,
},
{ /* color_selector_class fields */
/* mumble */ NULL,
}
};
WidgetClass xmColorSelectorWidgetClass = (WidgetClass)&xmColorSelectorClassRec;
/************************************************************
* STATIC CODE
************************************************************/
/* Function Name: ClassInitialize
* Description: Called to initialize class specific information.
* Arguments: widget_class - the widget class.
* Returns: none.
*/
static void
ClassInitialize(void)
{
XmColorSelectorClassRec *wc = &xmColorSelectorClassRec;
XtSetTypeConverter(XmRString, XmRXmColorMode,
(XtTypeConverter) CvtStringToColorMode,
NULL, (Cardinal) 0, XtCacheAll, NULL);
}
/*
* ClassPartInitialize sets up the fast subclassing for the widget.
*/
static void
#ifdef _NO_PROTO
ClassPartInitialize(w_class)
WidgetClass w_class ;
#else
ClassPartInitialize(WidgetClass w_class)
#endif /* _NO_PROTO */
{
_XmFastSubclassInit (w_class, XmCOLORSELECTOR_BIT);
}
/* Function Name: Initialize
* Description: Called to initialize information specific
* to this widget.
* Arguments: request - what was originally requested.
* set - what will be created (our superclasses have
* already mucked with this)
* args, num_args - The arguments passed to
* the creation call.
* Returns: none.
*/
/* ARGSUSED */
static void
Initialize(Widget request, Widget set, ArgList args, Cardinal *num_args)
{
XmColorSelectorWidget csw = (XmColorSelectorWidget)set;
Dimension width, height;
String temp;
char message_buffer[BUFSIZ];
ArgList f_args;
Cardinal f_num_args;
Widget button;
_XmFilterArgs(args, *num_args, xm_std_filter, &f_args, &f_num_args);
/*
* Initialize important values.
*/
XmColorS_good_cell(csw) = False;
temp = XmColorS_color_name(csw);
XmColorS_color_name(csw) = NULL;
XmColorS_list(csw) = NULL;
CreateColorSliders(csw, f_args, f_num_args);
CreateSelectorRadio(csw, f_args, f_num_args);
CreateColorWindow(csw, f_args, f_num_args);
XmColorS_rgb_file(csw) = XtNewString(XmColorS_rgb_file(csw));
XmColorS_colors(csw) = NULL;
read_rgb_file(csw, f_args, f_num_args, True);
if (!color_name_changed(csw, temp)) {
snprintf(message_buffer, BUFSIZ, XmNunparsableColorMsg, temp);
XmeWarning((Widget)set, message_buffer);
(void) color_name_changed(csw, "White");
}
slider_changed(NULL, (XtPointer) csw, NULL);
CalcPreferredSize(csw, &width, &height);
if ( csw->core.width < 1 )
csw->core.width = width;
if ( csw->core.height < 1 )
csw->core.height = height;
new_mode(csw, XmColorS_color_mode(csw));
button = XmColorS_chose_mode(csw)[XmColorS_color_mode(csw)];
XmToggleButtonSetState(button, True, False);
XtFree((XtPointer) f_args);
{
int i;
for( i = 0; i < 3; i++ )
XmColorS_strings(csw).slider_labels[i] = XmStringCopy(XmColorS_strings(csw).slider_labels[i]);
for (i = 0; i< XmColorSelector_NUM_TOGGLES; i++)
XmColorS_strings(csw).tog_labels[i] = XmStringCopy(XmColorS_strings(csw).tog_labels[i]);
XmColorS_strings(csw).file_read_error = XmStringCopy(XmColorS_strings(csw).file_read_error);
XmColorS_strings(csw).no_cell_error = XmStringCopy(XmColorS_strings(csw).no_cell_error);
}
}
/* Function Name: Destroy
* Description: Called to destroy this widget.
* Arguments: w - Color Selector Widget to destroy.
* Returns: none.
*/
/* ARGSUSED */
static void
Destroy(Widget w)
{
XmColorSelectorWidget csw = (XmColorSelectorWidget)w;
if (XmColorS_good_cell(csw)) {
XFreeColors(XtDisplay(csw), csw->core.colormap,
&XmColorS_color_pixel(csw), 1, 0);
}
XtFree((char*) XmColorS_colors(csw));
XtFree((char*) XmColorS_color_name(csw));
XtFree((char*) XmColorS_rgb_file(csw));
{
int i;
for( i = 0; i < 3; i++ )
XmStringFree(XmColorS_strings(csw).slider_labels[i]);
for (i = 0; i< XmColorSelector_NUM_TOGGLES; i++)
XmStringFree(XmColorS_strings(csw).tog_labels[i]);
XmStringFree(XmColorS_strings(csw).file_read_error);
XmStringFree(XmColorS_strings(csw).no_cell_error);
}
}
/* Function Name: Resize
* Description: Called when this widget has been resized.
* Arguments: w - Color Selector Widget to realize.
* Returns: none.
*/
/* ARGSUSED */
static void
Resize(Widget w)
{
compute_size((XmColorSelectorWidget)w);
}
static Boolean AreDiff(char *s1, char *s2)
{
if (s1 && !s2) return True;
if (s2 && !s1) return True;
if (!s1 && !s2) return False;
/* they exist; now safe to do strcmp */
return strcmp(s1, s2);
}
/* Function Name: SetValues
* Description: Called when some widget data needs to be modified on-
* the-fly.
* Arguments: current - the current (old) widget values.
* request - before superclassed have changed things.
* set - what will acutally be the new values.
* args, num_args - the arguments in the list.
* Returns: none
*/
/* ARGSUSED */
static Boolean
SetValues(Widget current, Widget request, Widget set,
ArgList args, Cardinal *num_args)
{
XmColorSelectorWidget csw = (XmColorSelectorWidget)set;
XmColorSelectorWidget curr = (XmColorSelectorWidget)current;
/*
* Pass argument list through to all children.
*/
{
ArgList f_args;
Cardinal f_num_args;
_XmFilterArgs(args, *num_args, xm_std_filter, &f_args, &f_num_args);
_XmSetValuesOnChildren(set, f_args, f_num_args);
XtFree((XtPointer) f_args);
}
if (XmColorS_color_mode(curr) != XmColorS_color_mode(csw))
{
new_mode(csw, XmColorS_color_mode(csw));
XmToggleButtonSetState(XmColorS_chose_mode(csw)[XmColorS_color_mode(csw)],
True, True);
}
/*
** Don't compare pointers; they are allocated, so passing the same file
** in twice will trip this expensive function unless we compare the
** values of the strings (when they exist)
*/
if (AreDiff(XmColorS_rgb_file(curr), XmColorS_rgb_file(csw)))
{
read_rgb_file(csw, NULL, 0, False);
}
if (XmColorS_rgb_file(curr) != XmColorS_rgb_file(csw))
{
XtFree((char*) XmColorS_rgb_file(curr));
XmColorS_rgb_file(csw) = XtNewString(XmColorS_rgb_file(csw));
}
if ((XmColorS_margin_height(curr) != XmColorS_margin_height(csw)) ||
(XmColorS_margin_width(curr) != XmColorS_margin_width(csw)))
{
compute_size(csw);
}
if (XmColorS_color_name(curr) != XmColorS_color_name(csw))
{
String oldValue; /* old color name, will free. */
String newValue; /* new color name, allocate */
char string_buffer[BUFSIZ];
oldValue = XmColorS_color_name(curr);
newValue = XmColorS_color_name(csw);
if (!streq(newValue, oldValue))
{
/*
* Color name changed will automatically free the old
* value on success...
*/
XmColorS_color_name(csw) = oldValue; /* so it free's the right thing. */
if (!color_name_changed(csw, newValue)) {
snprintf(string_buffer, BUFSIZ, XmNunparsableColorMsg, newValue);
XmeWarning(set, string_buffer);
XmColorS_color_name(csw) = oldValue;
}
}
else {
XtFree(oldValue);
XmColorS_color_name(csw) = XtNewString(newValue);
}
}
{
int i;
for( i = 0; i < 3; i++ )
{
if (XmColorS_strings(curr).slider_labels[i] != XmColorS_strings(csw).slider_labels[i])
{
XmStringFree(XmColorS_strings(curr).slider_labels[i]);
XmColorS_strings(csw).slider_labels[i] = XmStringCopy(XmColorS_strings(csw).slider_labels[i]);
XtVaSetValues(XmColorS_sliders(csw)[i], XmNtitleString, XmColorS_strings(csw).slider_labels[i], NULL);
}
}
for (i = 0; i< XmColorSelector_NUM_TOGGLES; i++)
{
if (XmColorS_strings(curr).tog_labels[i] != XmColorS_strings(csw).tog_labels[i])
{
XmStringFree(XmColorS_strings(curr).tog_labels[i]);
XmColorS_strings(csw).tog_labels[i] = XmStringCopy(XmColorS_strings(csw).tog_labels[i]);
XtVaSetValues(XmColorS_chose_mode(csw)[i], XmNlabelString, XmColorS_strings(csw).tog_labels[i], NULL);
}
}
if (XmColorS_strings(curr).file_read_error != XmColorS_strings(csw).file_read_error)
{
XmStringFree(XmColorS_strings(curr).file_read_error);
XmColorS_strings(csw).file_read_error = XmStringCopy(XmColorS_strings(csw).file_read_error);
}
if (XmColorS_strings(curr).no_cell_error != XmColorS_strings(csw).no_cell_error)
{
XmStringFree(XmColorS_strings(curr).no_cell_error);
XmColorS_strings(csw).no_cell_error = XmStringCopy(XmColorS_strings(csw).no_cell_error);
}
}
return FALSE;
}
/* Function Name: GeometryHandler
* Description: handles request from children for size changes.
* Arguments: child - the child to change.
* request - desired geometry of child.
* result - what will be allowed if almost.
* Returns: status.
*/
/* ARGSUSED */
static XtGeometryResult
GeometryHandler(Widget w, XtWidgetGeometry *request, XtWidgetGeometry *result)
{
return(XtGeometryNo);
}
/* Function Name: QueryGeometry
* Description: Called when my parent wants to know what size
* I would like to be.
* Arguments: w - the widget to check.
* indended - constriants imposed by the parent.
* preferred - what I would like.
* Returns: See Xt Manual.
*/
static XtGeometryResult
QueryGeometry(Widget w,XtWidgetGeometry *intended, XtWidgetGeometry *preferred)
{
CalcPreferredSize((XmColorSelectorWidget) w,
&(preferred->width), &(preferred->height));
return(_XmHWQuery(w, intended, preferred));
}
/* Function Name: ChangeManaged
* Description: Called when a management change happens.
* Arguments: w - the csw widget.
* Returns: none
*/
static void
ChangeManaged(Widget w)
{
compute_size((XmColorSelectorWidget) w);
XmeNavigChangeManaged(w);
}
/************************************************************
* Type Converters.
************************************************************/
/* Function Name: CvtStringToColorMode
* Description: Converts a string to a ColorMode
* Arguments: dpy - the X Display.
* args, num_args - *** NOT USED ***
* from - contains the string to convert.
* to - contains the converted node state.
* junk - *** NOT USED *** .
* Returns:
*/
/* ARGSUSED */
static Boolean
CvtStringToColorMode(Display *dpy, XrmValuePtr args, Cardinal num_args,
XrmValuePtr from, XrmValuePtr to, XtPointer * junk)
{
static XmColorMode mode;
char lowerName[BUFSIZ];
XmCopyISOLatin1Lowered(lowerName, (char *)from->addr);
if (streq(lowerName, "listmode"))
mode = XmListMode;
else if (streq(lowerName, "scalemode"))
mode = XmScaleMode;
else {
XtDisplayStringConversionWarning(dpy, from->addr, XmRXmColorMode);
return(False); /* Conversion failed. */
}
to->size = sizeof(XmColorMode);
if ( to->addr == NULL ) {
to->addr = (XtPointer)&mode;
return(True);
}
else if ( to->size >= sizeof(XmColorMode) ) {
XmColorMode *state = (XmColorMode *) to->addr;
*state = mode;
return(True);
}
return(False);
}
/************************************************************
* LOCAL CODE
************************************************************/
/* Function Name: CalcPreferredSize
* Description: Calculates the size this widget would prefer to be.
* Arguments: csw - the color selector widget.
* RETURNED width, height - preferred size of the color selector.
* Returns: none.
*/
static void
CalcPreferredSize(XmColorSelectorWidget csw,
Dimension *width, Dimension *height)
{
XtWidgetGeometry geo;
Widget *childP;
*height = *width = 0;
ForAllChildren(csw, childP) {
if (*childP == XmColorS_bb(csw))
continue;
(void)XtQueryGeometry(*childP, NULL, &geo);
ASSIGN_MAX(*width, (geo.width + (2 * geo.border_width)));
geo.height += 2 * geo.border_width;
if ( *childP == XtParent(XmColorS_color_window(csw)) )
continue;
else if ( *childP == XmColorS_scrolled_list(csw) )
*height += (int)(4 * geo.height)/3;
else
*height += geo.height;
*height += XmColorS_margin_height(csw);
}
*width += 2 * XmColorS_margin_width(csw);
*height += 2 * XmColorS_margin_height(csw);
}
/* Function Name: color_name_changed
* Description: Change in the color name string.
* Arguments: csw - the color selector widget.
* name - the color name.
* Returns: True if successful
*/
/* ARGSUSED */
static Boolean
color_name_changed(XmColorSelectorWidget csw, char *name)
{
String old_val = XmColorS_color_name(csw);
if ( name == NULL ) {
XmColorS_color_name(csw) = NULL;
XtFree((XtPointer) old_val);
return(True);
}
XmColorS_color_name(csw) = XtNewString(name);
if (!UpdateColorWindow(csw, True)) {
XtFree((XtPointer) XmColorS_color_name(csw));
XmColorS_color_name(csw) = old_val;
return(False);
}
SetSliders(csw);
SelectColor(csw);
XtFree((XtPointer) old_val);
return(True);
}
/* Function Name: SetSliders
* Description: Sets the values in the color sliders.
* Arguments: csw - the color selector widget.
* Returns: none
*/
static void
SetSliders(XmColorSelectorWidget csw)
{
static Arg args[] = {
{ XmNvalue, (XtArgVal) NULL },
};
args[0].value = (XtArgVal) XmColorS_slider_red(csw);
XtSetValues(XmColorS_sliders(csw)[0], args, XtNumber(args));
args[0].value = (XtArgVal) XmColorS_slider_green(csw);
XtSetValues(XmColorS_sliders(csw)[1], args, XtNumber(args));
args[0].value = (XtArgVal) XmColorS_slider_blue(csw);
XtSetValues(XmColorS_sliders(csw)[2], args, XtNumber(args));
}
/* Function Name: SelectColor
* Description: Selects the color in the list that corrosponds
* to the current values of the RGB sliders.
* Arguments: csw - the color selector widget.
* Returns: none.
*/
static void
SelectColor(XmColorSelectorWidget csw)
{
int color_num;
if (FindColor(csw, &color_num)) {
XmListSelectPos(XmColorS_list(csw), color_num + 1, False);
XmListSetBottomPos(XmColorS_list(csw), color_num + 1);
}
else
XmListDeselectAllItems(XmColorS_list(csw));
}
/* Function Name: EndsInDigits
* Description: Determines if a string ends in a digit
* Returns: True if it does
*/
static int
EndsInDigits(char *str)
{
register char *c = str;
while(*c != '\0') c++; /* advance to end of string marker */
c--; /* back to the last character */
if(c >= str && isascii(*c) && isdigit(*c))
return True;
return False;
}
/* Function Name: FindColor
* Description: Finds the index into the colors array associated with
* the current slider values. Attempts to find the slot
* with a the best matching name.
* Arguments: csw - The color selector widget.
* RETURNED color_num - The color index that was found.
* Returns: True if color was found, false otherwise.
*
* NOTE: if False is returned then color_num has an undefined value.
*/
static Boolean
FindColor(XmColorSelectorWidget csw, int *color_num)
{
register ColorInfo *ptr;
register int i, red, green, blue;
/*
* Obtain the color settings from the ColorSelector
* data structure
*/
red = XmColorS_slider_red(csw);
green = XmColorS_slider_green(csw);
blue = XmColorS_slider_blue(csw);
ptr = XmColorS_colors(csw);
/*
* Flag for finding color value
*/
*color_num = -1;
/*
* Find color within the exisiting colormap assigned to
* ColorSelector
*/
for (i = 0; i < XmColorS_num_colors(csw); i++, ptr++)
{
if ((ptr->red == red) && (ptr->green == green) && (ptr->blue == blue))
{
if( *color_num < 0 )
*color_num = i;
/* Only change the selected color if it is better in some way */
if(XmColorS_color_name(csw)) {
if(XmColorS_color_name(csw)[0] == '#')
*color_num = i;
if(streq(XmColorS_color_name(csw), ptr->name) ||
streq(XmColorS_color_name(csw), ptr->no_space_lower_name))
{
*color_num = i;
return(True);
}
}
if(! EndsInDigits(ptr->name)) {
*color_num = i;
return(True);
}
}
}
return(*color_num >= 0);
}
/* Function Name: slider_changed
* Description: One of the sliders was pressed
* Arguments: w - the slider widget.
* csw - the color selector.
* scale - the scale widget callback struct.
* Returns: none.
*/
/* ARGSUSED */
static void
slider_changed(Widget w, XtPointer csw_ptr, XtPointer scale_ptr)
{
XmColorSelectorWidget csw = (XmColorSelectorWidget) csw_ptr;
XmScaleCallbackStruct *scale = (XmScaleCallbackStruct *) scale_ptr;
if (scale_ptr != NULL) { /* Set a new value. */
if (w == XmColorS_sliders(csw)[0])
XmColorS_slider_red(csw) = scale->value;
else if(w == XmColorS_sliders(csw)[1])
XmColorS_slider_green(csw) = scale->value;
else if(w == XmColorS_sliders(csw)[2])
XmColorS_slider_blue(csw) = scale->value;
}
UpdateColorWindow(csw, False);
}
/* Function Name: UpdateColorWindow
* Description: Updates the color window display.
* Arguments: csw - the color selector widget.
* use_name - if TRUE then use the color name to update.
* if FALSE then use the color sliders to update.
* Returns: True if successful
*/
static Boolean
UpdateColorWindow(XmColorSelectorWidget csw, Boolean use_name)
{
int index;
XColor color;
Pixel foreground;
char buf[XmColorSelector_COLOR_NAME_SIZE], new_label[BUFSIZ];
if (!use_name) /* Update color names */
{
char *freeMe;
freeMe = XmColorS_color_name(csw);
sprintf(buf, "#%02x%02x%02x", XmColorS_slider_red(csw),
XmColorS_slider_green(csw), XmColorS_slider_blue(csw));
if (FindColor(csw, &index))
{
XmColorS_color_name(csw) = XtNewString(XmColorS_colors(csw)[index].name);
sprintf(new_label, "%s (%s)", XmColorS_color_name(csw), buf);
}
else
{
XmColorS_color_name(csw) = XtNewString(buf);
sprintf(new_label, "%s", buf);
}
XtFree((XtPointer)freeMe );
color.red = XmColorS_slider_red(csw) * 256;
color.green = XmColorS_slider_green(csw) * 256;
color.blue = XmColorS_slider_blue(csw) * 256;
}
else /* Update color slider */
{
if(XParseColor(XtDisplay(csw), csw->core.colormap,
XmColorS_color_name(csw), &color) == 0)
{
return(False);
}
XmColorS_slider_red(csw) = color.red / 256;
XmColorS_slider_green(csw) = color.green / 256;
XmColorS_slider_blue(csw) = color.blue / 256;
/*
* Attempt to replace a name that begins with a # with a real color
* name.
*/
if ((XmColorS_color_name(csw)[0] == '#') && FindColor(csw, &index))
{
XtFree(XmColorS_color_name(csw));
XmColorS_color_name(csw) = XtNewString(XmColorS_colors(csw)[index].name);
}
sprintf(buf, "#%02x%02x%02x", color.red/256, color.green/256, color.blue/256);
sprintf(new_label, "%s (%s)", XmColorS_color_name(csw), buf);
}
{
long test = (long) color.red;
test += (long) color.green;
test += (long) color.blue;
if (test/3 > 0x7000)
{
foreground = BlackPixelOfScreen(XtScreen((Widget) csw));
}
else
{
foreground = WhitePixelOfScreen(XtScreen((Widget) csw));
}
}
/*
* Check on the default visual
*/
if (DefaultVisualDisplay(csw, foreground, color, (char *)new_label))
{
return True;
} else
{
return False;
}
}
/* Function Name: list_selected
* Description: One of the list widgets was selected.
* Arguments: w - the slider widget.
* csw - the color selector.
* list - the list widget callback struct.
* Returns: none.
*/
/* ARGSUSED */
static void
list_selected(Widget w, XtPointer csw_ptr, XtPointer list_ptr)
{
XmColorSelectorWidget csw = (XmColorSelectorWidget) csw_ptr;
XmListCallbackStruct *list = (XmListCallbackStruct *) list_ptr;
XtFree(XmColorS_color_name(csw));
XmColorS_color_name(csw) =
XmStringUnparse(list->item,
NULL, XmCHARSET_TEXT, XmCHARSET_TEXT, NULL, 0, XmOUTPUT_ALL);
/* deprecated
XmStringGetLtoR(list->item, XmFONTLIST_DEFAULT_TAG,
&(XmColorS_color_name(csw)));
*/
UpdateColorWindow(csw, True);
}
/* Function Name: change_mode
* Description: One of the change mode buttons was pressed.
* Arguments: w - the slider widget.
* csw_ptr - the color selector.
* tp - the toggle widget callback struct.
* Returns: none.
*/
/* ARGSUSED */
static void
change_mode(Widget w, XtPointer csw_ptr, XtPointer tp)
{
XmColorSelectorWidget csw = (XmColorSelectorWidget) csw_ptr;
XmToggleButtonCallbackStruct *toggle = (XmToggleButtonCallbackStruct *) tp;
/*
* Ignore unsets.
*/
if (toggle->reason == XmCR_VALUE_CHANGED && toggle->set) {
/*
* Change the mode if it is different.
*/
if ((w == XmColorS_chose_mode(csw)[XmListMode]) &&
(XmColorS_color_mode(csw) != XmListMode))
{
new_mode(csw, XmListMode);
}
else if ((w == XmColorS_chose_mode(csw)[XmScaleMode]) &&
(XmColorS_color_mode(csw) != XmScaleMode))
{
new_mode(csw, XmScaleMode);
}
}
}
/* Function Name: new_mode
* Description: mode has changed
* Arguments: csw - the color selector.
* mode - the new mode.
* Returns: none.
*/
/* ARGSUSED */
static void
new_mode(XmColorSelectorWidget csw, XmColorMode mode)
{
XmColorS_color_mode(csw) = mode;
if (mode == XmScaleMode) {
SetSliders(csw);
XtUnmanageChild(XmColorS_scrolled_list(csw));
XtManageChild(XmColorS_bb(csw));
}
else {
SelectColor(csw); /* Select the current color in the list. */
XtUnmanageChild(XmColorS_bb(csw));
XtManageChild(XmColorS_scrolled_list(csw));
}
}
/* Function Name: compute_size
* Description: Do all the size and position computing.
* Arguments: csw - the color selector.
* Returns: none.
*/
/* ARGSUSED */
static void
compute_size(XmColorSelectorWidget csw)
{
XtWidgetGeometry input, radio_geom, color_geom;
Dimension width, height;
Position x,y; /* positions */
/*
* First size and place the button box and scrolled list.
*/
y = XmColorS_margin_height(csw);
x = XmColorS_margin_width(csw);
width = csw->core.width - (2 * XmColorS_margin_width(csw));
input.width = width;
input.request_mode = CWWidth;
(void) XtQueryGeometry(XmColorS_chose_radio(csw), NULL, &radio_geom);
(void) XtQueryGeometry(XmColorS_color_window(csw), &input, &color_geom);
height = (csw->core.height - 4 * XmColorS_margin_height(csw) -
(radio_geom.height + 2 * radio_geom.border_width));
/*
* Leave space for the margins and make the color area 1/3 the height
* of the scrolled list and button box.
*/
color_geom.height = height / 4;
height -= color_geom.height;
color_geom.height -= 2 * color_geom.border_width;
_XmConfigureWidget(XmColorS_bb(csw), x, y, width, height, 0);
_XmConfigureWidget(XmColorS_scrolled_list(csw), x, y, width, height, 0);
y += height + XmColorS_margin_height(csw);
/*
* Place the radio box.
*/
if ( radio_geom.width < csw->core.width )
x = (int)(csw->core.width - radio_geom.width) / 2;
else
x = XmColorS_margin_width(csw);
_XmConfigureWidget(XmColorS_chose_radio(csw), x, y, radio_geom.width,
radio_geom.height, radio_geom.border_width);
y += radio_geom.height + XmColorS_margin_height(csw);
/*
* Lastly, place the color window
*/
_XmConfigureWidget(XtParent(XmColorS_color_window(csw)), XmColorS_margin_width(csw), y,
width, color_geom.height, color_geom.border_width);
}
/* Function Name: read_rgb_file
* Description: Read in all the color names and add them to the list.
* Arguments: csw - the color selector.
* cargs, cnum_args - a filtered arg list that was
* passed to create the color selector.
* Returns: none.
*/
/* ARGSUSED */
static void
read_rgb_file(XmColorSelectorWidget csw, ArgList cargs, Cardinal cnum_args, Boolean initial)
{
FILE *file;
char buf[BUFSIZ];
char string_buffer[BUFSIZ];
char *color_name;
ColorInfo * color_info = NULL;
register int i;
Arg *margs, args[20];
/*
* Create new list if needed, or delete any old list items.
*/
if (XmColorS_list(csw) == NULL)
{
i = 0;
XtSetArg(args[i], XmNlistSizePolicy, XmCONSTANT); i++;
XtSetArg(args[i], XmNvisibleItemCount, 15); i++;
margs = XtMergeArgLists(args, i, cargs, cnum_args);
XmColorS_list(csw) = XmCreateScrolledList((Widget) csw, "list",
margs, i + cnum_args);
XtManageChild(XmColorS_list(csw));
XmColorS_scrolled_list(csw) = XtParent(XmColorS_list(csw));
if (XmColorS_color_mode(csw) != XmListMode)
{
/* Hide the scrolled list until it need be visible... */
XtUnmanageChild(XmColorS_scrolled_list(csw));
}
XtFree((XtPointer) margs);
}
else
{
XmListDeleteAllItems(XmColorS_list(csw));
}
/*
** Because of the internal functioning of the XmList, it is better to
** zero out the selected item list rather than to let the item currently
** selected be re-selected by the XmList when the new list of colors is
** assigned. As is, the XmList iteratively searches through the list of
** selected items for each item added. Resetting the selectedItem list to
** NULL/0 ensures that we don't have O(n*m) XmStringCompare operations
** done when setting the new list below.
** Also, resetting the list saves us in the case in which the rgb_file
** is invalid or doesn't contain this selected string.
*/
XtVaSetValues(XmColorS_list(csw),
XmNselectedItems, NULL, XmNselectedItemCount, 0, NULL);
/*
* Read in all the colornames.
*/
if ((file = fopen(XmColorS_rgb_file(csw), "r")) != NULL) {
register int alloc, count, len;
register char *name;
alloc = count = 0;
while(fgets(buf, BUFSIZ, file)) {
/*
* Skip any comment lines in the file
*/
if ( buf[0] == '!' ) continue;
if (count >= alloc) {
if (0 == alloc)
alloc = 755; /* rather than stat the file and determine a good value to use, just use enough for X11R5, X11R6, and OpenWindows3 */
else
{
#define ALLOC_INC 20
alloc += ALLOC_INC;
}
color_info = (ColorInfo *)XtRealloc((XtPointer) color_info,
sizeof(ColorInfo) * alloc);
}
sscanf(buf, "%hu %hu %hu", &(color_info[count].red),
&(color_info[count].green), &(color_info[count].blue));
if ((color_name = find_name(buf)) == NULL)
continue;
len = strlen(color_name);
if (len > XmColorSelector_COLOR_NAME_SIZE) {
color_name[XmColorSelector_COLOR_NAME_SIZE - 1] = '\0';
snprintf(string_buffer, BUFSIZ,
XmNcolorNameTooLongMsg, buf, color_name);
XmeWarning((Widget)csw, string_buffer);
}
name = color_info[count].no_space_lower_name;
for (i = 0; i < len; i++) {
register char c = color_name[i];
/*
* Copy in all characters that are ascii and non-spaces.
*/
if (!isascii(c))
continue;
if (!isspace(c))
*name++ = tolower(c);
}
*name = '\0';
name = color_info[count].name;
color_name[0] = toupper(color_name[0]);
for (i = 0; i < len; i++) {
register char c = color_name[i];
/*
* Capitalize all characters after a space.
*/
if (!isascii(c))
continue;
if (isspace(c) && ((i + 1) < len)) {
color_name[i + 1] = toupper(color_name[i + 1]);
}
*name++ = c;
}
*name = '\0';
count++;
}
fclose(file);
qsort(color_info, count, sizeof(ColorInfo), CmpColors);
/*
* Remove duplicates.
*/
i = 0;
while (i < (count - 1)) {
if (streq(color_info[i].no_space_lower_name,
color_info[i + 1].no_space_lower_name))
{
register int j;
register ColorInfo *ptr;
ptr = color_info + i;
j = i;
/*
* This makes sure that the one with the space is
* left in place in favor of the one without.
*/
if (strchr(ptr->name, ' ') != NULL) {
j++;
ptr++;
}
while ( ++j < count) {
ptr[0] = ptr[1];
ptr++;
}
count--; /*Something has been removed, decrement count*/
}
else
i++;
}
{
XmString *strs = (XmString*)XtMalloc(sizeof(XmString)*count);
for (i = 0; i < count; i++)
strs[i] = XmStringCreateLocalized(color_info[i].name);
XtVaSetValues(XmColorS_list(csw),
XmNitems, strs,
XmNitemCount, count,
NULL);
for (i = 0; i < count; i++)
XmStringFree(strs[i]);
XtFree((char*)strs);
}
XtFree((char*)XmColorS_colors(csw));
XmColorS_colors(csw) = color_info;
XmColorS_num_colors(csw) = count;
/* It would be better if we had cached the current index number so
** we could just reset the list to the string corresponding to that
** value, but instead wind up going through FindColor to reestablish
** the selected string
*/
if (!initial)
SelectColor(csw);
}
else {
XmString str;
XmListAddItem(XmColorS_list(csw), XmColorS_strings(csw).file_read_error, 0);
str = XmStringCreateLocalized(XmColorS_rgb_file(csw));
XmListAddItem(XmColorS_list(csw), str, 0);
XmStringFree(str);
XtFree((char*)XmColorS_colors(csw));
XmColorS_colors(csw) = NULL;
XmColorS_num_colors(csw) = 0;
}
XtAddCallback(XmColorS_list(csw), XmNsingleSelectionCallback,
list_selected, csw);
XtAddCallback(XmColorS_list(csw), XmNbrowseSelectionCallback,
list_selected, csw);
}
/* Function Name: CmpColors
* Description: Compares two colors.
* Arguments: ptr_1, ptr_2 - two colors too compare.
* Returns: none
*/
static int
CmpColors(const void * ptr_1, const void * ptr_2)
{
ColorInfo *color1, *color2;
color1 = (ColorInfo *) ptr_1;
color2 = (ColorInfo *) ptr_2;
return(strcmp(color1->no_space_lower_name, color2->no_space_lower_name));
}
/* Function Name: find_name
* Description: Go through the buffer for looking for the name
* of a color string.
* Arguments: buffer - list of color names.
* Returns: pointer in the buffer where the string begins.
*/
static char*
find_name(char *buffer)
{
register char *curr, *temp; /* current pointer */
for (curr = buffer; curr != NULL && *curr != '\0'; curr++) {
/*
* Look for first non number, non space or tab.
*/
if (isascii(*curr) && (isdigit(*curr) || isspace(*curr)))
continue;
temp = (char *) strchr(curr, '\n');
*temp = '\0';
return(curr);
}
return(NULL);
}
/* Function Name: CreateColorSliders
* Description: creates a button with three sliders (Red, Green, Blue).
* Arguments: csw - the color selector widget.
* cargs, cnum_args - a filtered arg list that was
* passed to create the color selector.
* Returns: none.
*/
/* ARGSUSED */
static void
CreateColorSliders(XmColorSelectorWidget csw,
ArgList cargs, Cardinal cnum_args)
{
register int i;
Cardinal num_args, title;
Arg *margs, args[10];
num_args = 0;
XtSetArg(args[num_args], XmNborderWidth, 0); num_args++;
XtSetArg(args[num_args], XmNorientation, XmVERTICAL); num_args++;
XtSetArg(args[num_args], XmNfillOption, XmFillMinor); num_args++;
margs = XtMergeArgLists(args, num_args, cargs, cnum_args);
XmColorS_bb(csw) = XtCreateManagedWidget("buttonBox", xmButtonBoxWidgetClass,
(Widget) csw,
margs, cnum_args + num_args);
XtFree((XtPointer) margs);
num_args = 0;
XtSetArg(args[num_args], XmNmaximum, 255); num_args++;
XtSetArg(args[num_args], XmNorientation, XmHORIZONTAL); num_args++;
XtSetArg(args[num_args], XmNshowValue, True); num_args++;
XtSetArg(args[num_args], XmNprocessingDirection, XmMAX_ON_RIGHT);
num_args++;
XtSetArg(args[num_args], XmNtitleString, NULL); title = num_args++;
margs = XtMergeArgLists(args, num_args, cargs, cnum_args);
for( i = 0; i < 3; i++ ) {
margs[title].value = (XtArgVal) XmColorS_strings(csw).slider_labels[i];
XmColorS_sliders(csw)[i] = XtCreateManagedWidget("scale",
xmScaleWidgetClass,
XmColorS_bb(csw), margs,
num_args + cnum_args);
XtAddCallback(XmColorS_sliders(csw)[i], XmNdragCallback,
slider_changed, csw);
XtAddCallback(XmColorS_sliders(csw)[i], XmNvalueChangedCallback,
slider_changed, csw);
}
XtFree((XtPointer) margs);
}
/* Function Name: CreateSelectorRadio
* Description: creates a radio box with two toggles for selector
* type.
* Arguments: csw - the color selector widget.
* cargs, cnum_args - a filtered arg list that was
* passed to create the color selector.
* Returns: none.
*/
/* ARGSUSED */
static void
CreateSelectorRadio(XmColorSelectorWidget csw,
ArgList cargs, Cardinal cnum_args)
{
Widget w;
Cardinal i, label;
Arg *margs, args[5];
int count;
static String names[] = { "colorListToggle", "colorSlidersToggle" };
i = 0;
XtSetArg(args[i], XmNradioBehavior, True); i++;
XtSetArg(args[i], XmNpacking, XmPACK_COLUMN); i++;
XtSetArg(args[i], XmNnumColumns, 2); i++;
margs = XtMergeArgLists(args, i, cargs, cnum_args);
w = XtCreateManagedWidget("radioBox", xmRowColumnWidgetClass,
(Widget) csw, margs, i + cnum_args);
XmColorS_chose_radio(csw) = w;
XtFree((XtPointer) margs);
i = 0;
XtSetArg(args[i], XmNlabelString, NULL); label = i++;
margs = XtMergeArgLists(args, i, cargs, cnum_args);
for (count = 0; count < XmColorSelector_NUM_TOGGLES; count++) {
margs[label].value = (XtArgVal) XmColorS_strings(csw).tog_labels[count];
w = XtCreateManagedWidget(names[count], xmToggleButtonWidgetClass,
XmColorS_chose_radio(csw), margs, i + cnum_args);
XmColorS_chose_mode(csw)[count] = w;
XtAddCallback(w, XmNvalueChangedCallback, change_mode, csw);
}
XtFree((XtPointer) margs);
}
/* Function Name: CreateColorWindow
* Description: creates a label in a frame to display the
* currently selected color.
* Arguments: csw - the color selector widget.
* cargs, cnum_args - a filtered arg list that was
* passed to create the color selector.
* Returns: none.
*/
/* ARGSUSED */
static void
CreateColorWindow(XmColorSelectorWidget csw,ArgList cargs, Cardinal cnum_args)
{
Widget fr;
Arg *margs, args[10];
Cardinal n;
fr = XtCreateManagedWidget("colorFrame", xmFrameWidgetClass,
(Widget) csw, cargs, cnum_args);
n = 0;
XtSetArg(args[n], XmNrecomputeSize, False); n++;
margs = XtMergeArgLists(args, n, cargs, cnum_args);
XmColorS_color_window(csw) = XtCreateManagedWidget("colorWindow",
xmLabelWidgetClass,
fr, margs, n + cnum_args);
XtFree((XtPointer) margs);
}
/* ARGSUSED */
static void GetValues_XmNredSliderLabel ( Widget w, int n, XtArgVal *value)
{
(*value) = (XtArgVal) XmStringCopy(XmColorS_strings(w).slider_labels[0]);
}
/* ARGSUSED */
static void GetValues_XmNgreenSliderLabel( Widget w, int n, XtArgVal *value)
{
(*value) = (XtArgVal) XmStringCopy(XmColorS_strings(w).slider_labels[1]);
}
/* ARGSUSED */
static void GetValues_XmNblueSliderLabel( Widget w, int n, XtArgVal *value)
{
(*value) = (XtArgVal) XmStringCopy(XmColorS_strings(w).slider_labels[2]);
}
/* ARGSUSED */
static void GetValues_XmNcolorListTogLabel( Widget w, int n, XtArgVal *value)
{
(*value) = (XtArgVal) XmStringCopy(XmColorS_strings(w).tog_labels[0]);
}
/* ARGSUSED */
static void GetValues_XmNsliderTogLabel( Widget w, int n, XtArgVal *value)
{
(*value) = (XtArgVal) XmStringCopy(XmColorS_strings(w).tog_labels[1]);
}
/* ARGSUSED */
static void GetValues_XmNnoCellError( Widget w, int n, XtArgVal *value)
{
(*value) = (XtArgVal) XmStringCopy(XmColorS_strings(w).no_cell_error);
}
/* ARGSUSED */
static void GetValues_XmNfileReadError( Widget w, int n, XtArgVal *value)
{
(*value) = (XtArgVal) XmStringCopy(XmColorS_strings(w).file_read_error);
}
/* Function Name: GetVisual
* Description: Gets the defaults visual of the screen
* Arguments: csw - the color selector widget.
* Returns: Visual id.
*/
/* ARGSUSED */
static int
GetVisual(XmColorSelectorWidget csw)
{
Visual * vis;
int visual;
vis = DefaultVisual(XtDisplay(csw), XDefaultScreen(XtDisplay(csw)));
visual = vis->class;
return visual;
}
/* Function Name: NoPrivateColormaps
* Description: Determines the color to be used.
* Arguments: csw - the color selector widget.
* foreground - default color for the ColorSelector.
* color - Current color attributes.
* str - label for the ColorSelector.
* Returns: None.
*/
/* ARGSUSED */
static void
NoPrivateColormaps(XmColorSelectorWidget csw, Pixel foreground,
XColor color, char *str)
{
Arg args[5];
XmString xm_str;
Cardinal num_args;
xm_str = XmStringCreateLocalized(str);
num_args = 0;
if (!XmColorS_good_cell(csw))
{
if(XAllocColor(XtDisplay(csw), csw->core.colormap, &color) )
{
XmColorS_color_pixel(csw) = color.pixel;
XmColorS_good_cell(csw) = True;
}
} else {
if (XAllocColor(XtDisplay(csw), csw->core.colormap, &color) )
{
XmColorS_color_pixel(csw) = color.pixel;
XmColorS_good_cell(csw) = True;
}
else
{
XmString out;
out = XmStringConcatAndFree(xm_str, XmColorS_strings(csw).no_cell_error);
xm_str = out;
}
}
if (XmColorS_good_cell(csw))
{
color.flags = DoRed | DoGreen | DoBlue;
color.pixel = XmColorS_color_pixel(csw);
XtSetArg(args[num_args], XmNforeground, foreground); num_args++;
XtSetArg(args[num_args], XmNbackground, XmColorS_color_pixel(csw));
num_args++;
XtSetValues(XmColorS_color_window(csw), args, num_args);
}
XtSetArg(args[num_args], XmNlabelString, xm_str); num_args++;
XtSetValues(XmColorS_color_window(csw), args, num_args);
XmStringFree(xm_str);
}
/* Function Name: DoPrivateColormaps
* Description: Determines the color to be used.
* Arguments: csw - the color selector widget.
* foreground - default color for the ColorSelector.
* color - Current color attributes.
* str - label for the ColorSelector.
* Returns: None.
*/
/* ARGSUSED */
static void
PrivateColormaps(XmColorSelectorWidget csw, Pixel foreground, XColor color, char *str)
{
Arg args[5];
XmString xm_str;
Cardinal num_args;
xm_str = XmStringCreateLocalized(str);
num_args = 0;
if (!XmColorS_good_cell(csw)) {
if(XAllocColorCells(XtDisplay(csw), csw->core.colormap,
0, 0, 0, &(XmColorS_color_pixel(csw)), 1))
{
XmColorS_good_cell(csw) = True;
}
else {
XmString out;
out = XmStringConcatAndFree(xm_str, XmColorS_strings(csw).no_cell_error);
xm_str = out;
}
}
if (XmColorS_good_cell(csw)) {
color.flags = DoRed | DoGreen | DoBlue;
color.pixel = XmColorS_color_pixel(csw);
XStoreColor(XtDisplay((Widget) csw), csw->core.colormap, &color);
XtSetArg(args[num_args], XmNforeground, foreground); num_args++;
XtSetArg(args[num_args], XmNbackground, XmColorS_color_pixel(csw));
num_args++;
}
XtSetArg(args[num_args], XmNlabelString, xm_str); num_args++;
XtSetValues(XmColorS_color_window(csw), args, num_args);
XmStringFree(xm_str);
}
/*
* Function Name: DefaultVisualDisplay
* Description: Determines the default visual and allocates
* the color depending upon the visual classes
* Arguments: csw - the color selector widget.
* foreground - default color for the ColorSelector.
* color - Current color attributes.
* str - label for the ColorSelector.
* Returns: Returns true on a valid visual class.
* False otherwise.
*/
/* ARGSUSED */
static Boolean
DefaultVisualDisplay(XmColorSelectorWidget csw, Pixel foreground, XColor color, char *str)
{
int visual = 0;
visual = GetVisual(csw);
/*
* Obtain a valid color cell. In case, if one not available
*/
if ( visual == StaticColor || visual == TrueColor || \
visual == StaticGray )
{
NoPrivateColormaps(csw, foreground, color, str);
return True;
} else if ( visual == PseudoColor || visual == DirectColor || \
visual == GrayScale )
{
PrivateColormaps(csw, foreground, color, str);
return True;
} else
{
return False;
}
}
/************************************************************
*
* Public functions.
*
************************************************************/
/* Function Name: XmCreateColorSelector
* Description: Creation Routine for UIL and ADA.
* Arguments: parent - the parent widget.
* name - the name of the widget.
* args, num_args - the number and list of args.
* Returns: The created widget.
*/
Widget
XmCreateColorSelector(Widget parent, String name,
ArgList args, Cardinal num_args)
{
return(XtCreateWidget(name, xmColorSelectorWidgetClass,
parent, args, num_args));
}
Widget
XmVaCreateColorSelector(
Widget parent,
char *name,
...)
{
register Widget w;
va_list var;
int count;
Va_start(var,name);
count = XmeCountVaListSimple(var);
va_end(var);
Va_start(var, name);
w = XmeVLCreateWidget(name,
xmColorSelectorWidgetClass,
parent, False,
var, count);
va_end(var);
return w;
}
Widget
XmVaCreateManagedColorSelector(
Widget parent,
char *name,
...)
{
Widget w = NULL;
va_list var;
int count;
Va_start(var, name);
count = XmeCountVaListSimple(var);
va_end(var);
Va_start(var, name);
w = XmeVLCreateWidget(name,
xmColorSelectorWidgetClass,
parent, True,
var, count);
va_end(var);
return w;
}
|