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 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730
|
/*
* $Id$
*/
#undef VTE_SEAL_ENABLE
#include <vte/vte.h>
#include <vte/reaper.h>
#include <pwd.h> /* getpwuid */
#include <X11/keysym.h>
#include <gdk/gdkx.h>
#include <kiklib/kik_sig_child.h>
#include <kiklib/kik_str.h> /* kik_alloca_dup */
#include <kiklib/kik_mem.h>
#include <kiklib/kik_path.h>
#include <kiklib/kik_debug.h>
#include <kiklib/kik_util.h> /* DIGIT_STR_LEN */
#include <kiklib/kik_privilege.h>
#include <kiklib/kik_unistd.h>
#include <kiklib/kik_locale.h>
#include <kiklib/kik_conf_io.h>
#include <kiklib/kik_pty.h> /* kik_pty_helper_set_flag */
#include <kiklib/kik_conf.h>
#include <ml_str_parser.h>
#include <ml_term_manager.h>
#include <x_screen.h>
#include <x_xic.h>
#include <x_main_config.h>
#include <x_imagelib.h>
#include <xlib/x_xim.h>
#include "../main/version.h"
#include "marshal.h"
#ifdef SYSCONFDIR
#define CONFIG_PATH SYSCONFDIR
#endif
#if 0
#define __DEBUG
#endif
#ifndef I_
#define I_(a) a
#endif
#if ! GTK_CHECK_VERSION(2,14,0)
#define gtk_adjustment_get_upper(adj) ((adj)->upper)
#define gtk_adjustment_get_value(adj) ((adj)->value)
#define gtk_adjustment_get_page_size(adj) ((adj)->page_size)
#define gtk_widget_get_window(widget) ((widget)->window)
#endif
#if ! GTK_CHECK_VERSION(2,18,0)
#define gtk_widget_set_window(widget,win) ((widget)->window = (win))
#define gtk_widget_set_allocation(widget,alloc) ((widget)->allocation = *(alloc))
#define gtk_widget_get_allocation(widget,alloc) (*(alloc) = (widget)->allocation)
#endif
#if GTK_CHECK_VERSION(2,90,0)
#define GTK_WIDGET_SET_REALIZED(widget) gtk_widget_set_realized(widget,TRUE)
#define GTK_WIDGET_UNSET_REALIZED(widget) gtk_widget_set_realized(widget,FALSE)
#define GTK_WIDGET_REALIZED(widget) gtk_widget_get_realized(widget)
#define GTK_WIDGET_SET_HAS_FOCUS(widget) (0)
#define GTK_WIDGET_UNSET_HAS_FOCUS(widget) (0)
#define GTK_WIDGET_UNSET_MAPPED(widget) gtk_widget_set_mapped(widget,FALSE)
#define GTK_WIDGET_MAPPED(widget) gtk_widget_get_mapped(widget)
#define GTK_WIDGET_SET_CAN_FOCUS(widget) gtk_widget_set_can_focus(widget,TRUE)
#define gdk_x11_drawable_get_xid(window) gdk_x11_window_get_xid(window)
#else /* GTK_CHECK_VERSION(2,90,0) */
#define GTK_WIDGET_SET_REALIZED(widget) GTK_WIDGET_SET_FLAGS(widget,GTK_REALIZED)
#define GTK_WIDGET_UNSET_REALIZED(widget) GTK_WIDGET_UNSET_FLAGS(widget,GTK_REALIZED)
#define GTK_WIDGET_SET_HAS_FOCUS(widget) GTK_WIDGET_SET_FLAGS(widget,GTK_HAS_FOCUS)
#define GTK_WIDGET_UNSET_HAS_FOCUS(widget) GTK_WIDGET_UNSET_FLAGS(widget,GTK_HAS_FOCUS)
#define GTK_WIDGET_UNSET_MAPPED(widget) GTK_WIDGET_UNSET_FLAGS(widget,GTK_MAPPED)
#define GTK_WIDGET_SET_CAN_FOCUS(widget) GTK_WIDGET_SET_FLAGS(widget,GTK_CAN_FOCUS)
#endif /* GTK_CHECK_VERSION(2,90,0) */
#define VTE_WIDGET(screen) ((VteTerminal*)(screen)->system_listener->self)
/* XXX Hack to distinguish x_screen_t from x_{candidate|status}_screent_t */
#define IS_MLTERM_SCREEN(win) (! PARENT_WINDOWID_IS_TOP(win))
#define WINDOW_MARGIN 1
#ifndef VTE_CHECK_VERSION
#define VTE_CHECK_VERSION(a,b,c) (0)
#endif
#define STATIC_PARAMS (G_PARAM_STATIC_NAME | G_PARAM_STATIC_NICK | G_PARAM_STATIC_BLURB)
struct _VteTerminalPrivate
{
/* Not NULL until finalized. screen->term is NULL until widget is realized. */
x_screen_t * screen ;
/*
* Not NULL until finalized. term->pty is NULL until pty is forked or
* inherited from parent.
*/
ml_term_t * term ;
#if VTE_CHECK_VERSION(0,26,0)
VtePty * pty ;
#endif
x_system_event_listener_t system_listener ;
void (*line_scrolled_out)( void *) ;
void (*set_window_name)( void * , u_char *) ;
void (*set_icon_name)( void * , u_char *) ;
x_screen_scroll_event_listener_t screen_scroll_listener ;
int8_t adj_value_changed_by_myself ;
/*
* Keep 'is_visible' value of vte_terminal_set_visible_bell() and
* 'is_audible' value of vte_terminal_set_audible_bell() to prepare for
* vte_terminal_set_audible_bell( FALSE ) and
* vte_terminal_set_visible_bell( FALSE ),
* because mlterm doesn't keep values of both visible and sound.
*/
int8_t audible_bell ;
int8_t visible_bell ;
GIOChannel * io ;
guint src_id ;
GdkPixbuf * image ; /* Original image which vte_terminal_set_background_image passed */
Pixmap pixmap ;
u_int pix_width ;
u_int pix_height ;
x_picture_modifier_t * pic_mod ; /* caching previous pic_mod in update_wall_picture.*/
/* GRegex was not supported */
#if GLIB_CHECK_VERSION(2,14,0)
GRegex * regex ;
#endif
} ;
enum
{
COPY_CLIPBOARD,
PASTE_CLIPBOARD,
LAST_SIGNAL
} ;
enum
{
PROP_0,
#if GTK_CHECK_VERSION(2,90,0)
PROP_HADJUSTMENT,
PROP_VADJUSTMENT,
PROP_HSCROLL_POLICY,
PROP_VSCROLL_POLICY,
#endif
PROP_ALLOW_BOLD,
PROP_AUDIBLE_BELL,
PROP_BACKGROUND_IMAGE_FILE,
PROP_BACKGROUND_IMAGE_PIXBUF,
PROP_BACKGROUND_OPACITY,
PROP_BACKGROUND_SATURATION,
PROP_BACKGROUND_TINT_COLOR,
PROP_BACKGROUND_TRANSPARENT,
PROP_BACKSPACE_BINDING,
PROP_CURSOR_BLINK_MODE,
PROP_CURSOR_SHAPE,
PROP_DELETE_BINDING,
PROP_EMULATION,
PROP_ENCODING,
PROP_FONT_DESC,
PROP_ICON_TITLE,
PROP_MOUSE_POINTER_AUTOHIDE,
PROP_PTY,
PROP_SCROLL_BACKGROUND,
PROP_SCROLLBACK_LINES,
PROP_SCROLL_ON_KEYSTROKE,
PROP_SCROLL_ON_OUTPUT,
PROP_WINDOW_TITLE,
PROP_WORD_CHARS,
PROP_VISIBLE_BELL
} ;
#if GTK_CHECK_VERSION(2,90,0)
struct _VteTerminalClassPrivate
{
GtkStyleProvider * style_provider ;
} ;
G_DEFINE_TYPE_WITH_CODE(VteTerminal , vte_terminal , GTK_TYPE_WIDGET ,
g_type_add_class_private(g_define_type_id , sizeof(VteTerminalClassPrivate)) ;
G_IMPLEMENT_INTERFACE(GTK_TYPE_SCROLLABLE, NULL))
#else
G_DEFINE_TYPE(VteTerminal , vte_terminal , GTK_TYPE_WIDGET) ;
#endif
/* --- static variables --- */
static x_main_config_t main_config ;
static x_color_config_t color_config ;
static x_shortcut_t shortcut ;
static x_termcap_t termcap ;
static x_display_t disp ;
#if VTE_CHECK_VERSION(0,19,0)
static guint signals[LAST_SIGNAL] ;
#endif
/* --- static functions --- */
#ifdef __DEBUG
static int
error_handler(
Display * display ,
XErrorEvent * event
)
{
char buffer[1024] ;
XGetErrorText( display , event->error_code , buffer , 1024) ;
kik_msg_printf( "%s\n" , buffer) ;
abort() ;
return 1 ;
}
#endif
static int
selection(
x_selection_t * sel ,
int char_index_1 ,
int row_1 ,
int char_index_2 ,
int row_2
)
{
x_sel_clear( sel) ;
x_start_selection( sel , char_index_1 - 1 , row_1 , char_index_1 , row_1) ;
x_selecting( sel , char_index_2 , row_2) ;
x_stop_selecting( sel) ;
return 1 ;
}
/* GRegex was not supported */
#if GLIB_CHECK_VERSION(2,14,0)
static int
match(
size_t * beg ,
size_t * len ,
void * regex ,
u_char * str ,
int backward
)
{
GMatchInfo * info ;
if( g_regex_match( regex , str , 0 , &info))
{
gchar * word ;
u_char * p ;
p = str ;
do
{
word = g_match_info_fetch( info , 0) ;
p = strstr( p , word) ;
*beg = p - str ;
*len = strlen( word) ;
g_free( word) ;
p += (*len) ;
}
while( g_match_info_next( info , NULL)) ;
g_match_info_free( info) ;
return 1 ;
}
return 0 ;
}
static gboolean
search_find(
VteTerminal * terminal ,
int backward
)
{
int beg_char_index ;
int beg_row ;
int end_char_index ;
int end_row ;
if( ! GTK_WIDGET_REALIZED(GTK_WIDGET(terminal)))
{
return FALSE ;
}
if( ml_term_search_find( terminal->pvt->term , &beg_char_index , &beg_row ,
&end_char_index , &end_row , terminal->pvt->regex , backward))
{
gdouble value ;
selection( &terminal->pvt->screen->sel ,
beg_char_index , beg_row , end_char_index , end_row) ;
value = ml_term_get_num_of_logged_lines( terminal->pvt->term) +
(beg_row >= 0 ? 0 : beg_row) ;
#if GTK_CHECK_VERSION(2,14,0)
gtk_adjustment_set_value( terminal->adjustment , value) ;
#else
terminal->adjustment->value = value ;
gtk_adjustment_value_changed( terminal->adjustment) ;
#endif
/*
* XXX
* Dirty hack, but without this, selection() above is not reflected to window
* if aother word is hit in the same line. (If row is not changed,
* gtk_adjustment_set_value() doesn't call x_screen_scroll_to().)
*/
x_window_update( &terminal->pvt->screen->window , 1 /* UPDATE_SCREEN */) ;
return TRUE ;
}
else
{
return FALSE ;
}
}
#endif
#if ! GTK_CHECK_VERSION(2,12,0)
/* gdk_color_to_string() was not supported by gtk+ < 2.12. */
static gchar *
gdk_color_to_string(
const GdkColor * color
)
{
gchar * str ;
if( ( str = g_malloc( 14)) == NULL)
{
return NULL ;
}
sprintf( str , "#%04x%04x%04x" , color->red , color->green , color->blue) ;
return str ;
}
#endif
static int
is_initial_allocation(
GtkAllocation * allocation
)
{
/* { -1 , -1 , 1 , 1 } is default value of GtkAllocation. */
return (allocation->x == -1 && allocation->y == -1 &&
allocation->width == 1 && allocation->height == 1) ;
}
static void
catch_child_exited(
VteReaper * reaper ,
int pid ,
int status ,
VteTerminal * terminal
)
{
kik_trigger_sig_child( pid) ;
}
/*
* This handler works even if VteTerminal widget is not realized and ml_term_t is not
* attached to x_screen_t.
* That's why the time x_screen_attach is called is delayed(in vte_terminal_fork* or
* vte_terminal_realized).
*/
static gboolean
vte_terminal_io(
GIOChannel * source ,
GIOCondition conditon ,
gpointer data /* ml_term_t */
)
{
ml_term_parse_vt100_sequence( (ml_term_t*)data) ;
ml_close_dead_terms() ;
return TRUE ;
}
static void
create_io(
VteTerminal * terminal
)
{
#ifdef DEBUG
kik_debug_printf( KIK_DEBUG_TAG " Create GIO of pty master %d\n" ,
ml_term_get_master_fd( terminal->pvt->term)) ;
#endif
terminal->pvt->io = g_io_channel_unix_new( ml_term_get_master_fd( terminal->pvt->term)) ;
terminal->pvt->src_id = g_io_add_watch( terminal->pvt->io ,
G_IO_IN , vte_terminal_io , terminal->pvt->term) ;
}
static void
destroy_io(
VteTerminal * terminal
)
{
if( terminal->pvt->io)
{
#ifdef DEBUG
kik_debug_printf( KIK_DEBUG_TAG " Destroy GIO of pty master %d\n" ,
ml_term_get_master_fd( terminal->pvt->term)) ;
#endif
g_source_destroy(
g_main_context_find_source_by_id( NULL , terminal->pvt->src_id)) ;
#if 0
g_io_channel_shutdown( terminal->pvt->io , TRUE , NULL) ;
#endif
g_io_channel_unref( terminal->pvt->io) ;
terminal->pvt->src_id = 0 ;
terminal->pvt->io = NULL ;
}
}
/*
* ml_pty_event_listener_t overriding handler.
*/
static void
pty_closed(
void * p /* screen->term->pty is NULL */
)
{
x_screen_t * screen ;
ml_term_t * term ;
screen = p ;
destroy_io( VTE_WIDGET(screen)) ;
if( ( term = ml_get_detached_term( NULL)))
{
VTE_WIDGET(screen)->pvt->term = term ;
create_io( VTE_WIDGET(screen)) ;
/*
* Not screen->term but screen->term->pty is being deleted in ml_close_dead_terms()
* because of ml_term_manager_enable_zombie_pty(1) in vte_terminal_class_init().
*/
term = screen->term ;
x_screen_detach( screen) ;
ml_term_delete( term) ;
/* It is after widget is realized that x_screen_attach can be called. */
if( GTK_WIDGET_REALIZED(GTK_WIDGET(VTE_WIDGET(screen))))
{
x_screen_attach( screen , VTE_WIDGET(screen)->pvt->term) ;
#ifdef DEBUG
kik_debug_printf( KIK_DEBUG_TAG
" pty is closed and detached pty is re-attached.\n") ;
#endif
}
}
else
{
g_signal_emit_by_name( VTE_WIDGET(screen) , "child-exited") ;
#ifdef DEBUG
kik_debug_printf( KIK_DEBUG_TAG " pty is closed\n") ;
#endif
}
}
/*
* x_system_event_listener_t handlers
*/
static void
font_config_updated(void)
{
u_int count ;
x_font_cache_unload_all() ;
for( count = 0 ; count < disp.num_of_roots ; count++)
{
if( IS_MLTERM_SCREEN(disp.roots[count]))
{
x_screen_reset_view( (x_screen_t*)disp.roots[count]) ;
}
}
}
static void
color_config_updated(void)
{
u_int count ;
x_color_cache_unload_all() ;
for( count = 0 ; count < disp.num_of_roots ; count++)
{
if( IS_MLTERM_SCREEN(disp.roots[count]))
{
x_screen_reset_view( (x_screen_t*)disp.roots[count]) ;
}
}
}
static void
open_pty(
void * p ,
x_screen_t * screen ,
char * dev
)
{
if( dev)
{
ml_term_t * new ;
if( ( new = ml_get_detached_term( dev)))
{
destroy_io( VTE_WIDGET(screen)) ;
VTE_WIDGET(screen)->pvt->term = new ;
create_io( VTE_WIDGET(screen)) ;
x_screen_detach( screen) ;
/* It is after widget is reailzed that x_screen_attach can be called. */
if( GTK_WIDGET_REALIZED(GTK_WIDGET(VTE_WIDGET(screen))))
{
x_screen_attach( screen , new) ;
}
}
}
}
static char *
pty_list(
void * p
)
{
return ml_get_pty_list() ;
}
/*
* EXIT_PROGRAM shortcut calls this at last.
* this is for debugging.
*/
#ifdef KIK_DEBUG
#include <kiklib/kik_locale.h> /* kik_locale_final */
#endif
static void
__exit(
void * p ,
int status
)
{
#ifdef KIK_DEBUG
u_int count ;
#if 1
kik_mem_dump_all() ;
#endif
ml_free_word_separators() ;
/*
* Don't loop from 0 to dis.num_of_roots owing to processing inside x_display_remove_root.
*/
for( count = disp.num_of_roots ; count > 0 ; count--)
{
if( IS_MLTERM_SCREEN( disp.roots[count - 1]))
{
gtk_widget_destroy(
GTK_WIDGET( VTE_WIDGET((x_screen_t*)disp.roots[count - 1]))) ;
}
else
{
x_display_remove_root( &disp , disp.roots[count - 1]) ;
}
}
free( disp.roots) ;
x_gc_delete( disp.gc) ;
x_xim_display_closed( disp.display) ;
x_picture_display_closed( disp.display) ;
ml_term_manager_final() ;
kik_locale_final() ;
x_main_config_final( &main_config) ;
x_color_config_final( &color_config) ;
x_shortcut_final( &shortcut) ;
x_termcap_final( &termcap) ;
x_xim_final() ;
kik_sig_child_final() ;
kik_alloca_garbage_collect() ;
kik_msg_printf( "reporting unfreed memories --->\n") ;
kik_mem_free_all() ;
#endif
#if 1
exit(1) ;
#else
gtk_main_quit() ;
#endif
}
/*
* ml_xterm_event_listener_t (overriding) handlers
*/
static void
set_window_name(
void * p ,
u_char * name
)
{
x_screen_t * screen ;
screen = p ;
ml_term_set_window_name( screen->term , name) ;
VTE_WIDGET(screen)->window_title = ml_term_window_name( screen->term) ;
gdk_window_set_title( gtk_widget_get_window( GTK_WIDGET(VTE_WIDGET(screen))) ,
VTE_WIDGET(screen)->window_title) ;
g_signal_emit_by_name( VTE_WIDGET(screen) , "window-title-changed") ;
#if VTE_CHECK_VERSION(0,20,0)
g_object_notify( G_OBJECT(VTE_WIDGET(screen)) , "window-title") ;
#endif
}
static void
set_icon_name(
void * p ,
u_char * name
)
{
x_screen_t * screen ;
screen = p ;
ml_term_set_icon_name( screen->term , name) ;
VTE_WIDGET(screen)->icon_title = ml_term_icon_name( screen->term) ;
gdk_window_set_icon_name( gtk_widget_get_window(GTK_WIDGET(VTE_WIDGET(screen))) ,
VTE_WIDGET(screen)->icon_title) ;
g_signal_emit_by_name( VTE_WIDGET(screen) , "icon-title-changed") ;
#if VTE_CHECK_VERSION(0,20,0)
g_object_notify( G_OBJECT(VTE_WIDGET(screen)) , "icon-title") ;
#endif
}
/*
* ml_screen_event_listener_t (overriding) handler
*/
static void
line_scrolled_out(
void * p /* must be x_screen_t */
)
{
x_screen_t * screen ;
gdouble upper ;
gdouble value ;
screen = p ;
VTE_WIDGET(screen)->pvt->line_scrolled_out( p) ;
/*
* line_scrolled_out is called in vt100 mode
* (after ml_xterm_event_listener_t::start_vt100 event), so
* don't call x_screen_scroll_to() in adjustment_value_changed()
* in this context.
*/
VTE_WIDGET(screen)->pvt->adj_value_changed_by_myself = 1 ;
value = gtk_adjustment_get_value( VTE_WIDGET(screen)->adjustment) ;
if( ( upper = gtk_adjustment_get_upper( VTE_WIDGET(screen)->adjustment))
< ml_term_get_log_size( VTE_WIDGET(screen)->pvt->term) + VTE_WIDGET(screen)->row_count)
{
#if GTK_CHECK_VERSION(2,14,0)
gtk_adjustment_set_upper( VTE_WIDGET(screen)->adjustment , upper + 1) ;
#else
VTE_WIDGET(screen)->adjustment->upper ++ ;
gtk_adjustment_changed( VTE_WIDGET(screen)->adjustment) ;
#endif
if( ml_term_is_backscrolling( VTE_WIDGET(screen)->pvt->term) != BSM_STATIC)
{
#if GTK_CHECK_VERSION(2,14,0)
gtk_adjustment_set_value( VTE_WIDGET(screen)->adjustment , value + 1) ;
#else
VTE_WIDGET(screen)->adjustment->value ++ ;
gtk_adjustment_value_changed( VTE_WIDGET(screen)->adjustment) ;
#endif
}
}
else if( ml_term_is_backscrolling( VTE_WIDGET(screen)->pvt->term) == BSM_STATIC &&
value > 0)
{
#if GTK_CHECK_VERSION(2,14,0)
gtk_adjustment_set_value( VTE_WIDGET(screen)->adjustment , value - 1) ;
#else
VTE_WIDGET(screen)->adjustment->value -- ;
gtk_adjustment_value_changed( VTE_WIDGET(screen)->adjustment) ;
#endif
}
#ifdef __DEBUG
kik_debug_printf( KIK_DEBUG_TAG " line_scrolled_out upper %f value %f\n" ,
gtk_adjustment_get_upper( VTE_WIDGET(screen)->adjustment) ,
gtk_adjustment_get_value( VTE_WIDGET(screen)->adjustment)) ;
#endif
}
/*
* x_screen_scroll_event_listener_t handlers
*/
static void
bs_mode_exited(
void * p
)
{
VteTerminal * terminal ;
int upper ;
int page_size ;
terminal = p ;
terminal->pvt->adj_value_changed_by_myself = 1 ;
upper = gtk_adjustment_get_upper( terminal->adjustment) ;
page_size = gtk_adjustment_get_page_size( terminal->adjustment) ;
#if GTK_CHECK_VERSION(2,14,0)
gtk_adjustment_set_value( terminal->adjustment , upper - page_size) ;
#else
terminal->adjustment->value = upper - page_size ;
gtk_adjustment_value_changed( terminal->adjustment) ;
#endif
#ifdef __DEBUG
kik_debug_printf( KIK_DEBUG_TAG " bs_mode_exited upper %d page_size %d\n" ,
upper , page_size) ;
#endif
}
static void
scrolled_upward(
void * p ,
u_int size
)
{
VteTerminal * terminal ;
int value ;
int upper ;
int page_size ;
terminal = p ;
value = gtk_adjustment_get_value( terminal->adjustment) ;
upper = gtk_adjustment_get_upper( terminal->adjustment) ;
page_size = gtk_adjustment_get_page_size( terminal->adjustment) ;
if( value + page_size >= upper)
{
return ;
}
if( value + page_size + size > upper)
{
size = upper - value - page_size ;
}
terminal->pvt->adj_value_changed_by_myself = 1 ;
#if GTK_CHECK_VERSION(2,14,0)
gtk_adjustment_set_value( terminal->adjustment , value + size) ;
#else
terminal->adjustment->value += size ;
gtk_adjustment_value_changed( terminal->adjustment) ;
#endif
}
static void
scrolled_downward(
void * p ,
u_int size
)
{
VteTerminal * terminal ;
int value ;
terminal = p ;
if( ( value = gtk_adjustment_get_value( terminal->adjustment)) == 0)
{
return ;
}
if( value < size)
{
value = size ;
}
terminal->pvt->adj_value_changed_by_myself = 1 ;
#if GTK_CHECK_VERSION(2,14,0)
gtk_adjustment_set_value( terminal->adjustment , value - size) ;
#else
terminal->adjustment->value -= size ;
gtk_adjustment_value_changed( terminal->adjustment) ;
#endif
}
static void
log_size_changed(
void * p ,
u_int log_size
)
{
VteTerminal * terminal ;
terminal = p ;
#if GTK_CHECK_VERSION(2,14,0)
gtk_adjustment_set_upper( terminal->adjustment , log_size) ;
#else
terminal->adjustment->upper = log_size ;
gtk_adjustment_changed( terminal->adjustment) ;
#endif
}
static void
adjustment_value_changed(
VteTerminal * terminal
)
{
int value ;
int upper ;
int page_size ;
if( terminal->pvt->adj_value_changed_by_myself)
{
terminal->pvt->adj_value_changed_by_myself = 0 ;
return ;
}
value = gtk_adjustment_get_value( terminal->adjustment) ;
upper = gtk_adjustment_get_upper( terminal->adjustment) ;
page_size = gtk_adjustment_get_page_size( terminal->adjustment) ;
#ifdef __DEBUG
kik_debug_printf( KIK_DEBUG_TAG " scroll to %d\n" , value - (upper - page_size)) ;
#endif
x_screen_scroll_to( terminal->pvt->screen , value - (upper - page_size)) ;
}
static void
set_adjustment(
VteTerminal * terminal ,
GtkAdjustment * adjustment
)
{
if( adjustment == terminal->adjustment || adjustment == NULL)
{
return ;
}
if( terminal->adjustment)
{
g_signal_handlers_disconnect_by_func( terminal->adjustment ,
G_CALLBACK(adjustment_value_changed) , terminal) ;
g_object_unref( terminal->adjustment) ;
}
g_object_ref_sink( adjustment) ;
terminal->adjustment = adjustment ;
g_signal_connect_swapped( terminal->adjustment , "value-changed" ,
G_CALLBACK(adjustment_value_changed) , terminal) ;
terminal->pvt->adj_value_changed_by_myself = 0 ;
}
static void
reset_vte_size_member(
VteTerminal * terminal
)
{
int emit ;
emit = 0 ;
if( terminal->char_width != 0 &&
terminal->char_width != x_col_width( terminal->pvt->screen))
{
emit = 1 ;
}
terminal->char_width = x_col_width( terminal->pvt->screen) ;
if( terminal->char_height != 0 &&
terminal->char_height != x_line_height( terminal->pvt->screen))
{
emit = 1 ;
}
terminal->char_height = x_line_height( terminal->pvt->screen) ;
if( emit)
{
g_signal_emit_by_name( terminal , "char-size-changed" ,
terminal->char_width , terminal->char_height) ;
}
terminal->char_ascent = x_line_ascent( terminal->pvt->screen) ;
terminal->char_descent = terminal->char_height - terminal->char_ascent ;
emit = 0 ;
if( /* If row_count == 0, reset_vte_size_member is called from vte_terminal_init */
terminal->row_count != 0 &&
terminal->row_count != ml_term_get_rows( terminal->pvt->term))
{
emit = 1 ;
}
terminal->row_count = ml_term_get_rows( terminal->pvt->term) ;
terminal->column_count = ml_term_get_cols( terminal->pvt->term) ;
if( emit)
{
#if GTK_CHECK_VERSION(2,14,0)
int value ;
value = ml_term_get_num_of_logged_lines( terminal->pvt->term) ;
gtk_adjustment_configure( terminal->adjustment ,
value /* value */ , 0 /* lower */ ,
value + terminal->row_count /* upper */ ,
1 /* step increment */ , terminal->row_count /* page increment */ ,
terminal->row_count /* page size */) ;
#else
terminal->adjustment->value =
ml_term_get_num_of_logged_lines( terminal->pvt->term) ;
terminal->adjustment->upper = terminal->adjustment->value + terminal->row_count ;
terminal->adjustment->page_increment = terminal->row_count ;
terminal->adjustment->page_size = terminal->row_count ;
gtk_adjustment_changed( terminal->adjustment) ;
gtk_adjustment_value_changed( terminal->adjustment) ;
#endif
}
#if ! GTK_CHECK_VERSION(2,90,0)
/*
* XXX
* Vertical writing mode and screen_(width|height)_ratio option are not supported.
*
* Processing similar to vte_terminal_get_preferred_{width|height}().
*/
GTK_WIDGET(terminal)->requisition.width =
terminal->column_count * terminal->char_width + WINDOW_MARGIN * 2 ;
GTK_WIDGET(terminal)->requisition.height =
terminal->row_count * terminal->char_height + WINDOW_MARGIN * 2 ;
#ifdef __DEBUG
kik_debug_printf( KIK_DEBUG_TAG
" char_width %d char_height %d row_count %d column_count %d width %d height %d\n" ,
terminal->char_width , terminal->char_height ,
terminal->row_count , terminal->column_count ,
GTK_WIDGET(terminal)->requisition.width ,
GTK_WIDGET(terminal)->requisition.height) ;
#endif
#endif /* ! GTK_CHECK_VERSION(2,90,0) */
#if defined(__DEBUG) && VTE_CHECK_VERSION(0,23,2)
{
GtkBorder * border = NULL ;
gtk_widget_style_get( GTK_WIDGET(terminal) , "inner-border" , &border , NULL) ;
if( border)
{
kik_debug_printf( " inner-border is { %d, %d, %d, %d }\n",
border->left, border->right, border->top, border->bottom) ;
gtk_border_free(border) ;
}
else
{
kik_debug_printf( " inner-border is not found.\n") ;
}
}
#endif
}
static gboolean
toplevel_configure(
gpointer data
)
{
VteTerminal * terminal ;
terminal = data ;
if( terminal->pvt->screen->window.is_transparent)
{
XEvent ev ;
if( ! XCheckTypedWindowEvent( disp.display ,
gdk_x11_drawable_get_xid( gtk_widget_get_window(
gtk_widget_get_toplevel( GTK_WIDGET(terminal)))) ,
ConfigureNotify , &ev))
{
x_window_set_transparent( &terminal->pvt->screen->window ,
x_screen_get_picture_modifier( terminal->pvt->screen)) ;
}
else
{
XPutBackEvent( disp.display , &ev) ;
}
}
return FALSE ;
}
static void
vte_terminal_hierarchy_changed(
GtkWidget * widget ,
GtkWidget * old_toplevel ,
gpointer data
)
{
if( old_toplevel)
{
g_signal_handlers_disconnect_by_func( old_toplevel , toplevel_configure ,
widget) ;
}
g_signal_connect_swapped( gtk_widget_get_toplevel( widget) , "configure-event" ,
G_CALLBACK(toplevel_configure) , VTE_TERMINAL(widget)) ;
}
static gboolean
vte_terminal_timeout(
gpointer data
)
{
ml_close_dead_terms() ;
return TRUE ;
}
static void vte_terminal_size_allocate( GtkWidget * widget , GtkAllocation * allocation) ;
/*
* Don't call ml_close_dead_terms() before returning GDK_FILTER_CONTINUE,
* because ml_close_dead_terms() will destroy widget in pty_closed and
* destroyed widget can be touched right after this function.
*/
static GdkFilterReturn
vte_terminal_filter(
GdkXEvent * xevent ,
GdkEvent * event , /* GDK_NOTHING */
gpointer data
)
{
u_int count ;
int is_key_event ;
if( XFilterEvent( (XEvent*)xevent , None))
{
return GDK_FILTER_REMOVE ;
}
if( ( ((XEvent*)xevent)->type == KeyPress ||
((XEvent*)xevent)->type == KeyRelease) )
{
is_key_event = 1 ;
}
else
{
is_key_event = 0 ;
}
for( count = 0 ; count < disp.num_of_roots ; count++)
{
VteTerminal * terminal ;
if( IS_MLTERM_SCREEN(disp.roots[count]))
{
terminal = VTE_WIDGET((x_screen_t*)disp.roots[count]) ;
if( ! terminal->pvt->term)
{
/* pty is already closed and new pty is not attached yet. */
continue ;
}
/*
* Key events are ignored if window isn't focused.
* This processing is added for key binding of popup menu.
*/
if( is_key_event &&
((XEvent*)xevent)->xany.window == disp.roots[count]->my_window)
{
ml_term_search_reset_position( terminal->pvt->term) ;
if( ! disp.roots[count]->is_focused)
{
((XEvent*)xevent)->xany.window =
gdk_x11_drawable_get_xid(
gtk_widget_get_window(
GTK_WIDGET(terminal))) ;
return GDK_FILTER_CONTINUE ;
}
}
if( terminal->pvt->screen->window.is_transparent &&
((XEvent*)xevent)->type == ConfigureNotify &&
((XEvent*)xevent)->xconfigure.event ==
gdk_x11_drawable_get_xid(
gtk_widget_get_window( GTK_WIDGET(terminal))))
{
/*
* If terminal position is changed by adding menu bar or tab,
* transparent background is reset.
*/
gint x ;
gint y ;
gdk_window_get_position(
gtk_widget_get_window( GTK_WIDGET(terminal)) , &x , &y) ;
/*
* XXX
* I don't know why but the height of menu bar has been already
* added to the position of terminal before first
* GdkConfigureEvent whose x and y is 0 is received.
* But (x != xconfigure.x || y != xconfigure.y) is true eventually
* and x_window_set_transparent() is called expectedly.
*/
if( x != ((XEvent*)xevent)->xconfigure.x ||
y != ((XEvent*)xevent)->xconfigure.y)
{
x_window_set_transparent( &terminal->pvt->screen->window ,
x_screen_get_picture_modifier(
terminal->pvt->screen)) ;
}
return GDK_FILTER_CONTINUE ;
}
}
else
{
terminal = NULL ;
}
if( x_window_receive_event( disp.roots[count] , (XEvent*)xevent))
{
static pid_t config_menu_pid = 0 ;
if( ! terminal || /* SCIM etc window */
/* XFilterEvent in x_window_receive_event. */
((XEvent*)xevent)->xany.window != disp.roots[count]->my_window)
{
return GDK_FILTER_REMOVE ;
}
/* XXX Hack for waiting for config menu program exiting. */
if( config_menu_pid != terminal->pvt->term->config_menu.pid)
{
if( ( config_menu_pid = terminal->pvt->term->config_menu.pid))
{
vte_reaper_add_child( config_menu_pid) ;
}
}
if( is_key_event ||
((XEvent*)xevent)->type == ButtonPress ||
((XEvent*)xevent)->type == ButtonRelease)
{
/* Hook key and button events for popup menu. */
((XEvent*)xevent)->xany.window =
gdk_x11_drawable_get_xid(
gtk_widget_get_window( GTK_WIDGET(terminal))) ;
return GDK_FILTER_CONTINUE ;
}
else
{
return GDK_FILTER_REMOVE ;
}
}
/*
* xconfigure.window: window whose size, position, border, and/or stacking
* order was changed.
* => processed in following.
* xconfigure.event: reconfigured window or to its parent.
* (=XAnyEvent.window) => processed in x_window_receive_event()
*/
else if( /* terminal && */ ((XEvent*)xevent)->type == ConfigureNotify &&
((XEvent*)xevent)->xconfigure.window == disp.roots[count]->my_window)
{
#if 0
/*
* This check causes resize problem in opening tab in
* gnome-terminal(2.29.6).
*/
if( ((XEvent*)xevent)->xconfigure.width !=
GTK_WIDGET(terminal)->allocation.width ||
((XEvent*)xevent)->xconfigure.height !=
GTK_WIDGET(terminal)->allocation.height)
#else
if( terminal->char_width != x_col_width( terminal->pvt->screen) ||
terminal->char_height != x_line_height( terminal->pvt->screen))
#endif
{
/* Window was changed due to change of font size inside mlterm. */
GtkAllocation alloc ;
gtk_widget_get_allocation( GTK_WIDGET(terminal) , &alloc) ;
alloc.width = ((XEvent*)xevent)->xconfigure.width ;
alloc.height = ((XEvent*)xevent)->xconfigure.height ;
#ifdef __DEBUG
kik_debug_printf( KIK_DEBUG_TAG " child is resized\n") ;
#endif
vte_terminal_size_allocate( GTK_WIDGET(terminal) , &alloc) ;
}
return GDK_FILTER_REMOVE ;
}
}
return GDK_FILTER_CONTINUE ;
}
static void
vte_terminal_finalize(
GObject * obj
)
{
VteTerminal * terminal ;
GtkSettings * settings ;
#ifdef DEBUG
kik_debug_printf( KIK_DEBUG_TAG " vte terminal finalized.\n") ;
#endif
terminal = VTE_TERMINAL(obj) ;
#if VTE_CHECK_VERSION(0,26,0)
if( terminal->pvt->pty)
{
g_object_unref( terminal->pvt->pty) ;
}
#endif
x_font_manager_delete( terminal->pvt->screen->font_man) ;
x_color_manager_delete( terminal->pvt->screen->color_man) ;
if( terminal->pvt->image)
{
g_object_unref( terminal->pvt->image) ;
terminal->pvt->image = NULL ;
}
if( terminal->pvt->pixmap)
{
XFreePixmap( disp.display , terminal->pvt->pixmap) ;
terminal->pvt->pixmap = None ;
}
free( terminal->pvt->pic_mod) ;
x_window_final( &terminal->pvt->screen->window) ;
terminal->pvt->screen = NULL ;
if( terminal->adjustment)
{
g_object_unref( terminal->adjustment) ;
}
settings = gtk_widget_get_settings( GTK_WIDGET(obj)) ;
g_signal_handlers_disconnect_matched( settings , G_SIGNAL_MATCH_DATA ,
0 , 0 , NULL , NULL , terminal) ;
G_OBJECT_CLASS(vte_terminal_parent_class)->finalize(obj) ;
#ifdef __DEBUG
kik_debug_printf( KIK_DEBUG_TAG " vte_terminal_finalize\n") ;
#endif
}
static void
vte_terminal_get_property(
GObject * obj ,
guint prop_id ,
GValue * value ,
GParamSpec * pspec
)
{
VteTerminal * terminal ;
terminal = VTE_TERMINAL(obj) ;
switch( prop_id)
{
#if GTK_CHECK_VERSION(2,90,0)
case PROP_VADJUSTMENT:
g_value_set_object( value , terminal->adjustment) ;
break ;
#endif
case PROP_ICON_TITLE:
g_value_set_string( value , vte_terminal_get_icon_title( terminal)) ;
break ;
case PROP_WINDOW_TITLE:
g_value_set_string( value , vte_terminal_get_window_title( terminal)) ;
break ;
#if 0
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID( obj , prop_id , pspec) ;
#endif
}
}
static void
vte_terminal_set_property(
GObject * obj ,
guint prop_id ,
GValue * value ,
GParamSpec * pspec
)
{
VteTerminal * terminal ;
terminal = VTE_TERMINAL(obj) ;
switch( prop_id)
{
#if GTK_CHECK_VERSION(2,90,0)
case PROP_VADJUSTMENT:
set_adjustment( terminal , g_value_get_object(value)) ;
break ;
#endif
#if 0
case PROP_ICON_TITLE:
set_icon_name( terminal->pvt->screen , g_value_get_string(value)) ;
break ;
case PROP_WINDOW_TITLE:
set_window_name( terminal->pvt->screen , g_value_get_string(value)) ;
break ;
#endif
#if 0
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID( obj , prop_id , pspec) ;
#endif
}
}
static void
init_screen(
VteTerminal * terminal ,
x_font_manager_t * font_man ,
x_color_manager_t * color_man
)
{
/*
* XXX
* terminal->pvt->term is specified to x_screen_new in order to set
* x_window_t::width and height property, but screen->term is NULL
* until widget is realized.
*/
terminal->pvt->screen = x_screen_new( terminal->pvt->term , font_man , color_man ,
x_termcap_get_entry( &termcap , main_config.term_type) ,
main_config.brightness , main_config.contrast , main_config.gamma ,
main_config.alpha , main_config.fade_ratio , &shortcut ,
main_config.screen_width_ratio , main_config.screen_height_ratio ,
main_config.mod_meta_key ,
main_config.mod_meta_mode , main_config.bel_mode ,
main_config.receive_string_via_ucs , main_config.pic_file_path ,
main_config.use_transbg , main_config.use_vertical_cursor ,
main_config.big5_buggy , main_config.conf_menu_path_1 ,
main_config.conf_menu_path_2 , main_config.conf_menu_path_3 ,
main_config.use_extended_scroll_shortcut ,
main_config.borderless , main_config.line_space ,
main_config.input_method , main_config.allow_osc52 ,
main_config.blink_cursor , WINDOW_MARGIN , main_config.hide_underline) ;
if( terminal->pvt->term)
{
ml_term_detach( terminal->pvt->term) ;
terminal->pvt->screen->term = NULL ;
}
else
{
/*
* terminal->pvt->term can be NULL if this function is called from
* vte_terminal_unrealize.
*/
}
memset( &terminal->pvt->system_listener , 0 , sizeof(x_system_event_listener_t)) ;
terminal->pvt->system_listener.self = terminal ;
terminal->pvt->system_listener.font_config_updated = font_config_updated ;
terminal->pvt->system_listener.color_config_updated = color_config_updated ;
terminal->pvt->system_listener.open_pty = open_pty ;
terminal->pvt->system_listener.pty_list = pty_list ;
terminal->pvt->system_listener.exit = __exit ;
x_set_system_listener( terminal->pvt->screen , &terminal->pvt->system_listener) ;
memset( &terminal->pvt->screen_scroll_listener , 0 ,
sizeof(x_screen_scroll_event_listener_t)) ;
terminal->pvt->screen_scroll_listener.self = terminal ;
terminal->pvt->screen_scroll_listener.bs_mode_exited = bs_mode_exited ;
terminal->pvt->screen_scroll_listener.scrolled_upward = scrolled_upward ;
terminal->pvt->screen_scroll_listener.scrolled_downward = scrolled_downward ;
terminal->pvt->screen_scroll_listener.log_size_changed = log_size_changed ;
x_set_screen_scroll_listener( terminal->pvt->screen ,
&terminal->pvt->screen_scroll_listener) ;
terminal->pvt->line_scrolled_out =
terminal->pvt->screen->screen_listener.line_scrolled_out ;
terminal->pvt->screen->screen_listener.line_scrolled_out = line_scrolled_out ;
terminal->pvt->set_window_name =
terminal->pvt->screen->xterm_listener.set_window_name ;
terminal->pvt->screen->xterm_listener.set_window_name = set_window_name ;
terminal->pvt->set_icon_name =
terminal->pvt->screen->xterm_listener.set_icon_name ;
terminal->pvt->screen->xterm_listener.set_icon_name = set_icon_name ;
/* overriding */
terminal->pvt->screen->pty_listener.closed = pty_closed ;
}
static void
update_wall_picture(
VteTerminal * terminal
)
{
x_window_t * win ;
x_picture_modifier_t * pic_mod ;
GdkPixbuf * image ;
char file[7 + DIGIT_STR_LEN(terminal->pvt->pixmap) + 1] ;
if( ! terminal->pvt->image)
{
goto set_bg_alpha ;
}
win = &terminal->pvt->screen->window ;
pic_mod = x_screen_get_picture_modifier( terminal->pvt->screen) ;
if( terminal->pvt->pix_width == ACTUAL_WIDTH(win) &&
terminal->pvt->pix_height == ACTUAL_WIDTH(win) &&
x_picture_modifiers_equal( pic_mod , terminal->pvt->pic_mod) &&
terminal->pvt->pixmap )
{
goto set_bg_image ;
}
else if( gdk_pixbuf_get_width(terminal->pvt->image) != ACTUAL_WIDTH(win) ||
gdk_pixbuf_get_height(terminal->pvt->image) != ACTUAL_HEIGHT(win) )
{
#ifdef DEBUG
kik_debug_printf( KIK_DEBUG_TAG " Scaling bg img %d %d => %d %d\n" ,
gdk_pixbuf_get_width(terminal->pvt->image) ,
gdk_pixbuf_get_height(terminal->pvt->image) ,
ACTUAL_WIDTH(win) , ACTUAL_HEIGHT(win)) ;
#endif
image = gdk_pixbuf_scale_simple( terminal->pvt->image ,
ACTUAL_WIDTH(win) , ACTUAL_HEIGHT(win) ,
GDK_INTERP_BILINEAR) ;
}
else
{
image = terminal->pvt->image ;
}
if( terminal->pvt->pixmap)
{
XFreePixmap( disp.display , terminal->pvt->pixmap) ;
}
terminal->pvt->pixmap = x_imagelib_pixbuf_to_pixmap( win , pic_mod , image) ;
if( image != terminal->pvt->image)
{
g_object_unref( image) ;
}
if( terminal->pvt->pixmap == None)
{
kik_msg_printf( "Failed to convert pixbuf to pixmap. "
"Rebuild mlterm with gdk-pixbuf.\n") ;
terminal->pvt->pix_width = 0 ;
terminal->pvt->pix_height = 0 ;
terminal->pvt->pic_mod = NULL ;
return ;
}
terminal->pvt->pix_width = ACTUAL_WIDTH(win) ;
terminal->pvt->pix_height = ACTUAL_HEIGHT(win) ;
if( pic_mod)
{
if( terminal->pvt->pic_mod == NULL)
{
terminal->pvt->pic_mod = malloc( sizeof( x_picture_modifier_t)) ;
}
*terminal->pvt->pic_mod = *pic_mod ;
}
else
{
free( terminal->pvt->pic_mod) ;
terminal->pvt->pic_mod = NULL ;
}
set_bg_image:
x_color_manager_change_alpha( terminal->pvt->screen->color_man , 0xff) ;
sprintf( file , "pixmap:%lu" , terminal->pvt->pixmap) ;
vte_terminal_set_background_image_file( terminal , file) ;
return ;
set_bg_alpha:
/* If screen->pic_file_path is already set, true transparency is not enabled. */
if( ! terminal->pvt->screen->pic_file_path &&
x_color_manager_change_alpha( terminal->pvt->screen->color_man ,
terminal->pvt->screen->pic_mod.alpha))
{
/* Same processing as change_bg_color in x_screen.c */
if( x_window_set_bg_color( &terminal->pvt->screen->window ,
x_get_xcolor( terminal->pvt->screen->color_man , ML_BG_COLOR)))
{
x_xic_bg_color_changed( &terminal->pvt->screen->window) ;
}
}
}
static void
vte_terminal_realize(
GtkWidget * widget
)
{
GdkWindowAttr attr ;
GtkAllocation allocation ;
XID xid ;
if( gtk_widget_get_window(widget))
{
return ;
}
x_screen_attach( VTE_TERMINAL(widget)->pvt->screen , VTE_TERMINAL(widget)->pvt->term) ;
gtk_widget_get_allocation( widget , &allocation) ;
#ifdef DEBUG
kik_debug_printf( KIK_DEBUG_TAG " vte terminal realized with size x %d y %d w %d h %d\n" ,
allocation.x , allocation.y , allocation.width , allocation.height) ;
#endif
GTK_WIDGET_SET_REALIZED( widget) ;
attr.window_type = GDK_WINDOW_CHILD ;
attr.x = allocation.x ;
attr.y = allocation.y ;
attr.width = allocation.width ;
attr.height = allocation.height ;
attr.wclass = GDK_INPUT_OUTPUT ;
attr.visual = gtk_widget_get_visual( widget) ;
#if ! GTK_CHECK_VERSION(2,90,0)
attr.colormap = gtk_widget_get_colormap( widget) ;
#endif
attr.event_mask = gtk_widget_get_events( widget) |
GDK_FOCUS_CHANGE_MASK |
GDK_BUTTON_PRESS_MASK |
GDK_BUTTON_RELEASE_MASK |
GDK_KEY_PRESS_MASK |
GDK_KEY_RELEASE_MASK |
GDK_SUBSTRUCTURE_MASK ; /* DestroyNotify from child */
gtk_widget_set_window( widget ,
gdk_window_new( gtk_widget_get_parent_window( widget) , &attr ,
GDK_WA_X | GDK_WA_Y |
(attr.visual ? GDK_WA_VISUAL : 0)
#if ! GTK_CHECK_VERSION(2,90,0)
| (attr.colormap ? GDK_WA_COLORMAP : 0)
#endif
)) ;
/*
* Note that hook key and button events in vte_terminal_filter doesn't work without this.
*/
gdk_window_set_user_data( gtk_widget_get_window(widget) , widget) ;
#if ! GTK_CHECK_VERSION(2,90,0)
if( widget->style->font_desc)
{
pango_font_description_free( widget->style->font_desc) ;
widget->style->font_desc = NULL ;
}
/* private_font(_desc) should be NULL if widget->style->font_desc is set NULL above. */
if( widget->style->private_font)
{
gdk_font_unref( widget->style->private_font) ;
widget->style->private_font = NULL ;
}
if( widget->style->private_font_desc)
{
pango_font_description_free( widget->style->private_font_desc) ;
widget->style->private_font_desc = NULL ;
}
#endif
g_signal_connect_swapped( gtk_widget_get_toplevel( widget) , "configure-event" ,
G_CALLBACK(toplevel_configure) , VTE_TERMINAL(widget)) ;
xid = gdk_x11_drawable_get_xid( gtk_widget_get_window(widget)) ;
if( disp.gc->gc == DefaultGC( disp.display , disp.screen))
{
/*
* Replace visual, colormap, depth and gc with those inherited from parent xid.
* In some cases that those of parent xid is not DefaultVisual, DefaultColormap
* and so on (e.g. compiz), BadMatch error can happen.
*/
XWindowAttributes attr ;
XGCValues gc_value ;
XGetWindowAttributes( disp.display , xid , &attr) ;
disp.visual = attr.visual ;
disp.colormap = attr.colormap ;
disp.depth = attr.depth ;
/* x_gc_t using DefaultGC is already created in vte_terminal_class_init */
gc_value.foreground = disp.gc->fg_color ;
gc_value.background = disp.gc->bg_color ;
gc_value.graphics_exposures = 0 ;
disp.gc->gc = XCreateGC( disp.display , xid ,
GCForeground | GCBackground | GCGraphicsExposures , &gc_value) ;
#ifdef __DEBUG
kik_debug_printf( KIK_DEBUG_TAG " Visual %x Colormap %x Depth %d\n" ,
disp.visual , disp.colormap , disp.depth) ;
#endif
}
x_display_show_root( &disp , &VTE_TERMINAL(widget)->pvt->screen->window ,
0 , 0 , 0 , "mlterm" , xid) ;
/*
* allocation passed by size_allocate is not necessarily to be reflected
* to x_window_t or ml_term_t, so x_window_resize must be called here.
*/
if( VTE_TERMINAL(widget)->pvt->term->pty &&
! is_initial_allocation( &allocation))
{
if( x_window_resize_with_margin( &VTE_TERMINAL(widget)->pvt->screen->window ,
allocation.width , allocation.height , NOTIFY_TO_MYSELF))
{
reset_vte_size_member( VTE_TERMINAL(widget)) ;
}
}
update_wall_picture( VTE_TERMINAL(widget)) ;
}
static void
vte_terminal_unrealize(
GtkWidget * widget
)
{
VteTerminal * terminal ;
x_screen_t * screen ;
#ifdef DEBUG
kik_debug_printf( KIK_DEBUG_TAG " vte terminal unrealized.\n") ;
#endif
terminal = VTE_TERMINAL(widget) ;
x_screen_detach( terminal->pvt->screen) ;
if( ! terminal->pvt->term->pty)
{
/* terminal->pvt->term is not deleted in pty_closed() */
ml_term_delete( terminal->pvt->term) ;
terminal->pvt->term = NULL ;
}
screen = terminal->pvt->screen ;
/* Create dummy screen in case terminal will be realized again. */
init_screen( terminal , screen->font_man , screen->color_man) ;
x_display_remove_root( &disp , &screen->window) ;
g_signal_handlers_disconnect_by_func( gtk_widget_get_toplevel( GTK_WIDGET(terminal)) ,
G_CALLBACK(toplevel_configure) , terminal) ;
GTK_WIDGET_CLASS(vte_terminal_parent_class)->unrealize( widget) ;
}
static gboolean
vte_terminal_focus_in(
GtkWidget * widget ,
GdkEventFocus * event
)
{
GTK_WIDGET_SET_HAS_FOCUS( widget) ;
if( GTK_WIDGET_MAPPED( widget))
{
#ifdef __DEBUG
kik_debug_printf( KIK_DEBUG_TAG " focus in\n") ;
#endif
XSetInputFocus( disp.display ,
VTE_TERMINAL( widget)->pvt->screen->window.my_window ,
RevertToParent , CurrentTime) ;
}
return FALSE ;
}
static gboolean
vte_terminal_focus_out(
GtkWidget * widget ,
GdkEventFocus * event
)
{
GTK_WIDGET_UNSET_HAS_FOCUS( widget) ;
return FALSE ;
}
#if GTK_CHECK_VERSION(2,90,0)
static void
vte_terminal_get_preferred_width(
GtkWidget * widget ,
gint * minimum_width ,
gint * natural_width
)
{
/* Processing similar to setting GtkWidget::requisition in reset_vte_size_member(). */
if( minimum_width)
{
*minimum_width = VTE_TERMINAL(widget)->char_width + WINDOW_MARGIN * 2 ;
}
if( natural_width)
{
*natural_width =
VTE_TERMINAL(widget)->column_count * VTE_TERMINAL(widget)->char_width +
WINDOW_MARGIN * 2 ;
}
}
static void
vte_terminal_get_preferred_width_for_height(
GtkWidget * widget ,
gint height ,
gint * minimum_width ,
gint * natural_width
)
{
vte_terminal_get_preferred_width( widget , minimum_width , natural_width) ;
}
static void
vte_terminal_get_preferred_height(
GtkWidget * widget ,
gint * minimum_height ,
gint * natural_height
)
{
/* Processing similar to setting GtkWidget::requisition in reset_vte_size_member(). */
if( minimum_height)
{
*minimum_height = VTE_TERMINAL(widget)->char_height + WINDOW_MARGIN * 2 ;
}
if( natural_height)
{
*natural_height =
VTE_TERMINAL(widget)->row_count * VTE_TERMINAL(widget)->char_height +
WINDOW_MARGIN * 2 ;
}
}
static void
vte_terminal_get_preferred_height_for_width(
GtkWidget * widget ,
gint width ,
gint * minimum_height ,
gint * natural_height
)
{
vte_terminal_get_preferred_height( widget , minimum_height , natural_height) ;
}
#else /* GTK_CHECK_VERSION(2,90,0) */
static void
vte_terminal_size_request(
GtkWidget * widget ,
GtkRequisition * req
)
{
*req = widget->requisition ;
#ifdef __DEBUG
kik_debug_printf( KIK_DEBUG_TAG " req %d %d cur alloc %d %d\n" , req->width , req->height ,
widget->allocation.width , widget->allocation.height) ;
#endif
}
#endif /* GTK_CHECK_VERSION(2,90,0) */
static void
vte_terminal_size_allocate(
GtkWidget * widget ,
GtkAllocation * allocation
)
{
int is_resized ;
GtkAllocation cur_allocation ;
gtk_widget_get_allocation( widget , &cur_allocation) ;
#ifdef __DEBUG
kik_debug_printf( KIK_DEBUG_TAG " alloc %d %d %d %d => %d %d %d %d\n" ,
cur_allocation.x , cur_allocation.y ,
cur_allocation.width , cur_allocation.height ,
allocation->x , allocation->y , allocation->width , allocation->height) ;
#endif
if( ! (is_resized = (cur_allocation.width != allocation->width ||
cur_allocation.height != allocation->height)) &&
cur_allocation.x == allocation->x &&
cur_allocation.y == allocation->y)
{
return ;
}
gtk_widget_set_allocation( widget , allocation) ;
if( GTK_WIDGET_REALIZED(widget))
{
if( is_resized && VTE_TERMINAL(widget)->pvt->term->pty)
{
/*
* Even if x_window_resize_with_margin returns 0,
* reset_vte_size_member etc functions must be called,
* because VTE_TERMNAL(widget)->pvt->screen can be already
* resized and vte_terminal_size_allocate can be called
* from vte_terminal_filter.
*/
x_window_resize_with_margin(
&VTE_TERMINAL(widget)->pvt->screen->window ,
allocation->width , allocation->height , NOTIFY_TO_MYSELF) ;
reset_vte_size_member( VTE_TERMINAL(widget)) ;
update_wall_picture( VTE_TERMINAL(widget)) ;
/*
* gnome-terminal(2.29.6 or later ?) is not resized correctly
* without this.
*/
gtk_widget_queue_resize_no_redraw( widget) ;
}
gdk_window_move_resize( gtk_widget_get_window(widget),
allocation->x, allocation->y,
allocation->width, allocation->height) ;
}
else
{
/*
* x_window_resize_with_margin( widget->allocation.width, height)
* will be called in vte_terminal_realize() or vte_terminal_fork*().
*/
}
}
static gboolean
vte_terminal_key_press(
GtkWidget * widget ,
GdkEventKey * event
)
{
/* Check if GtkWidget's behavior already does something with this key. */
GTK_WIDGET_CLASS(vte_terminal_parent_class)->key_press_event( widget , event) ;
/* If FALSE is returned, tab operation is unexpectedly started in gnome-terminal. */
return TRUE ;
}
static void
vte_terminal_class_init(
VteTerminalClass * vclass
)
{
char * value ;
kik_conf_t * conf ;
char * argv[] = { "mlterm" , NULL } ;
GObjectClass * oclass ;
GtkWidgetClass * wclass ;
#ifdef __DEBUG
XSetErrorHandler( error_handler) ;
XSynchronize( gdk_x11_display_get_xdisplay( gdk_display_get_default()) , True) ;
#endif
/* kik_sig_child_init() calls signal(3) internally. */
#if 0
kik_sig_child_init() ;
#endif
kik_priv_change_euid( kik_getuid()) ;
kik_priv_change_egid( kik_getgid()) ;
#if 0
bindtextdomain( "vte" , LOCALEDIR) ;
bind_textdomain_codeset( "vte" , "UTF-8") ;
#endif
if( ! kik_locale_init( ""))
{
kik_msg_printf( "locale settings failed.\n") ;
}
kik_set_sys_conf_dir( CONFIG_PATH) ;
ml_term_manager_init( 1) ;
ml_term_manager_enable_zombie_pty() ;
g_timeout_add( 100 , vte_terminal_timeout , NULL) ; /* 100 miliseconds */
x_color_config_init( &color_config) ;
x_shortcut_init( &shortcut) ;
x_termcap_init( &termcap) ;
x_xim_init( 1) ;
x_font_use_point_size_for_fc( 1) ;
x_set_button3_behavior( "none") ;
kik_init_prog( g_get_prgname() , VERSION) ;
if( ( conf = kik_conf_new()) == NULL)
{
return ;
}
x_prepare_for_main_config( conf) ;
/*
* Same processing as main_loop_init().
* Following options are not possible to specify as arguments of mlclient.
* 1) Options which are used only when mlterm starts up and which aren't
* changed dynamically. (e.g. "startup_screens")
* 2) Options which change status of all ptys or windows. (Including ones
* which are possible to change dynamically.)
* (e.g. "font_size_range")
*/
#if 0
kik_conf_add_opt( conf , 'R' , "fsrange" , 0 , "font_size_range" , NULL) ;
#endif
kik_conf_add_opt( conf , 'W' , "sep" , 0 , "word_separators" , NULL) ;
kik_conf_add_opt( conf , 'Y' , "decsp" , 1 , "compose_dec_special_font" , NULL) ;
kik_conf_add_opt( conf , 'c' , "cp932" , 1 , "use_cp932_ucs_for_xft" , NULL) ;
kik_conf_add_opt( conf , '\0' , "restart" , 1 , "auto_restart" , NULL) ;
#if 0
if( ( value = kik_conf_get_value( conf , "font_size_range")))
{
u_int min_font_size ;
u_int max_font_size ;
if( get_font_size_range( &min_font_size , &max_font_size , value))
{
x_set_font_size_range( min_font_size , max_font_size) ;
}
}
#endif
x_main_config_init( &main_config , conf , 1 , argv) ;
if( main_config.type_engine == TYPE_XCORE)
{
/*
* XXX Hack
* Default value of type_engine is TYPE_XCORE in normal mlterm,
* but default value in libvte compatible library of mlterm is TYPE_XFT.
*/
char * value ;
if( ( value = kik_conf_get_value( conf , "type_engine")) == NULL ||
strcmp( value , "xcore") != 0)
{
/*
* cairo is prefered if mlterm works as libvte because gtk+
* usually depends on cairo.
*/
#if ! defined(USE_TYPE_CAIRO) && defined(USE_TYPE_XFT)
main_config.type_engine = TYPE_XFT ;
#else
main_config.type_engine = TYPE_CAIRO ;
#endif
}
}
/* Default value of vte "audible-bell" is TRUE, while "visible-bell" is FALSE. */
main_config.bel_mode = BEL_SOUND ;
if( ( value = kik_conf_get_value( conf , "click_interval")))
{
int interval ;
if( kik_str_to_int( &interval , value))
{
x_set_click_interval( interval) ;
}
}
if( ( value = kik_conf_get_value( conf , "compose_dec_special_font")))
{
if( strcmp( value , "true") == 0)
{
x_compose_dec_special_font() ;
}
}
if( ( value = kik_conf_get_value( conf , "use_cp932_ucs_for_xft")) == NULL ||
strcmp( value , "true") == 0)
{
x_use_cp932_ucs_for_xft() ;
}
if( ( value = kik_conf_get_value( conf , "word_separators")))
{
ml_set_word_separators( value) ;
}
if( ( value = kik_conf_get_value( conf , "use_clipboard")))
{
if( strcmp( value , "true") == 0)
{
x_set_use_clipboard_selection( 1) ;
}
}
if( ! ( value = kik_conf_get_value( conf , "auto_restart")) ||
strcmp( value , "true") == 0)
{
ml_set_auto_restart_cmd( kik_get_prog_path()) ;
}
kik_conf_delete( conf) ;
g_signal_connect( vte_reaper_get() , "child-exited" ,
G_CALLBACK(catch_child_exited) , NULL) ;
g_type_class_add_private( vclass , sizeof(VteTerminalPrivate)) ;
memset( &disp , 0 , sizeof(x_display_t)) ;
disp.display = gdk_x11_display_get_xdisplay( gdk_display_get_default()) ;
disp.screen = DefaultScreen(disp.display) ;
disp.my_window = DefaultRootWindow(disp.display) ;
disp.visual = DefaultVisual( disp.display , disp.screen) ;
disp.colormap = DefaultColormap( disp.display , disp.screen) ;
disp.depth = DefaultDepth( disp.display , disp.screen) ;
disp.gc = x_gc_new( disp.display , None) ;
disp.width = DisplayWidth( disp.display , disp.screen) ;
disp.height = DisplayHeight( disp.display , disp.screen) ;
disp.modmap.serial = 0 ;
disp.modmap.map = XGetModifierMapping( disp.display) ;
x_xim_display_opened( disp.display) ;
x_picture_display_opened( disp.display) ;
gdk_window_add_filter( NULL , vte_terminal_filter , NULL) ;
oclass = G_OBJECT_CLASS(vclass) ;
wclass = GTK_WIDGET_CLASS(vclass) ;
oclass->finalize = vte_terminal_finalize ;
oclass->get_property = vte_terminal_get_property ;
oclass->set_property = vte_terminal_set_property ;
wclass->realize = vte_terminal_realize ;
wclass->unrealize = vte_terminal_unrealize ;
wclass->focus_in_event = vte_terminal_focus_in ;
wclass->focus_out_event = vte_terminal_focus_out ;
wclass->size_allocate = vte_terminal_size_allocate ;
#if GTK_CHECK_VERSION(2,90,0)
wclass->get_preferred_width = vte_terminal_get_preferred_width ;
wclass->get_preferred_height = vte_terminal_get_preferred_height ;
wclass->get_preferred_width_for_height = vte_terminal_get_preferred_width_for_height ;
wclass->get_preferred_height_for_width = vte_terminal_get_preferred_height_for_width ;
#else
wclass->size_request = vte_terminal_size_request ;
#endif
wclass->key_press_event = vte_terminal_key_press ;
#if GTK_CHECK_VERSION(2,90,0)
g_object_class_override_property( oclass , PROP_HADJUSTMENT , "hadjustment") ;
g_object_class_override_property( oclass , PROP_VADJUSTMENT , "vadjustment") ;
g_object_class_override_property( oclass , PROP_HSCROLL_POLICY , "hscroll-policy") ;
g_object_class_override_property( oclass , PROP_VSCROLL_POLICY , "vscroll-policy") ;
#endif
#if ! GTK_CHECK_VERSION(2,90,0)
vclass->eof_signal =
#endif
g_signal_new( I_("eof") ,
G_OBJECT_CLASS_TYPE(vclass) ,
G_SIGNAL_RUN_LAST ,
G_STRUCT_OFFSET( VteTerminalClass , eof) ,
NULL , NULL , g_cclosure_marshal_VOID__VOID ,
G_TYPE_NONE , 0) ;
#if ! GTK_CHECK_VERSION(2,90,0)
vclass->child_exited_signal =
#endif
g_signal_new( I_("child-exited") ,
G_OBJECT_CLASS_TYPE(vclass) ,
G_SIGNAL_RUN_LAST ,
G_STRUCT_OFFSET( VteTerminalClass , child_exited) ,
NULL , NULL , g_cclosure_marshal_VOID__VOID ,
G_TYPE_NONE , 0) ;
#if ! GTK_CHECK_VERSION(2,90,0)
vclass->window_title_changed_signal =
#endif
g_signal_new( I_("window-title-changed") ,
G_OBJECT_CLASS_TYPE(vclass) ,
G_SIGNAL_RUN_LAST ,
G_STRUCT_OFFSET( VteTerminalClass , window_title_changed) ,
NULL , NULL , g_cclosure_marshal_VOID__VOID ,
G_TYPE_NONE , 0) ;
#if ! GTK_CHECK_VERSION(2,90,0)
vclass->icon_title_changed_signal =
#endif
g_signal_new( I_("icon-title-changed") ,
G_OBJECT_CLASS_TYPE(vclass) ,
G_SIGNAL_RUN_LAST ,
G_STRUCT_OFFSET( VteTerminalClass , icon_title_changed) ,
NULL , NULL , g_cclosure_marshal_VOID__VOID ,
G_TYPE_NONE , 0) ;
#if ! GTK_CHECK_VERSION(2,90,0)
vclass->encoding_changed_signal =
#endif
g_signal_new( I_("encoding-changed") ,
G_OBJECT_CLASS_TYPE(vclass) ,
G_SIGNAL_RUN_LAST ,
G_STRUCT_OFFSET( VteTerminalClass , encoding_changed) ,
NULL , NULL , g_cclosure_marshal_VOID__VOID ,
G_TYPE_NONE , 0) ;
#if ! GTK_CHECK_VERSION(2,90,0)
vclass->commit_signal =
#endif
g_signal_new( I_("commit") ,
G_OBJECT_CLASS_TYPE(vclass) ,
G_SIGNAL_RUN_LAST ,
G_STRUCT_OFFSET(VteTerminalClass , commit) ,
NULL ,
NULL ,
_vte_marshal_VOID__STRING_UINT ,
G_TYPE_NONE , 2 , G_TYPE_STRING , G_TYPE_UINT) ;
#if ! GTK_CHECK_VERSION(2,90,0)
vclass->emulation_changed_signal =
#endif
g_signal_new( I_("emulation-changed") ,
G_OBJECT_CLASS_TYPE(vclass) ,
G_SIGNAL_RUN_LAST ,
G_STRUCT_OFFSET(VteTerminalClass , emulation_changed) ,
NULL , NULL , g_cclosure_marshal_VOID__VOID ,
G_TYPE_NONE , 0) ;
#if ! GTK_CHECK_VERSION(2,90,0)
vclass->char_size_changed_signal =
#endif
g_signal_new( I_("char-size-changed") ,
G_OBJECT_CLASS_TYPE(vclass) ,
G_SIGNAL_RUN_LAST ,
G_STRUCT_OFFSET(VteTerminalClass , char_size_changed) ,
NULL , NULL , _vte_marshal_VOID__UINT_UINT ,
G_TYPE_NONE , 2 , G_TYPE_UINT , G_TYPE_UINT) ;
#if ! GTK_CHECK_VERSION(2,90,0)
vclass->selection_changed_signal =
#endif
g_signal_new ( I_("selection-changed") ,
G_OBJECT_CLASS_TYPE(vclass) ,
G_SIGNAL_RUN_LAST ,
G_STRUCT_OFFSET(VteTerminalClass , selection_changed) ,
NULL , NULL , g_cclosure_marshal_VOID__VOID ,
G_TYPE_NONE , 0) ;
#if ! GTK_CHECK_VERSION(2,90,0)
vclass->contents_changed_signal =
#endif
g_signal_new( I_("contents-changed") ,
G_OBJECT_CLASS_TYPE(vclass) ,
G_SIGNAL_RUN_LAST ,
G_STRUCT_OFFSET(VteTerminalClass , contents_changed) ,
NULL , NULL , g_cclosure_marshal_VOID__VOID ,
G_TYPE_NONE , 0) ;
#if ! GTK_CHECK_VERSION(2,90,0)
vclass->cursor_moved_signal =
#endif
g_signal_new( I_("cursor-moved") ,
G_OBJECT_CLASS_TYPE(vclass) ,
G_SIGNAL_RUN_LAST ,
G_STRUCT_OFFSET(VteTerminalClass , cursor_moved) ,
NULL , NULL , g_cclosure_marshal_VOID__VOID ,
G_TYPE_NONE , 0) ;
#if ! GTK_CHECK_VERSION(2,90,0)
vclass->deiconify_window_signal =
#endif
g_signal_new( I_("deiconify-window") ,
G_OBJECT_CLASS_TYPE(vclass) ,
G_SIGNAL_RUN_LAST ,
G_STRUCT_OFFSET(VteTerminalClass , deiconify_window) ,
NULL , NULL , g_cclosure_marshal_VOID__VOID ,
G_TYPE_NONE , 0) ;
#if ! GTK_CHECK_VERSION(2,90,0)
vclass->iconify_window_signal =
#endif
g_signal_new( I_("iconify-window") ,
G_OBJECT_CLASS_TYPE(vclass) ,
G_SIGNAL_RUN_LAST ,
G_STRUCT_OFFSET(VteTerminalClass , iconify_window) ,
NULL , NULL , g_cclosure_marshal_VOID__VOID ,
G_TYPE_NONE , 0) ;
#if ! GTK_CHECK_VERSION(2,90,0)
vclass->raise_window_signal =
#endif
g_signal_new( I_("raise-window") ,
G_OBJECT_CLASS_TYPE(vclass) ,
G_SIGNAL_RUN_LAST ,
G_STRUCT_OFFSET(VteTerminalClass , raise_window) ,
NULL , NULL , g_cclosure_marshal_VOID__VOID ,
G_TYPE_NONE , 0) ;
#if ! GTK_CHECK_VERSION(2,90,0)
vclass->lower_window_signal =
#endif
g_signal_new( I_("lower-window") ,
G_OBJECT_CLASS_TYPE(vclass) ,
G_SIGNAL_RUN_LAST ,
G_STRUCT_OFFSET(VteTerminalClass , lower_window) ,
NULL , NULL , g_cclosure_marshal_VOID__VOID ,
G_TYPE_NONE , 0) ;
#if ! GTK_CHECK_VERSION(2,90,0)
vclass->refresh_window_signal =
#endif
g_signal_new( I_("refresh-window") ,
G_OBJECT_CLASS_TYPE(vclass) ,
G_SIGNAL_RUN_LAST ,
G_STRUCT_OFFSET(VteTerminalClass , refresh_window) ,
NULL , NULL , g_cclosure_marshal_VOID__VOID ,
G_TYPE_NONE , 0) ;
#if ! GTK_CHECK_VERSION(2,90,0)
vclass->restore_window_signal =
#endif
g_signal_new( I_("restore-window") ,
G_OBJECT_CLASS_TYPE(vclass) ,
G_SIGNAL_RUN_LAST ,
G_STRUCT_OFFSET(VteTerminalClass , restore_window) ,
NULL , NULL , g_cclosure_marshal_VOID__VOID ,
G_TYPE_NONE , 0) ;
#if ! GTK_CHECK_VERSION(2,90,0)
vclass->maximize_window_signal =
#endif
g_signal_new( I_("maximize-window") ,
G_OBJECT_CLASS_TYPE(vclass) ,
G_SIGNAL_RUN_LAST ,
G_STRUCT_OFFSET(VteTerminalClass , maximize_window) ,
NULL , NULL , g_cclosure_marshal_VOID__VOID ,
G_TYPE_NONE , 0) ;
#if ! GTK_CHECK_VERSION(2,90,0)
vclass->resize_window_signal =
#endif
g_signal_new( I_("resize-window") ,
G_OBJECT_CLASS_TYPE(vclass) ,
G_SIGNAL_RUN_LAST ,
G_STRUCT_OFFSET(VteTerminalClass , resize_window) ,
NULL , NULL , _vte_marshal_VOID__UINT_UINT ,
G_TYPE_NONE , 2 , G_TYPE_UINT , G_TYPE_UINT) ;
#if ! GTK_CHECK_VERSION(2,90,0)
vclass->move_window_signal =
#endif
g_signal_new( I_("move-window") ,
G_OBJECT_CLASS_TYPE(vclass) ,
G_SIGNAL_RUN_LAST ,
G_STRUCT_OFFSET(VteTerminalClass , move_window) ,
NULL , NULL , _vte_marshal_VOID__UINT_UINT ,
G_TYPE_NONE , 2 , G_TYPE_UINT , G_TYPE_UINT) ;
#if ! GTK_CHECK_VERSION(2,90,0)
vclass->status_line_changed_signal =
#endif
g_signal_new( I_("status-line-changed") ,
G_OBJECT_CLASS_TYPE(vclass) ,
G_SIGNAL_RUN_LAST ,
G_STRUCT_OFFSET(VteTerminalClass , status_line_changed) ,
NULL , NULL , g_cclosure_marshal_VOID__VOID ,
G_TYPE_NONE , 0) ;
#if ! GTK_CHECK_VERSION(2,90,0)
vclass->increase_font_size_signal =
#endif
g_signal_new( I_("increase-font-size") ,
G_OBJECT_CLASS_TYPE(vclass) ,
G_SIGNAL_RUN_LAST ,
G_STRUCT_OFFSET(VteTerminalClass , increase_font_size) ,
NULL , NULL , g_cclosure_marshal_VOID__VOID ,
G_TYPE_NONE , 0) ;
#if ! GTK_CHECK_VERSION(2,90,0)
vclass->decrease_font_size_signal =
#endif
g_signal_new( I_("decrease-font-size") ,
G_OBJECT_CLASS_TYPE(vclass) ,
G_SIGNAL_RUN_LAST ,
G_STRUCT_OFFSET(VteTerminalClass , decrease_font_size) ,
NULL , NULL , g_cclosure_marshal_VOID__VOID ,
G_TYPE_NONE , 0) ;
#if ! GTK_CHECK_VERSION(2,90,0)
vclass->text_modified_signal =
#endif
g_signal_new( I_("text-modified") ,
G_OBJECT_CLASS_TYPE(vclass) ,
G_SIGNAL_RUN_LAST ,
G_STRUCT_OFFSET(VteTerminalClass , text_modified) ,
NULL , NULL , g_cclosure_marshal_VOID__VOID ,
G_TYPE_NONE , 0) ;
#if ! GTK_CHECK_VERSION(2,90,0)
vclass->text_inserted_signal =
#endif
g_signal_new( I_("text-inserted") ,
G_OBJECT_CLASS_TYPE(vclass) ,
G_SIGNAL_RUN_LAST ,
G_STRUCT_OFFSET(VteTerminalClass , text_inserted) ,
NULL , NULL , g_cclosure_marshal_VOID__VOID ,
G_TYPE_NONE , 0) ;
#if ! GTK_CHECK_VERSION(2,90,0)
vclass->text_deleted_signal =
#endif
g_signal_new( I_("text-deleted") ,
G_OBJECT_CLASS_TYPE(vclass) ,
G_SIGNAL_RUN_LAST ,
G_STRUCT_OFFSET(VteTerminalClass , text_deleted) ,
NULL , NULL , g_cclosure_marshal_VOID__VOID ,
G_TYPE_NONE , 0) ;
#if ! GTK_CHECK_VERSION(2,90,0)
vclass->text_scrolled_signal =
#endif
g_signal_new( I_("text-scrolled") ,
G_OBJECT_CLASS_TYPE(vclass) ,
G_SIGNAL_RUN_LAST ,
G_STRUCT_OFFSET(VteTerminalClass , text_scrolled) ,
NULL , NULL , g_cclosure_marshal_VOID__INT ,
G_TYPE_NONE , 1 , G_TYPE_INT) ;
#if VTE_CHECK_VERSION(0,20,0)
g_object_class_install_property( oclass , PROP_WINDOW_TITLE ,
g_param_spec_string( "window-title" , NULL , NULL , NULL ,
G_PARAM_READABLE | STATIC_PARAMS)) ;
g_object_class_install_property( oclass , PROP_ICON_TITLE ,
g_param_spec_string( "icon-title" , NULL , NULL , NULL ,
G_PARAM_READABLE | STATIC_PARAMS)) ;
#endif
#if VTE_CHECK_VERSION(0,23,2)
/*
* doc/references/html/VteTerminal.html describes that inner-border property
* is since 0.24.0, but actually it is added at Nov 30 2009 (between 0.23.1 and 0.23.2)
* in ChangeLog.
*/
gtk_widget_class_install_style_property( wclass ,
g_param_spec_boxed( "inner-border" , NULL , NULL , GTK_TYPE_BORDER ,
G_PARAM_READABLE | G_PARAM_STATIC_STRINGS)) ;
#if GTK_CHECK_VERSION(2,90,0)
vclass->priv = G_TYPE_CLASS_GET_PRIVATE(vclass , VTE_TYPE_TERMINAL ,
VteTerminalClassPrivate) ;
vclass->priv->style_provider = GTK_STYLE_PROVIDER(gtk_css_provider_new()) ;
gtk_css_provider_load_from_data( GTK_CSS_PROVIDER(vclass->priv->style_provider) ,
"VteTerminal {\n"
"-VteTerminal-inner-border: " KIK_INT_TO_STR(WINDOW_MARGIN) ";\n"
"}\n" ,
-1 , NULL) ;
#else
gtk_rc_parse_string( "style \"vte-default-style\" {\n"
"VteTerminal::inner-border = { "
KIK_INT_TO_STR(WINDOW_MARGIN) " , "
KIK_INT_TO_STR(WINDOW_MARGIN) " , "
KIK_INT_TO_STR(WINDOW_MARGIN) " , "
KIK_INT_TO_STR(WINDOW_MARGIN) " }\n"
"}\n"
"class \"VteTerminal\" style : gtk \"vte-default-style\"\n") ;
#endif
#endif /* VTE_CHECK_VERSION(0,23,2) */
#if VTE_CHECK_VERSION(0,19,0)
signals[COPY_CLIPBOARD] =
g_signal_new( I_("copy-clipboard") ,
G_OBJECT_CLASS_TYPE(vclass) ,
G_SIGNAL_RUN_LAST | G_SIGNAL_ACTION ,
G_STRUCT_OFFSET(VteTerminalClass , copy_clipboard) ,
NULL , NULL , g_cclosure_marshal_VOID__VOID ,
G_TYPE_NONE , 0) ;
signals[PASTE_CLIPBOARD] =
g_signal_new( I_("paste-clipboard") ,
G_OBJECT_CLASS_TYPE(vclass) ,
G_SIGNAL_RUN_LAST | G_SIGNAL_ACTION ,
G_STRUCT_OFFSET(VteTerminalClass , paste_clipboard) ,
NULL , NULL , g_cclosure_marshal_VOID__VOID ,
G_TYPE_NONE , 0) ;
#endif
}
static void
vte_terminal_init(
VteTerminal * terminal
)
{
static int init_inherit_ptys ;
mkf_charset_t usascii_font_cs ;
int usascii_font_cs_changable ;
gdouble dpi ;
GTK_WIDGET_SET_CAN_FOCUS( GTK_WIDGET(terminal)) ;
terminal->pvt = G_TYPE_INSTANCE_GET_PRIVATE( terminal , VTE_TYPE_TERMINAL ,
VteTerminalPrivate) ;
#if GTK_CHECK_VERSION(2,18,0)
gtk_widget_set_has_window( GTK_WIDGET(terminal) , TRUE) ;
#endif
/* We do our own redrawing. */
gtk_widget_set_redraw_on_allocate( GTK_WIDGET(terminal) , FALSE) ;
terminal->adjustment = NULL ;
set_adjustment( terminal , GTK_ADJUSTMENT(gtk_adjustment_new( 0 , 0 , main_config.rows ,
1 , main_config.rows , main_config.rows))) ;
g_signal_connect( terminal , "hierarchy-changed" ,
G_CALLBACK(vte_terminal_hierarchy_changed) , NULL) ;
#if GTK_CHECK_VERSION(2,90,0)
{
GtkStyleContext * context ;
context = gtk_widget_get_style_context( GTK_WIDGET(terminal)) ;
gtk_style_context_add_provider( context ,
VTE_TERMINAL_GET_CLASS(terminal)->priv->style_provider ,
GTK_STYLE_PROVIDER_PRIORITY_APPLICATION) ;
}
#endif
terminal->pvt->term =
ml_create_term( main_config.cols , main_config.rows ,
main_config.tab_size , main_config.num_of_log_lines ,
main_config.encoding , main_config.is_auto_encoding ,
main_config.unicode_policy , main_config.col_size_of_width_a ,
main_config.use_char_combining , main_config.use_multi_col_char ,
main_config.use_bidi , main_config.bidi_mode , main_config.use_ind ,
x_termcap_get_bool_field(
x_termcap_get_entry( &termcap , main_config.term_type) , ML_BCE) ,
main_config.use_dynamic_comb , main_config.bs_mode ,
main_config.vertical_mode) ;
if( ! init_inherit_ptys)
{
u_int num ;
ml_term_t ** terms ;
u_int count ;
num = ml_get_all_terms( &terms) ;
for( count = 0 ; count < num ; count++)
{
if( terms[count] != terminal->pvt->term)
{
vte_reaper_add_child( ml_term_get_child_pid( terms[count])) ;
}
}
init_inherit_ptys = 1 ;
}
#if VTE_CHECK_VERSION(0,26,0)
terminal->pvt->pty = NULL ;
#endif
if( main_config.unicode_policy & NOT_USE_UNICODE_FONT ||
main_config.iso88591_font_for_usascii)
{
usascii_font_cs = x_get_usascii_font_cs( ML_ISO8859_1) ;
usascii_font_cs_changable = 0 ;
}
else if( main_config.unicode_policy & ONLY_USE_UNICODE_FONT)
{
usascii_font_cs = x_get_usascii_font_cs( ML_UTF8) ;
usascii_font_cs_changable = 0 ;
}
else
{
usascii_font_cs = x_get_usascii_font_cs(
ml_term_get_encoding(terminal->pvt->term)) ;
usascii_font_cs_changable = 1 ;
}
/* related to x_font_use_point_size_for_fc(1) in vte_terminal_class_init. */
if( ( dpi = gdk_screen_get_resolution(
gtk_widget_get_screen( GTK_WIDGET(terminal)))) != -1)
{
#ifdef DEBUG
kik_debug_printf( KIK_DEBUG_TAG " Setting dpi %f\n" , dpi) ;
#endif
x_font_set_dpi_for_fc( dpi) ;
}
init_screen( terminal ,
x_font_manager_new( disp.display ,
main_config.type_engine ,
main_config.font_present ,
main_config.font_size , usascii_font_cs ,
usascii_font_cs_changable , main_config.use_multi_col_char ,
main_config.step_in_changing_font_size ,
main_config.letter_space) ,
x_color_manager_new( &disp , &color_config ,
main_config.fg_color , main_config.bg_color ,
main_config.cursor_fg_color , main_config.cursor_bg_color ,
main_config.bd_color , main_config.ul_color)) ;
terminal->pvt->io = NULL ;
terminal->pvt->src_id = 0 ;
terminal->pvt->image = NULL ;
terminal->pvt->pixmap = None ;
terminal->pvt->pix_width = 0 ;
terminal->pvt->pix_height = 0 ;
terminal->pvt->pic_mod = NULL ;
/* audible_bell and visible_bell member is initialized by settings of main_config. */
terminal->pvt->audible_bell = (main_config.bel_mode == BEL_SOUND) ;
terminal->pvt->visible_bell = (main_config.bel_mode == BEL_VISUAL) ;
/* GRegex was not supported */
#if GLIB_CHECK_VERSION(2,14,0)
terminal->pvt->regex = NULL ;
#endif
terminal->window_title = ml_term_window_name( terminal->pvt->term) ;
terminal->icon_title = ml_term_icon_name( terminal->pvt->term) ;
#if ! GTK_CHECK_VERSION(2,90,0)
/* XXX */
if( strstr( g_get_prgname() , "roxterm"))
{
/*
* XXX
* I don't know why, but gtk_widget_ensure_style() doesn't apply "inner-border"
* and min width/height of roxterm are not correctly set.
*/
gtk_widget_set_rc_style( &terminal->widget) ;
}
else
#endif
{
/*
* gnome-terminal(2.32.1) fails to set "inner-border" and
* min width/height without this.
*/
gtk_widget_ensure_style( &terminal->widget) ;
}
reset_vte_size_member( terminal) ;
}
static int
ml_term_open_pty_wrap(
VteTerminal * terminal ,
const char * cmd_path ,
char ** argv ,
char ** envv ,
const char * pass ,
const char * pubkey ,
const char * privkey
)
{
const char * host ;
char ** env_p ;
u_int num_of_env ;
host = gdk_display_get_name( gtk_widget_get_display( GTK_WIDGET(terminal))) ;
num_of_env = 0 ;
if( envv)
{
env_p = envv ;
while( *(env_p ++))
{
num_of_env ++ ;
}
}
if( ( env_p = alloca( sizeof( char*) * (num_of_env + 5))))
{
if( num_of_env > 0)
{
envv = memcpy( env_p , envv , sizeof(char*) * num_of_env) ;
env_p += num_of_env ;
}
else
{
envv = env_p ;
}
/* "WINDOWID="(9) + [32bit digit] + NULL(1) */
if( ( *env_p = alloca( 9 + DIGIT_STR_LEN(Window) + 1)))
{
sprintf( *(env_p ++) , "WINDOWID=%ld" ,
#if 1
gdk_x11_drawable_get_xid(
gtk_widget_get_window( GTK_WIDGET(terminal)))
#else
terminal->pvt->screen->window.my_window
#endif
) ;
}
/* "DISPLAY="(8) + NULL(1) */
if( ( *env_p = alloca( 8 + strlen( host) + 1)))
{
sprintf( *(env_p ++) , "DISPLAY=%s" , host) ;
}
if( ( *env_p = alloca( 5 + strlen( main_config.term_type) + 1)))
{
sprintf( *(env_p ++) , "TERM=%s" , main_config.term_type) ;
}
*(env_p ++) = "COLORFGBG=default;default" ;
/* NULL terminator */
*env_p = NULL ;
}
#if 0
env_p = envv ;
while( *env_p)
{
kik_debug_printf( "%s\n" , *(env_p ++)) ;
}
#endif
return ml_term_open_pty( terminal->pvt->term , cmd_path , argv , envv ,
host , pass , pubkey , privkey) ;
}
/* --- global functions --- */
GtkWidget*
vte_terminal_new()
{
return g_object_new( VTE_TYPE_TERMINAL , NULL) ;
}
/*
* vte_terminal_fork_command or vte_terminal_forkpty functions are possible
* to call before VteTerminal widget is realized.
*/
pid_t
vte_terminal_fork_command(
VteTerminal * terminal ,
const char * command , /* If NULL, open default shell. */
char ** argv , /* If NULL, open default shell. */
char ** envv ,
const char * directory ,
gboolean lastlog ,
gboolean utmp ,
gboolean wtmp
)
{
/*
* If pty is inherited from dead parent, terminal->pvt->term->pty is non-NULL
* but create_io() and vte_reaper_add_child() aren't executed.
* So terminal->pvt->io is used to check if pty is completely set up.
*/
if( ! terminal->pvt->io)
{
#ifdef DEBUG
kik_debug_printf( KIK_DEBUG_TAG " forking with %s\n" , command) ;
#endif
if( ! command)
{
if( ! ( command = getenv( "SHELL")) || *command == '\0')
{
struct passwd * pw ;
if( ( pw = getpwuid( getuid())) == NULL ||
*( command = pw->pw_shell) == '\0')
{
command = "/bin/sh" ;
}
}
}
if( ! argv || ! argv[0])
{
argv = alloca( sizeof(char*) * 2) ;
argv[0] = command ;
argv[1] = NULL ;
}
kik_pty_helper_set_flag( lastlog , utmp , wtmp) ;
if( ! ml_term_open_pty_wrap( terminal , command , argv , envv ,
NULL , NULL , NULL) )
{
#ifdef DEBUG
kik_debug_printf( KIK_DEBUG_TAG " fork failed\n") ;
#endif
return -1 ;
}
create_io( terminal) ;
vte_reaper_add_child( ml_term_get_child_pid( terminal->pvt->term)) ;
if( GTK_WIDGET_REALIZED(GTK_WIDGET(terminal)))
{
GtkAllocation allocation ;
gtk_widget_get_allocation( GTK_WIDGET(terminal) , &allocation) ;
if( ! is_initial_allocation( &allocation) &&
x_window_resize_with_margin( &terminal->pvt->screen->window ,
allocation.width , allocation.height , NOTIFY_TO_MYSELF))
{
reset_vte_size_member( terminal) ;
update_wall_picture( terminal) ;
}
}
/*
* In order to receive pty_closed() event even if vte_terminal_realize()
* isn't called.
*/
ml_pty_set_listener( terminal->pvt->term->pty ,
&terminal->pvt->screen->pty_listener) ;
}
return ml_term_get_child_pid( terminal->pvt->term) ;
}
#if VTE_CHECK_VERSION(0,26,0)
gboolean
vte_terminal_fork_command_full(
VteTerminal * terminal ,
VtePtyFlags pty_flags ,
const char * working_directory ,
char ** argv ,
char ** envv ,
GSpawnFlags spawn_flags ,
GSpawnChildSetupFunc child_setup ,
gpointer child_setup_data ,
GPid * child_pid /* out */ ,
GError ** error
)
{
GPid pid ;
pid = vte_terminal_fork_command( terminal , argv[0] , argv + 1 , envv ,
working_directory ,
(pty_flags & VTE_PTY_NO_LASTLOG) ? FALSE : TRUE ,
(pty_flags & VTE_PTY_NO_UTMP) ? FALSE : TRUE ,
(pty_flags & VTE_PTY_NO_WTMP) ? FALSE : TRUE) ;
if( child_pid)
{
*child_pid = pid ;
}
if( pid > 0)
{
return TRUE ;
}
else
{
return FALSE ;
}
}
#endif
pid_t
vte_terminal_forkpty(
VteTerminal * terminal ,
char ** envv ,
const char * directory ,
gboolean lastlog ,
gboolean utmp ,
gboolean wtmp
)
{
/*
* If pty is inherited from dead parent, terminal->pvt->term->pty is non-NULL
* but create_io() and vte_reaper_add_child() aren't executed.
* So terminal->pvt->io is used to check if pty is completely set up.
*/
if( ! terminal->pvt->io)
{
#ifdef DEBUG
kik_debug_printf( KIK_DEBUG_TAG " forking pty\n") ;
#endif
kik_pty_helper_set_flag( lastlog , utmp , wtmp) ;
if( ! ml_term_open_pty_wrap( terminal , NULL , NULL , envv , NULL , NULL , NULL))
{
#ifdef DEBUG
kik_debug_printf( KIK_DEBUG_TAG " fork failed\n") ;
#endif
return -1 ;
}
if( ml_term_get_child_pid( terminal->pvt->term) == 0)
{
/* Child process */
return 0 ;
}
create_io( terminal) ;
vte_reaper_add_child( ml_term_get_child_pid( terminal->pvt->term)) ;
if( GTK_WIDGET_REALIZED(GTK_WIDGET(terminal)))
{
GtkAllocation allocation ;
gtk_widget_get_allocation( GTK_WIDGET(terminal) , &allocation) ;
if( ! is_initial_allocation( &allocation) &&
x_window_resize_with_margin( &terminal->pvt->screen->window ,
allocation.width , allocation.height , NOTIFY_TO_MYSELF))
{
reset_vte_size_member( terminal) ;
update_wall_picture( terminal) ;
}
}
/*
* In order to receive pty_closed() event even if vte_terminal_realize()
* isn't called.
*/
ml_pty_set_listener( terminal->pvt->term->pty ,
&terminal->pvt->screen->pty_listener) ;
}
return ml_term_get_child_pid( terminal->pvt->term) ;
}
void
vte_terminal_feed(
VteTerminal * terminal ,
const char * data ,
glong length
)
{
}
void
vte_terminal_feed_child(
VteTerminal * terminal ,
const char * text ,
glong length
)
{
}
void
vte_terminal_feed_child_binary(
VteTerminal * terminal ,
const char * data ,
glong length
)
{
}
void
vte_terminal_copy_clipboard(
VteTerminal * terminal
)
{
GtkClipboard * clipboard ;
u_char * buf ;
size_t len ;
if( ! vte_terminal_get_has_selection( terminal) ||
! (clipboard = gtk_clipboard_get( GDK_SELECTION_CLIPBOARD)))
{
return ;
}
len = terminal->pvt->screen->sel.sel_len * MLCHAR_UTF_MAX_SIZE ;
if( ! ( buf = alloca( len)))
{
return ;
}
(*terminal->pvt->screen->ml_str_parser->init)( terminal->pvt->screen->ml_str_parser) ;
ml_str_parser_set_str( terminal->pvt->screen->ml_str_parser ,
terminal->pvt->screen->sel.sel_str , terminal->pvt->screen->sel.sel_len) ;
(*terminal->pvt->screen->utf_conv->init)( terminal->pvt->screen->utf_conv) ;
len = (*terminal->pvt->screen->utf_conv->convert)( terminal->pvt->screen->utf_conv ,
buf , len , terminal->pvt->screen->ml_str_parser) ;
gtk_clipboard_set_text( clipboard , buf , len) ;
gtk_clipboard_store( clipboard) ;
}
void
vte_terminal_paste_clipboard(
VteTerminal * terminal
)
{
x_screen_exec_cmd( terminal->pvt->screen , "paste") ;
}
void
vte_terminal_copy_primary(
VteTerminal * terminal
)
{
}
void
vte_terminal_paste_primary(
VteTerminal * terminal
)
{
vte_terminal_paste_clipboard( terminal) ;
}
void
vte_terminal_select_all(
VteTerminal * terminal
)
{
int beg_row ;
int end_row ;
ml_line_t * line ;
if( ! GTK_WIDGET_REALIZED(GTK_WIDGET(terminal)))
{
return ;
}
beg_row = - ml_term_get_num_of_logged_lines( terminal->pvt->term) ;
for( end_row = ml_term_get_rows( terminal->pvt->term) - 1 ; end_row >= 0 ; end_row --)
{
if( (line = ml_term_get_line( terminal->pvt->term , end_row)) &&
! ml_line_is_empty( line))
{
break ;
}
}
selection( &terminal->pvt->screen->sel , 0 , beg_row ,
line->num_of_filled_chars - 1 , end_row) ;
x_window_update( &terminal->pvt->screen->window , 1 /* UPDATE_SCREEN */) ;
}
void
vte_terminal_select_none(
VteTerminal * terminal
)
{
if( ! GTK_WIDGET_REALIZED(GTK_WIDGET(terminal)))
{
return ;
}
x_sel_clear( &terminal->pvt->screen->sel) ;
x_window_update( &terminal->pvt->screen->window ,
3 /* UPDATE_SCREEN|UPDATE_CURSOR */) ;
}
void
vte_terminal_set_size(
VteTerminal * terminal,
glong columns ,
glong rows
)
{
#ifdef DEBUG
kik_debug_printf( KIK_DEBUG_TAG " set cols %d rows %d\n" , columns , rows) ;
#endif
ml_term_resize( terminal->pvt->term , columns , rows) ;
reset_vte_size_member( terminal) ;
/* gnome-terminal(2.29.6 or later ?) is not resized correctly without this. */
if( GTK_WIDGET_REALIZED(GTK_WIDGET(terminal)))
{
gtk_widget_queue_resize_no_redraw( GTK_WIDGET(terminal)) ;
}
}
void
vte_terminal_set_audible_bell(
VteTerminal * terminal ,
gboolean is_audible
)
{
terminal->pvt->audible_bell = (is_audible == TRUE) ;
if( is_audible)
{
x_screen_set_config( terminal->pvt->screen , NULL , "bel_mode" , "sound") ;
}
else if( terminal->pvt->visible_bell)
{
x_screen_set_config( terminal->pvt->screen , NULL , "bel_mode" , "visual") ;
}
else
{
x_screen_set_config( terminal->pvt->screen , NULL , "bel_mode" , "none") ;
}
}
gboolean
vte_terminal_get_audible_bell(
VteTerminal * terminal
)
{
if( terminal->pvt->screen->bel_mode == BEL_SOUND)
{
return TRUE ;
}
else
{
return FALSE ;
}
}
void
vte_terminal_set_visible_bell(
VteTerminal * terminal ,
gboolean is_visible
)
{
terminal->pvt->visible_bell = (is_visible == TRUE) ;
vte_terminal_set_audible_bell( terminal , ! is_visible && terminal->pvt->audible_bell) ;
}
gboolean
vte_terminal_get_visible_bell(
VteTerminal * terminal
)
{
if( terminal->pvt->screen->bel_mode == BEL_VISUAL)
{
return TRUE ;
}
else
{
return FALSE ;
}
}
void
vte_terminal_set_scroll_background(
VteTerminal * terminal ,
gboolean scroll
)
{
}
void
vte_terminal_set_scroll_on_output(
VteTerminal * terminal ,
gboolean scroll
)
{
}
void
vte_terminal_set_scroll_on_keystroke(
VteTerminal * terminal ,
gboolean scroll
)
{
}
void
vte_terminal_set_color_dim(
VteTerminal * terminal ,
const GdkColor * dim
)
{
}
void
vte_terminal_set_color_bold(
VteTerminal * terminal ,
const GdkColor * bold
)
{
}
void
vte_terminal_set_color_foreground(
VteTerminal * terminal ,
const GdkColor * foreground
)
{
gchar * str ;
if( ! foreground)
{
return ;
}
/* #rrrrggggbbbb */
str = gdk_color_to_string( foreground) ;
#ifdef DEBUG
kik_debug_printf( KIK_DEBUG_TAG " set_color_foreground %s\n" , str) ;
#endif
if( GTK_WIDGET_REALIZED(GTK_WIDGET(terminal)))
{
x_screen_set_config( terminal->pvt->screen , NULL , "fg_color" , str) ;
x_window_update( &terminal->pvt->screen->window ,
3 /* UPDATE_SCREEN|UPDATE_CURSOR */) ;
}
else
{
x_color_manager_set_fg_color( terminal->pvt->screen->color_man , str) ;
}
g_free( str) ;
}
void
vte_terminal_set_color_background(
VteTerminal * terminal ,
const GdkColor * background
)
{
gchar * str ;
if( ! background)
{
return ;
}
/* #rrrrggggbbbb */
str = gdk_color_to_string( background) ;
#ifdef DEBUG
kik_debug_printf( KIK_DEBUG_TAG " set_color_background %s\n" , str) ;
#endif
if( GTK_WIDGET_REALIZED(GTK_WIDGET(terminal)))
{
x_screen_set_config( terminal->pvt->screen , NULL , "bg_color" , str) ;
x_window_update( &terminal->pvt->screen->window ,
3 /* UPDATE_SCREEN|UPDATE_CURSOR */) ;
if( terminal->pvt->image && terminal->pvt->screen->pic_mod.alpha < 255)
{
update_wall_picture( terminal) ;
}
}
else
{
x_color_manager_set_bg_color( terminal->pvt->screen->color_man , str) ;
}
g_free( str) ;
}
void
vte_terminal_set_color_cursor(
VteTerminal * terminal ,
const GdkColor * cursor_background
)
{
gchar * str ;
if( ! cursor_background)
{
return ;
}
/* #rrrrggggbbbb */
str = gdk_color_to_string( cursor_background) ;
#ifdef DEBUG
kik_debug_printf( KIK_DEBUG_TAG " set_color_cursor %s\n" , str) ;
#endif
if( GTK_WIDGET_REALIZED(GTK_WIDGET(terminal)))
{
x_screen_set_config( terminal->pvt->screen , NULL , "cursor_bg_color" , str) ;
x_window_update( &terminal->pvt->screen->window ,
3 /* UPDATE_SCREEN|UPDATE_CURSOR */) ;
}
else
{
x_color_manager_set_cursor_bg_color( terminal->pvt->screen->color_man , str) ;
}
g_free( str) ;
}
void
vte_terminal_set_color_highlight(
VteTerminal * terminal ,
const GdkColor * highlight_background
)
{
}
void
vte_terminal_set_colors(
VteTerminal * terminal ,
const GdkColor * foreground ,
const GdkColor * background ,
const GdkColor * palette ,
glong palette_size
)
{
if( palette_size != 0 && palette_size != 8 && palette_size != 16 &&
( palette_size < 24 || 256 < palette_size))
{
#ifdef DEBUG
kik_debug_printf( KIK_DEBUG_TAG " palette_size %d is illegal\n" , palette_size) ;
#endif
return ;
}
if( palette_size >= 8)
{
ml_color_t color ;
int need_redraw = 0 ;
if( foreground == NULL)
{
foreground = &palette[7] ;
}
if( background == NULL)
{
background = &palette[0] ;
}
for( color = 0 ; color < palette_size ; color++)
{
gchar * rgb ;
char * name ;
rgb = gdk_color_to_string( palette + color) ;
name = ml_get_color_name( color) ;
#ifdef DEBUG
kik_debug_printf( KIK_DEBUG_TAG " Setting rgb %s=%s\n" , name , rgb) ;
#endif
need_redraw |= x_customize_color_file( &color_config , name , rgb , 0) ;
g_free( rgb) ;
}
if( need_redraw && GTK_WIDGET_REALIZED(GTK_WIDGET(terminal)))
{
x_color_cache_unload_all() ;
x_screen_reset_view( terminal->pvt->screen) ;
}
}
vte_terminal_set_color_foreground( terminal , foreground) ;
vte_terminal_set_color_background( terminal , background) ;
}
void
vte_terminal_set_default_colors(
VteTerminal * terminal
)
{
}
void
vte_terminal_set_background_image(
VteTerminal * terminal ,
GdkPixbuf * image /* can be NULL and same as current terminal->pvt->image */
)
{
if( terminal->pvt->image == image)
{
return ;
}
if( terminal->pvt->image)
{
g_object_unref( terminal->pvt->image) ;
}
if( ( terminal->pvt->image = image) == NULL)
{
vte_terminal_set_background_image_file( terminal , "") ;
return ;
}
g_object_ref( image) ;
if( GTK_WIDGET_REALIZED(GTK_WIDGET(terminal)))
{
update_wall_picture( terminal) ;
}
}
void
vte_terminal_set_background_image_file(
VteTerminal * terminal ,
const char * path
)
{
#ifdef DEBUG
kik_debug_printf( KIK_DEBUG_TAG " Setting image file %s\n" , path) ;
#endif
/*
* Don't unref terminal->pvt->image if path is
* "pixmap:<pixmap id>" (Ex. the case of vte_terminal_set_background_image_file()
* being called from update_wall_picture().)
*/
if( terminal->pvt->image && strncmp( path , "pixmap:" , 7) != 0)
{
g_object_unref( terminal->pvt->image) ;
terminal->pvt->image = NULL ;
}
if( GTK_WIDGET_REALIZED(GTK_WIDGET(terminal)))
{
x_screen_set_config( terminal->pvt->screen , NULL , "wall_picture" , path) ;
}
else
{
free( terminal->pvt->screen->pic_file_path) ;
terminal->pvt->screen->pic_file_path = strdup( path) ;
}
}
void
vte_terminal_set_background_tint_color(
VteTerminal * terminal ,
const GdkColor * color
)
{
}
void
vte_terminal_set_background_saturation(
VteTerminal * terminal ,
double saturation
)
{
#ifdef DEBUG
kik_debug_printf( KIK_DEBUG_TAG " SATURATION => %f\n" , saturation) ;
#endif
#if 1
/* XXX old roxterm (1.18.5) always sets opacity 0xffff after it changes saturation. */
if( strstr( g_get_prgname() , "roxterm"))
{
/* "Use solid color" => saturation == 1.0 (roxterm 1.22.2) */
if( saturation == 1.0)
{
vte_terminal_set_opacity( terminal , 0xfffe) ;
return ;
}
}
#endif
vte_terminal_set_opacity( terminal , 0xffff * (1.0 - saturation)) ;
}
void
vte_terminal_set_background_transparent(
VteTerminal * terminal ,
gboolean transparent
)
{
#ifdef DEBUG
kik_debug_printf( KIK_DEBUG_TAG " Pseudo transparent %s.\n" ,
transparent ? "on" : "off") ;
#endif
if( GTK_WIDGET_REALIZED(GTK_WIDGET(terminal)))
{
char * value ;
if( transparent)
{
value = "true" ;
}
else
{
value = "false" ;
}
x_screen_set_config( terminal->pvt->screen , NULL , "use_transbg" , value) ;
}
else if( transparent)
{
x_window_set_transparent( &terminal->pvt->screen->window ,
x_screen_get_picture_modifier( terminal->pvt->screen)) ;
}
}
void
vte_terminal_set_opacity(
VteTerminal * terminal ,
guint16 opacity
)
{
u_int8_t alpha ;
#ifdef DEBUG
kik_debug_printf( KIK_DEBUG_TAG " OPACITY => %x\n" , opacity) ;
#endif
#if 1
/* XXX old roxterm (1.18.5) always sets opacity 0xffff after it changes saturation. */
if( strstr( g_get_prgname() , "roxterm"))
{
if( opacity == 0xffff)
{
return ;
}
else if( opacity == 0xfffe)
{
/* 0xfffe seemed to be set in vte_terminal_set_background_saturation(). */
opacity = 0xffff ;
}
}
#endif
alpha = ((opacity >> 8) & 0xff) ;
if( GTK_WIDGET_REALIZED(GTK_WIDGET(terminal)))
{
char value[DIGIT_STR_LEN(u_int8_t)] ;
sprintf( value , "%d" , (int)alpha) ;
x_screen_set_config( terminal->pvt->screen , NULL , "alpha" , value) ;
x_window_update( &terminal->pvt->screen->window ,
3 /* UPDATE_SCREEN|UPDATE_CURSOR */) ;
update_wall_picture( terminal) ;
}
else
{
terminal->pvt->screen->pic_mod.alpha = alpha ;
}
}
#if VTE_CHECK_VERSION(0,17,1)
void
vte_terminal_set_cursor_blink_mode(
VteTerminal * terminal ,
VteTerminalCursorBlinkMode mode
)
{
/*
* XXX
* Not work until x_display_idling is implemented.
*/
char * value ;
if( mode == VTE_CURSOR_BLINK_ON)
{
value = "true" ;
}
else
{
value = "false" ;
}
x_screen_set_config( terminal->pvt->screen , NULL , "blink_cursor" , value) ;
}
VteTerminalCursorBlinkMode
vte_terminal_get_cursor_blink_mode(
VteTerminal * terminal
)
{
/*
* XXX
* Not work until x_display_idling is implemented.
*/
if( terminal->pvt->screen->window.idling)
{
return VTE_CURSOR_BLINK_ON ;
}
else
{
return VTE_CURSOR_BLINK_OFF ;
}
}
void
vte_terminal_set_cursor_shape(
VteTerminal * terminal ,
VteTerminalCursorShape shape
)
{
}
VteTerminalCursorShape
vte_terminal_get_cursor_shape(
VteTerminal * terminal
)
{
return VTE_CURSOR_SHAPE_IBEAM ;
}
#endif
void
vte_terminal_set_scrollback_lines(
VteTerminal * terminal ,
glong lines
)
{
}
void
vte_terminal_im_append_menuitems(
VteTerminal * terminal ,
GtkMenuShell * menushell
)
{
}
void
vte_terminal_set_font(
VteTerminal * terminal ,
const PangoFontDescription * font_desc
)
{
char * name ;
name = pango_font_description_to_string( font_desc) ;
#ifdef DEBUG
kik_debug_printf( KIK_DEBUG_TAG " set_font %s\n" , name) ;
#endif
vte_terminal_set_font_from_string( terminal , name) ;
g_free( name) ;
}
void
vte_terminal_set_font_from_string(
VteTerminal * terminal ,
const char * name
)
{
#ifdef DEBUG
kik_debug_printf( KIK_DEBUG_TAG " set_font_from_string %s\n" , name) ;
#endif
if( ! name)
{
name = "monospace" ;
}
if( x_customize_font_file( "aafont" , "DEFAULT" , name , 0))
{
x_font_cache_unload_all() ;
if( GTK_WIDGET_REALIZED(GTK_WIDGET(terminal)))
{
x_screen_reset_view( terminal->pvt->screen) ;
}
else
{
/*
* XXX
* Forcibly fix width and height members of x_window_t,
* or widget->requisition is not set correctly in
* reset_vte_size_member.
*/
terminal->pvt->screen->window.width =
x_col_width( terminal->pvt->screen) *
ml_term_get_cols( terminal->pvt->term) ;
terminal->pvt->screen->window.height =
x_line_height( terminal->pvt->screen) *
ml_term_get_rows( terminal->pvt->term) ;
}
reset_vte_size_member( terminal) ;
if( GTK_WIDGET_REALIZED(GTK_WIDGET(terminal)))
{
/*
* gnome-terminal(2.29.6 or later?) is not resized correctly
* without this.
*/
gtk_widget_queue_resize_no_redraw( GTK_WIDGET(terminal)) ;
}
}
}
const PangoFontDescription *
vte_terminal_get_font(
VteTerminal * terminal
)
{
return NULL ;
}
void
vte_terminal_set_allow_bold(
VteTerminal * terminal ,
gboolean allow_bold
)
{
}
gboolean
vte_terminal_get_allow_bold(
VteTerminal * terminal
)
{
return FALSE ;
}
gboolean
vte_terminal_get_has_selection(
VteTerminal * terminal
)
{
if( terminal->pvt->screen->sel.sel_str && terminal->pvt->screen->sel.sel_len > 0)
{
return TRUE ;
}
else
{
return FALSE ;
}
}
void
vte_terminal_set_word_chars(
VteTerminal * terminal ,
const char * spec
)
{
ml_set_word_separators( spec) ;
}
gboolean
vte_terminal_is_word_char(
VteTerminal * terminal ,
gunichar c
)
{
return FALSE ;
}
void
vte_terminal_set_backspace_binding(
VteTerminal * terminal ,
VteTerminalEraseBinding binding
)
{
x_termcap_entry_t * entry ;
char * seq ;
#ifdef DEBUG
kik_debug_printf( KIK_DEBUG_TAG " set backtrace binding => %d\n") ;
#endif
if( binding == VTE_ERASE_ASCII_BACKSPACE)
{
seq = "\x08" ;
}
else if( binding == VTE_ERASE_ASCII_DELETE)
{
seq = "\x7f" ;
}
else if( binding == VTE_ERASE_DELETE_SEQUENCE)
{
seq = "\x1b[3~" ;
}
#if VTE_CHECK_VERSION(0,20,4)
else if( binding == VTE_ERASE_TTY)
{
return ;
}
#endif
else
{
return ;
}
entry = x_termcap_get_entry( &termcap , main_config.term_type) ;
free( entry->str_fields[ML_BACKSPACE]) ;
/* ^H (compatible with libvte) */
entry->str_fields[ML_BACKSPACE] = strdup(seq) ;
}
void
vte_terminal_set_delete_binding(
VteTerminal * terminal ,
VteTerminalEraseBinding binding
)
{
x_termcap_entry_t * entry ;
char * seq ;
if( binding == VTE_ERASE_ASCII_BACKSPACE)
{
seq = "\x08" ;
}
else if( binding == VTE_ERASE_ASCII_DELETE)
{
seq = "\x7f" ;
}
else if( binding == VTE_ERASE_DELETE_SEQUENCE)
{
seq = "\x1b[3~" ;
}
#if VTE_CHECK_VERSION(0,20,4)
else if( binding == VTE_ERASE_TTY)
{
return ;
}
#endif
else
{
return ;
}
entry = x_termcap_get_entry( &termcap , main_config.term_type) ;
free( entry->str_fields[ML_DELETE]) ;
/* ^H (compatible with libvte) */
entry->str_fields[ML_DELETE] = strdup(seq) ;
}
void
vte_terminal_set_mouse_autohide(
VteTerminal * terminal ,
gboolean setting
)
{
}
gboolean
vte_terminal_get_mouse_autohide(
VteTerminal * terminal
)
{
return FALSE ;
}
void
vte_terminal_reset(
VteTerminal * terminal ,
gboolean full ,
gboolean clear_history
)
{
if( GTK_WIDGET_REALIZED(GTK_WIDGET(terminal)))
{
x_screen_exec_cmd( terminal->pvt->screen , "full_reset") ;
}
}
char *
vte_terminal_get_text(
VteTerminal * terminal ,
gboolean (*is_selected)( VteTerminal * terminal ,
glong column , glong row , gpointer data) ,
gpointer data ,
GArray * attributes
)
{
return NULL ;
}
char *
vte_terminal_get_text_include_trailing_spaces(
VteTerminal * terminal ,
gboolean (*is_selected)( VteTerminal * terminal ,
glong column , glong row , gpointer data) ,
gpointer data ,
GArray * attributes
)
{
return NULL ;
}
char *
vte_terminal_get_text_range(
VteTerminal * terminal ,
glong start_row ,
glong start_col ,
glong end_row ,
glong end_col ,
gboolean (*is_selected)( VteTerminal * terminal ,
glong column , glong row , gpointer data) ,
gpointer data ,
GArray * attributes
)
{
return NULL ;
}
void
vte_terminal_get_cursor_position(
VteTerminal * terminal ,
glong * column ,
glong * row
)
{
*column = ml_term_cursor_col( terminal->pvt->term) ;
*row = ml_term_cursor_row( terminal->pvt->term) ;
}
void
vte_terminal_match_clear_all(
VteTerminal * terminal
)
{
}
/* GRegex was not supported */
#if GLIB_CHECK_VERSION(2,14,0)
int
vte_terminal_match_add_gregex(
VteTerminal * terminal ,
GRegex * regex ,
GRegexMatchFlags flags
)
{
/* XXX */
if( strstr( g_regex_get_pattern( regex) , "http"))
{
/* tag == 1 */
return 1 ;
}
else
{
/* tag == 0 */
return 0 ;
}
}
#endif
void
vte_terminal_match_set_cursor(
VteTerminal * terminal ,
int tag ,
GdkCursor * cursor
)
{
}
void
vte_terminal_match_set_cursor_type(
VteTerminal * terminal ,
int tag ,
GdkCursorType cursor_type
)
{
}
void
vte_terminal_match_set_cursor_name(
VteTerminal * terminal ,
int tag ,
const char * cursor_name
)
{
}
void
vte_terminal_match_remove(
VteTerminal * terminal ,
int tag
)
{
}
char *
vte_terminal_match_check(
VteTerminal * terminal ,
glong column ,
glong row ,
int * tag
)
{
u_char * buf ;
size_t len ;
if( ! vte_terminal_get_has_selection( terminal))
{
return NULL ;
}
len = terminal->pvt->screen->sel.sel_len * MLCHAR_UTF_MAX_SIZE + 1 ;
if( ! ( buf = g_malloc( len)))
{
return NULL ;
}
(*terminal->pvt->screen->ml_str_parser->init)( terminal->pvt->screen->ml_str_parser) ;
ml_str_parser_set_str( terminal->pvt->screen->ml_str_parser ,
terminal->pvt->screen->sel.sel_str , terminal->pvt->screen->sel.sel_len) ;
(*terminal->pvt->screen->utf_conv->init)( terminal->pvt->screen->utf_conv) ;
*(buf + (*terminal->pvt->screen->utf_conv->convert)( terminal->pvt->screen->utf_conv ,
buf , len , terminal->pvt->screen->ml_str_parser)) = '\0' ;
/* XXX */
*tag = 1 ; /* For pattern including "http" (see vte_terminal_match_add_gregex) */
return buf ;
}
/* GRegex was not supported */
#if GLIB_CHECK_VERSION(2,14,0)
void
vte_terminal_search_set_gregex(
VteTerminal * terminal ,
GRegex * regex
)
{
if( regex)
{
if( ! terminal->pvt->regex)
{
ml_term_search_init( terminal->pvt->term , match) ;
}
}
else
{
ml_term_search_final( terminal->pvt->term) ;
}
terminal->pvt->regex = regex ;
}
GRegex *
vte_terminal_search_get_gregex(
VteTerminal * terminal
)
{
return terminal->pvt->regex ;
}
gboolean
vte_terminal_search_find_previous(
VteTerminal * terminal
)
{
return search_find( terminal , 1) ;
}
gboolean
vte_terminal_search_find_next(
VteTerminal * terminal
)
{
return search_find( terminal , 0) ;
}
#endif
void
vte_terminal_search_set_wrap_around(
VteTerminal * terminal ,
gboolean wrap_around
)
{
}
gboolean
vte_terminal_search_get_wrap_around(
VteTerminal * terminal
)
{
return FALSE ;
}
void
vte_terminal_set_emulation(
VteTerminal * terminal ,
const char * emulation
)
{
}
const char *
vte_terminal_get_emulation(
VteTerminal *terminal
)
{
return main_config.term_type ;
}
const char *
vte_terminal_get_default_emulation(
VteTerminal * terminal
)
{
return main_config.term_type ;
}
void
vte_terminal_set_encoding(
VteTerminal * terminal ,
const char * codeset
)
{
if( codeset == NULL)
{
codeset = "AUTO" ;
}
if( GTK_WIDGET_REALIZED(GTK_WIDGET(terminal)))
{
x_screen_set_config( terminal->pvt->screen , NULL , "encoding" , codeset) ;
}
else
{
ml_term_change_encoding( terminal->pvt->term ,
ml_get_char_encoding( codeset)) ;
}
g_signal_emit_by_name( terminal , "encoding-changed") ;
}
const char *
vte_terminal_get_encoding(
VteTerminal * terminal
)
{
return ml_get_char_encoding_name( ml_term_get_encoding( terminal->pvt->term)) ;
}
const char *
vte_terminal_get_status_line(
VteTerminal * terminal
)
{
return "" ;
}
void
vte_terminal_get_padding(
VteTerminal * terminal ,
int * xpad ,
int * ypad
)
{
*xpad = WINDOW_MARGIN * 2 /* left + right */ ;
*ypad = WINDOW_MARGIN * 2 /* top + bottom */ ;
}
void
vte_terminal_set_pty(
VteTerminal * terminal ,
int pty_master
)
{
}
int
vte_terminal_get_pty(
VteTerminal * terminal
)
{
return ml_term_get_master_fd( terminal->pvt->term) ;
}
GtkAdjustment *
vte_terminal_get_adjustment(
VteTerminal *terminal
)
{
return terminal->adjustment ;
}
glong
vte_terminal_get_char_width(
VteTerminal * terminal
)
{
return terminal->char_width ;
}
glong
vte_terminal_get_char_height(
VteTerminal * terminal
)
{
return terminal->char_height ;
}
glong
vte_terminal_get_row_count(
VteTerminal * terminal
)
{
return terminal->row_count ;
}
glong
vte_terminal_get_column_count(
VteTerminal * terminal
)
{
return terminal->column_count ;
}
const char *
vte_terminal_get_window_title(
VteTerminal * terminal
)
{
return terminal->window_title ;
}
const char *
vte_terminal_get_icon_title(
VteTerminal * terminal
)
{
return terminal->icon_title ;
}
int
vte_terminal_get_child_exit_status(
VteTerminal * terminal
)
{
return 0 ;
}
#ifndef VTE_DISABLE_DEPRECATED
void
vte_terminal_set_cursor_blinks(
VteTerminal * terminal ,
gboolean blink
)
{
}
gboolean
vte_terminal_get_using_xft(
VteTerminal * terminal
)
{
if( x_get_type_engine( terminal->pvt->screen->font_man) == TYPE_XFT)
{
return TRUE ;
}
else
{
return FALSE ;
}
}
int
vte_terminal_match_add(
VteTerminal * terminal ,
const char * match
)
{
return 1 ;
}
glong
vte_terminal_get_char_descent(
VteTerminal * terminal
)
{
return terminal->char_descent ;
}
glong
vte_terminal_get_char_ascent(
VteTerminal * terminal
)
{
return terminal->char_ascent ;
}
static void
set_anti_alias(
VteTerminal * terminal ,
VteTerminalAntiAlias antialias
)
{
char * value ;
int term_is_null ;
if( antialias == VTE_ANTI_ALIAS_FORCE_ENABLE)
{
value = "true" ;
}
else if( antialias == VTE_ANTI_ALIAS_FORCE_ENABLE)
{
value = "false" ;
}
else
{
return ;
}
/*
* XXX
* Hack for the case of calling this function before fork pty because
* change_font_present() in x_screen.c calls ml_term_get_vertical_mode().
*/
if( terminal->pvt->screen->term == NULL)
{
terminal->pvt->screen->term = terminal->pvt->term ;
term_is_null = 1 ;
}
else
{
term_is_null = 0 ;
}
x_screen_set_config( terminal->pvt->screen , NULL , "use_anti_alias" , value) ;
if( term_is_null)
{
terminal->pvt->screen->term = NULL ;
}
}
void
vte_terminal_set_font_full(
VteTerminal * terminal ,
const PangoFontDescription * font_desc ,
VteTerminalAntiAlias antialias
)
{
set_anti_alias( terminal , antialias) ;
vte_terminal_set_font( terminal , font_desc) ;
}
void
vte_terminal_set_font_from_string_full(
VteTerminal * terminal ,
const char * name ,
VteTerminalAntiAlias antialias
)
{
set_anti_alias( terminal , antialias) ;
vte_terminal_set_font_from_string( terminal , name) ;
}
#endif /* VTE_DISABLE_DEPRECATED */
#if VTE_CHECK_VERSION(0,26,0)
#include <sys/ioctl.h>
#include <ml_pty_intern.h> /* XXX in order to operate ml_pty_t::child_pid directly. */
#include <kiklib/kik_config.h> /* HAVE_SETSID */
struct _VtePty
{
GObject parent_instance ;
VteTerminal * terminal ;
VtePtyFlags flags ;
} ;
struct _VtePtyClass
{
GObjectClass parent_class ;
} ;
G_DEFINE_TYPE(VtePty , vte_pty , G_TYPE_OBJECT) ;
static void
vte_pty_init(
VtePty * pty
)
{
}
static void
vte_pty_class_init(
VtePtyClass * kclass
)
{
}
VtePty *
vte_terminal_pty_new(
VteTerminal * terminal ,
VtePtyFlags flags ,
GError ** error
)
{
VtePty * pty ;
if( terminal->pvt->pty)
{
return terminal->pvt->pty ;
}
if( ! ( pty = vte_pty_new( flags , error)))
{
return NULL ;
}
vte_terminal_set_pty_object( terminal , pty) ;
return pty ;
}
VtePty *
vte_terminal_get_pty_object(
VteTerminal * terminal
)
{
return terminal->pvt->pty ;
}
void
vte_terminal_set_pty_object(
VteTerminal * terminal ,
VtePty * pty
)
{
if( terminal->pvt->pty)
{
return ;
}
pty->terminal = terminal ;
terminal->pvt->pty = pty ;
vte_pty_set_term( pty , vte_terminal_get_emulation( terminal)) ;
if( vte_terminal_forkpty( terminal , NULL , NULL ,
(pty->flags & VTE_PTY_NO_LASTLOG) ? FALSE : TRUE ,
(pty->flags & VTE_PTY_NO_UTMP) ? FALSE : TRUE ,
(pty->flags & VTE_PTY_NO_WTMP) ? FALSE : TRUE) == 0)
{
/* child */
exit(0) ;
}
/* Don't catch exit(0) above. */
terminal->pvt->term->pty->child_pid = -1 ;
}
VtePty *
vte_pty_new(
VtePtyFlags flags ,
GError ** error
)
{
VtePty * pty ;
if( ( pty = g_object_new( VTE_TYPE_PTY , NULL)))
{
pty->flags = flags ;
pty->terminal = NULL ;
}
return pty ;
}
VtePty *
vte_pty_new_foreign(
int fd ,
GError ** error
)
{
return NULL ;
}
void
vte_pty_close(
VtePty * pty
)
{
}
void
vte_pty_child_setup(
VtePty * pty
)
{
int slave ;
int master ;
#if (! defined(HAVE_SETSID) && defined(TIOCNOTTY)) || ! defined(TIOCSCTTY)
int fd ;
#endif
if( ! pty->terminal)
{
return ;
}
#ifdef HAVE_SETSID
setsid() ;
#else
#ifdef TIOCNOTTY
if( ( fd = open( "/dev/tty" , O_RDWR|O_NOCTTY)) >= 0)
{
ioctl( fd , TIOCNOTTY , NULL) ;
close( fd) ;
}
#endif
#endif
master = ml_term_get_master_fd( pty->terminal->pvt->term) ;
slave = ml_term_get_slave_fd( pty->terminal->pvt->term) ;
#ifdef TIOCSCTTY
ioctl( slave, TIOCSCTTY, NULL) ;
#else
if( ( fd = open( "/dev/tty" , O_RDWR|O_NOCTTY)) >= 0)
{
close( fd) ;
}
if( ( fd = open( ptsname( master) , O_RDWR)) >= 0)
{
close( fd) ;
}
if( ( fd = open( "/dev/tty" , O_WRONLY)) >= 0)
{
close( fd) ;
}
#endif
dup2( slave , 0) ;
dup2( slave , 1) ;
dup2( slave , 2) ;
if( slave > STDERR_FILENO)
{
close(slave) ;
}
/* Already set in kik_pty_fork() from vte_terminal_forkpty(). */
#if 0
cfsetispeed( &tio , B9600) ;
cfsetospeed( &tio , B9600) ;
tcsetattr( STDIN_FILENO, TCSANOW , &tio) ;
#endif
close( master) ;
}
int
vte_pty_get_fd(
VtePty * pty
)
{
if( ! pty->terminal)
{
return -1 ;
}
return ml_term_get_master_fd( pty->terminal->pvt->term) ;
}
gboolean
vte_pty_set_size(
VtePty * pty ,
int rows ,
int columns ,
GError ** error
)
{
if( ! pty->terminal)
{
return FALSE ;
}
vte_terminal_set_size( pty->terminal , columns , rows) ;
return TRUE ;
}
gboolean
vte_pty_get_size(
VtePty * pty ,
int * rows ,
int * columns ,
GError ** error
)
{
if( ! pty->terminal)
{
return FALSE ;
}
*columns = ml_term_get_cols( pty->terminal->pvt->term) ;
*rows = ml_term_get_rows( pty->terminal->pvt->term) ;
return TRUE ;
}
void
vte_pty_set_term(
VtePty * pty ,
const char * emulation
)
{
if( pty->terminal)
{
vte_terminal_set_emulation( pty->terminal , emulation) ;
}
}
gboolean
vte_pty_set_utf8(
VtePty * pty ,
gboolean utf8 ,
GError ** error
)
{
if( ! pty->terminal)
{
return FALSE ;
}
return ml_term_change_encoding( pty->terminal->pvt->term ,
utf8 ? ML_UTF8 : ml_get_char_encoding( "auto")) ;
}
void
vte_terminal_watch_child(
VteTerminal * terminal ,
GPid child_pid
)
{
vte_reaper_add_child( child_pid) ;
terminal->pvt->term->pty->child_pid = child_pid ;
}
#endif
/* Ubuntu original function ? */
void
vte_terminal_set_alternate_screen_scroll(
VteTerminal * terminal ,
gboolean scroll
)
{
}
/* Hack for input method module */
static GIOChannel * gio ;
static guint src_id ;
int
x_event_source_add_fd(
int fd ,
void (*handler)(void)
)
{
if( gio)
{
#ifdef DEBUG
kik_debug_printf( KIK_DEBUG_TAG " x_event_source_add_fd failed\n") ;
#endif
return 0 ;
}
gio = g_io_channel_unix_new( fd) ;
src_id = g_io_add_watch( gio , G_IO_IN , (GIOFunc)handler , NULL) ;
return 1 ;
}
int
x_event_source_remove_fd(
int fd
)
{
if( gio && g_io_channel_unix_get_fd( gio) == fd)
{
g_source_destroy( g_main_context_find_source_by_id( NULL , src_id)) ;
g_io_channel_unref( gio) ;
gio = NULL ;
}
return 1 ;
}
/*
* GTK+-3.0 supports XInput2 which enables multi device.
* But XInput2 disables popup menu and shortcut key which applications
* using libvte show, because mlterm doesn't support it.
* So multi device is disabled for now.
*
* __attribute__((constructor)) hack is necessary because gdk_disable_multidevice()
* must be called before gtk_init().
*/
#if GTK_CHECK_VERSION(2,90,0) && __GNUC__
static void __attribute__((constructor))
init_vte(void)
{
gdk_disable_multidevice() ;
}
#endif
|