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 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530
|
/*
* This file is part of the XForms library package.
*
* XForms is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1, or
* (at your option) any later version.
*
* XForms is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with XForms. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* \file forms.c
*
* This file is part of the XForms library package.
* Copyright (c) 1996-2002 T.C. Zhao and Mark Overmars
* All rights reserved.
*
* Main event dispatcher.
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <ctype.h>
#include "include/forms.h"
#include "flinternal.h"
#include "private/flvasprintf.h"
#define PointToPixel( a ) FL_crnd( ( a ) * fli_dpi / 72.0 )
#define MMToPixel( a ) FL_crnd( ( a ) * fli_dpi / 25.4 )
#define CMMToPixel( a ) FL_crnd( ( a ) * fli_dpi / 2540.0 )
#define CPointToPixel( a ) FL_crnd( ( a ) * fli_dpi / 7200.0 )
static FL_FORM * create_new_form( FL_Coord,
FL_Coord );
static void force_visible( FL_FORM * );
static void set_form_property( FL_FORM *,
unsigned int );
static void get_decoration_sizes_from_wm( Atom ,
FL_FORM *,
int *,
int *,
int *,
int * );
static void get_decorations_sizes_from_parent( FL_FORM *,
int *,
int *,
int *,
int * );
static FL_FORM * fli_mainform;
static int nomainform;
static int reopened_group = 0;
FL_FORM * fli_fast_free_object = NULL; /* exported to objects.c */
static int has_initial;
/***************************************
* Returns the index of a form in the list of visible forms
* (or -1 if the form isn't in this list)
***************************************/
int
fli_get_visible_forms_index( FL_FORM * form )
{
int i;
for ( i = 0; i < fli_int.formnumb; i++ )
if ( fli_int.forms[ i ] == form )
return i;
return -1;
}
/***************************************
* Returns the index of a form in the list of hidden forms
* (or -1 if the form isn't in this list)
***************************************/
static int
get_hidden_forms_index( FL_FORM * form )
{
int i;
for ( i = fli_int.formnumb;
i < fli_int.formnumb + fli_int.hidden_formnumb; i++ )
if ( fli_int.forms[ i ] == form )
return i;
return -1;
}
/***************************************
* Extend the list of forms by one element and appends the
* new forms address (listing it as invisible)
***************************************/
static void
add_form_to_hidden_list( FL_FORM * form )
{
fli_int.forms = realloc( fli_int.forms,
( fli_int.formnumb + fli_int.hidden_formnumb + 1 )
* sizeof *fli_int.forms );
fli_int.forms[ fli_int.formnumb + fli_int.hidden_formnumb++ ] = form;
}
/***************************************
* Moves a form from the list of hidden to the list of visible forms
***************************************/
static int
move_form_to_visible_list( FL_FORM * form )
{
int i;
/* Find the index of the hidden form */
if ( fli_int.hidden_formnumb == 0
|| ( i = get_hidden_forms_index( form ) ) < 0 )
{
M_err( "move_form_to_visble_list", "Form not in hidden list" );
return -1;
}
/* If it's not at the very start of the hidden list exchange it
with the one at the start */
if ( i != fli_int.formnumb )
{
fli_int.forms[ i ] = fli_int.forms[ fli_int.formnumb ];
fli_int.forms[ fli_int.formnumb ] = form;
}
fli_int.hidden_formnumb--;
if ( form->num_auto_objects > 0 )
fli_int.auto_count++;
return ++fli_int.formnumb;
}
/***************************************
* Moves a form from the list of visible to the list of hidden forms
***************************************/
static int
move_form_to_hidden_list( FL_FORM * form )
{
int i;
/* Find the index of the form to be moved to the hidden list */
if ( fli_int.formnumb == 0
|| ( i = fli_get_visible_forms_index( form ) ) < 0 )
{
M_err( "move_form_to_hidden_list", "Form not in visible list" );
return -1;
}
/* Unless the form is the last in the visible list exchange it with
the form at the end of the visible list */
if ( i != --fli_int.formnumb )
{
fli_int.forms[ i ] = fli_int.forms[ fli_int.formnumb ];
fli_int.forms[ fli_int.formnumb ] = form;
}
fli_int.hidden_formnumb++;
if ( form->num_auto_objects > 0 )
{
if ( fli_int.auto_count == 0 )
M_err( "move_form_to_hidden_list", "Bad auto count" );
else
fli_int.auto_count--;
}
return fli_int.formnumb;
}
/***************************************
* Removes a form from the list of hidden forms,
* shortening the list in the process
***************************************/
int
remove_form_from_hidden_list( FL_FORM * form )
{
int i;
/* Find the index of the form to be removed completely from the
hidden list */
if ( fli_int.hidden_formnumb == 0
|| ( i = get_hidden_forms_index( form ) ) < 0 )
{
M_err( "remove_form_from_hidden_list", "Form not in hidden list" );
return -1;
}
/* If it's not the form at the end of the hidden list exchange it with
the one at the end */
if ( i != fli_int.formnumb + --fli_int.hidden_formnumb )
fli_int.forms[ i ] =
fli_int.forms[ fli_int.formnumb + fli_int.hidden_formnumb ];
/* Shorten the list of visible and hidden forms by one element */
fli_int.forms = fl_realloc( fli_int.forms,
( fli_int.formnumb + fli_int.hidden_formnumb )
* sizeof *fli_int.forms );
return fli_int.formnumb;
}
/***************************************
* Returns the (visible) form that's shown in 'win'
***************************************/
FL_FORM *
fl_win_to_form( Window win )
{
int i;
if ( win == None )
return NULL;
for ( i = 0; i < fli_int.formnumb; i++ )
if ( fli_int.forms[ i ]->window == win )
return fli_int.forms[ i ];
return NULL;
}
/***************************************
* Creates a new, empty form
***************************************/
static FL_FORM *
create_new_form( FL_Coord w,
FL_Coord h )
{
FL_FORM *form;
form = fl_calloc( 1, sizeof *form );
/* Convert non-pixel unit into pixles */
switch ( fli_cntl.coordUnit )
{
case FL_COORD_PIXEL :
break;
case FL_COORD_MM :
w = MMToPixel( w );
h = MMToPixel( h );
break;
case FL_COORD_POINT :
w = PointToPixel( w );
h = PointToPixel( h );
break;
case FL_COORD_centiPOINT :
w = CPointToPixel( w );
h = CPointToPixel( h );
break;
case FL_COORD_centiMM :
w = CMMToPixel( w );
h = CMMToPixel( h );
break;
default :
M_err( "create_new_form", "Unknown unit: %d, using pixel",
fli_cntl.coordUnit );
fli_cntl.coordUnit = FL_COORD_PIXEL;
}
/* Initialize pointers and non-zero defaults */
form->w_hr = form->w = w;
form->h_hr = form->h = h;
form->handle_dec_x = 0;
form->handle_dec_y = 0;
form->num_auto_objects = 0;
form->deactivated = 1;
form->form_callback = NULL;
form->compress_mask = ExposureMask | ButtonMotionMask
| PointerMotionMask;
form->key_callback = NULL;
form->push_callback = NULL;
form->crossing_callback = NULL;
form->focusobj = NULL;
form->first = NULL;
form->last = NULL;
form->hotx = form->hoty = -1;
form->use_pixmap = fli_cntl.doubleBuffer;
form->label = NULL;
form->flpixmap = NULL;
form->u_vdata = NULL;
form->close_callback = NULL;
form->close_data = NULL;
form->icon_pixmap = form->icon_mask = None;
form->in_redraw = 0;
form->needs_full_redraw = 1;
return form;
}
/***************************************
* Starts a form definition
***************************************/
FL_FORM *
fl_bgn_form( int type,
FL_Coord w,
FL_Coord h )
{
if ( ! fli_no_connection && ! flx->display )
{
M_err( "fl_bgn_form", "Missing or failed call of fl_initialize()" );
exit( 1 );
}
/* Check that we're not already in a form definition - the error is
a serious one and can't be fixed easily as it might be due to a
bad recursion */
if ( fl_current_form )
{
M_err( "fl_bgn_form", "You forgot to call fl_end_form" );
exit( 1 );
}
/* Create a new form */
fl_current_form = create_new_form( w, h );
/* Add it to the list of still hidden forms */
add_form_to_hidden_list( fl_current_form );
/* Each form has an empty box, covering the whole form as its first
object */
fl_add_box( type, 0, 0, w, h, "" );
return fl_current_form;
}
/***************************************
* Ends a form definition
***************************************/
void
fl_end_form( void )
{
FL_FORM * f = fl_current_form;
if ( ! fl_current_form )
{
M_err( "fl_end_form", "No current form" );
return;
}
if ( fli_current_group )
{
M_err( "fl_end_form", "You forgot to call fl_end_group." );
fl_end_group( );
}
fl_current_form = NULL;
/* Now is the proper time for calculating the overlaps of objects */
fli_recalc_intersections( f );
if ( f->visible && ! f->frozen )
fl_redraw_form( f );
}
/***************************************
* Reopens a form for adding further objects
***************************************/
FL_FORM *
fl_addto_form( FL_FORM * form )
{
if ( ! form )
{
M_err( "fl_addto_form", "NULL form" );
return NULL;
}
/* We can't open a form for adding objects when another form has already
been opened for the same purpose */
if ( fl_current_form && fl_current_form != form )
{
M_err( "fl_addto_form", "You forgot to call fl_end_form" );
return NULL;
}
if ( fl_current_form )
M_warn( "fl_addto_form", "Form was never closed." );
return fl_current_form = form;
}
/***************************************
* Starts a group definition by adding an object of type FL_BEGIN_GROUP
***************************************/
FL_OBJECT *
fl_bgn_group( void )
{
static int id = 1;
if ( ! fl_current_form )
{
M_err( "fl_bgn_group", "NULL form" );
return NULL;
}
if ( fli_current_group )
{
M_err( "fl_bgn_group", "You forgot to call fl_end_group." );
fl_end_group( );
}
fli_current_group = fl_make_object( FL_BEGIN_GROUP, 0, 0, 10, 10, 0,
"", NULL );
fli_current_group->group_id = id++;
/* Temporarily set the object class to something invalid since
fl_add_object() will not add objects of class FL_BEGIN_GROUP */
fli_current_group->objclass = FL_INVALID_CLASS;
fl_add_object( fl_current_form, fli_current_group );
fli_current_group->objclass = FL_BEGIN_GROUP;
return fli_current_group;
}
/***************************************
* Ends a group definition by adding an object of type FL_END_GROUP
***************************************/
FL_OBJECT *
fli_end_group( void )
{
FL_OBJECT *obj;
int id;
if ( ! fl_current_form )
{
M_err( "fl_end_group", "NULL form" );
return NULL;
}
if ( ! fli_current_group )
{
M_err( "fl_end_group", "NULL group." );
return NULL;
}
obj = fli_current_group;
id = obj->group_id;
fli_current_group = NULL;
if ( ! reopened_group )
{
obj = fl_make_object( FL_END_GROUP, 0, 0, 0, 0, 0, "", NULL );
obj->group_id = id;
/* Temporarily set the object class to something invalid since
fl_add_object() will not add objects of class FL_END_GROUP */
obj->objclass = FL_INVALID_CLASS;
fl_add_object( fl_current_form, obj );
obj->objclass = FL_END_GROUP;
}
if ( reopened_group == 2 )
fl_end_form( );
reopened_group = 0;
return obj;
}
/***************************************
* Necessary since the public interface function for ending a group
* doesn't have a return value
***************************************/
void
fl_end_group( void )
{
fli_end_group( );
}
/***************************************
* "Freezes" all (shown) forms
***************************************/
void
fl_freeze_all_forms( void )
{
int i;
for ( i = 0; i < fli_int.formnumb; i++ )
fl_freeze_form( fli_int.forms[ i ] );
}
/***************************************
* "Unfreezes" all (shown) forms
***************************************/
void
fl_unfreeze_all_forms( void )
{
int i;
for ( i = 0; i < fli_int.formnumb; i++ )
fl_unfreeze_form( fli_int.forms[ i ] );
}
/***************************************
* Corrects the shape of the form based on the shape of its window
***************************************/
static void
reshape_form( FL_FORM * form )
{
FL_Coord w,
h,
dummy;
int top,
right,
bottom,
left;
if ( ( ! form->handle_dec_x && ! form->handle_dec_y )
|| form->wm_border == FL_NOBORDER )
{
fl_get_wingeometry( form->window, &form->x, &form->y, &w, &h );
fl_set_form_size( form, w, h );
return;
}
fl_get_decoration_sizes( form, &top, &right, &bottom, &left );
if ( form->handle_dec_x && ! form->handle_dec_y )
{
fl_get_wingeometry( form->window, &dummy, &form->y, &w, &h );
form->x -= left;
}
else if ( ! form->handle_dec_x && form->handle_dec_y )
{
fl_get_wingeometry( form->window, &form->x, &dummy, &w, &h );
form->y -= bottom;
}
else
{
fl_get_wingeometry( form->window, &dummy, &dummy, &w, &h );
form->x -= left;
form->y -= bottom;
}
XMoveWindow( flx->display, form->window, form->x, form->y );
fl_set_form_size( form, w, h );
}
/***************************************
* Scale a form with the given scaling factors and take care of object
* gravity. This one differs from fl_scale_form() in that we don't
* reshape the window in any way. Most useful as a follow up to a
* ConfigureNotify event
***************************************/
void
fli_scale_form( FL_FORM * form,
double xsc,
double ysc )
{
FL_OBJECT *obj;
double neww = form->w_hr * xsc,
newh = form->h_hr * ysc;
if ( FL_abs( neww - form->w ) < 1 && FL_abs( newh - form->h ) < 1 )
return;
form->w_hr = neww;
form->h_hr = newh;
form->w = FL_crnd( neww );
form->h = FL_crnd( newh );
if ( form->hotx >= 0 || form->hoty >= 0 )
{
form->hotx = form->hotx * xsc;
form->hoty = form->hoty * ysc;
}
/* Need to handle different resizing request */
for ( obj = form->first; obj; obj = obj->next )
{
double oldw = obj->fl2 - obj->fl1;
double oldh = obj->ft2 - obj->ft1;
/* Special case to keep the center of gravity of objects that have
no gravity set and aren't to be resized */
if ( obj->resize == FL_RESIZE_NONE
&& obj->segravity == FL_NoGravity
&& obj->nwgravity == FL_NoGravity )
{
obj->fl1 += ( xsc - 1 ) * ( obj->fl1 + 0.5 * oldw );
obj->ft1 += ( ysc - 1 ) * ( obj->ft1 + 0.5 * oldh );
obj->fr1 = neww - obj->fl1;
obj->fb1 = newh - obj->ft1;
obj->fl2 = obj->fl1 + oldw;
obj->ft2 = obj->ft1 + oldh;
obj->fr2 = neww - obj->fl2;
obj->fb2 = newh - obj->ft2;
}
else
{
/* In all other cases we recalculate the position of the upper left
hand and the lower right hand corner of the object relative to
all the borders of the form enclosing it, taking gravity and
resizing setting into account. The results sometimes can be
unexpected but hopefully are logically correct;-) */
if ( ULC_POS_LEFT_FIXED( obj ) )
obj->fr1 = neww - obj->fl1;
else if ( ULC_POS_RIGHT_FIXED( obj ) )
obj->fl1 = neww - obj->fr1;
if ( LRC_POS_LEFT_FIXED( obj ) )
obj->fr2 = neww - obj->fl2;
else if ( LRC_POS_RIGHT_FIXED( obj ) )
obj->fl2 = neww - obj->fr2;
if ( ! HAS_FIXED_HORI_ULC_POS( obj ) )
{
if ( HAS_FIXED_HORI_LRC_POS( obj ) )
{
if ( obj->resize & FL_RESIZE_X )
obj->fl1 = obj->fl2 - xsc * oldw;
else
obj->fl1 = obj->fl2 - oldw;
}
else
obj->fl1 *= xsc;
obj->fr1 = neww - obj->fl1;
}
if ( ! HAS_FIXED_HORI_LRC_POS( obj ) )
{
if ( obj->resize & FL_RESIZE_X )
obj->fl2 = obj->fl1 + xsc * oldw;
else
obj->fl2 = obj->fl1 + oldw;
obj->fr2 = neww - obj->fl2;
}
if ( ULC_POS_TOP_FIXED( obj ) )
obj->fb1 = newh - obj->ft1;
else if ( ULC_POS_BOTTOM_FIXED( obj ) )
obj->ft1 = newh - obj->fb1;
if ( LRC_POS_TOP_FIXED( obj ) )
obj->fb2 = newh - obj->ft2;
else if ( LRC_POS_BOTTOM_FIXED( obj ) )
obj->ft2 = newh - obj->fb2;
if ( ! HAS_FIXED_VERT_ULC_POS( obj ) )
{
if ( HAS_FIXED_VERT_LRC_POS( obj ) )
{
if ( obj->resize & FL_RESIZE_Y )
obj->ft1 = obj->ft2 - ysc * oldh;
else
obj->ft1 = obj->ft2 - oldh;
}
else
obj->ft1 *= ysc;
obj->fb1 = newh - obj->ft1;
}
if ( ! HAS_FIXED_VERT_LRC_POS( obj ) )
{
if ( obj->resize & FL_RESIZE_Y )
obj->ft2 = obj->ft1 + ysc * oldh;
else
obj->ft2 = obj->ft1 + oldh;
obj->fb2 = newh - obj->ft2;
}
}
obj->x = FL_crnd( obj->fl1 );
obj->y = FL_crnd( obj->ft1 );
obj->w = FL_crnd( obj->fl2 - obj->fl1 );
obj->h = FL_crnd( obj->ft2 - obj->ft1 );
}
/* Only notify objects now - parent objects might have to adjust
sizes and positions of child objects and when objects get the
resize notice immediately after resizing above then the parent
object gets it first, sets a different size for the child, which
then is overwritten */
for ( obj = form->first; obj; obj = obj->next )
fli_handle_object( obj, FL_RESIZED, 0, 0, 0, NULL, 0 );
fli_recalc_intersections( form );
}
/***************************************
* Externally visible routine to scale a form. Needs to reshape the window.
***************************************/
void
fl_scale_form( FL_FORM * form,
double xsc,
double ysc )
{
if ( ! form )
{
M_err( "fl_scale_form", "NULL form" );
return;
}
if ( FL_crnd( form->w_hr * xsc ) == form->w
&& FL_crnd( form->h_hr * ysc ) == form->h )
return;
fli_scale_form( form, xsc, ysc );
/* Resize the window */
if ( form->visible == FL_VISIBLE )
fl_winresize( form->window, form->w, form->h );
}
/***************************************
* Sets lower limits for the width and height of a form
***************************************/
void
fl_set_form_minsize( FL_FORM * form,
FL_Coord w,
FL_Coord h )
{
if ( ! form )
{
M_err( "fl_set_form_minsize", "Null form" );
return;
}
fl_winminsize( form->window, w, h );
}
/***************************************
* Sets upper limits for the width and height of a form
***************************************/
void
fl_set_form_maxsize( FL_FORM * form,
FL_Coord w,
FL_Coord h )
{
if ( ! form )
{
M_err( "fl_set_form_maxsize", "NULL form" );
return;
}
fl_winmaxsize( form->window, w, h );
}
/***************************************
* Switches double buffering for forms on or off (with double buffering
* on we draw first to a pixmap for the form before copying that to the
* forms window - can reduces flickering)
***************************************/
void
fl_set_form_dblbuffer( FL_FORM * form,
int yesno )
{
if ( ! form )
{
M_err( "fl_set_form_dblbuffer", "NULL form" );
return;
}
if ( form->use_pixmap == yesno )
return;
/* If the form is currently frozen the redraw on unfreeze will only
draw those objects that have been changed and thus have their
'redraw' flag set. But when switching double buffering on there's
no pixmap yet that already contains the non-modified objects. Thus
in this case we must make sure all objects of the form get redrawn. */
if ( yesno && form->frozen )
form->needs_full_redraw = 1;
form->use_pixmap = yesno;
}
/***************************************
* Sets the size of a form
***************************************/
void
fl_set_form_size( FL_FORM * form,
FL_Coord w,
FL_Coord h )
{
if ( ! form )
{
M_err( "fl_set_form_size", "NULL form" );
return;
}
if ( w != form->w || h != form->h )
fl_scale_form( form, w / form->w_hr, h / form->h_hr );
}
/***************************************
* Sets the position of a form
***************************************/
void
fl_set_form_position( FL_FORM * form,
FL_Coord x,
FL_Coord y )
{
FL_Coord oldx,
oldy;
if ( ! form )
{
M_err( "fl_set_form_position", "NULL form" );
return;
}
oldx = form->x;
oldy = form->y;
/* Negative values for x or y are interpreted as meaning that the
position is that of the right or bottom side of the form relative
to the right or bottom side to the screen. May have to be corrected
for the right or bottom border decoration widths. */
if ( x >= 0 )
{
form->x = x;
form->handle_dec_x = 0;
}
else
{
form->x = fl_scrw - form->w + x;
form->handle_dec_x = 1;
}
if ( y >= 0 )
{
form->y = y;
form->handle_dec_y = 0;
}
else
{
form->y = fl_scrh - form->h + y;
form->handle_dec_y = 1;
}
/* If the form is already shown move it */
if ( form->visible == FL_VISIBLE )
{
int bottom = 0,
left = 0,
dummy;
if ( ( form->handle_dec_x || form->handle_dec_y )
&& form->wm_border != FL_NOBORDER )
{
fl_get_decoration_sizes( form, &dummy, &dummy, &bottom, &left );
if ( form->handle_dec_x )
form->x -= left;
if ( form->handle_dec_y )
form->y -= bottom;
}
form->handle_dec_x = form->handle_dec_y = 0;
if ( oldx != form->x || oldy != form->y )
XMoveWindow( flx->display, form->window, form->x, form->y );
}
}
/***************************************
* Sets the background color of the form - a bit of a hack since it
* actually uses the first or second object of the form...
***************************************/
void
fl_set_form_background_color( FL_FORM * form,
FL_COLOR color )
{
if ( ! form )
{
M_err( "fl_set_forms_background_color", "NULL form" );
return;
}
/* If the empty box that all forms get as their first object on creation
does not exist anymore we can't set a background color */
if ( ! form->first )
{
M_err( "fl_set_forms_background_color", "Form has no background" );
return;
}
/* If there's no other object except the empty box or the first object
isn't an empty box anymore set the color for this first object, otherwise
for the next object. */
if ( ! form->first->next || form->first->boxtype != FL_NO_BOX )
fl_set_object_color( form->first, color, form->first->col2 );
else
fl_set_object_color( form->first->next, color,
form->first->next->col2 );
}
/***************************************
* Returns the background color used for the form
***************************************/
FL_COLOR
fl_get_form_background_color( FL_FORM * form )
{
if ( ! form )
{
M_err( "fl_get_forms_background_color", "NULL form" );
return FL_COL1;
}
/* If the empty box that all forms get as their first object on creation
does not exist anymore we can't set a background color */
if ( ! form->first )
{
M_err( "fl_get_forms_background_color", "Form has no background" );
return FL_COL1;
}
if ( form->first->boxtype != FL_NO_BOX || ! form->first->next )
return form->first->col1;
else
return form->first->next->col1;
}
/***************************************
* Sets the position of the hotspot of a form
***************************************/
void
fl_set_form_hotspot( FL_FORM * form,
FL_Coord x,
FL_Coord y )
{
if ( ! form )
{
M_err( "fl_set_form_hotspot", "NULL form" );
return;
}
form->hotx = x;
form->hoty = y;
}
/***************************************
* Sets the position of the hotspot of a form
* to the center of one of its objects
***************************************/
void
fl_set_form_hotobject( FL_FORM * form,
FL_OBJECT * obj )
{
if ( ! form )
{
M_err( "fl_set_form_hotobject", "NULL form" );
return;
}
if ( ! obj )
{
M_err( "fl_set_form_hotobject", "NULL object" );
return;
}
if ( obj->form != form )
{
M_err( "fl_set_form_hotobject", "Object not part of form" );
return;
}
fl_set_form_hotspot( form, obj->x + obj->w / 2, obj->y + obj->h / 2 );
}
/***************************************
* Try to make sure a form is completely visible on the screen
***************************************/
static void
force_visible( FL_FORM * form )
{
if ( form->x > fl_scrw - form->w )
form->x = fl_scrw - form->w;
if ( form->x < 0 )
form->x = 0;
if ( form->y > fl_scrh - form->h )
form->y = fl_scrh - form->h;
if ( form->y < 0 )
form->y = 0;
}
/***************************************
* Sets the name (label) of the form. If the form
* is shown it's also the form's window title.
***************************************/
void
fl_set_form_title( FL_FORM * form,
const char * name )
{
if ( ! form )
{
M_err( "fl_set_form_title", "NULL form" );
return;
}
if ( form->label != name )
{
if ( form->label )
fl_free( form->label );
form->label = fl_strdup( name ? name : "" );
}
if ( form->window )
fl_wintitle( form->window, form->label );
}
/***************************************
* Sets the name (label) of the form using a format string
***************************************/
void
fl_set_form_title_f( FL_FORM * form,
const char * fmt,
... )
{
char *buf;
EXPAND_FORMAT_STRING( buf, fmt );
fl_set_form_title( form, buf );
fl_free( buf );
}
/***************************************
* Creates the window for a form (but doesn't show it yet, use
* fl_show_form_window() for that), returns the window handle
***************************************/
Window
fl_prepare_form_window( FL_FORM * form,
int place,
int border,
const char * name )
{
long screenw,
screenh,
dont_fix_size = 0;
FL_Coord mx,
my;
if ( border == 0 )
border = FL_FULLBORDER;
if ( fl_current_form )
{
M_err( "fl_prepare_form_window", "You forgot to call fl_end_form() %s",
name ? name : "" );
fl_current_form = NULL;
}
if ( ! form )
{
M_err( "fl_prepare_form", "NULL form" );
return None;
}
if ( form->visible != FL_INVISIBLE )
return form->window;
/* Try to move the form from the part of the list for hidden forms to
that at the start for visible forms */
move_form_to_visible_list( form );
if ( form->label != name )
{
if ( form->label )
fl_free( form->label );
form->label = fl_strdup( name ? name : "" );
}
if ( border == FL_NOBORDER )
fli_int.unmanaged_count++;
form->wm_border = border;
form->deactivated = 0;
screenw = fl_scrw;
screenh = fl_scrh;
fl_get_mouse( &mx, &my, &fli_int.keymask );
if ( ( dont_fix_size = place & FL_FREE_SIZE ) )
place &= ~ FL_FREE_SIZE;
if ( place == FL_PLACE_SIZE )
fl_pref_winsize( form->w, form->h );
else if ( place == FL_PLACE_ASPECT )
fl_winaspect( 0, form->w, form->h );
else if ( place == FL_PLACE_POSITION )
{
fl_pref_winposition( form->x, form->y );
fl_initial_winsize( form->w, form->h );
}
else if ( place != FL_PLACE_FREE )
{
FL_COORD nmx,
nmy;
switch ( place )
{
case FL_PLACE_CENTER:
case FL_PLACE_FREE_CENTER:
form->x = ( screenw - form->w ) / 2;
form->y = ( screenh - form->h ) / 2;
break;
case FL_PLACE_MOUSE:
form->x = mx - form->w / 2;
form->y = my - form->h / 2;
break;
case FL_PLACE_FULLSCREEN:
form->x = 0;
form->y = 0;
fl_set_form_size( form, screenw, screenh );
break;
case FL_PLACE_HOTSPOT:
if ( form->hotx < 0 || form->hoty < 0 ) /* not set */
{
form->hotx = form->w / 2;
form->hoty = form->h / 2;
}
form->x = mx - form->hotx;
form->y = my - form->hoty;
force_visible( form );
nmx = form->x + form->hotx;
nmy = form->y + form->hoty;
if ( nmx != mx || nmy != my )
fl_set_mouse( nmx, nmy );
break;
case FL_PLACE_GEOMETRY :
if ( form->x < 0 )
{
form->x = screenw - form->w + form->x;
form->handle_dec_x = 1;
}
if ( form->y < 0 )
{
form->y = screenh - form->h + form->y;
form->handle_dec_y = 1;
}
break;
}
/* Final check. Make sure form is visible */
if ( place != FL_PLACE_GEOMETRY )
force_visible( form );
if ( dont_fix_size && place != FL_PLACE_GEOMETRY )
fl_initial_wingeometry( form->x, form->y, form->w, form->h );
else
fl_pref_wingeometry( form->x, form->y, form->w, form->h );
}
else if ( place == FL_PLACE_FREE )
{
fl_initial_winsize( form->w, form->h );
if ( has_initial )
fl_initial_wingeometry( form->x, form->y, form->w, form->h );
}
else
{
M_err( "fl_prepare_form_window", "Unknown requests: %d", place );
fl_initial_wingeometry( form->x, form->y, form->w, form->h );
}
/* Window managers typically do not allow dragging transient windows */
if ( border != FL_FULLBORDER )
{
if ( place == FL_PLACE_ASPECT || place == FL_PLACE_FREE )
{
form->x = mx - form->w / 2;
form->y = my - form->h / 2;
force_visible( form );
fl_initial_winposition( form->x, form->y );
}
if ( border == FL_NOBORDER )
fl_noborder( );
else
fl_transient( );
}
if ( place == FL_PLACE_ICONIC )
fl_initial_winstate( IconicState );
if ( form->icon_pixmap )
fl_winicon( 0, form->icon_pixmap, form->icon_mask );
has_initial = 0;
fli_init_colormap( fl_vmode );
form->window = fli_create_window( fl_root, fli_colormap( fl_vmode ), name );
fl_winicontitle( form->window, name );
if ( border == FL_FULLBORDER || form->prop & FLI_COMMAND_PROP )
set_form_property( form, FLI_COMMAND_PROP );
return form->window;
}
/***************************************
***************************************/
Window
fl_prepare_form_window_f( FL_FORM * form,
int place,
int border,
const char * fmt,
... )
{
Window w;
char *buf;
EXPAND_FORMAT_STRING( buf, fmt );
w = fl_prepare_form_window( form, place, border, buf );
fl_free( buf );
return w;
}
/***************************************
* Maps (displays) a form's window created with fl_prepare_form_window()
***************************************/
Window
fl_show_form_window( FL_FORM * form )
{
FL_OBJECT *obj;
if ( ! form )
{
M_err( "fl_show_form_window", "NULL form" );
return None;
}
if ( form->window == None || form->visible != FL_INVISIBLE )
return form->window;
fl_winshow( form->window );
form->visible = FL_VISIBLE;
reshape_form( form );
fl_redraw_form( form );
/* TODO: somehow formbrowser objects get drawn incorrectly the first
time round so, for the time being, we redraw it once again... */
for ( obj = form->first; obj; obj = obj->next )
if ( obj->objclass == FL_FORMBROWSER )
fl_redraw_object( obj );
if ( ! form->focusobj )
for ( obj = form->first; obj; obj = obj->next )
if ( obj->input && obj->active )
{
fl_set_focus_object( form, obj );
break;
}
return form->window;
}
/***************************************
* Makes a new form visible by creating a window for it
* and mapping it. Returns the form's window handle.
***************************************/
Window
fl_show_form( FL_FORM * form,
int place,
int border,
const char * name )
{
if ( ! form )
{
M_err( "fl_show_form", "NULL form" );
return None;
}
fl_prepare_form_window( form, place, border, name );
form->in_redraw = 0;
return fl_show_form_window( form );
}
/***************************************
***************************************/
Window
fl_show_form_f( FL_FORM * form,
int place,
int border,
const char * fmt,
... )
{
Window w;
char *buf;
EXPAND_FORMAT_STRING( buf, fmt );
w = fl_show_form( form, place, border, buf );
fl_free( buf );
return w;
}
/***************************************
* Hides a particular form by unmapping and destroying its window
***************************************/
static void
close_form_window( Window win )
{
XEvent xev;
XUnmapWindow( flx->display, win );
XDestroyWindow( flx->display, win );
XSync( flx->display, 0 );
while ( XCheckWindowEvent( flx->display, win, AllEventsMask, &xev ) )
fli_xevent_name( "Eaten", &xev );
/* Give subwindows a chance to handle destroy event promptly, take care
the window of the form doesn't exist anymore! */
while ( XCheckTypedEvent( flx->display, DestroyNotify, &xev ) )
{
FL_FORM *form;
if ( ( form = fli_find_event_form( &xev ) ) )
{
form->window = None;
fl_hide_form( form );
}
else
fl_XPutBackEvent( &xev );
}
}
/***************************************
***************************************/
static FL_FORM *
property_set( unsigned int prop )
{
int i;
for ( i = 0; i < fli_int.formnumb; i++ )
if ( fli_int.forms[ i ]->prop & prop
&& fli_int.forms[ i ]->prop & FLI_PROP_SET )
return fli_int.forms[ i ];
return NULL;
}
/***************************************
***************************************/
static void
set_form_property( FL_FORM * form,
unsigned int prop )
{
if ( ! form )
{
M_err( "set_form_property", "NULL form" );
return;
}
if ( property_set( prop ) )
return;
if ( ! ( prop & FLI_COMMAND_PROP ) )
{
M_err( "set_form_property", "Unknown form property request %u",
prop );
return;
}
if ( form->window )
{
fli_set_winproperty( form->window, FLI_COMMAND_PROP );
form->prop |= FLI_PROP_SET;
}
form->prop |= FLI_COMMAND_PROP;
fli_mainform = form;
}
/***************************************
***************************************/
void
fl_hide_form( FL_FORM * form )
{
Window owin;
FL_OBJECT *o;
if ( ! form )
{
M_err( "fl_hide_form", "NULL form" );
return;
}
if ( fli_get_visible_forms_index( form ) < 0 )
{
M_err( "fl_hide_form", "Hiding unknown form" );
return;
}
if ( form->visible == FL_BEING_HIDDEN )
{
M_err( "fl_hide_form", "Recursive call?" );
return;
}
form->visible = FL_BEING_HIDDEN;
fli_set_form_window( form );
/* Checking mouseobj->form is necessary as it might be deleted from a
form */
if ( fli_int.mouseobj && fli_int.mouseobj->form == form )
{
fli_handle_object( fli_int.mouseobj, FL_LEAVE, 0, 0, 0, NULL, 1 );
fli_int.mouseobj = NULL;
}
if ( fli_int.pushobj && fli_int.pushobj->form == form )
{
fli_handle_object( fli_int.pushobj, FL_RELEASE, 0, 0, 0, NULL, 1 );
fli_int.pushobj = NULL;
}
if ( form->focusobj )
{
fli_handle_object( form->focusobj, FL_UNFOCUS, 0, 0, 0, NULL, 0 );
form->focusobj = NULL;
}
/* Get canvas objects to unmap their windows (but only for those that
aren't childs, those will be dealt with by their parents) */
for ( o = form->first; o; o = o->next )
if ( ( o->objclass == FL_CANVAS || o->objclass == FL_GLCANVAS )
&& ! o->parent )
fli_unmap_canvas_window( o );
#ifdef DELAYED_ACTION
fli_object_qflush( form );
#endif
/* Free backing store pixmap but keep the pointer */
fli_free_flpixmap( form->flpixmap );
if ( fli_int.mouseform && fli_int.mouseform->window == form->window )
fli_int.mouseform = NULL;
form->deactivated = 1;
form->visible = FL_INVISIBLE;
owin = form->window;
form->window = None;
fli_hide_tooltip( );
/* If the forms window is None it already has been closed */
if ( owin )
close_form_window( owin );
if ( flx->win == owin )
flx->win = None;
/* Move the form from the part of the list for visible forms to the
part of hidden forms at the end of the array */
move_form_to_hidden_list( form );
if ( form->wm_border == FL_NOBORDER )
{
fli_int.unmanaged_count--;
if ( fli_int.unmanaged_count < 0 )
{
M_err( "fl_hide_form", "Bad unmanaged count" );
fli_int.unmanaged_count = 0;
}
}
/* Need to re-establish command property */
if ( fli_int.formnumb && form->prop & FLI_COMMAND_PROP )
set_form_property( *fli_int.forms, FLI_COMMAND_PROP );
if ( form == fli_int.keyform )
fli_int.keyform = NULL;
}
/***************************************
* Frees the memory used by a form, together with all its objects.
***************************************/
void
fl_free_form( FL_FORM * form )
{
/* Check whether ok to free */
if ( ! form )
{
M_err( "fl_free_form", "NULL form" );
return;
}
if ( form->visible == FL_VISIBLE )
{
M_warn( "fl_free_form", "Freeing visible form" );
fl_hide_form( form );
}
if ( get_hidden_forms_index( form ) < 0 )
{
M_err( "fl_free_form", "Freeing unknown form" );
return;
}
/* Free all objects of the form */
fli_fast_free_object = form;
while ( form->first )
fl_free_object( form->first );
fli_fast_free_object = NULL;
if ( form->flpixmap )
{
fli_free_flpixmap( form->flpixmap );
fl_free( form->flpixmap );
}
if ( form->label )
{
fl_free( form->label );
form->label = NULL;
}
if ( form == fli_mainform )
fli_mainform = NULL;
/* Free the form and remove it from the list of existing forms */
fl_free( form );
remove_form_from_hidden_list( form );
}
/***************************************
* Returns if a form is active
***************************************/
int
fl_form_is_activated( FL_FORM * form )
{
if ( ! form )
{
M_err( "fl_form_is_activated", "NULL form" );
return 0;
}
return form->deactivated == 0;
}
/***************************************
* Activates a form (form only becomes activated if this function has
* been called as many times as fl_deactive_form()).
***************************************/
void
fl_activate_form( FL_FORM * form )
{
if ( ! form )
{
M_err( "fl_activate_form", "NULL form" );
return;
}
if ( form->deactivated )
{
form->deactivated--;
if ( ! form->deactivated && form->activate_callback )
form->activate_callback( form, form->activate_data );
}
if ( form->child )
fl_activate_form( form->child );
}
/***************************************
* Deactivates a form (re-activation requires as many calls of
* fl_activate_form() as there were calls of fl_deactivate_form()).
***************************************/
void
fl_deactivate_form( FL_FORM * form )
{
if ( ! form )
{
M_err( "fl_deactivate_form", "NULL form" );
return;
}
if ( ! form->deactivated
&& fli_int.mouseobj
&& fli_int.mouseobj->form == form )
fli_handle_object( fli_int.mouseobj, FL_LEAVE, 0, 0, 0, NULL, 1 );
if ( ! form->deactivated && form->deactivate_callback )
form->deactivate_callback( form, form->deactivate_data );
form->deactivated++;
if ( form->child )
fl_deactivate_form( form->child );
}
/***************************************
* Installs handler to be called on (final) re-activation of the form
***************************************/
FL_FORM_ATACTIVATE
fl_set_form_atactivate( FL_FORM * form,
FL_FORM_ATACTIVATE cb,
void * data )
{
FL_FORM_ATACTIVATE old = NULL;
if ( ! form )
{
M_err( "fl_set_form_atactivate", "NULL form" );
return NULL;
}
old = form->activate_callback;
form->activate_callback = cb;
form->activate_data = data;
return old;
}
/***************************************
* Installs handler to be called on (first) deactivation of the form
***************************************/
FL_FORM_ATDEACTIVATE
fl_set_form_atdeactivate( FL_FORM * form,
FL_FORM_ATDEACTIVATE cb,
void * data )
{
FL_FORM_ATDEACTIVATE old = NULL;
if ( ! form )
{
M_err( "fl_set_form_atdeactivate", "NULL form" );
return NULL;
}
old = form->deactivate_callback;
form->deactivate_callback = cb;
form->deactivate_data = data;
return old;
}
/***************************************
* Activates all forms
***************************************/
void
fl_activate_all_forms( void )
{
int i;
for ( i = 0; i < fli_int.formnumb; i++ )
fl_activate_form( fli_int.forms[ i ] );
}
/***************************************
* Deactivates all forms
***************************************/
void
fl_deactivate_all_forms( void )
{
int i;
for ( i = 0; i < fli_int.formnumb; i++ )
fl_deactivate_form( fli_int.forms[ i ] );
}
/***************************************
* Installs handler to be called on close of the form
***************************************/
FL_FORM_ATCLOSE
fl_set_form_atclose( FL_FORM * form,
FL_FORM_ATCLOSE fmclose,
void * data )
{
FL_FORM_ATCLOSE old;
if ( ! form )
{
M_err( "fl_set_form_atclose", "NULL form" );
return NULL;
}
old = form->close_callback;
form->close_callback = fmclose;
form->close_data = data;
return old;
}
/***************************************
* Installs handler to be called on end of application by the user
* using some window manager method to close a window
***************************************/
FL_FORM_ATCLOSE
fl_set_atclose( FL_FORM_ATCLOSE fmclose,
void * data )
{
FL_FORM_ATCLOSE old = fli_context->atclose;
fli_context->atclose = fmclose;
fli_context->close_data = data;
return old;
}
/***************************************
***************************************/
void
fl_set_form_geometry( FL_FORM * form,
FL_Coord x,
FL_Coord y,
FL_Coord w,
FL_Coord h )
{
fl_set_form_position( form, x, y );
fl_set_form_size( form, w, h );
/* This alters the windowing defaults */
fl_initial_wingeometry( form->x, form->y, form->w, form->h );
has_initial = 1;
}
/***************************************
* Register pre-emptive event handlers
***************************************/
FL_RAW_CALLBACK
fl_register_raw_callback( FL_FORM * form,
unsigned long mask,
FL_RAW_CALLBACK rcb )
{
FL_RAW_CALLBACK old_rcb = NULL;
int valid = 0;
if ( ! form )
{
M_err( "fl_register_raw_callback", "Null form" );
return NULL;
}
if ( ( mask & FL_ALL_EVENT ) == FL_ALL_EVENT )
{
old_rcb = form->all_callback;
form->evmask = mask;
form->all_callback = rcb;
return old_rcb;
}
if ( mask & ( KeyPressMask | KeyReleaseMask ) )
{
form->evmask |= mask & ( KeyPressMask | KeyReleaseMask );
old_rcb = form->key_callback;
form->key_callback = rcb;
valid = 1;
}
if ( mask & ( ButtonPressMask | ButtonReleaseMask ) )
{
form->evmask |= mask & ( ButtonPressMask | ButtonReleaseMask );
old_rcb = form->push_callback;
form->push_callback = rcb;
valid = 1;
}
if ( mask & ( EnterWindowMask | LeaveWindowMask ) )
{
form->evmask |= mask & ( EnterWindowMask | LeaveWindowMask );
old_rcb = form->crossing_callback;
form->crossing_callback = rcb;
valid = 1;
}
if ( mask & ( ButtonMotionMask | PointerMotionMask ) )
{
form->evmask |= mask & ( ButtonMotionMask | PointerMotionMask );
old_rcb = form->motion_callback;
form->motion_callback = rcb;
valid = 1;
}
if ( ! valid ) /* unsupported mask */
M_err( "fl_register_raw_callback", "Unsupported mask 0x%x", mask );
return old_rcb;
}
/***************************************
***************************************/
void
fl_set_form_event_cmask( FL_FORM * form,
unsigned long cmask )
{
if ( form )
form->compress_mask = cmask;
}
/***************************************
***************************************/
unsigned long
fl_get_form_event_cmask( FL_FORM * form )
{
return form ? form->compress_mask : 0UL;
}
/***************************************
* Sets the callback routine for the form
***************************************/
void
fl_set_form_callback( FL_FORM * form,
FL_FORMCALLBACKPTR callback,
void * d )
{
if ( ! form )
{
M_err( "fl_set_form_callback", "NULL form" );
return;
}
form->form_callback = callback;
form->form_cb_data = d;
}
/***************************************
***************************************/
void
fl_set_form_icon( FL_FORM * form,
Pixmap p,
Pixmap m )
{
if ( ! form )
return;
form->icon_pixmap = p;
form->icon_mask = m;
if ( form->window )
fl_winicon( form->window, p, m );
}
/***************************************
***************************************/
void
fl_set_app_mainform( FL_FORM * form )
{
fli_mainform = form;
set_form_property( form, FLI_COMMAND_PROP );
}
/***************************************
***************************************/
FL_FORM *
fl_get_app_mainform( void )
{
return nomainform ? NULL : fli_mainform;
}
/***************************************
***************************************/
void
fl_set_app_nomainform( int flag )
{
nomainform = flag;
}
/***************************************
* Does a rescale of a form without taking into
* account object gravity or resize settings
***************************************/
static void
simple_form_rescale( FL_FORM * form,
double scale )
{
FL_OBJECT *obj;
form->w_hr *= scale;
form->h_hr *= scale;
form->w = FL_crnd( form->w_hr );
form->h = FL_crnd( form->h_hr );
for ( obj = form->first; obj; obj = obj->next )
if ( obj->objclass != FL_BEGIN_GROUP && obj->objclass != FL_END_GROUP )
fli_scale_object( obj, scale, scale );
fli_recalc_intersections( form );
fl_redraw_form( form );
}
/***************************************
* Checks if the label of an object fits into it (after x- and
* y-margin have been added). If not, all objects and the form
* are enlarged by the necessary factor (but never by more than
* a factor of 1.5).
***************************************/
void
fl_fit_object_label( FL_OBJECT * obj,
FL_Coord xmargin,
FL_Coord ymargin )
{
int sw,
sh,
osize,
bw;
double factor,
xfactor,
yfactor;
if ( fli_no_connection )
return;
if ( fl_is_outside_lalign( obj->align )
|| obj->type == FL_BEGIN_GROUP
|| obj->type == FL_END_GROUP
|| obj->parent
|| ! obj->label
|| ! *obj->label
|| *obj->label == '@' )
return;
fl_get_string_dimension( obj->lstyle, obj->lsize, obj->label,
strlen( obj->label ), &sw, &sh );
bw = ( obj->boxtype == FL_UP_BOX
|| obj->boxtype == FL_DOWN_BOX
|| obj->boxtype == FL_EMBOSSED_BOX ) ?
FL_abs( obj->bw ) : 1;
if ( obj->boxtype == FL_EMBOSSED_BOX )
bw += bw > 2 ? bw - 2 : 1;
if ( obj->objclass == FL_BUTTON
&& ( obj->type == FL_RETURN_BUTTON
|| obj->type == FL_MENU_BUTTON ) )
sw += FL_min( 0.6 * obj->h, 0.6 * obj->w ) - 1;
if ( obj->objclass == FL_BUTTON && obj->type == FL_LIGHTBUTTON )
sw += FL_LIGHTBUTTON_MINSIZE + 1;
if ( sw <= obj->w - 2 * ( bw + xmargin )
&& sh <= obj->h - 2 * ( bw + ymargin ) )
return;
if ( ( osize = obj->w - 2 * ( bw + xmargin ) ) <= 0 )
osize = 1;
xfactor = ( double ) sw / osize;
if ( ( osize = obj->h - 2 * ( bw + ymargin ) ) <= 0 )
osize = 1;
yfactor = ( double ) sh / osize;
factor = FL_max( xfactor, yfactor );
factor = FL_clamp( factor, 1.0, 1.5 );
/* Scale all objects without taking care of gravity etc. */
if ( factor > 1.0 )
simple_form_rescale( obj->form, factor );
}
/***************************************
***************************************/
void
fli_recount_auto_objects( void )
{
int i;
for ( fli_int.auto_count = i = 0; i < fli_int.formnumb; i++ )
if ( fli_int.forms[ i ]->num_auto_objects > 0 )
fli_int.auto_count++;
}
/***************************************
* Reopens a group to allow addition of further objects
***************************************/
FL_OBJECT *
fl_addto_group( FL_OBJECT * group )
{
if ( ! group )
{
M_err( "fl_addto_group", "NULL group." );
return NULL;
}
if ( group->objclass != FL_BEGIN_GROUP )
{
M_err( "fl_addto_group", "Parameter is not a group object." );
return NULL;
}
if ( fl_current_form && fl_current_form != group->form )
{
M_err( "fl_addto_group",
"Can't switch to a group on a different form" );
return NULL;
}
if ( fli_current_group && fli_current_group != group )
{
M_err( "fl_addto_group", "You forgot to call fl_end_group" );
return NULL;
}
if ( fli_current_group )
M_warn( "fl_addto_group", "Group was never closed" );
reopened_group = fl_current_form ? 1 : 2;
fl_current_form = group->form;
return fli_current_group = group;
}
/***************************************
* Returns if a form is visible
***************************************/
int
fl_form_is_visible( FL_FORM * form )
{
if ( ! form )
{
M_warn( "fl_form_is_visible", "NULL form" );
return FL_INVISIBLE;
}
return form->window ? form->visible : FL_INVISIBLE;
}
/***************************************
* Similar to fit_object_label(), but will do it for all objects and
* has a smaller maximum magnification factor (1.25 instead of 1.5).
* Mainly intended for compensation for font size variations.
***************************************/
double
fl_adjust_form_size( FL_FORM * form )
{
FL_OBJECT * obj;
double xfactor,
yfactor,
max_factor,
factor;
int sw,
sh,
osize,
bw;
if ( fli_no_connection )
return 1.0;
max_factor = factor = 1.0;
for ( obj = form->first; obj; obj = obj->next )
{
if ( fl_is_outside_lalign( obj->align )
|| obj->type == FL_BEGIN_GROUP
|| obj->type == FL_END_GROUP
|| obj->parent
|| ! obj->label
|| ! *obj->label
|| *obj->label == '@' )
continue;
fl_get_string_dimension( obj->lstyle, obj->lsize, obj->label,
strlen( obj->label ), &sw, &sh );
bw = ( obj->boxtype == FL_UP_BOX
|| obj->boxtype == FL_DOWN_BOX
|| obj->boxtype == FL_EMBOSSED_BOX ) ?
FL_abs( obj->bw ) : 1;
if ( obj->boxtype == FL_EMBOSSED_BOX )
bw += bw > 2 ? bw - 2 : 1;
if ( obj->objclass == FL_BUTTON
&& ( obj->type == FL_RETURN_BUTTON
|| obj->type == FL_MENU_BUTTON ) )
sw += FL_min( 0.6 * obj->h, 0.6 * obj->w ) - 1;
if ( obj->objclass == FL_BUTTON && obj->type == FL_LIGHTBUTTON )
sw += FL_LIGHTBUTTON_MINSIZE + 1;
if ( sw <= obj->w - 2 * ( bw + 1 )
&& sh <= obj->h - 2 * ( bw + 1 ))
continue;
if ( ( osize = obj->w - 2 * ( bw + 1 ) ) <= 0 )
osize = 1;
xfactor = ( double ) sw / osize;
if ( ( osize = obj->h - 2 * ( bw + 1 ) ) <= 0 )
osize = 1;
yfactor = ( double ) sh / osize;
if ( ( factor = FL_max( xfactor, yfactor ) ) > max_factor )
max_factor = factor;
}
/* Don't scale down and don't scale up by more than a factor of 1.25 */
max_factor = FL_clamp( max_factor, 1.0, 1.25 );
/* Scale all objects without taking care of gravity etc. */
if ( max_factor > 1.0 )
simple_form_rescale( form, max_factor );
return max_factor;
}
/***************************************
***************************************/
void
fl_raise_form( FL_FORM * form )
{
if ( form && form->window )
XRaiseWindow( fl_display, form->window );
else
M_err( "fl_raise_form", "NULL form or form window not shown" );
}
/***************************************
***************************************/
void
fl_lower_form( FL_FORM * form )
{
if ( form && form->window )
XLowerWindow( fl_display, form->window );
else
M_err( "fl_lower_form", "NULL form or forn window not shown" );
}
/***************************************
* Returns the sizes of the "decorations" the window manager puts around
* a forms window. Returns 0 on success and 1 if the form isn't visible
* or it's a form embedded into another form.
* This tries to use the "_NET_FRAME_EXTENTS" atom which resonably recent
* window managers in principle should set. For those window managers that
* don't have that atom we try it with the old trick of searching up for
* the enclosing parent window and using the geometry of this window (but
* note: this doesn't work with window managers that don't reparent the
* windows they manage, and we can't recognize that).
***************************************/
int
fl_get_decoration_sizes( FL_FORM * form,
int * top,
int * right,
int * bottom,
int * left )
{
Atom a;
if ( ! form
|| ! form->window
|| form->visible != FL_VISIBLE
|| form->parent )
return 1;
/* If the window manager knows about the '_NET_FRAME_EXTENTS' atom ask
for the settings for the forms window, otherwise try by looking for
the size of the enclosing parent window */
if ( ( a = XInternAtom( fl_get_display( ), "_NET_FRAME_EXTENTS", True ) )
!= None )
get_decoration_sizes_from_wm( a, form, top, right, bottom, left );
else
get_decorations_sizes_from_parent( form, top, right, bottom, left );
return 0;
}
/***************************************
* Gets the decorations sizes via the _NET_FRAME_EXTENTS atom.
***************************************/
static
void
get_decoration_sizes_from_wm( Atom a,
FL_FORM * form,
int * top,
int * right,
int * bottom,
int * left )
{
Atom actual_type;
int actual_format;
unsigned long nitems;
unsigned long bytes_after;
static unsigned char *prop;
XGetWindowProperty( fl_get_display( ), form->window, a, 0,
4, False, XA_CARDINAL,
&actual_type, &actual_format, &nitems,
&bytes_after, &prop );
/* If no properties are returne the window probably has no decorations */
if ( actual_type == XA_CARDINAL
&& actual_format == 32
&& nitems == 4 )
{
*top = ( ( long * ) prop )[ 2 ];
*right = ( ( long * ) prop )[ 1 ];
*bottom = ( ( long * ) prop )[ 3 ];
*left = ( ( long * ) prop )[ 0 ];
}
else
*top = *right =*bottom = *left = 0;
}
/***************************************
* Tries to get the size of the decorations of a form the traditional
* way, asuming that the form window is the child of a parent window
* that encloses also the decoration windows (assuming that the window
* manager reparents the windows it manages, otherwise we'll report
* back zero sized decorations without any chance of figuring out that
* this is wrong;-(
***************************************/
static
void
get_decorations_sizes_from_parent( FL_FORM * form,
int * top,
int * right,
int * bottom,
int * left )
{
Window cur_win = form->window;
Window root;
Window parent;
Window *childs = NULL;
XWindowAttributes win_attr;
XWindowAttributes frame_attr;
Window wdummy;
unsigned int udummy;
/* Get the coordinates and size of the form's window */
XGetWindowAttributes( fl_get_display( ), cur_win, &win_attr );
/* Try to get its parent window */
XQueryTree( fl_get_display( ), cur_win, &root, &parent, &childs,
&udummy );
/* Childs aren't used, get rid of them */
if ( childs )
{
XFree( childs );
childs = NULL;
}
/* If there's no parent or the parent window is the root window
we've got to assume that there are no decorations */
if ( ! parent || parent == root )
{
*top = *right =*bottom = *left = 0;
return;
}
/* Now translate the form window's coordiates (that are relative to
its parent) to that relative to the root window and then find the
top-most parent that isn't the root window itself */
XTranslateCoordinates( fl_get_display( ), parent, root,
win_attr.x, win_attr.y,
&win_attr.x, &win_attr.y, &wdummy );
while ( parent && parent != root )
{
cur_win = parent;
XQueryTree( fl_get_display( ), cur_win, &root, &parent, &childs,
&udummy );
if ( childs )
{
XFree( childs );
childs = NULL;
}
}
/* Get the cordinates and sizes of the top-most window... */
XGetWindowAttributes( fl_get_display( ), cur_win, &frame_attr );
/* ...and finally calculate the decoration sizes */
*top = win_attr.y - frame_attr.y;
*left = win_attr.x - frame_attr.x;
*bottom = frame_attr.height - win_attr.height - *top;
*right = frame_attr.width - win_attr.width - *left;
}
/***************************************
* Returns if a form window is in iconified state
***************************************/
int
fl_form_is_iconified( FL_FORM * form )
{
XWindowAttributes xwa;
if ( ! form )
{
M_err( "fl_form_is_iconified", "NULL form" );
return 0;
}
if ( ! form->window || form->visible == FL_INVISIBLE )
return 0;
XGetWindowAttributes( fl_get_display( ), form->window, &xwa );
return xwa.map_state != IsViewable;
}
/*
* Local variables:
* tab-width: 4
* indent-tabs-mode: nil
* End:
*/
|