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
|
// June 2, 2007
//
// Graphics drivers that are based on the Cairo / Pango Libraries.
//
// Copyright (C) 2008 Hazen Babcock
// Copyright (C) 2009, 2010 Hezekiah M. Carty
//
// This file is part of PLplot.
//
// PLplot is free software; you can redistribute it and/or modify
// it under the terms of the GNU Library General Public License as published
// by the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// PLplot is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Library General Public License for more details.
//
// You should have received a copy of the GNU Library General Public License
// along with PLplot; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
//
//
//--------------------------------------------------------------------------
// Header files
//--------------------------------------------------------------------------
#include <stdio.h>
#include <string.h>
#include <math.h>
#include <cairo.h>
#include <pango/pangocairo.h>
// PLplot header files (must occur before driver-dependent includes)
#include "plDevs.h"
#include "plplotP.h"
#include "drivers.h"
// Driver-dependent includes
#if defined ( PLD_wincairo )
#include <windows.h>
#endif
#if defined ( PLD_xcairo )
#include <cairo-xlib.h>
#include <X11/X.h>
#include <X11/Xlib.h>
#include <X11/Xutil.h>
#include <X11/cursorfont.h>
#include <X11/keysym.h>
#endif
#if defined ( PLD_pdfcairo )
#include <cairo-pdf.h>
#endif
#if defined ( PLD_pscairo )
#include <cairo-ps.h>
#endif
#if defined ( PLD_svgcairo )
#include <cairo-svg.h>
#endif
//--------------------------------------------------------------------------
// Constants & global (to this file) variables
//--------------------------------------------------------------------------
#define DPI 72
#define PLCAIRO_DEFAULT_X 720
#define PLCAIRO_DEFAULT_Y 540
#define MAX_STRING_LEN 500
#define MAX_MARKUP_LEN MAX_STRING_LEN * 10
static int text_clipping;
static int text_anti_aliasing;
static int graphics_anti_aliasing;
static int external_drawable;
static int rasterize_image;
static int set_background;
static int image_buffering;
static int already_warned = 0;
static DrvOpt cairo_options[] = { { "text_clipping", DRV_INT, &text_clipping, "Use text clipping (text_clipping=0|1)" },
{ "text_anti_aliasing", DRV_INT, &text_anti_aliasing, "Set desired text anti-aliasing (text_anti_aliasing=0|1|2|3). The numbers are in the same order as the cairo_antialias_t enumeration documented at http://cairographics.org/manual/cairo-cairo-t.html#cairo-antialias-t)" },
{ "graphics_anti_aliasing", DRV_INT, &graphics_anti_aliasing, "Set desired graphics anti-aliasing (graphics_anti_aliasing=0|1|2|3). The numbers are in the same order as the cairo_antialias_t enumeration documented at http://cairographics.org/manual/cairo-cairo-t.html#cairo-antialias-t" },
{ "external_drawable", DRV_INT, &external_drawable, "Plot to external X drawable" },
{ "rasterize_image", DRV_INT, &rasterize_image, "Raster or vector image rendering (rasterize_image=0|1)" },
{ "set_background", DRV_INT, &set_background, "Set the background for the extcairo device (set_background=0|1). If 1 then the plot background will set by PLplot" },
{ "image_buffering", DRV_INT, &image_buffering, "Buffered offscreen rendering for the xcairo device (image_buffering=0|1)." },
{ NULL, DRV_INT, NULL, NULL } };
typedef struct
{
cairo_surface_t *cairoSurface;
cairo_t *cairoContext;
cairo_surface_t *cairoSurface_raster;
cairo_t *cairoContext_raster;
short text_clipping;
short text_anti_aliasing;
short graphics_anti_aliasing;
short rasterize_image;
short set_background;
short image_buffering;
double downscale;
char *pangoMarkupString;
short upDown;
float fontSize;
short uline;
// These are arguments for plP_script_scale which must be retained
// in aStream for the alt_unicode approach. level has an
// identical meaning to upDown above, but it is incremented and
// decremented in plP_script_scale as well as other places in the
// code so the only safe thing to do is to treat level separately
// from upDown.
PLFLT old_sscale, sscale, old_soffset, soffset;
PLINT level;
#if defined ( PLD_xcairo )
cairo_surface_t *cairoSurface_X;
cairo_t *cairoContext_X;
short exit_event_loop;
Display *XDisplay;
Window XWindow;
unsigned int xdrawable_mode;
#endif
#if defined ( PLD_memcairo )
unsigned char *memory;
unsigned char *cairo_format_memory;
char bigendian;
#endif
#if defined ( PLD_wincairo )
cairo_surface_t *cairoSurface_win;
cairo_t *cairoContext_win;
WNDCLASSEX wndclass;
HWND hwnd;
MSG msg;
HDC hdc;
HDC SCRN_hdc;
COLORREF oldcolour;
RECT rect;
#endif
} PLCairo;
PLDLLIMPEXP_DRIVER const char* plD_DEVICE_INFO_cairo =
#if defined ( PLD_xcairo )
"xcairo:Cairo X Windows Driver:1:cairo:100:xcairo\n"
#endif
#if defined ( PLD_pdfcairo )
"pdfcairo:Cairo PDF Driver:0:cairo:101:pdfcairo\n"
#endif
#if defined ( PLD_pscairo )
"pscairo:Cairo PS Driver:0:cairo:102:pscairo\n"
#endif
#if defined ( PLD_epscairo )
"epscairo:Cairo EPS Driver:0:cairo:103:epscairo\n"
#endif
#if defined ( PLD_svgcairo )
"svgcairo:Cairo SVG Driver:0:cairo:104:svgcairo\n"
#endif
#if defined ( PLD_pngcairo )
"pngcairo:Cairo PNG Driver:0:cairo:105:pngcairo\n"
#endif
#if defined ( PLD_memcairo )
"memcairo:Cairo Memory Driver:0:cairo:106:memcairo\n"
#endif
#if defined ( PLD_extcairo )
"extcairo:Cairo External Context Driver:0:cairo:107:extcairo\n"
#endif
#if defined ( PLD_wincairo )
"wincairo:Cairo Microscoft Windows Driver:0:cairo:108:wincairo\n"
#endif
;
//
// Structure for passing external drawables to xcairo devices via
// the PLESC_DEVINIT escape function.
//
#if defined ( PLD_xcairo )
typedef struct
{
Display *display;
Drawable drawable;
} PLXcairoDrawableInfo;
#endif
//--------------------------------------------------------------------------
// Font style and weight lookup tables (copied
// from the psttf driver).
//--------------------------------------------------------------------------
#define NPANGOLOOKUP 5
const char *defaultFamilyLookup[NPANGOLOOKUP] = {
"sans",
"serif",
"monospace",
"sans,serif",
"sans,serif"
};
const char *envFamilyLookup[NPANGOLOOKUP] = {
"PLPLOT_FREETYPE_SANS_FAMILY",
"PLPLOT_FREETYPE_SERIF_FAMILY",
"PLPLOT_FREETYPE_MONO_FAMILY",
"PLPLOT_FREETYPE_SCRIPT_FAMILY",
"PLPLOT_FREETYPE_SYMBOL_FAMILY"
};
#define FAMILY_LOOKUP_LEN 1024
char familyLookup[NPANGOLOOKUP][FAMILY_LOOKUP_LEN];
#define TAG_LEN 200
const char *weightLookup[2] = {
"normal",
"bold"
};
const char *styleLookup[3] = {
"normal",
"italic",
"oblique"
};
//--------------------------------------------------------------------------
//--------------------------------------------------------------------------
//
// That which is common to all the Cairo Drivers
//
//--------------------------------------------------------------------------
//--------------------------------------------------------------------------
//--------------------------------------------------------------------------
// function declarations
//--------------------------------------------------------------------------
// General
PLCairo *stream_and_font_setup( PLStream *, int );
cairo_status_t write_to_stream( void *, unsigned char *, unsigned int );
void set_clip( PLStream *pls );
int cairo_family_check( PLStream *pls );
// String processing
static void proc_str( PLStream *, EscText * );
static void text_begin_cairo( PLStream *pls, EscText *args );
static void text_char_cairo( PLStream *pls, EscText *args );
static void text_esc_cairo( PLStream *pls, EscText *args );
static void text_end_cairo( PLStream *pls, EscText *args );
static char *ucs4_to_pango_markup_format( PLUNICODE *, int, float );
static void open_span_tag( char *, PLUNICODE, float, int );
static void close_span_tag( char *, int );
static char *rise_span_tag( int, float, float, float );
// Graphics
static void set_current_context( PLStream * );
static void poly_line( PLStream *, short *, short *, PLINT );
static void filled_polygon( PLStream *pls, short *xa, short *ya, PLINT npts );
static void gradient( PLStream *pls, short *xa, short *ya, PLINT npts );
static void arc( PLStream *, arc_struct * );
static void rotate_cairo_surface( PLStream *, float, float, float, float, float, float, PLBOOL );
static void blit_to_x( PLStream *pls, double x, double y, double w, double h );
// Rasterization of plotted material
static void start_raster( PLStream* );
static void end_raster( PLStream* );
// Get/set drawing mode
static void set_mode( PLStream*, PLINT* );
static void get_mode( PLStream*, PLINT* );
// Get / set line properties
void get_line_properties( PLCairo *aStream, cairo_line_join_t *join, cairo_line_cap_t *cap );
void set_line_properties( PLCairo *aStream, cairo_line_join_t join, cairo_line_cap_t cap );
// PLplot interface functions
// general
void plD_bop_cairo( PLStream * );
void plD_eop_cairo( PLStream * );
void plD_state_cairo( PLStream *, PLINT );
void plD_esc_cairo( PLStream *, PLINT, void * );
void plD_tidy_cairo( PLStream * );
void plD_line_cairo( PLStream *, short, short, short, short );
void plD_polyline_cairo( PLStream *, short *, short *, PLINT );
//--------------------------------------------------------------------------
// start_raster()
//
// Set up off-screen rasterized rendering
//--------------------------------------------------------------------------
void start_raster( PLStream *pls )
{
PLCairo *aStream;
cairo_surface_t *tmp_sfc;
cairo_t *tmp_context;
aStream = (PLCairo *) pls->dev;
// Do not use the external surface if the user says not to
if ( !aStream->rasterize_image )
return;
// Create an image surface and context for the offscreen rendering
aStream->cairoSurface_raster =
//
// cairo_surface_create_similar( aStream->cairoSurface,
// CAIRO_CONTENT_COLOR,
// pls->xlength, pls->ylength );
//
cairo_image_surface_create( CAIRO_FORMAT_ARGB32,
pls->xlength, pls->ylength );
aStream->cairoContext_raster = cairo_create( aStream->cairoSurface_raster );
// Disable antialiasing for the raster surface. The output seems to look
// better that way.
cairo_set_antialias( aStream->cairoContext_raster, CAIRO_ANTIALIAS_NONE );
// Swap the raster and main plot surfaces and contexts
tmp_sfc = aStream->cairoSurface;
tmp_context = aStream->cairoContext;
aStream->cairoSurface = aStream->cairoSurface_raster;
aStream->cairoContext = aStream->cairoContext_raster;
// Save the main plot surface and context for when we are finished
aStream->cairoSurface_raster = tmp_sfc;
aStream->cairoContext_raster = tmp_context;
}
//--------------------------------------------------------------------------
// end_raster()
//
// Finish off-screen rasterized rendering and copy the result on to the
// main plot surface.
//--------------------------------------------------------------------------
void end_raster( PLStream *pls )
{
PLCairo *aStream;
cairo_surface_t *tmp_sfc;
cairo_t *tmp_context;
aStream = (PLCairo *) pls->dev;
// TODO FIXME: This should really only copy the used portion of the
// offscreen pixmap.
// Do not use the external surface if the user says not to
if ( !aStream->rasterize_image )
return;
// Some Cairo devices support delayed device setup (eg: xcairo with
// external drawable and extcairo with an external context).
if ( aStream->cairoContext == NULL )
plexit( "Can not plot to a Cairo device with no context" );
// Restore the main plot surface and context for future plotting
tmp_sfc = aStream->cairoSurface;
tmp_context = aStream->cairoContext;
aStream->cairoSurface = aStream->cairoSurface_raster;
aStream->cairoContext = aStream->cairoContext_raster;
aStream->cairoSurface_raster = tmp_sfc;
aStream->cairoContext_raster = tmp_context;
// Blit the raster surface on to the main plot
cairo_set_source_surface( aStream->cairoContext, aStream->cairoSurface_raster, 0.0, 0.0 );
cairo_paint( aStream->cairoContext );
// Free the now extraneous surface and context
cairo_destroy( aStream->cairoContext_raster );
cairo_surface_destroy( aStream->cairoSurface_raster );
}
//--------------------------------------------------------------------------
// plD_bop_cairo()
//
// Set up for the next page.
//--------------------------------------------------------------------------
void plD_bop_cairo( PLStream *pls )
{
PLCairo *aStream;
aStream = (PLCairo *) pls->dev;
// Some Cairo devices support delayed device setup (eg: xcairo with
// external drawable and extcairo with an external context).
if ( aStream->cairoContext == NULL )
return;
// Fill in the window with the background color.
cairo_rectangle( aStream->cairoContext, 0.0, 0.0, pls->xlength, pls->ylength );
if ( (double) pls->cmap0[0].a < 1.0 )
{
cairo_set_source_rgba( aStream->cairoContext, 1.0, 1.0, 1.0, 1.0 );
cairo_fill_preserve( aStream->cairoContext );
}
cairo_set_source_rgba( aStream->cairoContext,
(double) pls->cmap0[0].r / 255.0,
(double) pls->cmap0[0].g / 255.0,
(double) pls->cmap0[0].b / 255.0,
(double) pls->cmap0[0].a );
cairo_fill( aStream->cairoContext );
}
//--------------------------------------------------------------------------
// plD_line_cairo()
//
// Draw a line in the current color from (x1,y1) to (x2,y2).
//--------------------------------------------------------------------------
//--------------------------------------------------------------------------
// (get|set)_line_properties
//
// (Get|Set) the current Cairo line drawing properties.
//--------------------------------------------------------------------------
void get_line_properties( PLCairo *aStream, cairo_line_join_t *join, cairo_line_cap_t *cap )
{
*join = cairo_get_line_join( aStream->cairoContext );
*cap = cairo_get_line_cap( aStream->cairoContext );
}
void set_line_properties( PLCairo *aStream, cairo_line_join_t join, cairo_line_cap_t cap )
{
cairo_set_line_join( aStream->cairoContext, join );
cairo_set_line_cap( aStream->cairoContext, cap );
}
void plD_line_cairo( PLStream *pls, short x1a, short y1a, short x2a, short y2a )
{
PLCairo *aStream;
aStream = (PLCairo *) pls->dev;
set_current_context( pls );
cairo_save( aStream->cairoContext );
set_line_properties( aStream, CAIRO_LINE_JOIN_BEVEL, CAIRO_LINE_CAP_ROUND );
cairo_move_to( aStream->cairoContext, aStream->downscale * (double) x1a, aStream->downscale * (double) y1a );
cairo_line_to( aStream->cairoContext, aStream->downscale * (double) x2a, aStream->downscale * (double) y2a );
cairo_stroke( aStream->cairoContext );
cairo_restore( aStream->cairoContext );
}
//--------------------------------------------------------------------------
// plD_polyline_cairo()
//
// Draw a polyline in the current color.
//--------------------------------------------------------------------------
void plD_polyline_cairo( PLStream *pls, short *xa, short *ya, PLINT npts )
{
PLCairo *aStream;
aStream = (PLCairo *) pls->dev;
cairo_save( aStream->cairoContext );
set_line_properties( aStream, CAIRO_LINE_JOIN_BEVEL, CAIRO_LINE_CAP_BUTT );
poly_line( pls, xa, ya, npts );
cairo_stroke( aStream->cairoContext );
cairo_restore( aStream->cairoContext );
}
//--------------------------------------------------------------------------
// plD_eop_cairo()
//
// Generic end of page.
//--------------------------------------------------------------------------
void plD_eop_cairo( PLStream *pls )
{
PLCairo *aStream;
aStream = (PLCairo *) pls->dev;
cairo_show_page( aStream->cairoContext );
}
//--------------------------------------------------------------------------
// plD_tidy_cairo()
//
// General: Close graphics file or otherwise clean up.
//--------------------------------------------------------------------------
void plD_tidy_cairo( PLStream *pls )
{
PLCairo *aStream;
aStream = (PLCairo *) pls->dev;
// Free the cairo context and surface.
cairo_destroy( aStream->cairoContext );
cairo_surface_destroy( aStream->cairoSurface );
plCloseFile( pls );
}
//--------------------------------------------------------------------------
// plD_state_cairo()
//
// Handle change in PLStream state (color, pen width, fill attribute, etc).
//
// Nothing is done here because these attributes are acquired from
// PLStream for each element that is drawn.
//--------------------------------------------------------------------------
void plD_state_cairo( PLStream * PL_UNUSED( pls ), PLINT PL_UNUSED( op ) )
{
}
//--------------------------------------------------------------------------
// plD_esc_cairo()
//
// Generic escape function.
//--------------------------------------------------------------------------
void plD_esc_cairo( PLStream *pls, PLINT op, void *ptr )
{
//PLCairo *aStream;
//aStream = (PLCairo *) pls->dev;
switch ( op )
{
case PLESC_FILL: // filled polygon
filled_polygon( pls, pls->dev_x, pls->dev_y, pls->dev_npts );
break;
case PLESC_GRADIENT: // render a gradient within a polygon.
gradient( pls, pls->dev_x, pls->dev_y, pls->dev_npts );
break;
case PLESC_HAS_TEXT:
if ( !pls->alt_unicode )
{
proc_str( pls, (EscText *) ptr );
}
break;
case PLESC_BEGIN_TEXT: // get ready to get a handle a string of text
text_begin_cairo( pls, (EscText *) ptr );
break;
case PLESC_TEXT_CHAR: // handle a character of text to display
text_char_cairo( pls, (EscText *) ptr );
break;
case PLESC_CONTROL_CHAR: // handle a control character (super/subscript of fontchange)
text_esc_cairo( pls, (EscText *) ptr );
break;
case PLESC_END_TEXT: // finish a string of text
text_end_cairo( pls, (EscText *) ptr );
break;
case PLESC_START_RASTERIZE: // Start offscreen/rasterized rendering
start_raster( pls );
break;
case PLESC_END_RASTERIZE: // End offscreen/rasterized rendering
end_raster( pls );
break;
case PLESC_ARC: // Draw an arc, either filled or outline
arc( pls, (arc_struct *) ptr );
break;
case PLESC_MODESET: // Set drawing mode
set_mode( pls, (int *) ptr );
break;
case PLESC_MODEGET: // Get drawing mode
get_mode( pls, (int *) ptr );
break;
}
}
//--------------------------------------------------------------------------
// set_mode
//
// Set drawing mode.
//--------------------------------------------------------------------------
void set_mode( PLStream *pls, PLINT *mode )
{
PLCairo *aStream;
aStream = (PLCairo *) pls->dev;
switch ( *mode )
{
case PL_DRAWMODE_UNKNOWN: // Invalid - do nothing
break;
case PL_DRAWMODE_DEFAULT:
cairo_set_operator( aStream->cairoContext, CAIRO_OPERATOR_OVER );
break;
case PL_DRAWMODE_REPLACE:
cairo_set_operator( aStream->cairoContext, CAIRO_OPERATOR_SOURCE );
break;
case PL_DRAWMODE_XOR:
cairo_set_operator( aStream->cairoContext, CAIRO_OPERATOR_XOR );
break;
}
return;
}
//--------------------------------------------------------------------------
// get_mode
//
// Get drawing mode.
//--------------------------------------------------------------------------
void get_mode( PLStream *pls, PLINT *mode )
{
PLCairo *aStream;
cairo_operator_t op;
aStream = (PLCairo *) pls->dev;
op = cairo_get_operator( aStream->cairoContext );
switch ( op )
{
case CAIRO_OPERATOR_OVER:
*mode = PL_DRAWMODE_DEFAULT;
break;
case CAIRO_OPERATOR_SOURCE:
*mode = PL_DRAWMODE_REPLACE;
break;
case CAIRO_OPERATOR_XOR:
*mode = PL_DRAWMODE_XOR;
break;
default:
*mode = PL_DRAWMODE_UNKNOWN;
}
return;
}
//--------------------------------------------------------------------------
// text_begin_cairo()
//
// Begin text.
//--------------------------------------------------------------------------
void text_begin_cairo( PLStream *pls, EscText *args )
{
int i;
PLCairo *aStream;
aStream = (PLCairo *) pls->dev;
aStream->upDown = 0;
aStream->uline = 0;
aStream->level = 0;
aStream->pangoMarkupString = (char *) malloc( sizeof ( char ) * MAX_MARKUP_LEN );
// Calculate the font size (in points since DPI = 72).
aStream->fontSize = (float) ( pls->chrht * DPI / 25.4 );
for ( i = 0; i < MAX_MARKUP_LEN; i++ )
{
aStream->pangoMarkupString[i] = 0;
}
open_span_tag( aStream->pangoMarkupString, args->n_fci, aStream->fontSize, 0 );
}
//--------------------------------------------------------------------------
// text_char_cairo()
//
// Add text.
//--------------------------------------------------------------------------
void text_char_cairo( PLStream *pls, EscText *args )
{
char utf8[5];
PLCairo *aStream;
aStream = (PLCairo *) pls->dev;
// make sure we are not too close to the end of the string
if ( strlen( aStream->pangoMarkupString ) < ( MAX_MARKUP_LEN - 50 ) )
{
switch ( args->n_char )
{
case 38:
strncat( aStream->pangoMarkupString, "&", MAX_MARKUP_LEN - 1 - strlen( aStream->pangoMarkupString ) );
break;
case 60:
strncat( aStream->pangoMarkupString, "<", MAX_MARKUP_LEN - 1 - strlen( aStream->pangoMarkupString ) );
break;
case 62:
strncat( aStream->pangoMarkupString, ">", MAX_MARKUP_LEN - 1 - strlen( aStream->pangoMarkupString ) );
break;
default:
ucs4_to_utf8( args->n_char, utf8 );
strncat( aStream->pangoMarkupString, utf8, MAX_MARKUP_LEN - 1 - strlen( aStream->pangoMarkupString ) );
break;
}
}
}
//--------------------------------------------------------------------------
// text_esc_cairo()
//
// A font change, superscript, subscript, etc...
//--------------------------------------------------------------------------
void text_esc_cairo( PLStream *pls, EscText *args )
{
PLCairo *aStream;
aStream = (PLCairo *) pls->dev;
switch ( args->n_ctrl_char )
{
case PLTEXT_FONTCHANGE:
close_span_tag( aStream->pangoMarkupString, aStream->upDown );
open_span_tag( aStream->pangoMarkupString, args->n_fci, aStream->fontSize, aStream->upDown );
break;
case PLTEXT_SUPERSCRIPT:
if ( aStream->upDown < 0 )
{
strncat( aStream->pangoMarkupString, "</span>", MAX_MARKUP_LEN - 1 - strlen( aStream->pangoMarkupString ) );
aStream->level++;
}
else
{
plP_script_scale( TRUE, &aStream->level,
&aStream->old_sscale, &aStream->sscale, &aStream->old_soffset, &aStream->soffset );
strncat( aStream->pangoMarkupString,
rise_span_tag( TRUE, aStream->fontSize, (float) aStream->sscale, (float) aStream->soffset ),
MAX_MARKUP_LEN - 1 - strlen( aStream->pangoMarkupString ) );
}
aStream->upDown++;
break;
case PLTEXT_SUBSCRIPT:
if ( aStream->upDown > 0 )
{
strncat( aStream->pangoMarkupString, "</span>", MAX_MARKUP_LEN - 1 - strlen( aStream->pangoMarkupString ) );
aStream->level--;
}
else
{
plP_script_scale( FALSE, &aStream->level,
&aStream->old_sscale, &aStream->sscale, &aStream->old_soffset, &aStream->soffset );
strncat( aStream->pangoMarkupString,
rise_span_tag( FALSE, aStream->fontSize, (float) aStream->sscale, (float) aStream->soffset ),
MAX_MARKUP_LEN - 1 - strlen( aStream->pangoMarkupString ) );
}
aStream->upDown--;
break;
case PLTEXT_UNDERLINE:
if ( aStream->uline == 1 )
{
strncat( aStream->pangoMarkupString, "</span>", MAX_MARKUP_LEN - 1 - strlen( aStream->pangoMarkupString ) );
aStream->level++;
}
else
{
strncat( aStream->pangoMarkupString, "<span underline=\"single\">", MAX_MARKUP_LEN - 1 - strlen( aStream->pangoMarkupString ) );
aStream->level++;
}
aStream->uline = !aStream->uline;
break;
case PLTEXT_BACKCHAR:
case PLTEXT_OVERLINE:
plwarn( "'-', and 'b/B' text escape sequences not processed." );
break;
}
}
//--------------------------------------------------------------------------
// text_end_cairo()
//
// Draw the text and clean up.
//--------------------------------------------------------------------------
void text_end_cairo( PLStream *pls, EscText *args )
{
int textXExtent, textYExtent, baseline;
PLFLT rotation, shear, stride, cos_rot, sin_rot, cos_shear, sin_shear;
cairo_matrix_t *cairoTransformMatrix;
cairo_font_options_t *cairoFontOptions;
PangoContext *context;
PangoLayout *layout;
PLCairo *aStream;
aStream = (PLCairo *) pls->dev;
set_current_context( pls );
// Close the last span tag.
close_span_tag( aStream->pangoMarkupString, aStream->upDown );
// printf("%s\n", aStream->pangoMarkupString);
// Create the Pango text layout so we can figure out how big it is
layout = pango_cairo_create_layout( aStream->cairoContext );
pango_layout_set_markup( layout, aStream->pangoMarkupString, -1 );
pango_layout_get_pixel_size( layout, &textXExtent, &textYExtent );
baseline = pango_layout_get_baseline( layout );
// If asked, set the string length (in mm) and return
if ( pls->get_string_length )
{
pls->string_length = (PLFLT) textXExtent * 25.4 / DPI;
}
else
{
// Set font aliasing
context = pango_layout_get_context( layout );
cairoFontOptions = cairo_font_options_create();
cairo_font_options_set_antialias( cairoFontOptions, aStream->text_anti_aliasing );
pango_cairo_context_set_font_options( context, cairoFontOptions );
pango_layout_context_changed( layout );
cairo_font_options_destroy( cairoFontOptions );
// Save current transform matrix & clipping region
cairo_save( aStream->cairoContext );
// Set up the clipping region if we are doing text clipping
if ( aStream->text_clipping )
{
set_clip( pls );
}
// Move to the string reference point
cairo_move_to( aStream->cairoContext, aStream->downscale * (double) args->x, aStream->downscale * (double) args->y );
// Invert the coordinate system so that the text is drawn right side up
cairoTransformMatrix = (cairo_matrix_t *) malloc( sizeof ( cairo_matrix_t ) );
cairo_matrix_init( cairoTransformMatrix, 1.0, 0.0, 0.0, -1.0, 0.0, 0.0 );
cairo_transform( aStream->cairoContext, cairoTransformMatrix );
// Extract rotation angle and shear from the PLplot tranformation matrix.
// Compute sines and cosines of the angles as an optimization.
plRotationShear( args->xform, &rotation, &shear, &stride );
rotation -= pls->diorot * PI / 2.0;
cos_rot = cos( rotation );
sin_rot = sin( rotation );
cos_shear = cos( shear );
sin_shear = sin( shear );
// Apply the transform matrix
cairo_matrix_init( cairoTransformMatrix,
cos_rot * stride,
-sin_rot * stride,
cos_rot * sin_shear + sin_rot * cos_shear,
-sin_rot * sin_shear + cos_rot * cos_shear,
0, 0 );
cairo_transform( aStream->cairoContext, cairoTransformMatrix );
free( cairoTransformMatrix );
// Move to the text starting point
// printf("baseline %d %d\n", baseline, textYExtent);
cairo_rel_move_to( aStream->cairoContext,
(double) ( -1.0 * args->just * (double) textXExtent ),
(double) 0.5 * aStream->fontSize - baseline / 1024.0 );
// Render the text
pango_cairo_show_layout( aStream->cairoContext, layout );
// Restore the transform matrix to its state prior to the text transform.
cairo_restore( aStream->cairoContext );
}
// Free the layout object and the markup string
g_object_unref( layout );
free( aStream->pangoMarkupString );
}
//--------------------------------------------------------------------------
// proc_str()
//
// Processes strings for display.
//--------------------------------------------------------------------------
void proc_str( PLStream *pls, EscText *args )
{
float fontSize;
int textXExtent, textYExtent, baseline;
char *textWithPangoMarkup;
PLFLT rotation, shear, stride, cos_rot, sin_rot, cos_shear, sin_shear;
cairo_matrix_t *cairoTransformMatrix;
cairo_font_options_t *cairoFontOptions;
PangoContext *context;
PangoLayout *layout;
PLCairo *aStream;
aStream = (PLCairo *) pls->dev;
set_current_context( pls );
// Check that we got unicode, warning message and return if not
if ( args->unicode_array_len == 0 )
{
printf( "Non unicode string passed to a cairo driver, ignoring\n" );
return;
}
// Check that unicode string isn't longer then the max we allow
if ( args->unicode_array_len >= MAX_STRING_LEN )
{
printf( "Sorry, the cairo drivers only handles strings of length < %d\n", MAX_STRING_LEN );
return;
}
// Calculate the font size (in points since DPI = 72).
fontSize = (float) ( pls->chrht * DPI / 25.4 );
// Convert the escape characters into the appropriate Pango markup
textWithPangoMarkup = ucs4_to_pango_markup_format( args->unicode_array, args->unicode_array_len, fontSize );
// Create the Pango text layout so we can figure out how big it is
layout = pango_cairo_create_layout( aStream->cairoContext );
pango_layout_set_markup( layout, textWithPangoMarkup, -1 );
pango_layout_get_pixel_size( layout, &textXExtent, &textYExtent );
baseline = pango_layout_get_baseline( layout );
// If asked, set the string length (in mm) and return
if ( pls->get_string_length )
{
pls->string_length = (PLFLT) textXExtent * 25.4 / DPI;
return;
}
// Set font aliasing
context = pango_layout_get_context( layout );
cairoFontOptions = cairo_font_options_create();
cairo_font_options_set_antialias( cairoFontOptions, aStream->text_anti_aliasing );
pango_cairo_context_set_font_options( context, cairoFontOptions );
pango_layout_context_changed( layout );
cairo_font_options_destroy( cairoFontOptions );
// Save current transform matrix & clipping region
cairo_save( aStream->cairoContext );
// Set up the clipping region if we are doing text clipping
if ( aStream->text_clipping )
{
set_clip( pls );
}
// Move to the string reference point
cairo_move_to( aStream->cairoContext, aStream->downscale * (double) args->x, aStream->downscale * (double) args->y );
// Invert the coordinate system so that the text is drawn right side up
cairoTransformMatrix = (cairo_matrix_t *) malloc( sizeof ( cairo_matrix_t ) );
cairo_matrix_init( cairoTransformMatrix, 1.0, 0.0, 0.0, -1.0, 0.0, 0.0 );
cairo_transform( aStream->cairoContext, cairoTransformMatrix );
// Extract rotation angle and shear from the PLplot tranformation matrix.
// Compute sines and cosines of the angles as an optimization.
plRotationShear( args->xform, &rotation, &shear, &stride );
rotation -= pls->diorot * PI / 2.0;
cos_rot = cos( rotation );
sin_rot = sin( rotation );
cos_shear = cos( shear );
sin_shear = sin( shear );
// Apply the transform matrix
cairo_matrix_init( cairoTransformMatrix,
cos_rot * stride,
-sin_rot * stride,
cos_rot * sin_shear + sin_rot * cos_shear,
-sin_rot * sin_shear + cos_rot * cos_shear,
0, 0 );
cairo_transform( aStream->cairoContext, cairoTransformMatrix );
free( cairoTransformMatrix );
// printf("baseline (ps) %d %d %f\n", baseline, textYExtent, aStream->fontSize);
// Move to the text starting point
cairo_rel_move_to( aStream->cairoContext,
(double) ( -1.0 * args->just * (double) textXExtent ),
(double) 0.5 * fontSize - baseline / 1024.0 );
// Render the text
pango_cairo_show_layout( aStream->cairoContext, layout );
// Restore the transform matrix to its state prior to the text transform.
cairo_restore( aStream->cairoContext );
// Free the layout object and the markup string.
g_object_unref( layout );
free( textWithPangoMarkup );
}
//--------------------------------------------------------------------------
// ucs4_to_pango_markup_format()
//
// Converts the plplot string (in ucs4) to a utf8 string that includes
// pango markup.
//
// http://developer.gnome.org/doc/API/2.0/pango/PangoMarkupFormat.html
//--------------------------------------------------------------------------
char *ucs4_to_pango_markup_format( PLUNICODE *ucs4, int ucs4Len, float fontSize )
{
char plplotEsc;
int i;
int upDown = 0;
PLUNICODE fci;
char utf8[5];
char *pangoMarkupString;
PLFLT old_sscale, sscale, old_soffset, soffset;
PLINT level = 0;
short uline = 0;
// Will this be big enough? We might have lots of markup.
pangoMarkupString = (char *) malloc( sizeof ( char ) * MAX_MARKUP_LEN );
for ( i = 0; i < MAX_MARKUP_LEN; i++ )
{
pangoMarkupString[i] = 0;
}
// Get PLplot escape character
plgesc( &plplotEsc );
// Get the curent font and open the first span tag
plgfci( &fci );
open_span_tag( pangoMarkupString, fci, fontSize, 0 );
// Parse the string to generate the tags
i = 0;
while ( i < ucs4Len )
{
// Try to avoid going off the end of the string
if ( strlen( pangoMarkupString ) > ( MAX_MARKUP_LEN - 50 ) )
{
continue;
}
if ( ucs4[i] < PL_FCI_MARK ) // not a font change
{
if ( ucs4[i] != (PLUNICODE) plplotEsc ) // a character to display
{ // we have to handle "<", ">" and "&" separately since they throw off the XML
switch ( ucs4[i] )
{
case 38:
strncat( pangoMarkupString, "&", MAX_MARKUP_LEN - 1 - strlen( pangoMarkupString ) );
break;
case 60:
strncat( pangoMarkupString, "<", MAX_MARKUP_LEN - 1 - strlen( pangoMarkupString ) );
break;
case 62:
strncat( pangoMarkupString, ">", MAX_MARKUP_LEN - 1 - strlen( pangoMarkupString ) );
break;
default:
ucs4_to_utf8( ucs4[i], utf8 );
strncat( pangoMarkupString, utf8, MAX_MARKUP_LEN - 1 - strlen( pangoMarkupString ) );
break;
}
i++;
continue;
}
i++;
if ( ucs4[i] == (PLUNICODE) plplotEsc ) // a escape character to display
{
ucs4_to_utf8( ucs4[i], utf8 );
strncat( pangoMarkupString, utf8, MAX_MARKUP_LEN - 1 - strlen( pangoMarkupString ) );
i++;
continue;
}
else
{
if ( ucs4[i] == (PLUNICODE) 'u' ) // Superscript
{
if ( upDown < 0 )
{
strncat( pangoMarkupString, "</span>", MAX_MARKUP_LEN - 1 - strlen( pangoMarkupString ) );
level++;
}
else
{
plP_script_scale( TRUE, &level,
&old_sscale, &sscale, &old_soffset, &soffset );
strncat( pangoMarkupString,
rise_span_tag( TRUE, fontSize, (float) sscale, (float) soffset ),
MAX_MARKUP_LEN - 1 - strlen( pangoMarkupString ) );
}
upDown++;
}
if ( ucs4[i] == (PLUNICODE) 'd' ) // Subscript
{
if ( upDown > 0 )
{
strncat( pangoMarkupString, "</span>", MAX_MARKUP_LEN - 1 - strlen( pangoMarkupString ) );
level--;
}
else
{
plP_script_scale( FALSE, &level,
&old_sscale, &sscale, &old_soffset, &soffset );
strncat( pangoMarkupString,
rise_span_tag( FALSE, fontSize, (float) sscale, (float) soffset ),
MAX_MARKUP_LEN - 1 - strlen( pangoMarkupString ) );
}
upDown--;
}
if ( ucs4[i] == (PLUNICODE) '-' ) // Superscript
{
if ( uline == 1 )
{
strncat( pangoMarkupString, "</span>", MAX_MARKUP_LEN - 1 - strlen( pangoMarkupString ) );
level++;
}
else
{
strncat( pangoMarkupString,
"<span underline=\"single\">",
MAX_MARKUP_LEN - 1 - strlen( pangoMarkupString ) );
}
uline = uline;
}
i++;
}
}
else // a font change
{
close_span_tag( pangoMarkupString, upDown );
open_span_tag( pangoMarkupString, ucs4[i], fontSize, upDown );
i++;
}
}
// Close the last span tag.
close_span_tag( pangoMarkupString, upDown );
// printf("%s\n", pangoMarkupString);
return pangoMarkupString;
}
//--------------------------------------------------------------------------
// open_span_tag
//
// 1. Opens a span tag with the appropriate font description given the
// current fci.
// 2. Add the appropriate number of <sub> or <sup> tags to bring us
// back to our current sub/super-script level.
//--------------------------------------------------------------------------
void open_span_tag( char *pangoMarkupString, PLUNICODE fci, float fontSize, int upDown )
{
unsigned char fontFamily, fontStyle, fontWeight;
char openTag[TAG_LEN];
int upDown_level;
PLFLT old_sscale, sscale, old_soffset, soffset;
PLINT level = 0.;
// Generate the font info for the open tag & concatenate this
// onto the markup string.
plP_fci2hex( fci, &fontFamily, PL_FCI_FAMILY );
plP_fci2hex( fci, &fontStyle, PL_FCI_STYLE );
plP_fci2hex( fci, &fontWeight, PL_FCI_WEIGHT );
// From http://library.gnome.org/devel/pango/unstable/PangoMarkupFormat.html
// size = font size in 1024ths of a point.
snprintf( openTag, TAG_LEN, "<span font_desc=\"%s\" size=\"%d\" ", familyLookup[fontFamily], (int) ( fontSize * 1024. ) );
strncat( pangoMarkupString, openTag, MAX_MARKUP_LEN - 1 - strlen( pangoMarkupString ) );
snprintf( openTag, TAG_LEN, "style=\"%s\" ", styleLookup[fontStyle] );
strncat( pangoMarkupString, openTag, MAX_MARKUP_LEN - 1 - strlen( pangoMarkupString ) );
snprintf( openTag, TAG_LEN, "weight=\"%s\">", weightLookup[fontWeight] );
strncat( pangoMarkupString, openTag, MAX_MARKUP_LEN - 1 - strlen( pangoMarkupString ) );
// Move to the right superscript/subscript level
for ( upDown_level = 0; upDown_level < upDown; upDown_level++ )
{
plP_script_scale( TRUE, &level,
&old_sscale, &sscale, &old_soffset, &soffset );
strncat( pangoMarkupString,
rise_span_tag( TRUE, fontSize, (float) sscale, (float) soffset ),
MAX_MARKUP_LEN - 1 - strlen( pangoMarkupString ) );
}
for ( upDown_level = 0; upDown_level > upDown; upDown_level-- )
{
plP_script_scale( FALSE, &level,
&old_sscale, &sscale, &old_soffset, &soffset );
strncat( pangoMarkupString,
rise_span_tag( FALSE, fontSize, (float) sscale, (float) soffset ),
MAX_MARKUP_LEN - 1 - strlen( pangoMarkupString ) );
}
}
//--------------------------------------------------------------------------
// close_span_tag
//
// Close a span tag & brings us down to zero sub/super-script level.
//--------------------------------------------------------------------------
void close_span_tag( char *pangoMarkupString, int upDown )
{
if ( upDown > 0 )
{
while ( upDown > 0 )
{
strncat( pangoMarkupString, "</span>", MAX_MARKUP_LEN - 1 - strlen( pangoMarkupString ) );
upDown--;
}
}
if ( upDown < 0 )
{
while ( upDown < 0 )
{
strncat( pangoMarkupString, "</span>", MAX_MARKUP_LEN - 1 - strlen( pangoMarkupString ) );
upDown++;
}
}
strncat( pangoMarkupString, "</span>", MAX_MARKUP_LEN - 1 - strlen( pangoMarkupString ) );
}
// 0.8 mimics the offset of first superscript/subscript level implemented
// in plstr (plsym.c) for Hershey fonts. Indeed when comparing with
// -dev xwin results this factor appears to offset the centers of the
// letters appropriately (but not their edges since different font sizes
// are involved).
# define RISE_FACTOR 0.8
//--------------------------------------------------------------------------
// rise_span_tag
//
// Create a rise span tag w/ appropriate font size & baseline offset
// fontSize is the baseline font size in points (1/72 of an inch),
// multiplier is a scaling factor for that font size for superscript
// or subscript, and rise is the vertical offset (in units of font
// size) for that superscript or subscript.
//--------------------------------------------------------------------------
char *rise_span_tag( int ifsuperscript, float fontSize, float multiplier, float rise )
{
float offset;
static char tag[100];
// http://developer.gnome.org/pango/unstable/PangoMarkupFormat.html says
// rise should be in units of 10000 em's, but empirical evidence shows
// it is in units of 1024th of a point. Therefore, since FontSize
// is in points, a rise of 1024. * fontSize corresponds a rise of
// a full character height.
rise = 1024.f * fontSize * (float) RISE_FACTOR * rise;
// This is the correction for the difference between baseline and
// middle coordinate systems. This offset should be
// 0.5*(fontSize - superscript/subscript fontSize).
offset = 1024.f * 0.5f * fontSize * ( 1.0f - multiplier );
if ( ifsuperscript )
{
sprintf( tag, "<span rise=\"%d\" size=\"%d\">",
(int) ( rise + offset ), (int) ( fontSize * 1024. * multiplier ) );
}
else
{
sprintf( tag, "<span rise=\"%d\" size=\"%d\">",
(int) -( rise - offset ), (int) ( fontSize * 1024. * multiplier ) );
}
return ( tag );
}
//--------------------------------------------------------------------------
// write_to_stream()
//
// Writes data to a open file stream. This function is passed to the
// Cairo file IO devices.
//--------------------------------------------------------------------------
cairo_status_t write_to_stream( void *filePointer, unsigned char *data, unsigned int length )
{
unsigned int bytes_written;
bytes_written = (unsigned int) fwrite( data, 1, (size_t) length, (FILE *) filePointer );
if ( bytes_written == length )
{
return CAIRO_STATUS_SUCCESS;
}
else
{
return CAIRO_STATUS_WRITE_ERROR;
}
}
//--------------------------------------------------------------------------
// stream_and_font_setup()
//
// Initializes the PLStream structure for the cairo devices.
// Initializes the font lookup table.
// Checks for cairo specific user options.
// Returns a new PLCairo structure.
//--------------------------------------------------------------------------
PLCairo *stream_and_font_setup( PLStream *pls, int interactive )
{
int i;
char *a;
PLCairo *aStream;
PLFLT downscale;
downscale = 0.0;
// Stream setup
pls->termin = interactive; // Interactive device
pls->dev_flush = 1; // Handles flushes
pls->color = 1; // Supports color
pls->dev_text = 1; // Handles text
pls->dev_unicode = 1; // Wants unicode text
pls->dev_clear = 0;
pls->alt_unicode = 1; // Wants to handle unicode character by character
pls->page = 0;
pls->dev_fill0 = 1; // Supports hardware solid fills
pls->dev_gradient = 1; // driver renders gradient
pls->dev_arc = 1; // Supports driver-level arcs
pls->plbuf_write = interactive; // Activate plot buffer
pls->has_string_length = 1; // Driver supports string length calculations
pls->dev_modeset = 1; // Driver supports drawing mode setting
if ( pls->xlength <= 0 || pls->ylength <= 0 )
{
pls->xlength = PLCAIRO_DEFAULT_X;
pls->ylength = PLCAIRO_DEFAULT_Y;
}
// Calculate ratio of (smaller) external coordinates used for cairo
// devices to (larger) internal PLplot coordinates.
if ( pls->xlength > pls->ylength )
downscale = (double) pls->xlength / (double) ( PIXELS_X - 1 );
else
downscale = (double) pls->ylength / (double) PIXELS_Y;
plP_setphy( (PLINT) 0, (PLINT) ( pls->xlength / downscale ), (PLINT) 0, (PLINT) ( pls->ylength / downscale ) );
plP_setpxl( DPI / 25.4 / downscale, DPI / 25.4 / downscale );
// Initialize font table with either enviroment variables or defaults.
// This was copied from the psttf driver.
for ( i = 0; i < NPANGOLOOKUP; i++ )
{
if ( ( a = getenv( envFamilyLookup[i] ) ) != NULL )
{
strncpy( familyLookup[i], a, FAMILY_LOOKUP_LEN - 1 );
familyLookup[i][FAMILY_LOOKUP_LEN - 1] = '\0';
}
else
{
strncpy( familyLookup[i], defaultFamilyLookup[i], FAMILY_LOOKUP_LEN - 1 );
familyLookup[i][FAMILY_LOOKUP_LEN - 1] = '\0';
}
}
// Allocate a cairo stream structure
aStream = malloc( sizeof ( PLCairo ) );
#if defined ( PLD_xcairo )
aStream->XDisplay = NULL;
aStream->XWindow = 0;
#endif
aStream->cairoSurface = NULL;
aStream->cairoContext = NULL;
aStream->downscale = downscale;
// Set text clipping on by default since it makes little difference in
// speed for a modern cairo stack.
aStream->text_clipping = 1;
text_clipping = 1;
text_anti_aliasing = 0; // use 'default' text aliasing by default
graphics_anti_aliasing = 0; // use 'default' graphics aliasing by default
rasterize_image = 1; // Enable rasterization by default
set_background = 0; // Default for extcairo is that PLplot not change the background
image_buffering = 1; // Default to image-based buffered rendering
// Check for cairo specific options
plParseDrvOpts( cairo_options );
// Turn off text clipping if the user desires this
if ( !text_clipping )
{
aStream->text_clipping = 0;
}
// Record users desired text and graphics aliasing and rasterization
aStream->text_anti_aliasing = (short) text_anti_aliasing;
aStream->graphics_anti_aliasing = (short) graphics_anti_aliasing;
aStream->rasterize_image = (short) rasterize_image;
aStream->set_background = (short) set_background;
aStream->image_buffering = (short) image_buffering;
return aStream;
}
//--------------------------------------------------------------------------
// set_current_context()
//
// Updates the cairo graphics context with the current values in
// PLStream.
//--------------------------------------------------------------------------
void set_current_context( PLStream *pls )
{
PLCairo *aStream;
aStream = (PLCairo *) pls->dev;
cairo_set_source_rgba( aStream->cairoContext,
(double) pls->curcolor.r / 255.0,
(double) pls->curcolor.g / 255.0,
(double) pls->curcolor.b / 255.0,
(double) pls->curcolor.a );
// In Cairo, zero width lines are not hairlines, they are completely invisible.
if ( pls->width <= 0. )
{
cairo_set_line_width( aStream->cairoContext, 1.0 );
}
else
{
cairo_set_line_width( aStream->cairoContext, (double) pls->width );
}
}
//--------------------------------------------------------------------------
// poly_line()
//
// Draws a multi-segmented line. It is then up to the calling function
// to decide whether to just draw the line, or fill in the area
// enclosed by the line.
//--------------------------------------------------------------------------
void poly_line( PLStream *pls, short *xa, short *ya, PLINT npts )
{
int i;
PLCairo *aStream;
aStream = (PLCairo *) pls->dev;
set_current_context( pls );
cairo_move_to( aStream->cairoContext, aStream->downscale * (double) xa[0], aStream->downscale * (double) ya[0] );
for ( i = 1; i < npts; i++ )
{
cairo_line_to( aStream->cairoContext, aStream->downscale * (double) xa[i], aStream->downscale * (double) ya[i] );
}
}
//--------------------------------------------------------------------------
// filled_polygon()
//
// Draws a filled polygon.
//--------------------------------------------------------------------------
void filled_polygon( PLStream *pls, short *xa, short *ya, PLINT npts )
{
PLCairo *aStream;
aStream = (PLCairo *) pls->dev;
cairo_save( aStream->cairoContext );
// Draw the polygons
poly_line( pls, xa, ya, npts );
cairo_set_source_rgba( aStream->cairoContext,
(double) pls->curcolor.r / 255.0,
(double) pls->curcolor.g / 255.0,
(double) pls->curcolor.b / 255.0,
(double) pls->curcolor.a );
if ( cairo_get_antialias( aStream->cairoContext ) != CAIRO_ANTIALIAS_NONE )
{
cairo_fill_preserve( aStream->cairoContext );
// These line properties make for a nicer looking polygon mesh
set_line_properties( aStream, CAIRO_LINE_JOIN_BEVEL, CAIRO_LINE_CAP_BUTT );
// Comment out the following call to cairo_set_line width
// since the hard-coded width value of 1.0 is not appropriate
// for fills of small areas. Instead, use the line width that
// has already been set by the user via the above call of
// poly_line which in turn calls set_current_context which in
// turn calls cairo_set_line_width for the user-specified
// width.
// cairo_set_line_width( aStream->cairoContext, 1.0 );
cairo_stroke( aStream->cairoContext );
}
else
{
cairo_fill( aStream->cairoContext );
}
cairo_restore( aStream->cairoContext );
}
//--------------------------------------------------------------------------
// gradient()
//
// Render a gradient within a polygon.
//--------------------------------------------------------------------------
void gradient( PLStream *pls, short *xa, short *ya, PLINT npts )
{
int i;
PLCairo *aStream;
cairo_pattern_t *linear_gradient;
aStream = (PLCairo *) pls->dev;
// These line properties make for a nicer looking polygon mesh
set_line_properties( aStream, CAIRO_LINE_JOIN_BEVEL, CAIRO_LINE_CAP_BUTT );
linear_gradient = cairo_pattern_create_linear(
aStream->downscale * pls->xgradient[0],
aStream->downscale * pls->ygradient[0],
aStream->downscale * pls->xgradient[1],
aStream->downscale * pls->ygradient[1] );
cairo_pattern_reference( linear_gradient );
for ( i = 0; i < pls->ncol1; i++ )
{
cairo_pattern_add_color_stop_rgba( linear_gradient,
(double) i / (double) ( pls->ncol1 - 1 ),
(double) pls->cmap1[i].r / 255.,
(double) pls->cmap1[i].g / 255.,
(double) pls->cmap1[i].b / 255.,
(double) pls->cmap1[i].a );
}
// Draw the polygon using the gradient.
poly_line( pls, xa, ya, npts );
cairo_set_source( aStream->cairoContext, linear_gradient );
cairo_fill( aStream->cairoContext );
cairo_pattern_destroy( linear_gradient );
}
//--------------------------------------------------------------------------
// set_clip()
//
// Set the clipping region to the plot window.
// NOTE: cairo_save() and cairo_restore() should probably be called before
// and after this, respectively.
//--------------------------------------------------------------------------
void set_clip( PLStream *pls )
{
PLINT rcx[4], rcy[4];
PLCairo *aStream;
aStream = (PLCairo *) pls->dev;
// Use PLplot core routine to get the corners of the clipping rectangle
difilt_clip( rcx, rcy );
// Layout the bounds of the clipping region
// Should we convert PLINT to short and use the polyline routine?
cairo_move_to( aStream->cairoContext,
aStream->downscale * (double) rcx[0],
aStream->downscale * (double) rcy[0] );
cairo_line_to( aStream->cairoContext,
aStream->downscale * (double) rcx[1],
aStream->downscale * (double) rcy[1] );
cairo_line_to( aStream->cairoContext,
aStream->downscale * (double) rcx[2],
aStream->downscale * (double) rcy[2] );
cairo_line_to( aStream->cairoContext,
aStream->downscale * (double) rcx[3],
aStream->downscale * (double) rcy[3] );
cairo_line_to( aStream->cairoContext,
aStream->downscale * (double) rcx[0],
aStream->downscale * (double) rcy[0] );
// Set the clipping region
cairo_clip( aStream->cairoContext );
// Apparently, in some older Cairo versions, cairo_clip does not consume
// the current path.
cairo_new_path( aStream->cairoContext );
}
//--------------------------------------------------------------------------
// cairo_family_check ()
//
// support function to help supress more than one page if family file
// output not specified by the user (e.g., with the -fam command-line option).
//--------------------------------------------------------------------------
int cairo_family_check( PLStream *pls )
{
if ( pls->family || pls->page == 1 )
{
return 0;
}
else
{
if ( !already_warned )
{
already_warned = 1;
plwarn( "All pages after the first skipped because family file output not specified.\n" );
}
return 1;
}
}
//--------------------------------------------------------------------------
// arc()
//
// Draws an arc, possibly filled.
//--------------------------------------------------------------------------
void arc( PLStream *pls, arc_struct *arc_info )
{
PLCairo *aStream;
double x, y, a, b;
double angle1, angle2, rotate;
set_current_context( pls );
aStream = (PLCairo *) pls->dev;
// Scale to the proper Cairo coordinates
x = aStream->downscale * arc_info->x;
y = aStream->downscale * arc_info->y;
a = aStream->downscale * arc_info->a;
b = aStream->downscale * arc_info->b;
// Degrees to radians
angle1 = arc_info->angle1 * M_PI / 180.0;
angle2 = arc_info->angle2 * M_PI / 180.0;
rotate = arc_info->rotate * M_PI / 180.0;
cairo_save( aStream->cairoContext );
// Clip the output to the plotting window
set_clip( pls );
// Make sure the arc is properly shaped and oriented
cairo_save( aStream->cairoContext );
cairo_translate( aStream->cairoContext, x, y );
cairo_rotate( aStream->cairoContext, rotate );
cairo_scale( aStream->cairoContext, a, b );
cairo_arc( aStream->cairoContext, 0.0, 0.0, 1.0, angle1, angle2 );
if ( arc_info->fill )
cairo_line_to( aStream->cairoContext, 0.0, 0.0 );
cairo_restore( aStream->cairoContext );
cairo_set_source_rgba( aStream->cairoContext,
(double) pls->curcolor.r / 255.0,
(double) pls->curcolor.g / 255.0,
(double) pls->curcolor.b / 255.0,
(double) pls->curcolor.a );
if ( arc_info->fill )
{
cairo_fill( aStream->cairoContext );
}
else
{
cairo_stroke( aStream->cairoContext );
}
cairo_restore( aStream->cairoContext );
}
//--------------------------------------------------------------------------
// rotate_cairo_surface()
//
// Rotates the cairo surface to the appropriate orientation.
//--------------------------------------------------------------------------
void rotate_cairo_surface( PLStream *pls, float x11, float x12, float x21, float x22, float x0, float y0, PLBOOL is_xcairo )
{
cairo_matrix_t *matrix;
PLCairo *aStream;
aStream = (PLCairo *) pls->dev;
matrix = (cairo_matrix_t *) malloc( sizeof ( cairo_matrix_t ) );
cairo_matrix_init( matrix, x11, x12, x21, x22, x0, y0 );
#if defined ( PLD_xcairo )
if ( is_xcairo )
{
cairo_transform( aStream->cairoContext_X, matrix );
}
else
{
cairo_transform( aStream->cairoContext, matrix );
}
#else
cairo_transform( aStream->cairoContext, matrix );
#endif
free( matrix );
}
//--------------------------------------------------------------------------
//--------------------------------------------------------------------------
//
// That which is common to all familying Cairo Drivers
//
//--------------------------------------------------------------------------
//--------------------------------------------------------------------------
#if defined ( PLD_pngcairo ) || defined ( PLD_svgcairo ) || defined ( PLD_epscairo )
void plD_bop_cairo_fam( PLStream * );
void plD_eop_cairo_fam( PLStream * );
void plD_state_cairo_fam( PLStream *, PLINT );
void plD_esc_cairo_fam( PLStream *, PLINT, void * );
void plD_tidy_cairo_fam( PLStream * );
void plD_line_cairo_fam( PLStream *, short, short, short, short );
void plD_polyline_cairo_fam( PLStream *, short *, short *, PLINT );
//--------------------------------------------------------------------------
// plD_bop_cairo_fam()
//
// Familying Devices: Set up for the next page.
//--------------------------------------------------------------------------
void plD_bop_cairo_fam( PLStream *pls )
{
PLCairo *aStream;
// Plot familying stuff. Not really understood, just copying gd.c
plGetFam( pls );
aStream = (PLCairo *) pls->dev;
pls->famadv = 1;
pls->page++;
// Suppress multi-page output if family file output is not
// specified by the user.
if ( cairo_family_check( pls ) )
{
return;
}
// Fill in the window with the background color.
cairo_rectangle( aStream->cairoContext, 0.0, 0.0, pls->xlength, pls->ylength );
cairo_set_source_rgba( aStream->cairoContext,
(double) pls->cmap0[0].r / 255.0,
(double) pls->cmap0[0].g / 255.0,
(double) pls->cmap0[0].b / 255.0,
(double) pls->cmap0[0].a );
cairo_fill( aStream->cairoContext );
}
//--------------------------------------------------------------------------
// plD_eop_cairo()
//
// End of page.
//--------------------------------------------------------------------------
void plD_eop_cairo_fam( PLStream *pls )
{
if ( cairo_family_check( pls ) )
{
return;
}
plD_eop_cairo( pls );
}
//--------------------------------------------------------------------------
// plD_state_cairo_fam()
//
// Handle change in PLStream state (color, pen width, fill attribute, etc).
//--------------------------------------------------------------------------
void plD_state_cairo_fam( PLStream *pls, PLINT op )
{
if ( cairo_family_check( pls ) )
{
return;
}
plD_state_cairo( pls, op );
}
//--------------------------------------------------------------------------
// plD_esc_cairo_fam()
//
// Generic escape function.
//--------------------------------------------------------------------------
void plD_esc_cairo_fam( PLStream *pls, PLINT op, void *ptr )
{
if ( cairo_family_check( pls ) )
{
return;
}
plD_esc_cairo( pls, op, ptr );
}
//--------------------------------------------------------------------------
// plD_tidy_cairo_fam()
//
// Close graphics file or otherwise clean up.
//--------------------------------------------------------------------------
void plD_tidy_cairo_fam( PLStream *pls )
{
plD_tidy_cairo( pls );
}
//--------------------------------------------------------------------------
// plD_line_cairo_fam()
//
// Draw a line.
//--------------------------------------------------------------------------
void plD_line_cairo_fam( PLStream *pls, short x1a, short y1a, short x2a, short y2a )
{
if ( cairo_family_check( pls ) )
{
return;
}
plD_line_cairo( pls, x1a, y1a, x2a, y2a );
}
//--------------------------------------------------------------------------
// plD_polyline_cairo_fam()
//
// Draw a polyline in the current color.
//--------------------------------------------------------------------------
void plD_polyline_cairo_fam( PLStream *pls, short *xa, short *ya, PLINT npts )
{
if ( cairo_family_check( pls ) )
{
return;
}
plD_polyline_cairo( pls, xa, ya, npts );
}
#endif
//--------------------------------------------------------------------------
//--------------------------------------------------------------------------
//
// That which is specific to the xcairo driver.
//
//--------------------------------------------------------------------------
//--------------------------------------------------------------------------
#if defined ( PLD_xcairo )
static int XScreen;
static Window rootWindow;
void plD_dispatch_init_xcairo( PLDispatchTable *pdt );
void plD_init_xcairo( PLStream * );
void plD_bop_xcairo( PLStream * );
void plD_eop_xcairo( PLStream * );
void plD_tidy_xcairo( PLStream * );
void plD_esc_xcairo( PLStream *, PLINT, void * );
static void xcairo_get_cursor( PLStream *, PLGraphicsIn * );
//--------------------------------------------------------------------------
// plD_dispatch_init_xcairo()
//
// xcairo dispatch table initialization.
//--------------------------------------------------------------------------
void plD_dispatch_init_xcairo( PLDispatchTable *pdt )
{
#ifndef ENABLE_DYNDRIVERS
pdt->pl_MenuStr = "Cairo X Windows Driver";
pdt->pl_DevName = "xcairo";
#endif
pdt->pl_type = plDevType_Interactive;
pdt->pl_seq = 100;
pdt->pl_init = (plD_init_fp) plD_init_xcairo;
pdt->pl_line = (plD_line_fp) plD_line_cairo;
pdt->pl_polyline = (plD_polyline_fp) plD_polyline_cairo;
pdt->pl_eop = (plD_eop_fp) plD_eop_xcairo;
pdt->pl_bop = (plD_bop_fp) plD_bop_xcairo;
pdt->pl_tidy = (plD_tidy_fp) plD_tidy_xcairo;
pdt->pl_state = (plD_state_fp) plD_state_cairo;
pdt->pl_esc = (plD_esc_fp) plD_esc_xcairo;
}
//--------------------------------------------------------------------------
// xcairo_init_cairo()
//
// Configures Cairo to use whichever X Drawable is set up in the given
// stream. This is called by plD_init_xcairo() in the event we are
// drawing into a plplot-managed window, and plD_esc_xcairo() if
// we are using an external X Drawable.
//
// A return value of 0 indicates success. Currently this function only
// returns 0.
//--------------------------------------------------------------------------
static signed int xcairo_init_cairo( PLStream *pls )
{
PLCairo *aStream;
Visual *defaultVisual;
aStream = (PLCairo *) pls->dev;
// Create an cairo surface & context that are associated with the X window.
defaultVisual = DefaultVisual( aStream->XDisplay, 0 );
// Dimension units are pixels from cairo documentation.
// This is the X window Cairo surface.
aStream->cairoSurface_X = cairo_xlib_surface_create( aStream->XDisplay, aStream->XWindow, defaultVisual, pls->xlength, pls->ylength );
aStream->cairoContext_X = cairo_create( aStream->cairoSurface_X );
// This is the Cairo surface PLplot will actually plot to.
if ( aStream->image_buffering == 0 )
{
aStream->cairoSurface = cairo_surface_create_similar( aStream->cairoSurface_X, CAIRO_CONTENT_COLOR_ALPHA, pls->xlength, pls->ylength );
aStream->cairoContext = cairo_create( aStream->cairoSurface );
}
else
{
// Plot to an off-screen image
aStream->cairoSurface =
cairo_image_surface_create( CAIRO_FORMAT_ARGB32,
pls->xlength, pls->ylength );
aStream->cairoContext = cairo_create( aStream->cairoSurface );
}
// Invert the surface so that the graphs are drawn right side up.
rotate_cairo_surface( pls, 1.0, 0.0, 0.0, -1.0, 0.0, (float) pls->ylength, TRUE );
// Set graphics aliasing
cairo_set_antialias( aStream->cairoContext, aStream->graphics_anti_aliasing );
// Set fill rule for the case of self-intersecting boundaries.
if ( pls->dev_eofill )
cairo_set_fill_rule( aStream->cairoContext, CAIRO_FILL_RULE_EVEN_ODD );
else
cairo_set_fill_rule( aStream->cairoContext, CAIRO_FILL_RULE_WINDING );
// Fill in the X window with the background color to avoid starting out
// with a blank window of an unexpected color.
cairo_rectangle( aStream->cairoContext_X, 0.0, 0.0, pls->xlength, pls->ylength );
cairo_set_source_rgba( aStream->cairoContext_X,
(double) pls->cmap0[0].r / 255.0,
(double) pls->cmap0[0].g / 255.0,
(double) pls->cmap0[0].b / 255.0,
(double) pls->cmap0[0].a );
cairo_fill( aStream->cairoContext_X );
XFlush( aStream->XDisplay );
return 0;
}
//--------------------------------------------------------------------------
// plD_init_xcairo()
//
// Initialize Cairo X Windows device.
//--------------------------------------------------------------------------
void plD_init_xcairo( PLStream *pls )
{
PLCairo *aStream;
Atom wmDelete;
// Setup the PLStream and the font lookup table.
aStream = stream_and_font_setup( pls, 1 );
// Save the pointer to the structure in the PLplot stream
pls->dev = aStream;
// Create a X Window if required.
if ( external_drawable != 0 )
{
aStream->xdrawable_mode = 1;
}
else
{
// X Windows setup
aStream->XDisplay = NULL;
if ( pls->FileName != NULL )
aStream->XDisplay = XOpenDisplay( pls->FileName );
else
aStream->XDisplay = XOpenDisplay( NULL );
if ( aStream->XDisplay == NULL )
{
plexit( "Failed to open X Windows display\n" );
// some sort of error here
}
XScreen = DefaultScreen( aStream->XDisplay );
rootWindow = RootWindow( aStream->XDisplay, XScreen );
aStream->XWindow = XCreateSimpleWindow( aStream->XDisplay, rootWindow, 0, 0, (unsigned int) pls->xlength, (unsigned int) pls->ylength,
1, BlackPixel( aStream->XDisplay, XScreen ), BlackPixel( aStream->XDisplay, XScreen ) );
XStoreName( aStream->XDisplay, aStream->XWindow, pls->plwindow );
XSelectInput( aStream->XDisplay, aStream->XWindow, NoEventMask );
XMapWindow( aStream->XDisplay, aStream->XWindow );
aStream->xdrawable_mode = 0;
wmDelete = XInternAtom( aStream->XDisplay, "WM_DELETE_WINDOW", True );
XSetWMProtocols( aStream->XDisplay, aStream->XWindow, &wmDelete, 1 );
xcairo_init_cairo( pls );
}
aStream->exit_event_loop = 0;
}
//--------------------------------------------------------------------------
// blit_to_x()
//
//
// Blit the offscreen image to the X window.
//--------------------------------------------------------------------------
void blit_to_x( PLStream *pls, double x, double y, double w, double h )
{
PLCairo *aStream;
aStream = pls->dev;
cairo_save( aStream->cairoContext );
// "Flatten" any transparent regions to look like they were drawn over the
// correct background color
cairo_rectangle( aStream->cairoContext, x, y, w, h );
cairo_set_operator( aStream->cairoContext, CAIRO_OPERATOR_DEST_OVER );
cairo_set_source_rgba( aStream->cairoContext,
(double) pls->cmap0[0].r / 255.0,
(double) pls->cmap0[0].g / 255.0,
(double) pls->cmap0[0].b / 255.0,
(double) pls->cmap0[0].a );
cairo_fill( aStream->cairoContext );
cairo_restore( aStream->cairoContext );
cairo_save( aStream->cairoContext_X );
// Copy a portion of the surface
cairo_rectangle( aStream->cairoContext_X, x, y, w, h );
cairo_set_operator( aStream->cairoContext_X, CAIRO_OPERATOR_SOURCE );
cairo_set_source_surface( aStream->cairoContext_X,
aStream->cairoSurface, 0.0, 0.0 );
cairo_fill( aStream->cairoContext_X );
cairo_restore( aStream->cairoContext_X );
}
//--------------------------------------------------------------------------
// plD_bop_xcairo()
//
// X Windows specific start of page.
//--------------------------------------------------------------------------
void plD_bop_xcairo( PLStream *pls )
{
PLCairo *aStream;
aStream = (PLCairo *) pls->dev;
plD_bop_cairo( pls );
if ( aStream->xdrawable_mode )
return;
XFlush( aStream->XDisplay );
}
//--------------------------------------------------------------------------
// plD_eop_xcairo()
//
// X Windows specific end of page.
//--------------------------------------------------------------------------
void plD_eop_xcairo( PLStream *pls )
{
int number_chars;
long event_mask;
char event_string[10];
KeySym keysym;
XComposeStatus cs;
XEvent event;
XExposeEvent *expose;
PLCairo *aStream;
aStream = (PLCairo *) pls->dev;
// Blit the offscreen image to the X window.
blit_to_x( pls, 0.0, 0.0, pls->xlength, pls->ylength );
if ( aStream->xdrawable_mode )
return;
// Only pause if nopause is unset.
if ( pls->nopause )
aStream->exit_event_loop = 1;
// Loop, handling selected events, till the user elects to close the plot.
event_mask = ButtonPressMask | KeyPressMask | ExposureMask;
XSelectInput( aStream->XDisplay, aStream->XWindow, event_mask );
while ( !aStream->exit_event_loop )
{
//XWindowEvent( aStream->XDisplay, aStream->XWindow, event_mask, &event );
XNextEvent( aStream->XDisplay, &event );
switch ( event.type )
{
case KeyPress:
number_chars = XLookupString( (XKeyEvent *) &event, event_string, 10, &keysym, &cs );
event_string[number_chars] = '\0';
if ( keysym == XK_Return )
{
aStream->exit_event_loop = 1;
}
break;
case ButtonPress:
if ( ( (XButtonEvent *) &event )->button == Button3 )
aStream->exit_event_loop = 1;
break;
case ClientMessage:
// plexit("X Window closed");
pls->stream_closed = TRUE;
aStream->exit_event_loop = 1;
break;
case Expose:
// Blit the image again after an expose event, but only for the last
// available event. Otherwise multiple redraws occur needlessly.
expose = (XExposeEvent *) &event;
if ( expose->count == 0 )
{
blit_to_x( pls, expose->x, expose->y,
expose->width, expose->height );
}
break;
}
}
aStream->exit_event_loop = 0;
}
//--------------------------------------------------------------------------
// plD_tidy_xcairo()
//
// X Windows: close graphics file or otherwise clean up.
//--------------------------------------------------------------------------
void plD_tidy_xcairo( PLStream *pls )
{
PLCairo *aStream;
aStream = (PLCairo *) pls->dev;
plD_tidy_cairo( pls );
// Also free up the Cairo X surface and context
cairo_destroy( aStream->cairoContext_X );
cairo_surface_destroy( aStream->cairoSurface_X );
if ( aStream->xdrawable_mode )
return;
// Close the window and the display.
XFlush( aStream->XDisplay );
XDestroyWindow( aStream->XDisplay, aStream->XWindow );
XCloseDisplay( aStream->XDisplay );
}
//--------------------------------------------------------------------------
// plD_esc_xcairo()
//
// Escape function, specialized for the xcairo driver
//--------------------------------------------------------------------------
void plD_esc_xcairo( PLStream *pls, PLINT op, void *ptr )
{
PLCairo *aStream;
aStream = (PLCairo *) pls->dev;
switch ( op )
{
case PLESC_FLUSH: // forced update of the window
blit_to_x( pls, 0.0, 0.0, pls->xlength, pls->ylength );
XFlush( aStream->XDisplay );
break;
case PLESC_GETC: // get cursor position
blit_to_x( pls, 0.0, 0.0, pls->xlength, pls->ylength );
XFlush( aStream->XDisplay );
xcairo_get_cursor( pls, (PLGraphicsIn *) ptr );
break;
case PLESC_DEVINIT: { // Set external drawable
Window rootwin;
PLXcairoDrawableInfo *xinfo = (PLXcairoDrawableInfo *) ptr;
signed int x, y;
unsigned int w, h, b, d;
if ( xinfo == NULL )
{
printf( "xcairo: PLESC_DEVINIT ignored, no drawable info provided\n" );
return;
}
if ( aStream->xdrawable_mode == 0 )
{
printf( "xcairo: PLESC_DEVINIT called with drawable but stream not in xdrawable mode\n" );
return;
}
aStream->XDisplay = xinfo->display;
aStream->XWindow = xinfo->drawable;
// Ensure plplot knows the real dimensions of the drawable
XGetGeometry( aStream->XDisplay, aStream->XWindow, &rootwin,
&x, &y, &w, &h, &b, &d );
pls->xlength = (PLINT) w;
pls->ylength = (PLINT) h;
plP_setphy( (PLINT) 0, (PLINT) ( pls->xlength / aStream->downscale ), (PLINT) 0,
(PLINT) ( pls->ylength / aStream->downscale ) );
// Associate cairo with the supplied drawable
xcairo_init_cairo( pls );
// Recalculate dimensions and the like now that the drawable is known
plbop();
break;
}
default:
plD_esc_cairo( pls, op, ptr );
break;
}
}
//--------------------------------------------------------------------------
// xcairo_get_cursor()
//
// X Windows: returns the location of the next mouse click or key press.
//--------------------------------------------------------------------------
void xcairo_get_cursor( PLStream *pls, PLGraphicsIn *gin )
{
const char *ksname;
char str[257];
KeySym keysym;
XEvent event;
XButtonEvent *xButtonEvent;
Cursor xHairCursor;
PLCairo *aStream;
aStream = (PLCairo *) pls->dev;
// Initialize PLplot mouse event structure
plGinInit( gin );
// Create cross hair cursor & switch to using it
xHairCursor = XCreateFontCursor( aStream->XDisplay, XC_crosshair );
XDefineCursor( aStream->XDisplay, aStream->XWindow, xHairCursor );
// Get the next mouse button release or key press event
XSelectInput( aStream->XDisplay, aStream->XWindow, ButtonPressMask | ButtonReleaseMask | KeyPressMask | KeyReleaseMask | ButtonMotionMask );
XMaskEvent( aStream->XDisplay, ButtonPressMask | ButtonReleaseMask | KeyPressMask | KeyReleaseMask | ButtonMotionMask, &event );
XSelectInput( aStream->XDisplay, aStream->XWindow, NoEventMask );
// Update PLplot's mouse event structure
xButtonEvent = (XButtonEvent *) &event;
gin->state = xButtonEvent->state;
gin->button = xButtonEvent->button;
gin->pX = event.xbutton.x;
gin->pY = pls->ylength - event.xbutton.y;
gin->dX = (PLFLT) event.xbutton.x / ( (PLFLT) ( pls->xlength ) );
gin->dY = (PLFLT) ( pls->ylength - event.xbutton.y ) / ( (PLFLT) ( pls->ylength ) );
// Get key pressed (if any)
if ( event.type == KeyPress || event.type == KeyRelease )
{
XLookupString( (XKeyEvent *) &event, str, 100, &keysym, NULL );
if ( keysym == NoSymbol )
ksname = "NoSymbol";
else if ( !( ksname = XKeysymToString( keysym ) ) )
ksname = "(no name)";
strcpy( gin->string, ksname );
// gin->string[number_chars] = '\0';
switch ( keysym )
{
case XK_BackSpace:
case XK_Tab:
case XK_Linefeed:
case XK_Return:
case XK_Escape:
case XK_Delete:
gin->keysym = 0xFF & keysym;
break;
default:
gin->keysym = (unsigned int) keysym;
}
}
else // button press
{
sprintf( gin->string, "button %u", gin->button );
gin->keysym = 0x20;
}
// Switch back to normal cursor
XUndefineCursor( aStream->XDisplay, aStream->XWindow );
XFlush( aStream->XDisplay );
}
#endif
//--------------------------------------------------------------------------
//--------------------------------------------------------------------------
//
// That which is specific to the cairo PDF driver.
//
//--------------------------------------------------------------------------
//--------------------------------------------------------------------------
#if defined ( PLD_pdfcairo )
void plD_dispatch_init_pdfcairo( PLDispatchTable *pdt );
void plD_init_pdfcairo( PLStream * );
//--------------------------------------------------------------------------
// dispatch_init_init()
//
// Initialize device dispatch table
//--------------------------------------------------------------------------
// pdfcairo
void plD_dispatch_init_pdfcairo( PLDispatchTable *pdt )
{
#ifndef ENABLE_DYNDRIVERS
pdt->pl_MenuStr = "Cairo PDF Driver";
pdt->pl_DevName = "pdfcairo";
#endif
pdt->pl_type = plDevType_FileOriented;
pdt->pl_seq = 101;
pdt->pl_init = (plD_init_fp) plD_init_pdfcairo;
pdt->pl_line = (plD_line_fp) plD_line_cairo;
pdt->pl_polyline = (plD_polyline_fp) plD_polyline_cairo;
pdt->pl_eop = (plD_eop_fp) plD_eop_cairo;
pdt->pl_bop = (plD_bop_fp) plD_bop_cairo;
pdt->pl_tidy = (plD_tidy_fp) plD_tidy_cairo;
pdt->pl_state = (plD_state_fp) plD_state_cairo;
pdt->pl_esc = (plD_esc_fp) plD_esc_cairo;
}
//--------------------------------------------------------------------------
// plD_init_pdfcairo()
//
// Initialize Cairo PDF device
//--------------------------------------------------------------------------
void plD_init_pdfcairo( PLStream *pls )
{
PLCairo *aStream;
// Setup the PLStream and the font lookup table
aStream = stream_and_font_setup( pls, 0 );
// Prompt for a file name if not already set.
plOpenFile( pls );
// Create an cairo surface & context for PDF file.
// Dimension units are pts = 1/72 inches from cairo documentation.
aStream->cairoSurface = cairo_pdf_surface_create_for_stream( (cairo_write_func_t) write_to_stream, pls->OutFile, (double) pls->xlength, (double) pls->ylength );
aStream->cairoContext = cairo_create( aStream->cairoSurface );
// Save the pointer to the structure in the PLplot stream
pls->dev = aStream;
// Invert the surface so that the graphs are drawn right side up.
rotate_cairo_surface( pls, 1.0, 0.0, 0.0, -1.0, 0.0, (float) pls->ylength, FALSE );
// Set graphics aliasing
cairo_set_antialias( aStream->cairoContext, aStream->graphics_anti_aliasing );
// Set fill rule for the case of self-intersecting boundaries.
if ( pls->dev_eofill )
cairo_set_fill_rule( aStream->cairoContext, CAIRO_FILL_RULE_EVEN_ODD );
else
cairo_set_fill_rule( aStream->cairoContext, CAIRO_FILL_RULE_WINDING );
}
#endif
//--------------------------------------------------------------------------
//--------------------------------------------------------------------------
//
// That which is specific to the cairo PS driver.
//
//--------------------------------------------------------------------------
//--------------------------------------------------------------------------
#if defined ( PLD_pscairo )
void plD_dispatch_init_pscairo( PLDispatchTable *pdt );
void plD_init_pscairo( PLStream * );
//--------------------------------------------------------------------------
// dispatch_init_init()
//
// Initialize device dispatch table
//--------------------------------------------------------------------------
// pscairo
void plD_dispatch_init_pscairo( PLDispatchTable *pdt )
{
#ifndef ENABLE_DYNDRIVERS
pdt->pl_MenuStr = "Cairo PS Driver";
pdt->pl_DevName = "pscairo";
#endif
pdt->pl_type = plDevType_FileOriented;
pdt->pl_seq = 102;
pdt->pl_init = (plD_init_fp) plD_init_pscairo;
pdt->pl_line = (plD_line_fp) plD_line_cairo;
pdt->pl_polyline = (plD_polyline_fp) plD_polyline_cairo;
pdt->pl_eop = (plD_eop_fp) plD_eop_cairo;
pdt->pl_bop = (plD_bop_fp) plD_bop_cairo;
pdt->pl_tidy = (plD_tidy_fp) plD_tidy_cairo;
pdt->pl_state = (plD_state_fp) plD_state_cairo;
pdt->pl_esc = (plD_esc_fp) plD_esc_cairo;
}
//--------------------------------------------------------------------------
// plD_init_pscairo()
//
// Initialize Cairo PS device
//--------------------------------------------------------------------------
void plD_init_pscairo( PLStream *pls )
{
PLCairo *aStream;
// Setup the PLStream and the font lookup table
aStream = stream_and_font_setup( pls, 0 );
// Prompt for a file name if not already set.
plOpenFile( pls );
// Create an cairo surface & context for PS file.
// Dimension units are pts = 1/72 inches from cairo documentation.
aStream->cairoSurface = cairo_ps_surface_create_for_stream( (cairo_write_func_t) write_to_stream, pls->OutFile, (double) pls->ylength, (double) pls->xlength );
aStream->cairoContext = cairo_create( aStream->cairoSurface );
// Save the pointer to the structure in the PLplot stream
pls->dev = aStream;
// Handle portrait or landscape
if ( pls->portrait )
{
plsdiori( 1 );
pls->freeaspect = 1;
}
rotate_cairo_surface( pls, 0.0, -1.0, -1.0, 0.0, (float) pls->ylength, (float) pls->xlength, FALSE );
// Set fill rule for the case of self-intersecting boundaries.
if ( pls->dev_eofill )
cairo_set_fill_rule( aStream->cairoContext, CAIRO_FILL_RULE_EVEN_ODD );
else
cairo_set_fill_rule( aStream->cairoContext, CAIRO_FILL_RULE_WINDING );
}
#endif
//--------------------------------------------------------------------------
//--------------------------------------------------------------------------
//
// That which is specific to the cairo EPS driver.
//
//--------------------------------------------------------------------------
//--------------------------------------------------------------------------
#if defined ( PLD_epscairo )
void plD_dispatch_init_epscairo( PLDispatchTable *pdt );
void plD_init_epscairo( PLStream * );
//--------------------------------------------------------------------------
// dispatch_init_init()
//
// Initialize device dispatch table
//--------------------------------------------------------------------------
// epscairo
void plD_dispatch_init_epscairo( PLDispatchTable *pdt )
{
#ifndef ENABLE_DYNDRIVERS
pdt->pl_MenuStr = "Cairo EPS Driver";
pdt->pl_DevName = "epscairo";
#endif
pdt->pl_type = plDevType_FileOriented;
pdt->pl_seq = 102;
pdt->pl_init = (plD_init_fp) plD_init_epscairo;
pdt->pl_line = (plD_line_fp) plD_line_cairo_fam;
pdt->pl_polyline = (plD_polyline_fp) plD_polyline_cairo_fam;
pdt->pl_eop = (plD_eop_fp) plD_eop_cairo_fam;
pdt->pl_bop = (plD_bop_fp) plD_bop_cairo_fam;
pdt->pl_tidy = (plD_tidy_fp) plD_tidy_cairo_fam;
pdt->pl_state = (plD_state_fp) plD_state_cairo_fam;
pdt->pl_esc = (plD_esc_fp) plD_esc_cairo_fam;
}
//--------------------------------------------------------------------------
// plD_init_epscairo()
//
// Initialize Cairo EPS device
//--------------------------------------------------------------------------
void plD_init_epscairo( PLStream *pls )
{
PLCairo *aStream;
// Setup the PLStream and the font lookup table and allocate a cairo
// stream structure.
//
// NOTE: The check below is necessary since, in family mode, this function
// will be called multiple times. While you might think that it is
// sufficient to update what *should* be the only pointer to the contents
// of pls->dev, i.e. the pointer pls->dev itself, it appears that
// something else somewhere else is also pointing to pls->dev. If you
// change what pls->dev points to then you will get a "bus error", from
// which I infer the existence of said bad stale pointer.
//
if ( pls->dev == NULL )
{
aStream = stream_and_font_setup( pls, 0 );
}
else
{
stream_and_font_setup( pls, 0 );
aStream = pls->dev;
}
// Initialize family file info
plFamInit( pls );
// Prompt for a file name if not already set.
plOpenFile( pls );
// Create an cairo surface & context for EPS file.
// Dimension units are pts = 1/72 inches from cairo documentation.
aStream->cairoSurface = cairo_ps_surface_create_for_stream( (cairo_write_func_t) write_to_stream, pls->OutFile, (double) pls->ylength, (double) pls->xlength );
aStream->cairoContext = cairo_create( aStream->cairoSurface );
// Set the PS surface to be EPS.
cairo_ps_surface_set_eps( aStream->cairoSurface, 1 );
// Save the pointer to the structure in the PLplot stream
pls->dev = aStream;
// Handle portrait or landscape
if ( pls->portrait )
{
plsdiori( 1 );
pls->freeaspect = 1;
}
rotate_cairo_surface( pls, 0.0, -1.0, -1.0, 0.0, (float) pls->ylength, (float) pls->xlength, FALSE );
// Set fill rule for the case of self-intersecting boundaries.
if ( pls->dev_eofill )
cairo_set_fill_rule( aStream->cairoContext, CAIRO_FILL_RULE_EVEN_ODD );
else
cairo_set_fill_rule( aStream->cairoContext, CAIRO_FILL_RULE_WINDING );
}
#endif
//--------------------------------------------------------------------------
//--------------------------------------------------------------------------
//
// That which is specific to the cairo SVG driver.
//
//--------------------------------------------------------------------------
//--------------------------------------------------------------------------
#if defined ( PLD_svgcairo )
void plD_dispatch_init_svgcairo( PLDispatchTable *pdt );
void plD_init_svgcairo( PLStream * );
//--------------------------------------------------------------------------
// dispatch_init_init()
//
// Initialize device dispatch table
//--------------------------------------------------------------------------
// svgcairo
void plD_dispatch_init_svgcairo( PLDispatchTable *pdt )
{
#ifndef ENABLE_DYNDRIVERS
pdt->pl_MenuStr = "Cairo SVG Driver";
pdt->pl_DevName = "svgcairo";
#endif
pdt->pl_type = plDevType_FileOriented;
pdt->pl_seq = 103;
pdt->pl_init = (plD_init_fp) plD_init_svgcairo;
pdt->pl_line = (plD_line_fp) plD_line_cairo_fam;
pdt->pl_polyline = (plD_polyline_fp) plD_polyline_cairo_fam;
pdt->pl_eop = (plD_eop_fp) plD_eop_cairo_fam;
pdt->pl_bop = (plD_bop_fp) plD_bop_cairo_fam;
pdt->pl_tidy = (plD_tidy_fp) plD_tidy_cairo_fam;
pdt->pl_state = (plD_state_fp) plD_state_cairo_fam;
pdt->pl_esc = (plD_esc_fp) plD_esc_cairo_fam;
}
//--------------------------------------------------------------------------
// plD_init_svgcairo()
//
// Initialize Cairo SVG device
//--------------------------------------------------------------------------
void plD_init_svgcairo( PLStream *pls )
{
PLCairo *aStream;
// Setup the PLStream and the font lookup table and allocate a cairo
// stream structure.
//
// NOTE: The check below is necessary since, in family mode, this function
// will be called multiple times. While you might think that it is
// sufficient to update what *should* be the only pointer to the contents
// of pls->dev, i.e. the pointer pls->dev itself, it appears that
// something else somewhere else is also pointing to pls->dev. If you
// change what pls->dev points to then you will get a "bus error", from
// which I infer the existence of said bad stale pointer.
//
if ( pls->dev == NULL )
{
aStream = stream_and_font_setup( pls, 0 );
}
else
{
stream_and_font_setup( pls, 0 );
aStream = pls->dev;
}
// Initialize family file info
plFamInit( pls );
// Prompt for a file name if not already set.
plOpenFile( pls );
// Save the pointer to the structure in the PLplot stream
pls->dev = aStream;
// Create an cairo surface & context for SVG file.
// Dimension units are pts = 1/72 inches from cairo documentation.
aStream->cairoSurface = cairo_svg_surface_create_for_stream( (cairo_write_func_t) write_to_stream, pls->OutFile, (double) pls->xlength, (double) pls->ylength );
aStream->cairoContext = cairo_create( aStream->cairoSurface );
// Invert the surface so that the graphs are drawn right side up.
rotate_cairo_surface( pls, 1.0, 0.0, 0.0, -1.0, 0.0, (float) pls->ylength, FALSE );
// Set graphics aliasing
cairo_set_antialias( aStream->cairoContext, aStream->graphics_anti_aliasing );
// Set fill rule for the case of self-intersecting boundaries.
if ( pls->dev_eofill )
cairo_set_fill_rule( aStream->cairoContext, CAIRO_FILL_RULE_EVEN_ODD );
else
cairo_set_fill_rule( aStream->cairoContext, CAIRO_FILL_RULE_WINDING );
}
#endif
//--------------------------------------------------------------------------
//--------------------------------------------------------------------------
//
// That which is specific to the cairo PNG driver.
//
//--------------------------------------------------------------------------
//--------------------------------------------------------------------------
#if defined ( PLD_pngcairo )
void plD_dispatch_init_pngcairo( PLDispatchTable *pdt );
void plD_init_pngcairo( PLStream * );
void plD_eop_pngcairo( PLStream * );
//--------------------------------------------------------------------------
// dispatch_init_init()
//
// Initialize device dispatch table
//--------------------------------------------------------------------------
// pngcairo
void plD_dispatch_init_pngcairo( PLDispatchTable *pdt )
{
#ifndef ENABLE_DYNDRIVERS
pdt->pl_MenuStr = "Cairo PNG Driver";
pdt->pl_DevName = "pngcairo";
#endif
pdt->pl_type = plDevType_FileOriented;
pdt->pl_seq = 104;
pdt->pl_init = (plD_init_fp) plD_init_pngcairo;
pdt->pl_line = (plD_line_fp) plD_line_cairo_fam;
pdt->pl_polyline = (plD_polyline_fp) plD_polyline_cairo_fam;
pdt->pl_eop = (plD_eop_fp) plD_eop_pngcairo;
pdt->pl_bop = (plD_bop_fp) plD_bop_cairo_fam;
pdt->pl_tidy = (plD_tidy_fp) plD_tidy_cairo_fam;
pdt->pl_state = (plD_state_fp) plD_state_cairo_fam;
pdt->pl_esc = (plD_esc_fp) plD_esc_cairo_fam;
}
//--------------------------------------------------------------------------
// plD_init_pngcairo()
//
// Initialize Cairo PNG device
//--------------------------------------------------------------------------
void plD_init_pngcairo( PLStream *pls )
{
PLCairo *aStream;
// Setup the PLStream and the font lookup table and allocate a cairo
// stream structure.
//
// NOTE: The check below is necessary since, in family mode, this function
// will be called multiple times. While you might think that it is
// sufficient to update what *should* be the only pointer to the contents
// of pls->dev, i.e. the pointer pls->dev itself, it appears that
// something else somewhere else is also pointing to pls->dev. If you
// change what pls->dev points to then you will get a "bus error", from
// which I infer the existence of said bad stale pointer.
//
if ( pls->dev == NULL )
{
aStream = stream_and_font_setup( pls, 0 );
}
else
{
stream_and_font_setup( pls, 0 );
aStream = pls->dev;
}
// Initialize family file info
plFamInit( pls );
// Prompt for a file name if not already set.
plOpenFile( pls );
// Save the pointer to the structure in the PLplot stream
pls->dev = aStream;
// Create a new cairo surface & context for PNG file.
// Dimension units are pixels from cairo documentation.
aStream->cairoSurface = cairo_image_surface_create( CAIRO_FORMAT_ARGB32, (int) pls->xlength, (int) pls->ylength );
aStream->cairoContext = cairo_create( aStream->cairoSurface );
// Invert the surface so that the graphs are drawn right side up.
rotate_cairo_surface( pls, 1.0, 0.0, 0.0, -1.0, 0.0, (float) pls->ylength, FALSE );
// Set graphics aliasing
cairo_set_antialias( aStream->cairoContext, aStream->graphics_anti_aliasing );
// Set fill rule for the case of self-intersecting boundaries.
if ( pls->dev_eofill )
cairo_set_fill_rule( aStream->cairoContext, CAIRO_FILL_RULE_EVEN_ODD );
else
cairo_set_fill_rule( aStream->cairoContext, CAIRO_FILL_RULE_WINDING );
}
//--------------------------------------------------------------------------
// plD_eop_pngcairo()
//
// PNG: End of page.
//--------------------------------------------------------------------------
void plD_eop_pngcairo( PLStream *pls )
{
PLCairo *aStream;
if ( cairo_family_check( pls ) )
{
return;
}
aStream = (PLCairo *) pls->dev;
cairo_surface_write_to_png_stream( aStream->cairoSurface, (cairo_write_func_t) write_to_stream, pls->OutFile );
}
#endif
//--------------------------------------------------------------------------
//--------------------------------------------------------------------------
//
// That which is specific to the cairo memory driver.
//
//--------------------------------------------------------------------------
//--------------------------------------------------------------------------
#if defined ( PLD_memcairo )
void plD_dispatch_init_memcairo( PLDispatchTable *pdt );
void plD_init_memcairo( PLStream * );
void plD_eop_memcairo( PLStream * );
void plD_bop_memcairo( PLStream * );
//--------------------------------------------------------------------------
// dispatch_init_init()
//
// Initialize device dispatch table
//--------------------------------------------------------------------------
// memcairo
void plD_dispatch_init_memcairo( PLDispatchTable *pdt )
{
#ifndef ENABLE_DYNDRIVERS
pdt->pl_MenuStr = "Cairo memory driver";
pdt->pl_DevName = "memcairo";
#endif
pdt->pl_type = plDevType_FileOriented;
pdt->pl_seq = 105;
pdt->pl_init = (plD_init_fp) plD_init_memcairo;
pdt->pl_line = (plD_line_fp) plD_line_cairo;
pdt->pl_polyline = (plD_polyline_fp) plD_polyline_cairo;
pdt->pl_eop = (plD_eop_fp) plD_eop_memcairo;
pdt->pl_bop = (plD_bop_fp) plD_bop_memcairo;
pdt->pl_tidy = (plD_tidy_fp) plD_tidy_cairo;
pdt->pl_state = (plD_state_fp) plD_state_cairo;
pdt->pl_esc = (plD_esc_fp) plD_esc_cairo;
}
//--------------------------------------------------------------------------
// plD_bop_memcairo()
//
// Set up for the next page.
//--------------------------------------------------------------------------
void plD_bop_memcairo( PLStream * PL_UNUSED( pls ) )
{
// nothing to do here (we want to preserve the memory as it is)
}
//--------------------------------------------------------------------------
// plD_init_memcairo()
//
// Initialize Cairo memory device
//--------------------------------------------------------------------------
void plD_init_memcairo( PLStream *pls )
{
PLCairo *aStream;
int stride, i;
unsigned char *cairo_mem;
unsigned char *input_mem;
// used for checking byte order
union
{
int testWord;
char testByte[sizeof ( int )];
} endianTest;
endianTest.testWord = 1;
// Set the plot size to the memory buffer size, on the off chance
// that they are different.
pls->xlength = pls->phyxma;
pls->ylength = pls->phyyma;
// Setup the PLStream and the font lookup table
aStream = stream_and_font_setup( pls, 0 );
// Test byte order
if ( endianTest.testByte[0] == 1 )
aStream->bigendian = 0;
else
aStream->bigendian = 1;
// Check that user supplied us with some memory to draw in
if ( pls->dev == NULL )
{
plexit( "Must call plsmem first to set user plotting area!" );
}
// Save a pointer to the memory.
aStream->memory = pls->dev;
// Create a cairo surface & context. Copy data in from the input memory area
// Malloc memory the way cairo likes it. Aligned on the stride computed by cairo_format_stride_for_width
// and in the RGB24 format (from http://cairographics.org/manual/cairo-Image-Surfaces.html):
// Each pixel is a 32-bit quantity, with the upper 8 bits unused.
// Red, Green, and Blue are stored in the remaining 24 bits in that order
stride = pls->xlength * 4;
// stride = cairo_format_stride_for_width (CAIRO_FORMAT_RGB24, pls->xlength); This function missing from version 1.4 :-(
aStream->cairo_format_memory = (unsigned char *) calloc( (size_t) ( stride * pls->ylength ), 1 );
// Copy the input data into the Cairo data format
cairo_mem = aStream->cairo_format_memory;
input_mem = aStream->memory;
// 32 bit word order
// cairo mem: Big endian: 0=A, 1=R, 2=G, 3=B
// Little endian: 3=A, 2=R, 1=G, 0=B
if ( aStream->bigendian )
{
for ( i = 0; i < ( pls->xlength * pls->ylength ); i++ )
{
cairo_mem[1] = input_mem[0]; // R
cairo_mem[2] = input_mem[1]; // G
cairo_mem[3] = input_mem[2]; // B
if ( pls->dev_mem_alpha == 1 )
{
cairo_mem[0] = input_mem[3];
input_mem += 4;
}
else
{
input_mem += 3;
}
cairo_mem += 4;
}
}
else
{
for ( i = 0; i < ( pls->xlength * pls->ylength ); i++ )
{
cairo_mem[2] = input_mem[0]; // R
cairo_mem[1] = input_mem[1]; // G
cairo_mem[0] = input_mem[2]; // B
if ( pls->dev_mem_alpha == 1 )
{
cairo_mem[3] = input_mem[3];
input_mem += 4;
}
else
{
input_mem += 3;
}
cairo_mem += 4;
}
}
// Create a Cairo drawing surface from the input data
aStream->cairoSurface =
// Dimension units are width, height of buffer image from cairo
// documentation.
cairo_image_surface_create_for_data( aStream->cairo_format_memory, CAIRO_FORMAT_RGB24, pls->xlength, pls->ylength, stride );
aStream->cairoContext = cairo_create( aStream->cairoSurface );
// Save the pointer to the structure in the PLplot stream.
// Note that this wipes out the direct pointer to the memory buffer.
pls->dev = aStream;
// Invert the surface so that the graphs are drawn right side up.
rotate_cairo_surface( pls, 1.0, 0.0, 0.0, -1.0, 0.0, (float) pls->ylength, FALSE );
// Set graphics aliasing
cairo_set_antialias( aStream->cairoContext, aStream->graphics_anti_aliasing );
// Set fill rule for the case of self-intersecting boundaries.
if ( pls->dev_eofill )
cairo_set_fill_rule( aStream->cairoContext, CAIRO_FILL_RULE_EVEN_ODD );
else
cairo_set_fill_rule( aStream->cairoContext, CAIRO_FILL_RULE_WINDING );
}
//--------------------------------------------------------------------------
// plD_eop_memcairo()
//
// Memory device specific end of page. This copies the contents
// of the cairo surface into the user supplied memory buffer.
//--------------------------------------------------------------------------
void plD_eop_memcairo( PLStream *pls )
{
int i;
unsigned char *memory;
unsigned char *cairo_surface_data;
PLCairo *aStream;
aStream = (PLCairo *) pls->dev;
memory = aStream->memory;
cairo_surface_data = cairo_image_surface_get_data( aStream->cairoSurface );
// 32 bit word order
// cairo mem: Big endian: 0=A, 1=R, 2=G, 3=B
// Little endian: 3=A, 2=R, 1=G, 0=B
if ( aStream->bigendian )
{
for ( i = 0; i < ( pls->xlength * pls->ylength ); i++ )
{
memory[0] = cairo_surface_data[1]; // R
memory[1] = cairo_surface_data[2]; // G
memory[2] = cairo_surface_data[3]; // B
if ( pls->dev_mem_alpha == 1 )
{
memory[3] = cairo_surface_data[0];
memory += 4;
}
else
{
memory += 3;
}
cairo_surface_data += 4;
}
}
else
{
for ( i = 0; i < ( pls->xlength * pls->ylength ); i++ )
{
memory[0] = cairo_surface_data[2]; // R
memory[1] = cairo_surface_data[1]; // G
memory[2] = cairo_surface_data[0]; // B
if ( pls->dev_mem_alpha == 1 )
{
memory[3] = cairo_surface_data[3];
memory += 4;
}
else
{
memory += 3;
}
cairo_surface_data += 4;
}
}
// Free up the temporary memory malloc'ed in plD_init_memcairo
free( aStream->cairo_format_memory );
}
#endif
//--------------------------------------------------------------------------
//--------------------------------------------------------------------------
//
// That which is specific to the cairo external context driver.
//
//--------------------------------------------------------------------------
//--------------------------------------------------------------------------
#if defined ( PLD_extcairo )
void extcairo_setbackground( PLStream * );
void plD_dispatch_init_extcairo( PLDispatchTable *pdt );
void plD_init_extcairo( PLStream * );
void plD_bop_extcairo( PLStream * );
void plD_eop_extcairo( PLStream * );
void plD_esc_extcairo( PLStream *, PLINT, void * );
void plD_tidy_extcairo( PLStream * );
//--------------------------------------------------------------------------
// extcairo_setbackground()
//
// Set the background color for the extcairo device
//--------------------------------------------------------------------------
void extcairo_setbackground( PLStream *pls )
{
PLCairo *aStream;
aStream = (PLCairo *) pls->dev;
// Fill the context with the background color if the user so desires.
if ( aStream->cairoContext != NULL )
{
cairo_rectangle( aStream->cairoContext, 0.0, 0.0, pls->xlength, pls->ylength );
cairo_set_source_rgba( aStream->cairoContext,
(double) pls->cmap0[0].r / 255.0,
(double) pls->cmap0[0].g / 255.0,
(double) pls->cmap0[0].b / 255.0,
(double) pls->cmap0[0].a );
cairo_fill( aStream->cairoContext );
}
}
//--------------------------------------------------------------------------
// dispatch_init_init()
//
// Initialize device dispatch table
//--------------------------------------------------------------------------
// extcairo
void plD_dispatch_init_extcairo( PLDispatchTable *pdt )
{
#ifndef ENABLE_DYNDRIVERS
pdt->pl_MenuStr = "Cairo external context driver";
pdt->pl_DevName = "extcairo";
#endif
pdt->pl_type = plDevType_Interactive;
pdt->pl_seq = 106;
pdt->pl_init = (plD_init_fp) plD_init_extcairo;
pdt->pl_line = (plD_line_fp) plD_line_cairo;
pdt->pl_polyline = (plD_polyline_fp) plD_polyline_cairo;
pdt->pl_bop = (plD_bop_fp) plD_bop_extcairo;
pdt->pl_eop = (plD_eop_fp) plD_eop_extcairo;
pdt->pl_tidy = (plD_tidy_fp) plD_tidy_extcairo;
pdt->pl_state = (plD_state_fp) plD_state_cairo;
pdt->pl_esc = (plD_esc_fp) plD_esc_extcairo;
}
//--------------------------------------------------------------------------
// plD_init_extcairo()
//
// Initialize Cairo external context driver.
//--------------------------------------------------------------------------
void plD_init_extcairo( PLStream *pls )
{
PLCairo *aStream;
// Setup the PLStream and the font lookup table
aStream = stream_and_font_setup( pls, 0 );
// Save the pointer to the structure in the PLplot stream
pls->dev = aStream;
}
//--------------------------------------------------------------------------
// plD_bop_extcairo()
//
// Set up for the next page.
//--------------------------------------------------------------------------
void plD_bop_extcairo( PLStream *pls )
{
PLCairo *aStream;
aStream = (PLCairo *) pls->dev;
// Set background if desired
if ( aStream->set_background )
{
extcairo_setbackground( pls );
}
}
//--------------------------------------------------------------------------
// plD_eop_extcairo()
//
// End of page.
//--------------------------------------------------------------------------
void plD_eop_extcairo( PLStream * PL_UNUSED( pls ) )
{
// nothing to do here, we leave it to the calling program to display
// (or not) the update cairo context.
}
//--------------------------------------------------------------------------
// plD_esc_extcairo()
//
// The generic escape function, extended so that user can pass in
// an external Cairo context to use for rendering.
//--------------------------------------------------------------------------
void plD_esc_extcairo( PLStream *pls, PLINT op, void *ptr )
{
PLCairo *aStream;
aStream = (PLCairo *) pls->dev;
switch ( op )
{
case PLESC_DEVINIT: // Set external context
aStream->cairoContext = (cairo_t *) ptr;
// Set graphics aliasing
cairo_set_antialias( aStream->cairoContext, aStream->graphics_anti_aliasing );
// Invert the surface so that the graphs are drawn right side up.
rotate_cairo_surface( pls, 1.0, 0.0, 0.0, -1.0, 0.0, (float) pls->ylength, FALSE );
// Should adjust plot size to fit in the given cairo context?
// Cairo does not provide a way to query the dimensions of a context?
// Set background if desired
if ( aStream->set_background )
{
extcairo_setbackground( pls );
}
// Set fill rule for the case of self-intersecting boundaries.
if ( pls->dev_eofill )
cairo_set_fill_rule( aStream->cairoContext, CAIRO_FILL_RULE_EVEN_ODD );
else
cairo_set_fill_rule( aStream->cairoContext, CAIRO_FILL_RULE_WINDING );
break;
default: // Fall back on default Cairo actions
plD_esc_cairo( pls, op, ptr );
break;
}
}
//--------------------------------------------------------------------------
// plD_tidy_extcairo()
//
// This is nop, it is up to the calling program to clean up the Cairo
// context, etc...
//--------------------------------------------------------------------------
void plD_tidy_extcairo( PLStream * PL_UNUSED( pls ) )
{
}
#endif
//--------------------------------------------------------------------------
//--------------------------------------------------------------------------
//
// That which is specific to the cairo microsoft windows driver.
//
// Much of the Windows specific code here was lifted from the wingcc
// driver.
//
//--------------------------------------------------------------------------
//--------------------------------------------------------------------------
#if defined ( PLD_wincairo )
static char* szWndClass = "PLplot WinCairo";
void plD_dispatch_init_wincairo( PLDispatchTable *pdt );
void plD_init_wincairo( PLStream * );
//void plD_bop_extcairo( PLStream * );
void plD_eop_wincairo( PLStream * );
void plD_esc_wincairo( PLStream *, PLINT, void * );
void plD_tidy_wincairo( PLStream * );
//--------------------------------------------------------------------------
// blit_to_win()
//
// Blit the offscreen image to the Windows window.
//--------------------------------------------------------------------------
void blit_to_win( PLCairo *aStream )
{
cairo_set_source_surface( aStream->cairoContext_win, aStream->cairoSurface, 0.0, 0.0 );
cairo_paint( aStream->cairoContext_win );
}
//--------------------------------------------------------------------------
// This is the window function for the plot window. Whenever a message is
// dispatched using DispatchMessage (or sent with SendMessage) this function
// gets called with the contents of the message.
//--------------------------------------------------------------------------
LRESULT CALLBACK PlplotCairoWndProc( HWND hwnd, UINT nMsg, WPARAM wParam, LPARAM lParam )
{
PLStream *pls = NULL;
PLCairo *dev = NULL;
//
// The window carries a 32bit user defined pointer which points to the
// plplot stream (pls). This is used for tracking the window.
// Unfortunately, this is "attached" to the window AFTER it is created
// so we can not initialise PLStream or wincairo "blindly" because
// they may not yet have been initialised.
// WM_CREATE is called before we get to initialise those variables, so
// we wont try to set them.
//
if ( nMsg == WM_CREATE )
{
return ( 0 );
}
else
{
pls = (PLStream *) GetWindowLong( hwnd, GWL_USERDATA ); // Try to get the address to pls for this window
if ( pls ) // If we got it, then we will initialise this windows plplot private data area
{
dev = (PLCairo *) pls->dev;
}
}
//
// Process the windows messages
//
// Everything except WM_CREATE is done here and it is generally hoped that
// pls and dev are defined already by this stage.
// That will be true MOST of the time. Some times WM_PAINT will be called
// before we get to initialise the user data area of the window with the
// pointer to the windows plplot stream
//
switch ( nMsg )
{
case WM_DESTROY:
// if ( dev )
// Debug( "WM_DESTROY\t" );
PostQuitMessage( 0 );
return ( 0 );
break;
case WM_PAINT:
blit_to_win( dev );
return ( 1 );
break;
case WM_SIZE:
GetClientRect( dev->hwnd, &dev->rect );
return ( 0 );
break;
case WM_ENTERSIZEMOVE:
return ( 0 );
break;
case WM_EXITSIZEMOVE:
return ( 0 );
break;
case WM_ERASEBKGND:
if ( dev )
{
dev->oldcolour = SetBkColor( dev->hdc, RGB( pls->cmap0[0].r, pls->cmap0[0].g, pls->cmap0[0].b ) );
ExtTextOut( dev->hdc, 0, 0, ETO_OPAQUE, &dev->rect, "", 0, 0 );
SetBkColor( dev->hdc, dev->oldcolour );
}
return ( 1 );
break;
case WM_COMMAND:
return ( 0 );
break;
}
// If we don't handle a message completely we hand it to the system
// provided default window function.
return DefWindowProc( hwnd, nMsg, wParam, lParam );
}
//--------------------------------------------------------------------------
// handle_locate()
//
// Handle getting the cursor location.
//--------------------------------------------------------------------------
void
handle_locate( PLStream *pls, PLGraphicsIn *gin )
{
int located = 0;
PLCairo *aStream = (PLCairo *) pls->dev;
// Initialize PLplot mouse event structure
plGinInit( gin );
while ( GetMessage( &aStream->msg, NULL, 0, 0 ) && !located )
{
TranslateMessage( &aStream->msg );
switch ( (int) aStream->msg.message )
{
case WM_MOUSEMOVE:
case WM_LBUTTONDOWN:
gin->state = 1;
gin->button = 1;
gin->pX = LOWORD( aStream->msg.lParam );
gin->pY = pls->ylength - HIWORD( aStream->msg.lParam );
gin->dX = (PLFLT) LOWORD( aStream->msg.lParam ) / ( (PLFLT) pls->xlength );
gin->dY = (PLFLT) ( pls->ylength - HIWORD( aStream->msg.lParam ) ) / ( (PLFLT) pls->ylength );
break;
case WM_CHAR:
gin->keysym = aStream->msg.wParam;
located = 1;
break;
default:
DispatchMessage( &aStream->msg );
break;
}
}
}
//--------------------------------------------------------------------------
// dispatch_init_init()
//
// Initialize device dispatch table
//--------------------------------------------------------------------------
// extcairo
void plD_dispatch_init_wincairo( PLDispatchTable *pdt )
{
#ifndef ENABLE_DYNDRIVERS
pdt->pl_MenuStr = "Cairo Microsoft Windows driver";
pdt->pl_DevName = "wincairo";
#endif
pdt->pl_type = plDevType_Interactive;
pdt->pl_seq = 107;
pdt->pl_init = (plD_init_fp) plD_init_wincairo;
pdt->pl_line = (plD_line_fp) plD_line_cairo;
pdt->pl_polyline = (plD_polyline_fp) plD_polyline_cairo;
pdt->pl_bop = (plD_bop_fp) plD_bop_cairo;
pdt->pl_eop = (plD_eop_fp) plD_eop_wincairo;
pdt->pl_tidy = (plD_tidy_fp) plD_tidy_wincairo;
pdt->pl_state = (plD_state_fp) plD_state_cairo;
pdt->pl_esc = (plD_esc_fp) plD_esc_wincairo;
}
//--------------------------------------------------------------------------
// plD_init_wincairo()
//
// Initialize Cairo Microsoft Windows driver.
//--------------------------------------------------------------------------
void plD_init_wincairo( PLStream *pls )
{
PLCairo *aStream;
// Setup the PLStream and the font lookup table
aStream = stream_and_font_setup( pls, 1 );
// Save the pointer to the structure in the PLplot stream
pls->dev = aStream;
// Create window
memset( &aStream->wndclass, 0, sizeof ( WNDCLASSEX ) );
// This class is called WinTestWin
aStream->wndclass.lpszClassName = szWndClass;
// cbSize gives the size of the structure for extensibility.
aStream->wndclass.cbSize = sizeof ( WNDCLASSEX );
// All windows of this class redraw when resized.
aStream->wndclass.style = CS_HREDRAW | CS_VREDRAW | CS_DBLCLKS | CS_OWNDC | CS_PARENTDC;
// All windows of this class use the PlplotCairoWndProc window function.
aStream->wndclass.lpfnWndProc = PlplotCairoWndProc;
// This class is used with the current program instance.
aStream->wndclass.hInstance = GetModuleHandle( NULL );
// Use standard application icon and arrow cursor provided by the OS
aStream->wndclass.hIcon = LoadIcon( NULL, IDI_APPLICATION );
aStream->wndclass.hIconSm = LoadIcon( NULL, IDI_APPLICATION );
aStream->wndclass.hCursor = LoadCursor( NULL, IDC_ARROW );
// Color the background white
aStream->wndclass.hbrBackground = NULL;
aStream->wndclass.cbWndExtra = sizeof ( pls );
//
// Now register the window class for use.
//
RegisterClassEx( &aStream->wndclass );
//
// Create our main window using that window class.
//
aStream->hwnd = CreateWindowEx( WS_EX_WINDOWEDGE + WS_EX_LEFT,
szWndClass, // Class name
pls->program, // Caption
WS_OVERLAPPEDWINDOW, // Style
pls->xoffset, // Initial x (use default)
pls->yoffset, // Initial y (use default)
// This is a little lame since the window border size might change.
pls->xlength + 5, // Initial x size (use default)
pls->ylength + 30, // Initial y size (use default)
NULL, // No parent window
NULL, // No menu
aStream->wndclass.hInstance, // This program instance
NULL // Creation parameters
);
//
// Attach a pointer to the stream to the window's user area
// this pointer will be used by the windows call back for
// process this window
//
SetWindowLong( aStream->hwnd, GWL_USERDATA, (long) pls );
aStream->SCRN_hdc = aStream->hdc = GetDC( aStream->hwnd );
//
// Setup the popup menu
//
//
// dev->PopupMenu = CreatePopupMenu();
// AppendMenu( dev->PopupMenu, MF_STRING, PopupPrint, "Print" );
// AppendMenu( dev->PopupMenu, MF_STRING, PopupNextPage, "Next Page" );
// AppendMenu( dev->PopupMenu, MF_STRING, PopupQuit, "Quit" );
//
// plD_state_wingcc( pls, PLSTATE_COLOR0 );
//
// Display the window which we just created (using the nShow
// passed by the OS, which allows for start minimized and that
// sort of thing).
//
ShowWindow( aStream->hwnd, SW_SHOWDEFAULT );
SetForegroundWindow( aStream->hwnd );
//
// Now we have to find out, from windows, just how big our drawing area is
// when we specified the page size earlier on, that includes the borders,
// title bar etc... so now that windows has done all its initialisations,
// we will ask how big the drawing area is, and tell plplot
//
//
// GetClientRect( dev->hwnd, &dev->rect );
// dev->width = dev->rect.right;
// dev->height = dev->rect.bottom;
//
//
// Initialize Cairo Surface using the windows hdc.
//
// This is the Win32 Cairo surface.
aStream->cairoSurface_win = (cairo_surface_t *) cairo_win32_surface_create( aStream->hdc );
aStream->cairoContext_win = cairo_create( aStream->cairoSurface_win );
// This is the Cairo surface PLplot will actually plot to.
aStream->cairoSurface = cairo_image_surface_create( CAIRO_FORMAT_RGB24, pls->xlength, pls->ylength );
aStream->cairoContext = cairo_create( aStream->cairoSurface );
// Invert the surface so that the graphs are drawn right side up.
rotate_cairo_surface( pls, 1.0, 0.0, 0.0, -1.0, 0.0, pls->ylength, FALSE );
// Set graphics aliasing
cairo_set_antialias( aStream->cairoContext, aStream->graphics_anti_aliasing );
// Set fill rule for the case of self-intersecting boundaries.
if ( pls->dev_eofill )
cairo_set_fill_rule( aStream->cairoContext, CAIRO_FILL_RULE_EVEN_ODD );
else
cairo_set_fill_rule( aStream->cairoContext, CAIRO_FILL_RULE_WINDING );
}
//--------------------------------------------------------------------------
// plD_eop_wincairo()
//
// Clean up Cairo Microsoft Windows driver.
//--------------------------------------------------------------------------
void
plD_eop_wincairo( PLStream *pls )
{
PLCairo *aStream = (PLCairo *) pls->dev;
if ( !pls->nopause )
{
while ( GetMessage( &aStream->msg, NULL, 0, 0 ) )
{
TranslateMessage( &aStream->msg );
switch ( (int) aStream->msg.message )
{
case WM_CHAR:
if ( ( (TCHAR) ( aStream->msg.wParam ) == 13 ) ||
( (TCHAR) ( aStream->msg.wParam ) == 'q' ) ||
( (TCHAR) ( aStream->msg.wParam ) == 'Q' ) )
{
PostQuitMessage( 0 );
}
break;
default:
DispatchMessage( &aStream->msg );
break;
}
}
}
}
//--------------------------------------------------------------------------
// plD_tidy_wincairo()
//
// Clean up Cairo Microsoft Windows driver.
//--------------------------------------------------------------------------
void plD_tidy_wincairo( PLStream *pls )
{
PLCairo *aStream = (PLCairo *) pls->dev;
plD_tidy_cairo( pls );
// Also free up the Cairo win32 surface and context
cairo_destroy( aStream->cairoContext_win );
cairo_surface_destroy( aStream->cairoSurface_win );
if ( aStream != NULL )
{
if ( aStream->hdc != NULL )
ReleaseDC( aStream->hwnd, aStream->hdc );
free_mem( pls->dev );
}
}
//--------------------------------------------------------------------------
// plD_esc_wincairo()
//
// Escape function, specialized for the wincairo driver
//--------------------------------------------------------------------------
void plD_esc_wincairo( PLStream *pls, PLINT op, void *ptr )
{
PLCairo *aStream;
aStream = (PLCairo *) pls->dev;
switch ( op )
{
case PLESC_FLUSH:
InvalidateRect( aStream->hwnd, NULL, TRUE );
break;
case PLESC_GETC:
handle_locate( pls, (PLGraphicsIn *) ptr );
break;
default:
plD_esc_cairo( pls, op, ptr );
break;
}
}
#endif
|