1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766
|
2023-11-30 Daniel Price <daniel.price@monash.edu>
* LATEST.md, NEWS, configure, configure.ac, docs/news/index.html:
v1.4.1
2023-11-30 Daniel Price <daniel.price@monash.edu>
* src/giza-driver-mp4.c: (mp4) use -loglevel quiet in default ffmpeg flags
2023-11-28 Daniel Price <daniel.price@monash.edu>
* LATEST.md, NEWS: update release notes for v1.4.0
2023-11-28 Daniel Price <daniel.price@monash.edu>
* .github/workflows/api.yml, .github/workflows/build.yml,
.github/workflows/release.yml: update github workflows
2023-11-28 Daniel Price <daniel.price@monash.edu>
* src/giza-driver-mp4.c: (mp4) avoid possibility to overflow string length using environment
variable
2023-11-28 Daniel Price <daniel.price@monash.edu>
* ChangeLog, NEWS: updated ChangeLog + NEWS
2023-11-28 Daniel Price <daniel.price@monash.edu>
* .github/workflows/release.yml: (release) fix bump brew command
2023-11-28 Daniel Price <daniel.price@monash.edu>
* : Merge pull request #47 from danieljprice/mp4 mp4 device, v1.4.0
2023-11-28 Daniel Price <daniel.price@monash.edu>
* LATEST.md, configure, configure.ac, docs/documentation/api.html,
docs/index.html, docs/news/index.html: v1.4.0
2023-11-28 github-actions <41898282+github-actions[bot]@users.noreply.github.com>
* docs/documentation/api.html: [web-bot] updated auto-generated
documentation
2023-11-28 Daniel Price <daniel.price@monash.edu>
* src/giza-driver-mp4.c: (mp4) always replace existing mp4 file; allow user to set ffmpeg
flags using GIZA_FFMPEG_FLAGS environment variable
2023-11-28 Daniel Price <daniel.price@monash.edu>
* LICENSE => COPYING, src/Makefile.am, src/Makefile.in,
src/giza-driver-mp4-private.h, src/giza-driver-mp4.c,
src/giza-drivers-private.h, src/giza-drivers.c: (mp4) added mp4 device; tested and seems to work
2023-11-28 Daniel Price <daniel.price@monash.edu>
* COPYING, LICENSE: changed license to LGPL3
2023-10-10 Daniel Price <daniel.price@monash.edu>
* : Merge pull request #46 from
htrb/add_registered_and_copyright_sign add registered and copyright sign as symbols.
2023-09-29 Hiroyuki Ito <ZXB01226@nifty.com>
* src/giza-hershey-to-utf.h: add registered and copyright sign as
symbols.
2023-09-29 Hiroyuki Ito <ZXB01226@nifty.com>
* src/giza-box.c: Add support for '1' and '2' options to giza_box.
2023-03-10 Daniel Price <daniel.price@monash.edu>
* : Merge pull request #40 from bkmgit/empty-file Delete empty api-ref.html file
2022-09-09 github-actions <41898282+github-actions[bot]@users.noreply.github.com>
* docs/documentation/cpgplot-status.html,
docs/documentation/pgplot-status.html,
docs/documentation/pgplot.html: [web-bot] updated auto-generated
documentation
2022-09-09 Daniel Price <daniel.price@monash.edu>
* src/giza-cpgplot.c, src/giza-pgplot.f90: (docs) updated pgplot implementation status for PGSITF/PGQITF
2022-09-09 Daniel Price <daniel.price@monash.edu>
* Makefile.in, aclocal.m4, config.h.in, configure, src/Makefile.in,
test/C/Makefile.in, test/F90/Makefile.in, test/Makefile.in: (build) updated automake files
2022-09-09 Daniel Price <daniel.price@monash.edu>
* : commit 1902b4d55ffc1439fabc7e564f9d3e16cf2c8817 Merge: 4ff70a8
ace6b44 Author: Daniel Price <daniel.price@monash.edu> Date: Tue
Sep 6 08:32:19 2022 +1000
2022-09-06 Daniel Price <daniel.price@monash.edu>
* : Merge pull request #38 from kerel-fs/pr/fix_readme
2022-08-01 Harro Verkouter <hverkouter@gmail.com>
* src/Makefile.am, src/giza-cpgplot.c, src/giza-fortran.F90,
src/giza-itf.c, src/giza-itf.h, src/giza-pgplot.f90,
src/giza-private.h, src/giza-render-private.h, src/giza-render.c,
src/giza.h: Add support for PG[SQ]ITF, fix PGCONT PGPLOT has three image transfer functions defined for PGIMAG:
linear, log, sqrt. These are now implemented by this commit. The current render engine uses pixel-colour-indices to colour
pixels: based on the pixel value, limits, the transfer function
computes the "position" of the pixel on the 0->1 scale and
transforms that to the nearest colour index from the current
CIMIN/CIMAX colour index range. (To follow PGPLOT docs.) The old code would ignore the colour index range and for each pixel
interpolate the colour table that was set, basically always "true
colour" representation. In a subsequent commit I could provide
infrastructure to support both: code calling giza_render() directly
would return to this behaviour, the call via the PGPLOT interface
would force it through using colour index range. The code now has several flavours of transforming a pixel value to a
normalized colour (on the interval 0..1) or converting that directly
into a colour index between cimin, cimax. In the process fixed some minor bugs. Tested using pgdemo4, adding a PGSITF([123]) manually in the demo
program.
2022-08-01 Harro Verkouter <hverkouter@gmail.com>
* src/giza-colour-table.c: Fix giza_set_colour_table to set
colourindices The function would warn about inconsistent entries in the
controlPoints and return with an error, not setting the colour-index
table. PGPLOT pgdemo4 (demonstrating PGIMAG) has a table with controlpoints
outside the range 0->1 (-.5, 1.7) triggering this warning and error
exit. The colour table is installed nonetheless! Net effect: pixel
colourings in "true colour" - i.e. those that do not go through
colour indices - keep on working, but those relying on colour
indices don't. This fix prints the warning, checks that a sensible number of
control points remain, and then goes on computing the colours for
the set colour index range (PGSCIR) - as per documentation.
2022-08-01 Harro Verkouter <hverkouter@gmail.com>
* src/giza-colour-index.c: Simplified set_colour_index_range
2022-08-01 Harro Verkouter <hverkouter@gmail.com>
* src/giza-contour.c: Follow PGPLOT auto-linestyle in PGCONT
2022-07-27 Fabian P. Schmidt <kerel@mailbox.org>
* README.md: (docs) fix typo in pgplot replacement usage section
2022-07-25 Harro Verkouter <hverkouter@gmail.com>
* src/giza-points.c: Address char height/line width scaling issues According to PGPLOT documentation, symbols are drawn using current
attributes character height and line width (see
https://sites.astro.caltech.edu/~tjp/pgplot/subroutines.html#PGPT). Using the pgdemo2 program, 2nd page (SUBROUTINE PGEX22 in
pgdemo2.f), this behaviour can be tested. I modified both the
linewidth (LW=8) and the character height (CH=2.5) to see how PGPLOT
handles this. Indeed PGPLOT makes the symbols larger and draws thicker lines. The
Giza master branch does not follow this behaviour. This commit seeks
to address that. Some base symbols had to be scaled up a bit wrt to their current
setting, after which character height scaling could be used to do
the rest. giza-points.c does not set a fixed line width anymore, in stead it
follows the current device's setting.
2022-03-14 Daniel Price <daniel.price@monash.edu>
* LATEST.md, configure, configure.ac: v1.3.2
2022-03-14 Daniel Price <daniel.price@monash.edu>
* src/giza-fortran.F90: (giza-fortran) cleanup unnecessary implicit none statements; keep
only the one at the top of the module
2022-03-14 Daniel Price <daniel.price@monash.edu>
* src/giza-drivers.c, src/giza-fortran.F90: (#35) added additional
trims for safety where required
2022-03-14 Daniel Price <daniel.price@monash.edu>
* src/giza-drivers.c: (giza-drivers) trim spaces at end of device string in C causing test
failures in Fortran interface, fixes #35
2022-01-28 github-actions <41898282+github-actions[bot]@users.noreply.github.com>
* docs/documentation/api.html: [web-bot] updated auto-generated
documentation
2022-01-28 Daniel Price <daniel.price@monash.edu>
* ChangeLog, LATEST.md, configure, configure.ac,
docs/news/index.html: v1.3.1
2022-01-28 Daniel Price <daniel.price@monash.edu>
* test/F90/test-pgaxis.f90: (pgaxis) better pgaxis test
2022-01-28 Daniel Price <daniel.price@monash.edu>
* : commit e27012112cb66166dfe3a50d86a22aeba1fbeab2 Author: Daniel
Price <daniel.price@monash.edu> Date: Fri Jan 28 15:51:26 2022
+1100
2022-01-28 github-actions <41898282+github-actions[bot]@users.noreply.github.com>
* docs/documentation/api.html: [web-bot] updated auto-generated
documentation
2022-01-28 Daniel Price <daniel.price@monash.edu>
* : commit 23d9c67e0caa0fafde228f2d9b20f1696d77326b Author: Daniel
Price <daniel.price@monash.edu> Date: Fri Jan 28 15:44:05 2022
+1100
2022-01-28 github-actions <41898282+github-actions[bot]@users.noreply.github.com>
* docs/documentation/api.html: [web-bot] updated auto-generated
documentation
2022-01-28 Daniel Price <daniel.price@monash.edu>
* : commit 6a52d44e30da0beb293e31ff5571b3fa60678bba Author: Daniel
Price <daniel.price@monash.edu> Date: Fri Jan 28 15:35:09 2022
+1100
2022-01-28 github-actions <41898282+github-actions[bot]@users.noreply.github.com>
* docs/documentation/pgplot.html: [web-bot] updated auto-generated
documentation
2022-01-28 Daniel Price <daniel.price@monash.edu>
* .github/workflows/api.yml, docs/documentation/{pgplot.shtml =>
pgplot-header.html}, scripts/generate-docs.sh: (docs) bug fix with auto-generated docs: use simple cat instead of
sed -r
2022-01-28 Daniel Price <daniel.price@monash.edu>
* : commit c3429bf2707b6a2ec55cf5d41a554bb7b9d2c1ad Author: Daniel
Price <daniel.price@monash.edu> Date: Fri Jan 28 15:15:08 2022
+1100
2022-01-28 github-actions <41898282+github-actions[bot]@users.noreply.github.com>
* docs/documentation/pgplot.html: [web-bot] updated auto-generated
documentation
2022-01-28 Daniel Price <daniel.price@monash.edu>
* .github/workflows/api.yml: (api) fix github workflow
2022-01-28 Daniel Price <daniel.price@monash.edu>
* .github/workflows/api.yml: (api) fix github workflow
2022-01-28 Daniel Price <daniel.price@monash.edu>
* .github/workflows/api.yml: (api) fix github workflow
2022-01-28 Daniel Price <daniel.price@monash.edu>
* .github/workflows/api.yml: (api) fix github workflow
2022-01-28 Daniel Price <daniel.price@monash.edu>
* .github/workflows/api.yml: (api) fix github workflow
2022-01-28 Daniel Price <daniel.price@monash.edu>
* .github/workflows/api.yml, {doc => scripts}/api.pl, {doc =>
scripts}/cpgplot_status.pl, {doc => scripts}/generate-docs.sh, {doc
=> scripts}/get-fortran-params.pl, {doc =>
scripts}/get-source-files.pl, {doc => scripts}/pgplot_status.pl: (docs) moved doc->scripts to avoid confusion
2022-01-28 Daniel Price <daniel.price@monash.edu>
* LATEST.md, doc/generate-docs.sh, docs/documentation/pgplot.html,
docs/documentation/pgplot.shtml: (docs) broken links fixed
2022-01-28 Daniel Price <daniel.price@monash.edu>
* doc/generate-docs.sh, docs/documentation/cpgplot-status.html,
docs/documentation/index.html, docs/documentation/pgplot.html,
docs/index.html, src/giza-cpgplot.c: (docs) updated cpgplot interfaces for giza_axis and giza_tick; fix
issues in documentation
2022-01-28 Daniel Price <daniel.price@monash.edu>
* docs/documentation/gettingstarted.html, docs/news/index.html: (docs) fix broken links
2022-01-27 Daniel Price <daniel.price@monash.edu>
* docs/documentation/api.html,
docs/documentation/pgplot-status.html: [web-bot] updated
auto-generated documentation
2022-01-27 Daniel Price <daniel.price@monash.edu>
* docs/news/index.html: updated version
2022-01-27 Daniel Price <daniel.price@monash.edu>
* LATEST.md, src/Makefile.am, src/Makefile.in, src/giza-axis.c,
src/giza-fortran.F90, src/giza-pgplot.f90, src/giza-tick-private.h,
src/giza-tick.c, src/giza.h: (#12) implemented giza_tick replacement
functionality for PGTICK
2022-01-21 Daniel Price <daniel.price@monash.edu>
* LATEST.md, configure, configure.ac: v1.3.0
2022-01-21 Daniel Price <daniel.price@monash.edu>
* : Merge pull request #34 from danieljprice/motion-callback Motion callback
2022-01-21 Daniel Price <daniel.price@monash.edu>
* src/giza-drivers.c, src/giza-fortran.F90, src/giza.h: (motion
callback) added giza_end_motion_callback
2022-01-21 Daniel Price <daniel.price@monash.edu>
* src/giza-driver-xw.c: (motion callback) bug fix: make sure
transform is to world coords
2022-01-19 Daniel Price <daniel.price@monash.edu>
* src/giza-driver-xw-private.h, src/giza-driver-xw.c: (motion
callback) bug fix: restore clipping at end of Xwindows loop
2022-01-19 Daniel Price <daniel.price@monash.edu>
* src/giza-axis.c, src/giza-box.c, src/giza-character-size.c: (giza_axis) bug fixes; everything now works according to the API
2022-01-18 Daniel Price <daniel.price@monash.edu>
* src/Makefile.am, src/Makefile.in, src/giza-band.c,
src/giza-box.c, src/giza-fortran.F90, src/giza-pgplot.f90,
src/giza-render.c, src/giza-stroke-private.h, src/giza.h: (giza_axis) implemented giza_axis to replace PGAXIS
2022-01-17 Daniel Price <daniel.price@monash.edu>
* src/giza-driver-xw.c: (motion callback) expand clipping during
Xwindows loop
2022-01-17 Daniel Price <daniel.price@monash.edu>
* src/giza-driver-xw.c, src/giza-drivers.c, src/giza-fortran.F90,
src/giza-private.h, src/giza.h: (motion callback) send band mode
2022-01-14 Daniel Price <daniel.price@monash.edu>
* src/giza-fortran.F90: (fortran) do not trim strings when passing text to giza
2022-01-14 Daniel Price <daniel.price@monash.edu>
* src/giza-fortran.F90: (motion callback) fortran interface to
giza_set_motion_callback added
2022-01-14 Daniel Price <daniel.price@monash.edu>
* src/giza-driver-xw.c, src/giza-drivers.c, src/giza-private.h,
src/giza-window.c, src/giza.h: (motion callback) implemented
giza_set_motion_callback specifying function to be called during
cursor movement (works for xw device)
2021-06-18 Daniel Price <daniel.price@monash.edu>
* .github/workflows/release.yml: updated brew update to point to
giza-x11 in danieljprice/all
2021-06-18 Daniel Price <daniel.price@monash.edu>
* LATEST.md, configure.ac: v1.2.1
2021-06-18 Daniel Price <daniel.price@monash.edu>
* .github/workflows/release.yml: (github) updated API token
2021-06-18 Daniel Price <daniel.price@monash.edu>
* src/giza-colour-palette.c: (giza_colour_palette) compiler warning/bug fixed for GIZA_PALETTE=8
(matlab-inspired)
2021-06-18 Daniel Price <daniel.price@monash.edu>
* src/giza-drivers.c: (device) bug fix specifying device with directory path e.g.
dir/file.png
2021-01-22 Daniel Price <daniel.price@monash.edu>
* .github/workflows/api.yml: (doc-bot) second attempt to stop failing github action if no files
committed
2021-01-22 Daniel Price <daniel.price@monash.edu>
* .mailmap: updated .mailmap
2021-01-22 Daniel Price <daniel.price@monash.edu>
* .github/workflows/api.yml: (doc-bot) do not fail build if nothing to commit
2021-01-22 Daniel Price <daniel.price@monash.edu>
* .github/workflows/release.yml, LATEST.md: added release notes and
github workflow for automated release-on-tag
2021-01-22 Daniel Price <daniel.price@monash.edu>
* docs/documentation/installation.html, docs/download/index.html: (docs) updated links
2021-01-22 Daniel Price <daniel.price@monash.edu>
* : commit 91a67f39b63eb537066ec0e584034b36e0f4d98b Author: Daniel
Price <daniel.price@monash.edu> Date: Fri Jan 22 15:23:06 2021
+1100
2021-01-22 Daniel Price <daniel.price@monash.edu>
* docs/documentation/api.html: [doc-bot] updated auto-generated
documentation
2021-01-22 Daniel Price <daniel.price@monash.edu>
* : commit 9ad57ce8a0eff64e9c31462cea960d45c0cfa242 Author: Daniel
Price <daniel.price@monash.edu> Date: Fri Jan 22 04:00:17 2021
+0000
2021-01-22 Daniel Price <daniel.price@monash.edu>
* .github/workflows/api.yml: Create api.yml
2021-01-22 Daniel Price <daniel.price@monash.edu>
* ChangeLog: updated ChangeLog
2021-01-22 Daniel Price <daniel.price@monash.edu>
* doc/api.pl: fix comment about api not being stable (not true, it
is very stable)
2021-01-22 Daniel Price <daniel.price@monash.edu>
* docs/samples/index.html: updated sample images on webpage
2021-01-22 Daniel Price <daniel.price@monash.edu>
* INSTALL, Makefile.am, Makefile.in, aclocal.m4, configure,
src/Makefile.in, test/C/Makefile.in, test/F90/Makefile.in,
test/Makefile.in: updated automake and autoconf, restored necessary
INSTALL file and added rule for README to Makefile.am
2021-01-22 Daniel Price <daniel.price@monash.edu>
* : commit 03c20ab804e59a6d9d247083efacb8bbf4577f0f Author: Daniel
Price <daniel.price@monash.edu> Date: Fri Jan 22 14:22:37 2021
+1100
2021-01-22 Daniel Price <daniel.price@monash.edu>
* Makefile.am: remove INSTALL from Makefile.am
2021-01-22 Daniel Price <daniel.price@monash.edu>
* .github/workflows/build.yml: Update build.yml
2021-01-22 Daniel Price <daniel.price@monash.edu>
* .github/workflows/build.yml: Create build.yml
2021-01-22 Daniel Price <daniel.price@monash.edu>
* README, INSTALL => README.md: (docs) updated README.md for github; include contents of old INSTALL
file
2020-04-03 Daniel Price <daniel.price@monash.edu>
* : Merge pull request #30 from chafarderix/hack Avoid some compile warnings in tests
2020-04-03 chafarderix <chafar@chafar.net>
* : Merge pull request #1 from danieljprice/master following upstream
2020-04-02 chafar <chafar@chafar.net>
* src/giza-box.c, src/giza-drivers.c, src/giza-format-number.c,
src/giza-private.h, src/giza.h: new giza_set_number_format() sets
format to use by giza_box()
2020-02-17 Daniel Price <daniel.price@monash.edu>
* : Merge pull request #28 from aardk/master For PNG images sometimes the internal logic would classify a single
page
2019-03-20 Daniel Price <daniel.price@monash.edu>
* : Merge pull request #25 from markahutch/master Avoid compilation errors with Splash
2019-03-20 Daniel Price <daniel.price@monash.edu>
* : Merge pull request #26 from haavee/issue-21 Issue 21
2019-01-17 Harro Verkouter <hverkouter@gmail.com>
* src/giza-box-time.c: Fix unused expression result warning A no-op statement was still left in the code; it is now removed
2019-01-17 Harro Verkouter <hverkouter@gmail.com>
* src/giza-box-time.c: Remove C99 for-loop initial declarations There were still two C99-only idioms left which are now rewritten to
use a single, not-quite-as-transient-as-hoped, variable char* to
upcase the x/y option input strings.
2019-01-11 Mark Hutchison <markahutch@gmail.com>
* src/giza-colour-palette.c: added Matlab style colour palette
2019-01-11 Mark Hutchison <markahutch@gmail.com>
* src/giza-box-time.c, src/giza-drivers.c: define variables outside
of for loop to avoid the 'initial declarations are only allowed in
C99 mode' error
2018-11-28 Daniel Price <daniel.price@monash.edu>
* src/giza-driver-xw.c, src/giza-format-number.c: more compiler
warnings fixed
2018-11-28 Daniel Price <daniel.price@monash.edu>
* src/giza-box-time.c: (giza-box-time) compiler warnings fixed
2018-11-28 Daniel Price <daniel.price@monash.edu>
* src/giza-box-time.c: (giza-box-time) rename routines to follow internal routine
conventions consistent with rest of giza; whitespaces removed at end
of lines
2018-11-28 Daniel Price <daniel.price@monash.edu>
* : commit fb8c0e00805f73dc7cde7f09d2484df722c887cb Author: Daniel
Price <daniel.price@monash.edu> Date: Wed Nov 28 11:15:29 2018
+1100
2018-11-28 Daniel Price <daniel.price@monash.edu>
* : commit 34cbae10601f412fbdf46de33f47baf433aec317 Author: Daniel
Price <daniel.price@monash.edu> Date: Wed Nov 28 10:11:47 2018
+1100
2018-11-28 Daniel Price <daniel.price@monash.edu>
* : Merge pull request #24 from haavee/issue-21 This should fix issue #21 "missing braces"
2018-11-27 Harro Verkouter <hverkouter@gmail.com>
* src/giza-driver-xw.c, src/giza-drivers.c: Synchronize XW device id
with giza_device_t The global variable 'id' is now also used to address the instance of
the GIZA_XWindow struct where giza_device_t Dev[id]'s properties are
stored. This can be done because: - giza-driver-xw.c implements a shadow array, "XW", of euqal length
as the Dev[...] array (GIZA_MAX_DEVICES - `giza_open_...()` now searches for an unused entry in Dev[...]
when opening a device - `giza_close_device()` closes the correct device when it's, well,
closed. If the entry happened to be an XWindow, the corresponding
XW[id] struct will now also be properly closed.
2018-11-27 Harro Verkouter <hverkouter@gmail.com>
* src/giza-driver-null.c, src/giza-driver-pdf.c,
src/giza-driver-png.c, src/giza-driver-ps.c, src/giza-driver-svg.c,
src/giza-driver-xw.c: Fix device specific close fn's giza_open() now detects and handles errors occuring during setup of
the new device. The device specific _giza_close_<device>() functions
needed to be updated to deal with partially/not fully initialized
devices. For the XWindow driver, its shadow administration of GIZA_XWindow
devices (the "XW[...]" array) needed to be managed slightly
different, not unlinke how devices are now
initialized/de-initialized in giza-drivers.c The global 'xid' variable was removed and replaced by a lookup in
the (already existing) giza_xw_id[...] table. Thinking about it, it seems to me the whole shadow 'xid'
administration can be simplified if Dev[N], if Dev[N] refers to an
XWindow, stores its peculiars in XW[N]. `giza_open()` now already
takes care of finding an empty slot and there should be no reason
for the XWindow driver to use that assigned slot as well. A separate commit implementing that will follow, which makes that
change opt-in.
2018-11-26 Harro Verkouter <hverkouter@gmail.com>
* src/giza-drivers.c, src/giza-private.h,
src/giza-set-font-private.h, src/giza-set-font.c, src/giza.h: Font
memory management changed In order to (1) prevent excessive font unload/load sequences and (2)
proper support for per-device font handling and (3) simplifying font
loading and (4) get a handle on memory management, the giza_set_font()
implementation was changed. Fonts are now cached internally based on the primary key
(font-family, slant, weight) and reference counted across open
devices. Up to three mechanisms of loading a font are tried: FreeType,
FontConfig and cairo_toy_font - depending on cairo version and
wether cairo was compiled with support for that. FreeType/FontConfig
library initialization code made more robust and handling error(s)
and releasing allocated memory in such a case was improved. Extra code to ensure cache unloading at program end was added.
2018-11-23 Harro Verkouter <hverkouter@gmail.com>
* src/giza-box.c, src/giza-cpgplot.c, src/giza-format-number.c,
src/giza-fortran.F90, src/giza.h: `giza_format_number()` string
buffer length The `giza_format_number()` function writes unconditionally to a
destination string buffer without being informed how large that
buffer is. This commit adds an extra parameter to be passed to
`giza_format_number()` - the size of the string buffer. It changes
the implementation to take care of not writing outside the
destination string's boundaries. It should be noted that this may have an effect on
cpgnumb()/PGNUMB() because there is no officially documented
necessity that the *string_length parameter in cpgnumb() has to
contain the size of the buffer upon entry; the documentation only
mentions the contents of that parameter are set on output to the
number of characters written. I have checked the official PGPLOT libcpgplot binding and
perl5-PGPLOT which both do this: both write the size of the FORTRAN
string in the parameter before calling cpgnumb() or use a temporary
variable and pass that size in. I have updated giza-fortran.F90 to
do the same. The Python-PGPLOT binding (ppgplot) does not expose cpgnumb() so at this point that's not an
issue.
2018-11-23 Harro Verkouter <hverkouter@gmail.com>
* src/giza-cpgplot.c, src/giza-drivers.c, src/giza.h: Fix multi dev
handling (SIGSEGV, libc corruption) The giza library, specifically in `giza_open_device_size()` and
`giza_close_device()`, did not handle multiple devices being opened
and closed in random order - which is what my own application
happens to do. The internal bookkeeping got out of sync with the user's device
identification, leading to API calls wreaking havoc because they
would apply to an unitialized giza_device_t entry or overwrite
properties of a giza_device_t they weren't supposed to. (E.g.
cpgopen() could easily overwrite an already open device entry,
cpgclos() could fail because the internal bookkeeping had forgotten
that the user's open device actually existed). Long story short: SIGSEGV and program termination because libc
malloc had detected corruption of its internal structures ensued. In order to fix this a slightly larger than normal edit had to take
place. Entries in the global giza_device_t array are now properly
initialized and de-initialized to a known state, even when opening a
device fails halfway through. PGEND() / cpgend() did not, contrary to documentation, close all
current open devices; now it does.
2018-11-20 Daniel Price <daniel.price@monash.edu>
* docs/documentation/api.html: [web-bot] updated auto-generated
documentation
2018-11-20 Daniel Price <daniel.price@monash.edu>
* configure, configure.ac: updated version number
2018-11-17 Daniel Price <daniel.price@monash.edu>
* : commit 2733835a13c73b272a5ff999f86906b7c8992bcc Author: Harro
Verkouter <hverkouter@gmail.com> Date: Fri Nov 16 17:55:41 2018
+0100
2018-11-15 Harro Verkouter <hverkouter@gmail.com>
* src/giza-drivers.c: Remove _giza_change_size() because it's not used anywhere anymore.
2018-11-15 Daniel Price <daniel.price@monash.edu>
* : Merge pull request #20 from haavee/issue-19 This fixes #19 build failure macports PPC
2018-11-14 Harro Verkouter <hverkouter@gmail.com>
* src/giza-cpgplot.c: Revert "Args swapped between API and giza
implementation" This reverts commit c323737e7d49dd998d068b2964ffe76c86f648c5.
Should be on a completely different branch!
2018-11-14 Harro Verkouter <hverkouter@gmail.com>
* src/giza-driver-xw-private.h, src/giza-driver-xw.c,
src/giza-drivers.c, src/giza-paper.c, src/giza-private.h: Attempt to
be more PGPLOT compatible * PGPAP() does not resize the window immediately anymore, only sets
.resize flag. Only when moving to a new page the change in size
takes effect * PGPAGE() skips asking for confirmation the first time * XWindow specific "_giza_change_size_xw()" removed - now handled
better in giza_set_paper_size(). The resize flag is detected in _giza_change_page_xw() and handled correctly there.
2018-11-12 Harro Verkouter <hverkouter@gmail.com>
* src/giza-driver-xw.c, src/giza-environment.c: Savegame issue #18
2018-11-12 Harro Verkouter <hverkouter@gmail.com>
* src/giza-cpgplot.c: Args swapped between API and giza
implementation giza_render has calling convention giza_render_*( ..., valMin, valMax, ...) whereas PGPLOT API cpggray(..., float fg, float bg, ...) but the parameters 'fg', 'bg' were passed to giza_render in that
order as 'valMin', 'valMax' i.e. fg, bg are reversed
2018-11-09 Harro Verkouter <hverkouter@gmail.com>
* src/giza-box-time.c: This fixes #19 build failure macports PPC I erroneously used scoped for loop variables in a non-100% portable
way.
2018-11-09 Daniel Price <daniel.price@monash.edu>
* : Merge pull request #16 from haavee/symbol-issues Fixes #5 Symbol issues
2018-11-08 Harro Verkouter <hverkouter@gmail.com>
* src/giza-points.c: Scale up symbols #-3..-8 They came out (noticeably) smaller in giza than in PGPLOT as far as
I could tell.
2018-11-08 Harro Verkouter <hverkouter@gmail.com>
* src/giza-points.c: Scaled up the arrows (#28-31) a bit The arrows looked markedly smaller in giza than on the PGPLOT
original. Scaled them up a bit.
2018-11-08 Harro Verkouter <hverkouter@gmail.com>
* src/giza-points.c: Fix #19, update #0, 6 Symbol #19 was not a hexagon with a cross but a larger open square
than #6. The squares are also drawn with a slightly thinner line.
2018-11-08 Harro Verkouter <hverkouter@gmail.com>
* src/giza-points.c: Fix symbols #20 - 27 (inclusive) The open circles are now exponentially scaled and drawn with a
slightly thinner line than before
2018-11-08 Harro Verkouter <hverkouter@gmail.com>
* src/giza-points.c: Fix symbols 12, 18 (5-pt star), #20 initiated Symbols 12 and 18 now are five-point stars, open and filled. Symbol
20 was entered as seven-point star but it should be a small open
circle. Already changed it from _giza_star() => _giza_circle() but
symbols 20-27 are a bit off anyway, so that's going to be fixed in a
different commit.
2018-11-08 Harro Verkouter <hverkouter@gmail.com>
* src/giza-points.c: New line widths only used if you actually
stroke
2018-11-08 Harro Verkouter <hverkouter@gmail.com>
* src/giza-points.c: Fix symbol 14 (open plus sign)
2018-11-08 Harro Verkouter <hverkouter@gmail.com>
* src/giza-points.c: Fix symbol #10 (concave rect)
2018-11-07 Harro Verkouter <hverkouter@gmail.com>
* src/giza-points.c: Fix symbols 7,13,15 The triangles 7, 13 were pointing the wrong way and symbol 15 is the
star of David formed by overplotting two open triangles offset a
little bit
2018-11-07 Harro Verkouter <hverkouter@gmail.com>
* : Merge remote-tracking branch 'upstream/master'
2018-10-31 Daniel Price <daniel.price@monash.edu>
* : Merge pull request #3 from haavee/master giza_parse_string() fix, add cpgqinf() support, fix critical bug
found doing this
2018-09-06 Harro Verkouter <hverkouter@gmail.com>
* src/giza-cpgplot.c, src/giza-drivers-private.h,
src/giza-drivers.c, src/giza-fortran.F90, src/giza.h: Support
cpgqinf(), fix critical bug Found out that the fortron giza pgplot binding implemented PQQINF()
(to query version &cet) but the C-language binding didn't. Whilst implementing cpgqinf() found that giza_query_device() and
_giza_int_to_device() contained a serious bug, with SIGSEGV looming
or loss of information. Both quoted functions copy information into a user allocated string
buffer. Extract of relevant code with 'noise' deleted: _giza_int_to_device (int numDevice, char *DeviceName) { case GIZA_DEVICE_NULL: strncpy(DeviceName, "/null", sizeof(DeviceName)-1); break; .... The user allocated buffers are passed by pointer ("char*
DeviceName") and the 'sizeof(...)' operator returns the size of the
_pointer_ not the size of the buffer it's pointing at! Depending on the platform "sizeof(char*) - 1" evaluates to 3 (32
bit) or 7 (64 bit), irrespective of how many characters the user
really allocated. This can lead to either: - overestimating the amount of characters available in case the
user allocated less than 3 (or 7) bytes for their buffer. A
strncpy() with a source longer than 3 (or 7) would then overwrite
memory that it shouldn't, which in turn would lead to unpredictable
behaviour at best and program termination via SIGSEGV at worst. - underestimating the amount characters available if the user
allocated more than 3 (or 7) characters for their target buffer.
In this case, the strncpy() with a source string > 3 (or 7)
characters would truncate the output - e.g. the file name of a
device would easily be > 7 characters long but at most 3 (or 7) of
them would be copied. This would lead to unnecessary loss of
information. In order to fix this the target buffer size must be explicitly
passed to the functions by the caller. Thus the prototype of
giza_query_device() needed to be altered and as a result the Fortran
wrapper needed adapting to the new signature and pass in the extra
variable accordingly.
2018-09-06 Harro Verkouter <hverkouter@gmail.com>
* src/giza-scanner.l, src/lex.yy.c: Fix backspace handling ... The meaning of the nGlyph index used in giza_parse_string changed
subtly during development and the handling of backspace was not
changed accordingly. The result was that "x^2\b_i" rendered fine but the unit superscript
over the decimal point in PGTBOX() now looked horrible because the
pen position was moved to an erroneous position. Sigh. In order to make "x-i-squared" render nicely it must now be spelled
as: x^2\b\b_i with two backspaces. The first backs up over the
superscript '2', the second backs up over the '^' superscript
operation; when entering the superscript the baseline of the font
and the current pen position is changed immediately. So if that is
not undone before staring to render further characters, the pen
position is not where you hoped it would be.
2018-09-06 Daniel Price <daniel.price@monash.edu>
* docs/news/index.html: updated docs
2018-09-06 Daniel Price <daniel.price@monash.edu>
* docs/documentation/api.html,
docs/documentation/cpgplot-status.html,
docs/documentation/pgplot-status.html: [web-bot] updated
auto-generated documentation
2018-09-06 Daniel Price <daniel.price@monash.edu>
* configure: updated configure script
2018-09-06 Daniel Price <daniel.price@monash.edu>
* AUTHORS, README, configure.ac, src/giza-cpgplot.c,
src/giza-pgplot.f90: updated docs and version number to following
merge
2018-09-06 Daniel Price <daniel.price@monash.edu>
* src/giza-points.c: (giza_points) revert marker size to behaviour on master
2018-09-06 Daniel Price <daniel.price@monash.edu>
* src/giza-driver-xw.c: (xw) spaces at end of lines removed
2018-09-06 Daniel Price <daniel.price@monash.edu>
* : Merge https://github.com/haavee/giza into haavee-master
2018-09-05 Harro Verkouter <hverkouter@gmail.com>
* : commit 553bf85db2f60aaf908113322b0cae4c0d0836de Author: Harro
Verkouter <hverkouter@gmail.com> Date: Wed Sep 5 15:35:47 2018
+0200
2018-09-05 Harro Verkouter <hverkouter@gmail.com>
* src/giza-set-font.c, src/giza.h: giza_set_font_*(...) take const
char* Sometimes compile time static strings are fed into
giza_set_font*(...) calls but their prototype is "char *", implying
mutable strings. None of the functions actually modify their argument so it probably
is better to make this explicit in their prototypes.
2018-09-04 Harro Verkouter <hverkouter@gmail.com>
* src/giza-driver-xw.c, src/giza-drivers.c: Better XWindow resizing
implementation It turned out that the XWindow resizing wasn't handled correctly in
all cases; notable pgdemo13 (with two x-windows) exposed a problem
in the code in the first window, the one with the choice menu. More often than not it would show ellipses where circles should be
drawn and the text was (way) ouside the window. What happened was two calls to giza_change_page_xw() quickly after
each other. The first had Dev[id].resize = 1 (from PGPAP(...) in
pgdemo13), which triggered an XResizeWindow(...) in the code, to
change the size of the XWindow to the requested device size. The
next call entered with Dev[id].resize = 0 (because that was already
handled) ... but that one detected a window geometry change! Upon
inspection it turned out that, as far as X11 was concerned, the
window still had the /old/ size whilst our internal bookkeeping was
already updated with the requested size. Turns out that the XResizeWindow() does not take effect immediately.
So the code now waits for ConfigureNotify events until the requested
window size has been achieved. Now it works reliably and windows can
be resized between plotting.
2018-08-30 Harro Verkouter <hverkouter@gmail.com>
* src/giza-io-private.h, src/giza-io.c: Enable formatted
warning/error messages (compat) By changing _giza_warning() and _giza_error() prototype (and
implementation) slightly it is now possible to make the 'message'
parameter be a formatting string (cf. printf("formatting string %s =
%d", s, i)) Now this is possible: _giza_warning("giza_parse_string", "Invalid Hershey number %d",
hershey); _giza_error("giza_parse_string", "Unrecognized token
#%d '%s'", token, yytext); Existing _giza_warning()/_giza_error() calls are completely
unaffected by this.
2018-08-30 Harro Verkouter <hverkouter@gmail.com>
* src/giza-driver-xw.c: no XWindow resize waiting for keypress Whilst the system is waiting for a keypress, do not honour window
resizing requests. PGPLOT also does not do this.
2018-08-30 Harro Verkouter <hverkouter@gmail.com>
* src/giza-box.c: Fixed earlier broken 'repair' Sometimes the PGPLOT doc is somewhat ambiguous but not for 'N' and
'M' options: both imply labels have to be drawn, only 'M' sais to do
so in the unconvential location. Ambiguity example: does 'L' (logarithmic labelling) *imply* 'N' or
'M' ("write labels")? Or is 'L' only honoured if either 'N' or 'M'
is specified (which is how the code currently works).
2018-08-30 Harro Verkouter <hverkouter@gmail.com>
* src/giza-box.c: Add support for 'M' option to PG(T)BOX When it comes to writing labels PG(T)BOX supports the following: -N :- Label the axis (conventional, below/left viewport) -M :- Put labels in the unconvential location (above/right
viewport) The 'M' option was not implemented by giza so I added it. Whilst at
it removed a few levels of somewhat unnecessary if()'s by adding a
high-level check and sometimes continue'ing from a loop if the rest
of the loop body is precluded from being executed anyway.
2018-08-30 Harro Verkouter <hverkouter@gmail.com>
* src/giza-box-time.c: Fixed minor bugs (logic, off-by-one, missing
/) There were two off-by-one lost-in-FORTRAN-to-C-translation: - using number of items as last accessible index ok in fortran, not so much in C (a classic) - end condition off by one because of pretty much the same in fortran "<" must be <= in C (if C-style counting with fortran meaning of index) I condensed what I thought three levels of fortran IF .. END IF into
a single C "if( x && y && y)" but missed that the 3rd IF was a
single-statement and did not introduce the 3rd 'and' ... IF x THEN IF y THEN IF z <stuff> <other stuff> END IF END IF at first erroneously translated by me into if( x && y && z ) { <stuff> <other stuff> } now reads if( x && y ) { if( z ) <stuff> <other stuff> } And finally in the specification of the super/subscript label
formats I had forgotten to escape the backslash with a backslash in
the strings.
2018-08-30 Harro Verkouter <hverkouter@gmail.com>
* src/giza-box.c: y-axis ticks on the right were drawn wrong side Obviously the previous edit introduced a sign error :-) If y-axis
ticks were drawn on the right hand side they'd be drawn the same
direction as the ones on the left-hand side. Fixed.
2018-08-30 Harro Verkouter <hverkouter@gmail.com>
* src/giza-box.c: Support for PGBOX 'I' and 'P' options and bug fix giza's pgbox(...) routine did not support the PGPLOT options 'I' and
'P': -I: Invert tick marks - write them outside the viewport in
stead of inside (default) -P: Project major tick marks outside the viewport (ignored if 'I'
also specified) Fixed bug where tickmarks on 'the other side' of the frame were
drawn in the same direction but they need to be inverted: If tick marks on the bottom are drawn inwards (i.e. up) then at the
top they must be drawn downwards to achieve the same effect. The
existing code drew the top tick marks outside the viewport because
it would draw them 'up' as well.
2018-08-30 Harro Verkouter <hverkouter@gmail.com>
* src/giza-box.c: Fix axis ticks not being drawn if axis 'reversed' In checking pgdemo1 certain axes did not display any tick marks at
all! This was traced to be when the window set through pgswin() was
such that Dev[id].Win.[xy]max < Dev[id].Win.[xy]min, i.e. the axis
is reversed: the values decrease towards the right (X) or top (Y)
2018-08-22 Harro Verkouter <hverkouter@gmail.com>
* : commit c00f33c3c943fba12f94916ed468f76afdd76bd1 Author: Harro
Verkouter <hverkouter@gmail.com> Date: Fri Aug 17 17:38:56 2018
+0200
2018-08-16 Harro Verkouter <hverkouter@gmail.com>
* src/giza-cursor-routines.c: fix pgdemo5 misbehaving of
pgolin/pglcur pgdemo5 with giza master branch draws all subsequent polygons in
black whereas PGPLOT draws subsequenct polygons in different colours
by incrementing colour index at each new polygon.
2018-08-16 Harro Verkouter <hverkouter@gmail.com>
* src/giza-viewport.c: Revert "fix PGPLOT incompatibility" This reverts commit e9644f6b098e54fb2cd246434d8d1c58fc6e1ba1.
Breaks pgdemo2 (pgvsiz() function). It was not specifically a bug or
fix and it doesn't hurt keeping the original code but it hurts not
keeping the original version ... ;-)
2018-08-16 Harro Verkouter <hverkouter@gmail.com>
* src/giza-driver-xw.c, src/giza-drivers.c: revert to drawing to
pixamp, XCopyArea to window Turns out there's code relying on drawing onto the pixmap and in
general, direct drawing to the window is probably best avoided
2018-08-16 Daniel Price <daniel.price@monash.edu>
* : commit da2f2eca704c4002386610f8f5b344f5f9465e17 Merge: 6c8ce0d
99aaa05 Author: Daniel Price <daniel.price@monash.edu> Date: Thu
Aug 16 10:35:33 2018 +1000
2018-08-15 eee software boss <casa@eee2.jive.nl>
* src/giza-box-time.c: fix sigsegv in pgtbox() Using printf()'s Parameter field(*) I used 0-based counting for the
argument replacement fields but it has to be 1-based for argument 0
is the format string itself ... (*)
https://en.wikipedia.org/wiki/Printf_format_string#Parameter_field
2018-08-14 Harro Verkouter <hverkouter@gmail.com>
* src/giza-print-id.c: Fix compiler warning prototype for sprintf() missing
2018-08-14 Harro Verkouter <hverkouter@gmail.com>
* src/giza-cpgplot.c: fix off-by-one between external/internal
device id When using multiple open devices simultaneously, the returned device
id from cpgoen should be usable to later select that open device.
There was an extra +/- 1 mismatch between cpgopen and cpgslct.
2018-08-14 Harro Verkouter <hverkouter@gmail.com>
* src/giza-drivers-private.h, src/giza-drivers.c, src/giza-io.c: fix
compiler warning casting const away When splitting the device string sometimes 'const char*' was
assigned to 'char *' - which the compiler doesn't like. Fixed by changing prototype and destination data type of the split
string.
2018-08-14 Harro Verkouter <hverkouter@gmail.com>
* src/giza-io.c: fix warning about unused return value fgets() returns an error code and the caller is expected to check
that return valuer; compiler verifies this.
2018-08-14 Harro Verkouter <hverkouter@gmail.com>
* src/giza-box-time.c: Support for pgtbox() The existing pgtbox() redirected to pgbox(). For astronomy application(s) time labelling is very important and a
highly desirable property. The existing PGTBOX() from the PGPLOT source code was ported into an
initial working version, behaving identically, modulo porting bugs.
2018-08-14 Harro Verkouter <hverkouter@gmail.com>
* src/giza-scanner.l, src/lex.yy.c: Support for backspace (\b) in
printing strings For time labelling to look good it is 'necessary' to make the
superscript appear on top of e.g. the decimal point. This can be
done if 'backspace' is supported - backing up the text by one or
more characters. This necessitated rewriting the giza_parse_string() a bit because in
the current version backing up to a previous character's position
was impossible.
2018-08-14 Harro Verkouter <hverkouter@gmail.com>
* src/giza-viewport.c: fix PGPLOT incompatibility When setting a viewport (pgsvp) the window should not be
automatically set (pgswin), cf. "pgsvp.f" source code
2018-08-14 Harro Verkouter <hverkouter@gmail.com>
* src/giza-io.c: fix warning about unused return value fgets() returns an error code and the caller is expected to check
that return valuer; compiler verifies this.
2018-08-14 Harro Verkouter <hverkouter@gmail.com>
* src/giza-drivers-private.h, src/giza-drivers.c, src/giza-io.c: fix
compiler warning casting const away When splitting the device string sometimes 'const char*' was
assigned to 'char *' - which the compiler doesn't like. Fixed by changing prototype and destination data type of the split
string.
2018-08-14 Harro Verkouter <hverkouter@gmail.com>
* src/giza-print-id.c: Fix compiler warning prototype for sprintf() missing
2018-08-14 Harro Verkouter <hverkouter@gmail.com>
* src/giza-driver-xw.c, src/giza-drivers.c: fix external XWindow
resize If plotting to an XWindow and the window was resized by the user
before re-plotting, the draw surface would not get updated to
reflect the new XWindow size. Fixes necessary: - detect if the XWindow was resized (in handle change to new page
event) and set resize flag for the device in such a case - the PANEL size(s) were not updated: this was the main culprit. The window and cairo surface were always changed upon a new XWindow
page but the panel sizes, kept internally in units of pixels(!) were
never updated. Thus even if the XWindow was made smaller/larger,
the amount of pixels actually drawn was never changed.
2018-08-14 Harro Verkouter <hverkouter@gmail.com>
* src/giza-cpgplot.c: fix off-by-one between external/internal
device id When using multiple open devices simultaneously, the returned device
id from cpgoen should be usable to later select that open device.
There was an extra +/- 1 mismatch between cpgopen and cpgslct.
2018-05-14 Daniel Price <daniel.price@monash.edu>
* INSTALL: updated pgplot instructions
2018-05-14 Daniel Price <daniel.price@monash.edu>
* INSTALL: (install) added instructions for running basic examples to INSTALL
file
2018-03-07 Daniel Price <daniel.price@monash.edu>
* docs/news/index.html, src/Makefile.in, test/C/Makefile.in,
test/F90/Makefile.in: docs for 0.9.5
2018-03-07 Daniel Price <daniel.price@monash.edu>
* Makefile.in, aclocal.m4, configure, configure.ac: (config) updated configure scripts
2018-03-07 Daniel Price <daniel.price@monash.edu>
* .mailmap, configure.ac: 0.9.5
2018-03-05 Daniel Price <daniel.price@monash.edu>
* ChangeLog, NEWS, docs/news/index.html: 0.9.5
2018-03-05 Daniel Price <daniel.price@monash.edu>
* docs/documentation/api.html,
docs/documentation/cpgplot-status.html: [web-bot] updated
auto-generated documentation
2018-03-05 Daniel Price <daniel.price@monash.edu>
* doc/api.pl: (web) updated links in api script
2018-03-05 Daniel Price <daniel.price@monash.edu>
* docs/samples/index.html: (web) updated links
2018-03-05 Daniel Price <daniel.price@monash.edu>
* docs/documentation/api.html,
docs/documentation/gettingstarted.html,
docs/documentation/installation.html: (web) updated links
2018-03-05 Daniel Price <daniel.price@monash.edu>
* docs/contact/index.html, docs/documentation/index.html,
docs/download/index.html, docs/news/index.html,
docs/samples/index.html: (web) updated links
2018-03-05 Daniel Price <daniel.price@monash.edu>
* docs/contact/index.html, docs/documentation/index.html,
docs/download/index.html, docs/index.html, docs/news/index.html,
docs/samples/index.html: (web) updated links
2018-03-05 Daniel Price <daniel.price@monash.edu>
* docs/contact/index.html, docs/documentation/api-ref.html,
docs/documentation/api.html, docs/documentation/api.shtml,
docs/documentation/cpgplot-status.html,
docs/documentation/gettingstarted.c,
docs/documentation/gettingstarted.html,
docs/documentation/index.html,
docs/documentation/installation.html,
docs/documentation/pgplot-status.html,
docs/documentation/pgplot.shtml, docs/download/index.html,
docs/news/index.html, docs/samples/index.html: (giza) added website for github pages build
2018-03-05 Daniel Price <daniel.price@monash.edu>
* docs/index.html, docs/style.css: (web) test github pages
2017-11-23 Daniel Price <daniel.price@monash.edu>
* src/giza-box.c: (giza_box) bug fix with drawing major axis only; also with drawing
grid (iaxis=1) git-svn-id: https://svn.code.sf.net/p/giza/code@533
952f94de-64c9-43ce-8081-c12abd9885bf
2017-09-07 Daniel Price <daniel.price@monash.edu>
* .gitignore: updated .gitignore to ignore .lo and .la files git-svn-id: https://svn.code.sf.net/p/giza/code@532
952f94de-64c9-43ce-8081-c12abd9885bf
2017-09-07 Daniel Price <daniel.price@monash.edu>
* src/giza-viewport.c, src/giza-window.c: fix compiler warning in
giza-viewport/giza-window git-svn-id: https://svn.code.sf.net/p/giza/code@531
952f94de-64c9-43ce-8081-c12abd9885bf
2017-09-07 Daniel Price <daniel.price@monash.edu>
* src/giza-box.c: (giza_box) bug fix with spacing between box and numbers when numbers
written on top of box git-svn-id: https://svn.code.sf.net/p/giza/code@530
952f94de-64c9-43ce-8081-c12abd9885bf
2017-07-22 Joachim Frieben <jfrieben@hotmail.com>
* src/giza-print-id.c: fix string allocation (thanks to Ole
Streicher) git-svn-id: https://svn.code.sf.net/p/giza/code@529
952f94de-64c9-43ce-8081-c12abd9885bf
2017-04-24 Daniel Price <daniel.price@monash.edu>
* src/giza-error-bars.c: bug fix with shaded error bars git-svn-id: https://svn.code.sf.net/p/giza/code@528
952f94de-64c9-43ce-8081-c12abd9885bf
2016-07-23 Joachim Frieben <jfrieben@hotmail.com>
* src/giza-drivers.c: Fix off-by-one in string definition (thanks to
Ole Streicher) git-svn-id: https://svn.code.sf.net/p/giza/code@527
952f94de-64c9-43ce-8081-c12abd9885bf
2016-06-05 Daniel Price <daniel.price@monash.edu>
* src/giza-driver-xw.c: (giza_driver_xw) blank screen issue on Linux fixed (thanks to Ole
Streicher); also enabled XW error handling routine git-svn-id: https://svn.code.sf.net/p/giza/code@526
952f94de-64c9-43ce-8081-c12abd9885bf
2016-06-03 Daniel Price <daniel.price@monash.edu>
* src/giza-scanner.l, src/lex.yy.c: (giza-scanner) declared internal functions static; recompiled flex
file git-svn-id: https://svn.code.sf.net/p/giza/code@525
952f94de-64c9-43ce-8081-c12abd9885bf
2016-06-03 Daniel Price <daniel.price@monash.edu>
* src/giza-band.c, src/giza-colour-index.c: (libgiza) build failures from previous commit fixed git-svn-id: https://svn.code.sf.net/p/giza/code@524
952f94de-64c9-43ce-8081-c12abd9885bf
2016-06-03 Daniel Price <daniel.price@monash.edu>
* src/giza-band.c, src/giza-colour-index.c, src/giza-cpgplot.c,
src/giza-warnings.c: (libgiza) shared variables declared static where possible (thanks to
Ole Streicher) git-svn-id: https://svn.code.sf.net/p/giza/code@523
952f94de-64c9-43ce-8081-c12abd9885bf
2016-06-03 Daniel Price <daniel.price@monash.edu>
* src/giza-save.c: (giza_save) shared variables declared static (thanks to Ole
Streicher) git-svn-id: https://svn.code.sf.net/p/giza/code@522
952f94de-64c9-43ce-8081-c12abd9885bf
2016-05-30 Daniel Price <daniel.price@monash.edu>
* src/giza-cpgplot.c: (cpgplot) typo in cpgplot interface fixed (cpghi2D->cpghi2d); thanks
to Ole Streicher git-svn-id: https://svn.code.sf.net/p/giza/code@521
952f94de-64c9-43ce-8081-c12abd9885bf
2016-01-19 Joachim Frieben <jfrieben@hotmail.com>
* Makefile.am, Makefile.in, src/Makefile.am, src/Makefile.in: Move
directive .NOTPARALLEL to the correct location git-svn-id: https://svn.code.sf.net/p/giza/code@520
952f94de-64c9-43ce-8081-c12abd9885bf
2016-01-18 Daniel Price <daniel.price@monash.edu>
* Makefile.am, Makefile.in: bug fix: .NOTPARALLEL: instead of
.NOTPARALLEL (thanks to Joachim Frieben) git-svn-id: https://svn.code.sf.net/p/giza/code@519
952f94de-64c9-43ce-8081-c12abd9885bf
2016-01-18 Daniel Price <daniel.price@monash.edu>
* Makefile.am, Makefile.in: added .NOTPARALLEL to avoid build
problems git-svn-id: https://svn.code.sf.net/p/giza/code@518
952f94de-64c9-43ce-8081-c12abd9885bf
2015-12-27 Joachim Frieben <jfrieben@hotmail.com>
* README: update postal address of the FSF git-svn-id: https://svn.code.sf.net/p/giza/code@517
952f94de-64c9-43ce-8081-c12abd9885bf
2015-12-22 Joachim Frieben <jfrieben@hotmail.com>
* COPYING: update to current GPLv2 git-svn-id: https://svn.code.sf.net/p/giza/code@516
952f94de-64c9-43ce-8081-c12abd9885bf
2015-12-12 Joachim Frieben <jfrieben@hotmail.com>
* src/Makefile.am, src/Makefile.in: Install giza.mod in the module
directory git-svn-id: https://svn.code.sf.net/p/giza/code@515
952f94de-64c9-43ce-8081-c12abd9885bf
2015-12-12 Joachim Frieben <jfrieben@hotmail.com>
* src/giza-points.c: Draw correct symbol for marker type -4 git-svn-id: https://svn.code.sf.net/p/giza/code@514
952f94de-64c9-43ce-8081-c12abd9885bf
2015-11-20 Daniel Price <daniel.price@monash.edu>
* Makefile.in, aclocal.m4, configure, configure.ac,
src/Makefile.in, test/C/Makefile.in, test/F90/Makefile.in,
test/Makefile.in: use AM_MAINTAINER_MODE([disable]) to avoid
problems with timestamps if exported from svn git-svn-id: https://svn.code.sf.net/p/giza/code@513
952f94de-64c9-43ce-8081-c12abd9885bf
2015-11-17 Daniel Price <daniel.price@monash.edu>
* src/Makefile.am, src/Makefile.in: added .h files to Makefile.am so
that make dist works git-svn-id: https://svn.code.sf.net/p/giza/code@512
952f94de-64c9-43ce-8081-c12abd9885bf
2015-11-17 Daniel Price <daniel.price@monash.edu>
* AUTHORS, ChangeLog, NEWS: 0.9.4 git-svn-id: https://svn.code.sf.net/p/giza/code@511
952f94de-64c9-43ce-8081-c12abd9885bf
2015-11-13 Daniel Price <daniel.price@monash.edu>
* src/giza-points.c: patch for negative marker indices; now matches
expected PGPLOT behaviour; contributed by Joachim Frieben git-svn-id: https://svn.code.sf.net/p/giza/code@510
952f94de-64c9-43ce-8081-c12abd9885bf
2015-11-03 Daniel Price <daniel.price@monash.edu>
* INSTALL: updated INSTALL instructions git-svn-id: https://svn.code.sf.net/p/giza/code@509
952f94de-64c9-43ce-8081-c12abd9885bf
2015-11-03 Daniel Price <daniel.price@monash.edu>
* configure, configure.ac: added fallback options for cairo and x11
on OS/X if pkg-config not available git-svn-id: https://svn.code.sf.net/p/giza/code@508
952f94de-64c9-43ce-8081-c12abd9885bf
2015-11-03 Daniel Price <daniel.price@monash.edu>
* src/Makefile.am, src/Makefile.in: libpgplot and libcpgplot link to
libgiza instead of including .o files; faster build (thanks to
Joachim Frieben) git-svn-id: https://svn.code.sf.net/p/giza/code@507
952f94de-64c9-43ce-8081-c12abd9885bf
2015-11-02 Daniel Price <daniel.price@monash.edu>
* src/Makefile.am, src/Makefile.in: build libgiza before libcpgplot;
also copy giza-fortran.F90 to include directory git-svn-id: https://svn.code.sf.net/p/giza/code@506
952f94de-64c9-43ce-8081-c12abd9885bf
2015-11-01 Daniel Price <daniel.price@monash.edu>
* configure, configure.ac: update libtool version info + added
comments git-svn-id: https://svn.code.sf.net/p/giza/code@505
952f94de-64c9-43ce-8081-c12abd9885bf
2015-11-01 Daniel Price <daniel.price@monash.edu>
* test/{ => C}/test-error-bars-2.c: test-error-bars-2.c -> test/C
(thanks to Joachim Frieben) git-svn-id: https://svn.code.sf.net/p/giza/code@504
952f94de-64c9-43ce-8081-c12abd9885bf
2015-11-01 Daniel Price <daniel.price@monash.edu>
* INSTALL: updated INSTALL instructions for autotools build (thanks
to Joachim Frieben) git-svn-id: https://svn.code.sf.net/p/giza/code@503
952f94de-64c9-43ce-8081-c12abd9885bf
2015-11-01 Daniel Price <daniel.price@monash.edu>
* : removed obsolete dirs in svn (thanks to Joachim Frieben) git-svn-id: https://svn.code.sf.net/p/giza/code@502
952f94de-64c9-43ce-8081-c12abd9885bf
2015-10-30 lolo-2 <lolo-2@952f94de-64c9-43ce-8081-c12abd9885bf>
* src/giza-character-size.c: typo in giza_set_character_height_float
doc string (missing _float) git-svn-id: https://svn.code.sf.net/p/giza/code@500
952f94de-64c9-43ce-8081-c12abd9885bf
2015-10-30 Daniel Price <daniel.price@monash.edu>
* Makefile.in, aclocal.m4, configure, configure.ac,
src/Makefile.am, src/Makefile.in, test/C/Makefile.in,
test/F90/Makefile.in, test/Makefile.in: updated build to use
pkg-config to find X11 and cairo libs git-svn-id: https://svn.code.sf.net/p/giza/code@499
952f94de-64c9-43ce-8081-c12abd9885bf
2015-10-30 Daniel Price <daniel.price@monash.edu>
* configure.ac, src/giza-version.h.in: added versioning of
giza-version.h to configure stuff git-svn-id: https://svn.code.sf.net/p/giza/code@498
952f94de-64c9-43ce-8081-c12abd9885bf
2015-10-30 Daniel Price <daniel.price@monash.edu>
* build/compile, build/config.guess, build/config.sub,
build/depcomp, build/install-sh, build/ltmain.sh, build/missing,
build/test-driver: added autoconf scripts to build dir git-svn-id: https://svn.code.sf.net/p/giza/code@497
952f94de-64c9-43ce-8081-c12abd9885bf
2015-10-30 Daniel Price <daniel.price@monash.edu>
* Makefile.in, config.h.in, configure, src/Makefile.in,
test/C/Makefile.in, test/F90/Makefile.in, test/Makefile.in: added
autotools-generated files for distribution (thanks to Joachim
Frieben) git-svn-id: https://svn.code.sf.net/p/giza/code@496
952f94de-64c9-43ce-8081-c12abd9885bf
2015-10-30 Daniel Price <daniel.price@monash.edu>
* test/Makefile.am: replaced Makefiles with automake and autoconf
scripts (thanks to Joachim Frieben) git-svn-id: https://svn.code.sf.net/p/giza/code@495
952f94de-64c9-43ce-8081-c12abd9885bf
2015-10-30 Daniel Price <daniel.price@monash.edu>
* Makefile, Makefile.am, aclocal.m4, build/Makefile, configure.ac,
m4/libtool.m4, m4/ltoptions.m4, m4/ltsugar.m4, m4/ltversion.m4,
m4/lt~obsolete.m4, src/Makefile.am, test/C/Makefile.am,
test/F90/Makefile.am, test/Makefile: replaced Makefiles with
automake and autoconf scripts (thanks to Joachim Frieben) git-svn-id: https://svn.code.sf.net/p/giza/code@494
952f94de-64c9-43ce-8081-c12abd9885bf
2015-10-30 Daniel Price <daniel.price@monash.edu>
* src/giza-band-private.h, src/giza-band.c,
src/giza-colour-index.c, src/giza-colour-private.h,
src/giza-drivers.c, src/giza-private.h: bug fixes with variables
defined in headers; now uses extern and declared in .c files git-svn-id: https://svn.code.sf.net/p/giza/code@493
952f94de-64c9-43ce-8081-c12abd9885bf
2015-10-30 Daniel Price <daniel.price@monash.edu>
* src/cpgplot.pc.in, src/giza.pc.in, src/pgplot.pc.in: added
pkg-config metadata files (thanks to Joachim Frieben) git-svn-id: https://svn.code.sf.net/p/giza/code@492
952f94de-64c9-43ce-8081-c12abd9885bf
2015-10-30 Daniel Price <daniel.price@monash.edu>
* ChangeLog, CHANGES => NEWS: CHANGES->NEWS and added ChangeLog
(thanks to Joachim Frieben) git-svn-id: https://svn.code.sf.net/p/giza/code@491
952f94de-64c9-43ce-8081-c12abd9885bf
2015-10-30 Daniel Price <daniel.price@monash.edu>
* include/.gitignore, lib/.gitignore: removed include and lib dirs
(thanks to Joachim Frieben) git-svn-id: https://svn.code.sf.net/p/giza/code@490
952f94de-64c9-43ce-8081-c12abd9885bf
2015-10-30 Daniel Price <daniel.price@monash.edu>
* doc/cpgplot_status.pl, doc/get-fortran-params.pl,
doc/pgplot_status.pl: perl scripts updated to point to ../src
instead of ../interface (thanks to Joachim Frieben) git-svn-id: https://svn.code.sf.net/p/giza/code@489
952f94de-64c9-43ce-8081-c12abd9885bf
2015-10-30 Daniel Price <daniel.price@monash.edu>
* {include => src}/cpgplot.h, {include => src}/giza-shared.h,
{include => src}/giza.h: include/*.h->src (thanks to Joachim
Frieben) git-svn-id: https://svn.code.sf.net/p/giza/code@488
952f94de-64c9-43ce-8081-c12abd9885bf
2015-10-30 Daniel Price <daniel.price@monash.edu>
* {interface => src}/giza-cpgplot.c, {interface =>
src}/giza-fortran.F90, {interface => src}/giza-pgplot.f90:
interface/*->src (thanks to Joachim Frieben) git-svn-id: https://svn.code.sf.net/p/giza/code@487
952f94de-64c9-43ce-8081-c12abd9885bf
2015-10-30 Daniel Price <daniel.price@monash.edu>
* test/test-2D.f90, test/test-XOpenDisplay.c, test/test-arrow.c,
test/test-band.c, test/test-box.c, test/test-cairo-xw.c,
test/test-change-page.c, test/test-circle.c,
test/test-colour-index.c, test/test-contour.c,
test/test-environment.c, test/test-error-bars.c,
test/test-format-number.c, test/test-fortran.f90,
test/test-giza-xw.c, test/test-line-cap.c, test/test-line-style.c,
test/test-openclose.c, test/test-pdf.c, test/test-pgaxis.f90,
test/test-pgncur.f90, test/test-png.c, test/test-points.c,
test/test-qtext.c, test/test-rectangle.c, test/test-render.c,
test/test-set-line-width.c, test/test-svg.c, test/test-vector.c,
test/test-window.c: test->test/C test/F90 (thanks to Joachim
Frieben) git-svn-id: https://svn.code.sf.net/p/giza/code@486
952f94de-64c9-43ce-8081-c12abd9885bf
2015-10-30 Daniel Price <daniel.price@monash.edu>
* test/C/test-XOpenDisplay.c, test/C/test-arrow.c,
test/C/test-band.c, test/C/test-box.c, test/C/test-cairo-xw.c,
test/C/test-change-page.c, test/C/test-circle.c,
test/C/test-colour-index.c, test/C/test-contour.c,
test/C/test-environment.c, test/C/test-error-bars.c,
test/C/test-format-number.c, test/C/test-giza-xw.c,
test/C/test-line-cap.c, test/C/test-line-style.c,
test/C/test-openclose.c, test/C/test-pdf.c, test/C/test-png.c,
test/C/test-points.c, test/C/test-qtext.c, test/C/test-rectangle.c,
test/C/test-render.c, test/C/test-set-line-width.c,
test/C/test-svg.c, test/C/test-vector.c, test/C/test-window.c,
test/F90/test-2D.f90, test/F90/test-fortran.f90,
test/F90/test-pgaxis.f90, test/F90/test-pgncur.f90: test->test/C
test/F90 (thanks to Joachim Frieben) git-svn-id: https://svn.code.sf.net/p/giza/code@485
952f94de-64c9-43ce-8081-c12abd9885bf
2015-10-30 Daniel Price <daniel.price@monash.edu>
* {docs => doc}/api.pl, {docs => doc}/cpgplot_status.pl, {docs =>
doc}/get-fortran-params.pl, {docs => doc}/get-source-files.pl,
{docs => doc}/pgplot_status.pl: docs->doc (thanks to Joachim
Frieben) git-svn-id: https://svn.code.sf.net/p/giza/code@484
952f94de-64c9-43ce-8081-c12abd9885bf
2015-10-29 lolo-2 <lolo-2@952f94de-64c9-43ce-8081-c12abd9885bf>
* include/giza.h: added giza_rectangle_rounded and
giza_rectangle_rounded_float functions declarations git-svn-id: https://svn.code.sf.net/p/giza/code@483
952f94de-64c9-43ce-8081-c12abd9885bf
2015-10-29 lolo-2 <lolo-2@952f94de-64c9-43ce-8081-c12abd9885bf>
* test/test-error-bars-2.c: added test-error-bars-2.c file for all
direction values (included shaded mode) git-svn-id: https://svn.code.sf.net/p/giza/code@482
952f94de-64c9-43ce-8081-c12abd9885bf
2015-10-29 lolo-2 <lolo-2@952f94de-64c9-43ce-8081-c12abd9885bf>
* src/giza-error-bars.c: fix error bars bug in shaded region mode
(dir = 9) git-svn-id: https://svn.code.sf.net/p/giza/code@481
952f94de-64c9-43ce-8081-c12abd9885bf
2015-10-20 Daniel Price <daniel.price@monash.edu>
* build/Makefile: (os/x) fixed X11 library path for OS/X El Capitan git-svn-id: https://svn.code.sf.net/p/giza/code@480
952f94de-64c9-43ce-8081-c12abd9885bf
2015-04-27 Daniel Price <daniel.price@monash.edu>
* README: updated readme git-svn-id: https://svn.code.sf.net/p/giza/code@479
952f94de-64c9-43ce-8081-c12abd9885bf
2015-04-27 Daniel Price <daniel.price@monash.edu>
* CHANGES: Changelog updated for 0.9.3 git-svn-id: https://svn.code.sf.net/p/giza/code@478
952f94de-64c9-43ce-8081-c12abd9885bf
2015-04-17 Daniel Price <daniel.price@monash.edu>
* build/Makefile: version bumped to 0.9.3 git-svn-id: https://svn.code.sf.net/p/giza/code@477
952f94de-64c9-43ce-8081-c12abd9885bf
2015-04-17 Daniel Price <daniel.price@monash.edu>
* build/Makefile: add -I$(PREFIX)/include/cairo to include flags git-svn-id: https://svn.code.sf.net/p/giza/code@476
952f94de-64c9-43ce-8081-c12abd9885bf
2015-04-17 Daniel Price <daniel.price@monash.edu>
* src/giza-io.c: flushing achieved with fflush instead of getchar to
avoid unnecessary hangs git-svn-id: https://svn.code.sf.net/p/giza/code@475
952f94de-64c9-43ce-8081-c12abd9885bf
2015-04-16 Daniel Price <daniel.price@monash.edu>
* src/giza-io.c: flush stdin after giza prompt to avoid repeated
device tries git-svn-id: https://svn.code.sf.net/p/giza/code@474
952f94de-64c9-43ce-8081-c12abd9885bf
2015-04-16 Daniel Price <daniel.price@monash.edu>
* src/giza-drivers.c, src/giza-io.c, src/giza-private.h: BUG FIX
with long device names; string length increased to 256 chars; added
error checks for strings too long (thanks to Hugh Williams) git-svn-id: https://svn.code.sf.net/p/giza/code@473
952f94de-64c9-43ce-8081-c12abd9885bf
2015-04-16 Daniel Price <daniel.price@monash.edu>
* src/giza-driver-png.c: better error handling in png device (thanks
to Hugh Williams) git-svn-id: https://svn.code.sf.net/p/giza/code@472
952f94de-64c9-43ce-8081-c12abd9885bf
2015-01-28 Daniel Price <daniel.price@monash.edu>
* test/Makefile: added testpg target to compile pgplot tests (thanks
to Joachim Frieben) git-svn-id: https://svn.code.sf.net/p/giza/code@471
952f94de-64c9-43ce-8081-c12abd9885bf
2015-01-28 Daniel Price <daniel.price@monash.edu>
* test/Makefile, test/test-pdf.c, test/test-svg.c: added separate
test-svg; test-pdf now outputs pdf git-svn-id: https://svn.code.sf.net/p/giza/code@470
952f94de-64c9-43ce-8081-c12abd9885bf
2015-01-28 Daniel Price <daniel.price@monash.edu>
* test/test-png.c: test-png spits out sensible number of files git-svn-id: https://svn.code.sf.net/p/giza/code@469
952f94de-64c9-43ce-8081-c12abd9885bf
2015-01-28 Daniel Price <daniel.price@monash.edu>
* test/test-png.c: test-png spits out sensible number of files git-svn-id: https://svn.code.sf.net/p/giza/code@468
952f94de-64c9-43ce-8081-c12abd9885bf
2015-01-28 Daniel Price <daniel.price@monash.edu>
* test/test-arrow.c: test-arrow now works as expected (thanks to
Joachim Frieben) git-svn-id: https://svn.code.sf.net/p/giza/code@467
952f94de-64c9-43ce-8081-c12abd9885bf
2015-01-28 Daniel Price <daniel.price@monash.edu>
* test/Makefile, test/test-2D.f90: added test-2D to default tests git-svn-id: https://svn.code.sf.net/p/giza/code@466
952f94de-64c9-43ce-8081-c12abd9885bf
2015-01-28 Daniel Price <daniel.price@monash.edu>
* test/Makefile, test/{test-xw.c => test-giza-xw.c}: renamed
test-xw.c->test-giza-xw.c (thanks to Joachim Frieben) git-svn-id: https://svn.code.sf.net/p/giza/code@465
952f94de-64c9-43ce-8081-c12abd9885bf
2015-01-28 Daniel Price <daniel.price@monash.edu>
* test/Makefile, test/test-fortran.f90: fixed build of test-fortran git-svn-id: https://svn.code.sf.net/p/giza/code@464
952f94de-64c9-43ce-8081-c12abd9885bf
2015-01-28 Daniel Price <daniel.price@monash.edu>
* build/Makefile: added FFLAGS setting and -fPIC to Makefile git-svn-id: https://svn.code.sf.net/p/giza/code@463
952f94de-64c9-43ce-8081-c12abd9885bf
2015-01-05 Daniel Price <daniel.price@monash.edu>
* CHANGES: updated ChangeLog for 0.9.2 git-svn-id: https://svn.code.sf.net/p/giza/code@462
952f94de-64c9-43ce-8081-c12abd9885bf
2015-01-04 Daniel Price <daniel.price@monash.edu>
* build/Makefile: 0.9.2 git-svn-id: https://svn.code.sf.net/p/giza/code@461
952f94de-64c9-43ce-8081-c12abd9885bf
2015-01-04 Daniel Price <daniel.price@monash.edu>
* build/Makefile: use $(FC) instead of $(LIBTOOL) to compile shared
Fortran library (thanks to Sean Farley) git-svn-id: https://svn.code.sf.net/p/giza/code@460
952f94de-64c9-43ce-8081-c12abd9885bf
2014-11-11 Daniel Price <daniel.price@monash.edu>
* src/giza-line-style-private.h, src/giza-line-style.c: fine-tuning
of line styles; added offset to patterns to give better legend git-svn-id: https://svn.code.sf.net/p/giza/code@459
952f94de-64c9-43ce-8081-c12abd9885bf
2014-11-06 Daniel Price <daniel.price@monash.edu>
* src/giza-fill.c: bug fix with typedef of line width in giza fill
(thanks to W. Dehnen) git-svn-id: https://svn.code.sf.net/p/giza/code@458
952f94de-64c9-43ce-8081-c12abd9885bf
2014-08-28 Daniel Price <daniel.price@monash.edu>
* build/Makefile: bug fix with giza.mod in install target git-svn-id: https://svn.code.sf.net/p/giza/code@457
952f94de-64c9-43ce-8081-c12abd9885bf
2014-08-28 Daniel Price <daniel.price@monash.edu>
* build/Makefile: reverted build targets; also install giza.mod into
include dir by default git-svn-id: https://svn.code.sf.net/p/giza/code@456
952f94de-64c9-43ce-8081-c12abd9885bf
2014-08-27 Daniel Price <daniel.price@monash.edu>
* build/Makefile: workaround for macports issue with all target git-svn-id: https://svn.code.sf.net/p/giza/code@455
952f94de-64c9-43ce-8081-c12abd9885bf
2014-08-27 Daniel Price <daniel.price@monash.edu>
* CHANGES, build/Makefile: version 0.9.1 git-svn-id: https://svn.code.sf.net/p/giza/code@454
952f94de-64c9-43ce-8081-c12abd9885bf
2014-08-27 Daniel Price <daniel.price@monash.edu>
* test/Makefile, test/test-pgaxis.f90: added test for pgaxis
routines git-svn-id: https://svn.code.sf.net/p/giza/code@453
952f94de-64c9-43ce-8081-c12abd9885bf
2014-08-27 Daniel Price <daniel.price@monash.edu>
* Makefile, build/Makefile: minor changes to build: default target
is default, not all to avoid macports issue git-svn-id: https://svn.code.sf.net/p/giza/code@452
952f94de-64c9-43ce-8081-c12abd9885bf
2014-08-26 Daniel Price <daniel.price@monash.edu>
* interface/giza-pgplot.f90, src/giza-cursor-routines.c,
test/Makefile, test/test-pgncur.f90: implemented sorting in
mark_cursor/PGNCUR git-svn-id: https://svn.code.sf.net/p/giza/code@451
952f94de-64c9-43ce-8081-c12abd9885bf
2014-08-26 Daniel Price <daniel.price@monash.edu>
* src/giza-error-bars.c: bug fix with shaded error bar plotting
(causing shading of outside not inside) git-svn-id: https://svn.code.sf.net/p/giza/code@450
952f94de-64c9-43ce-8081-c12abd9885bf
2014-08-22 Daniel Price <daniel.price@monash.edu>
* interface/giza-pgplot.f90: updated docs for fortran interface git-svn-id: https://svn.code.sf.net/p/giza/code@449
952f94de-64c9-43ce-8081-c12abd9885bf
2014-08-22 Daniel Price <daniel.price@monash.edu>
* CHANGES: 0.9.0 git-svn-id: https://svn.code.sf.net/p/giza/code@448
952f94de-64c9-43ce-8081-c12abd9885bf
2014-08-22 Daniel Price <daniel.price@monash.edu>
* build/Makefile: version 0.9.0 git-svn-id: https://svn.code.sf.net/p/giza/code@447
952f94de-64c9-43ce-8081-c12abd9885bf
2014-08-22 Daniel Price <daniel.price@monash.edu>
* src/giza-viewport.c: better margins in PGENV/giza_environment git-svn-id: https://svn.code.sf.net/p/giza/code@446
952f94de-64c9-43ce-8081-c12abd9885bf
2014-08-22 Daniel Price <daniel.price@monash.edu>
* src/giza-character-size.c, src/giza-drivers.c,
src/giza-subpanel.c: character size scaled according to panel height
not page height git-svn-id: https://svn.code.sf.net/p/giza/code@445
952f94de-64c9-43ce-8081-c12abd9885bf
2014-08-22 Daniel Price <daniel.price@monash.edu>
* src/giza-viewport.c, src/giza-window.c: BUG FIX with clipping and
positioning of panels if more than one row git-svn-id: https://svn.code.sf.net/p/giza/code@444
952f94de-64c9-43ce-8081-c12abd9885bf
2014-08-22 Daniel Price <daniel.price@monash.edu>
* src/giza-subpanel.c: BUG FIX with panel changing if more than one
row git-svn-id: https://svn.code.sf.net/p/giza/code@443
952f94de-64c9-43ce-8081-c12abd9885bf
2014-08-22 Daniel Price <daniel.price@monash.edu>
* src/giza-driver-xw.c: BUG FIX with flushing if multiple XW devices
used git-svn-id: https://svn.code.sf.net/p/giza/code@442
952f94de-64c9-43ce-8081-c12abd9885bf
2014-08-22 Daniel Price <daniel.price@monash.edu>
* src/giza-drivers.c: BUG FIX with missing last page on interactive
devices if prompting is on git-svn-id: https://svn.code.sf.net/p/giza/code@441
952f94de-64c9-43ce-8081-c12abd9885bf
2014-08-22 Daniel Price <daniel.price@monash.edu>
* interface/giza-pgplot.f90: comment removed git-svn-id: https://svn.code.sf.net/p/giza/code@440
952f94de-64c9-43ce-8081-c12abd9885bf
2014-06-28 Daniel Price <daniel.price@monash.edu>
* branches/opengl/INSTALL, branches/opengl/LICENSE,
branches/opengl/Makefile, branches/opengl/build/Makefile,
branches/opengl/docs/api.pl, branches/opengl/docs/pgplot_status.pl,
branches/opengl/include/.gitignore,
branches/opengl/interface/Makefile,
branches/opengl/interface/giza-fortran.F90,
branches/opengl/interface/giza-pgplot.f90,
branches/opengl/interface/pgplot-stubs.f90,
branches/opengl/lib/.gitignore,
branches/opengl/src/giza-annotate.c,
branches/opengl/src/giza-arrow-style-private.h,
branches/opengl/src/giza-arrow-style.c,
branches/opengl/src/giza-arrow.c,
branches/opengl/src/giza-band-private.h,
branches/opengl/src/giza-band-style.c,
branches/opengl/src/giza-band.c, branches/opengl/src/giza-box.c,
branches/opengl/src/giza-buffering.c,
branches/opengl/src/giza-character-size-private.h,
branches/opengl/src/giza-character-size.c,
branches/opengl/src/giza-circle.c,
branches/opengl/src/giza-colour-index-private.h,
branches/opengl/src/giza-colour-index.c,
branches/opengl/src/giza-colour-table-private.h,
branches/opengl/src/giza-colour-table.c,
branches/opengl/src/giza-contour.c,
branches/opengl/src/giza-device-has-cursor.c,
branches/opengl/src/giza-draw.c,
branches/opengl/src/giza-driver-eps-private.h,
branches/opengl/src/giza-driver-eps.c,
branches/opengl/src/giza-driver-null-private.h,
branches/opengl/src/giza-driver-null.c,
branches/opengl/src/giza-driver-pdf-private.h,
branches/opengl/src/giza-driver-pdf.c,
branches/opengl/src/giza-driver-png-private.h,
branches/opengl/src/giza-driver-png.c,
branches/opengl/src/giza-driver-ps-private.h,
branches/opengl/src/giza-driver-ps.c,
branches/opengl/src/giza-driver-xw-private.h,
branches/opengl/src/giza-driver-xw.c,
branches/opengl/src/giza-drivers-private.h,
branches/opengl/src/giza-drivers.c,
branches/opengl/src/giza-environment.c,
branches/opengl/src/giza-error-bars.c,
branches/opengl/src/giza-features.h,
branches/opengl/src/giza-fill-private.h,
branches/opengl/src/giza-fill.c,
branches/opengl/src/giza-format-number.c,
branches/opengl/src/giza-function-t.c,
branches/opengl/src/giza-function-x.c,
branches/opengl/src/giza-function-y.c,
branches/opengl/src/giza-get-key-press.c,
branches/opengl/src/giza-get-surface-size.c,
branches/opengl/src/giza-gl-interactive.c,
branches/opengl/src/giza-gl-private.h,
branches/opengl/src/giza-gl.h,
branches/opengl/src/giza-io-private.h,
branches/opengl/src/giza-io.c, branches/opengl/src/giza-label.c,
branches/opengl/src/giza-line-cap.c,
branches/opengl/src/giza-line-style-private.h,
branches/opengl/src/giza-line-style.c,
branches/opengl/src/giza-line-width.c,
branches/opengl/src/giza-line.c, branches/opengl/src/giza-move.c,
branches/opengl/src/giza-paper.c,
branches/opengl/src/giza-points.c,
branches/opengl/src/giza-polygon.c,
branches/opengl/src/giza-private.h,
branches/opengl/src/giza-prompting-private.h,
branches/opengl/src/giza-prompting.c,
branches/opengl/src/giza-ptext.c, branches/opengl/src/giza-qtext.c,
branches/opengl/src/giza-rectangle.c,
branches/opengl/src/giza-render.c, branches/opengl/src/giza-save.c,
branches/opengl/src/giza-scanner.l,
branches/opengl/src/giza-set-font-private.h,
branches/opengl/src/giza-set-font.c,
branches/opengl/src/giza-shared-cpp.h,
branches/opengl/src/giza-stroke-private.h,
branches/opengl/src/giza-stroke.c,
branches/opengl/src/giza-text-background-private.h,
branches/opengl/src/giza-text-background.c,
branches/opengl/src/giza-text-private.h,
branches/opengl/src/giza-text.c,
branches/opengl/src/giza-transforms-private.h,
branches/opengl/src/giza-transforms.c,
branches/opengl/src/giza-vector.c,
branches/opengl/src/giza-viewport-private.h,
branches/opengl/src/giza-viewport.c,
branches/opengl/src/giza-warnings-private.h,
branches/opengl/src/giza-warnings.c,
branches/opengl/src/giza-window-private.h,
branches/opengl/src/giza-window.c, branches/opengl/src/giza.c,
branches/opengl/src/giza.h, branches/opengl/src/lex.yy.c,
branches/opengl/test/test-arrow.c,
branches/opengl/test/test-band.c, branches/opengl/test/test-box.c,
branches/opengl/test/test-change-page.c,
branches/opengl/test/test-circle.c,
branches/opengl/test/test-colour-index.c,
branches/opengl/test/test-contour.c,
branches/opengl/test/test-environment.c,
branches/opengl/test/test-error-bars.c,
branches/opengl/test/test-format-number.c,
branches/opengl/test/test-gl.c,
branches/opengl/test/test-line-cap.c,
branches/opengl/test/test-line-style.c,
branches/opengl/test/test-points.c,
branches/opengl/test/test-qtext.c,
branches/opengl/test/test-rectangle.c,
branches/opengl/test/test-render.c,
branches/opengl/test/test-set-line-width.c,
branches/opengl/test/test-vector.c,
branches/opengl/test/test-window.c, build/Makefile: deleted obsolete
branch git-svn-id: https://svn.code.sf.net/p/giza/code@439
952f94de-64c9-43ce-8081-c12abd9885bf
2014-06-17 Daniel Price <daniel.price@monash.edu>
* src/giza-drivers.c, src/giza-paper.c, src/giza-subpanel.c,
src/giza-window.c: sub-panelling now works; various bugs fixed with
this git-svn-id: https://svn.code.sf.net/p/giza/code@438
952f94de-64c9-43ce-8081-c12abd9885bf
2014-06-17 Daniel Price <daniel.price@monash.edu>
* src/giza-viewport.c: bug fix with uninitialised variables if bad
args to giza_viewport git-svn-id: https://svn.code.sf.net/p/giza/code@437
952f94de-64c9-43ce-8081-c12abd9885bf
2014-06-17 Daniel Price <daniel.price@monash.edu>
* src/giza-viewport.c: docs fixed for viewport routines git-svn-id: https://svn.code.sf.net/p/giza/code@436
952f94de-64c9-43ce-8081-c12abd9885bf
2014-06-17 Daniel Price <daniel.price@monash.edu>
* src/giza-drivers.c, src/giza-subpanel-private.h,
src/giza-subpanel.c, src/giza-viewport.c: clipping of plot for
sub-panels now works as expected; advance_subpanel returns flag when
page changes git-svn-id: https://svn.code.sf.net/p/giza/code@435
952f94de-64c9-43ce-8081-c12abd9885bf
2014-06-17 Daniel Price <daniel.price@monash.edu>
* interface/giza-cpgplot.c, interface/giza-pgplot.f90,
src/giza-histogram.c: implemented giza_histogram_binned; implements
PGBIN git-svn-id: https://svn.code.sf.net/p/giza/code@434
952f94de-64c9-43ce-8081-c12abd9885bf
2014-06-17 Daniel Price <daniel.price@monash.edu>
* src/giza-histogram.c: giza_histogram implemented; compatible with
PGHIST git-svn-id: https://svn.code.sf.net/p/giza/code@433
952f94de-64c9-43ce-8081-c12abd9885bf
2014-06-17 Daniel Price <daniel.price@monash.edu>
* build/Makefile, include/giza.h, interface/giza-cpgplot.c,
interface/giza-fortran.F90, interface/giza-pgplot.f90,
src/giza-histogram.c: added interfaces for histogram routines git-svn-id: https://svn.code.sf.net/p/giza/code@432
952f94de-64c9-43ce-8081-c12abd9885bf
2014-06-17 Daniel Price <daniel.price@monash.edu>
* src/giza-drivers.c: can use /xs, /xserve and /xwindow to specify
X-windows device git-svn-id: https://svn.code.sf.net/p/giza/code@431
952f94de-64c9-43ce-8081-c12abd9885bf
2014-06-17 Daniel Price <daniel.price@monash.edu>
* build/Makefile, include/giza.h, interface/giza-cpgplot.c,
interface/giza-fortran.F90, interface/giza-pgplot.f90,
src/giza-drivers.c, src/giza-private.h,
src/giza-subpanel-private.h, src/giza-subpanel.c,
src/giza-viewport.c: sub-panelling routines implemented (not yet
working) git-svn-id: https://svn.code.sf.net/p/giza/code@430
952f94de-64c9-43ce-8081-c12abd9885bf
2014-03-31 Daniel Price <daniel.price@monash.edu>
* CHANGES, README: updated changelog git-svn-id: https://svn.code.sf.net/p/giza/code@429
952f94de-64c9-43ce-8081-c12abd9885bf
2014-03-27 Daniel Price <daniel.price@monash.edu>
* src/giza-scanner.l, src/lex.yy.c: support for limited scope of
font changing commands in strings, i.e. {\bf text} and {\it text} git-svn-id: https://svn.code.sf.net/p/giza/code@428
952f94de-64c9-43ce-8081-c12abd9885bf
2014-03-26 Daniel Price <daniel.price@monash.edu>
* src/giza-scanner.l, src/lex.yy.c: text routines handle escape
sequences for backslash (\\), underscore (\_), hat (\^) and curly
brackets git-svn-id: https://svn.code.sf.net/p/giza/code@427
952f94de-64c9-43ce-8081-c12abd9885bf
2014-03-26 Daniel Price <daniel.price@monash.edu>
* src/giza-save.c: giza-save uses GIZA_FONT_LEN to be consistent git-svn-id: https://svn.code.sf.net/p/giza/code@426
952f94de-64c9-43ce-8081-c12abd9885bf
2014-03-26 Daniel Price <daniel.price@monash.edu>
* build/Makefile: version bumped to 0.8.1 git-svn-id: https://svn.code.sf.net/p/giza/code@425
952f94de-64c9-43ce-8081-c12abd9885bf
2014-03-26 Daniel Price <daniel.price@monash.edu>
* src/giza-points.c, src/giza-ptext.c, src/giza-qtext.c,
src/giza-set-font.c: BUG FIX with font changing in rotated strings;
also original font now preserved after string is printed git-svn-id: https://svn.code.sf.net/p/giza/code@424
952f94de-64c9-43ce-8081-c12abd9885bf
2014-03-26 Daniel Price <daniel.price@monash.edu>
* src/giza-scanner.l, src/giza-text-private.h, src/giza-text.c,
src/lex.yy.c: can use \bf or \fb to get bold face in strings git-svn-id: https://svn.code.sf.net/p/giza/code@423
952f94de-64c9-43ce-8081-c12abd9885bf
2014-03-25 Daniel Price <daniel.price@monash.edu>
* test/test-2D.f90: minor change to 2D test git-svn-id: https://svn.code.sf.net/p/giza/code@422
952f94de-64c9-43ce-8081-c12abd9885bf
2014-03-25 Daniel Price <daniel.price@monash.edu>
* src/giza-scanner.l, src/lex.yy.c: updated text scanner (uses
unicode Sun symbol) git-svn-id: https://svn.code.sf.net/p/giza/code@421
952f94de-64c9-43ce-8081-c12abd9885bf
2013-12-19 Daniel Price <daniel.price@monash.edu>
* src/giza-render.c: added link to giza_set_colour_table in docs git-svn-id: https://svn.code.sf.net/p/giza/code@420
952f94de-64c9-43ce-8081-c12abd9885bf
2013-12-18 Daniel Price <daniel.price@monash.edu>
* src/giza-colour-bar.c, src/giza-render.c: bug fix in docs
referring to giza_colour_ramp, should be to giza_set_colour_table git-svn-id: https://svn.code.sf.net/p/giza/code@419
952f94de-64c9-43ce-8081-c12abd9885bf
2013-12-18 Daniel Price <daniel.price@monash.edu>
* src/giza-box-time.c: updated links in docs git-svn-id: https://svn.code.sf.net/p/giza/code@418
952f94de-64c9-43ce-8081-c12abd9885bf
2013-12-18 Daniel Price <daniel.price@monash.edu>
* interface/giza-fortran.F90: affine array does not need to be
passed for most rendered images in simple f90 interface git-svn-id: https://svn.code.sf.net/p/giza/code@417
952f94de-64c9-43ce-8081-c12abd9885bf
2013-12-18 Daniel Price <daniel.price@monash.edu>
* test/Makefile, test/test-2D.f90: added test-2D thanks to
Jean-Francois Gonzalez git-svn-id: https://svn.code.sf.net/p/giza/code@416
952f94de-64c9-43ce-8081-c12abd9885bf
2013-12-18 Daniel Price <daniel.price@monash.edu>
* include/giza.h: interface added for giza_get_device_id in giza.h git-svn-id: https://svn.code.sf.net/p/giza/code@415
952f94de-64c9-43ce-8081-c12abd9885bf
2013-12-18 Daniel Price <daniel.price@monash.edu>
* interface/giza-cpgplot.c: added cpgtbox interface to
giza_box_time; also bug fix with cpgswin git-svn-id: https://svn.code.sf.net/p/giza/code@414
952f94de-64c9-43ce-8081-c12abd9885bf
2013-11-15 Daniel Price <daniel.price@monash.edu>
* CHANGES: updated changelog git-svn-id: https://svn.code.sf.net/p/giza/code@413
952f94de-64c9-43ce-8081-c12abd9885bf
2013-11-15 Daniel Price <daniel.price@monash.edu>
* AUTHORS, build/Makefile: extra files included in release tarball git-svn-id: https://svn.code.sf.net/p/giza/code@412
952f94de-64c9-43ce-8081-c12abd9885bf
2013-11-15 Daniel Price <daniel.price@monash.edu>
* CHANGES: updated changelog for 0.8.0 git-svn-id: https://svn.code.sf.net/p/giza/code@411
952f94de-64c9-43ce-8081-c12abd9885bf
2013-11-15 Daniel Price <daniel.price@monash.edu>
* docs/api.pl: typo fixed in api script git-svn-id: https://svn.code.sf.net/p/giza/code@410
952f94de-64c9-43ce-8081-c12abd9885bf
2013-11-14 Daniel Price <daniel.price@monash.edu>
* interface/giza-cpgplot.c, interface/giza-pgplot.f90: updated
status of PGPAP/cpgpap git-svn-id: https://svn.code.sf.net/p/giza/code@409
952f94de-64c9-43ce-8081-c12abd9885bf
2013-11-14 Daniel Price <daniel.price@monash.edu>
* src/giza-version.c: bug fix with documentation of giza_version git-svn-id: https://svn.code.sf.net/p/giza/code@408
952f94de-64c9-43ce-8081-c12abd9885bf
2013-11-14 Daniel Price <daniel.price@monash.edu>
* interface/giza-fortran.F90, src/giza-version.c: added giza_version
routine to Fortran interface git-svn-id: https://svn.code.sf.net/p/giza/code@407
952f94de-64c9-43ce-8081-c12abd9885bf
2013-11-14 Daniel Price <daniel.price@monash.edu>
* build/Makefile, include/giza.h, src/giza-version.c: added giza
version routine to query version info git-svn-id: https://svn.code.sf.net/p/giza/code@406
952f94de-64c9-43ce-8081-c12abd9885bf
2013-11-14 Daniel Price <daniel.price@monash.edu>
* src/giza-vector.c: added docs for giza_vector git-svn-id: https://svn.code.sf.net/p/giza/code@405
952f94de-64c9-43ce-8081-c12abd9885bf
2013-11-14 Daniel Price <daniel.price@monash.edu>
* interface/giza-fortran.F90: added integer parameters giving
version number info in Fortran interface git-svn-id: https://svn.code.sf.net/p/giza/code@404
952f94de-64c9-43ce-8081-c12abd9885bf
2013-11-14 Daniel Price <daniel.price@monash.edu>
* src/giza-drivers.c: debugging/commented out cruft removed git-svn-id: https://svn.code.sf.net/p/giza/code@403
952f94de-64c9-43ce-8081-c12abd9885bf
2013-11-14 Daniel Price <daniel.price@monash.edu>
* src/giza-drivers.c: updated docs on return value for
giza_open_device git-svn-id: https://svn.code.sf.net/p/giza/code@402
952f94de-64c9-43ce-8081-c12abd9885bf
2013-11-14 Daniel Price <daniel.price@monash.edu>
* src/giza-drivers.c: device help shows filename option (file.png
instead of /png) git-svn-id: https://svn.code.sf.net/p/giza/code@401
952f94de-64c9-43ce-8081-c12abd9885bf
2013-11-14 Daniel Price <daniel.price@monash.edu>
* src/giza-driver-xw.c: debugging info removed git-svn-id: https://svn.code.sf.net/p/giza/code@400
952f94de-64c9-43ce-8081-c12abd9885bf
2013-11-14 Daniel Price <daniel.price@monash.edu>
* src/giza-text-background.c: bug fix with default text background
(should be -1 not 0) git-svn-id: https://svn.code.sf.net/p/giza/code@399
952f94de-64c9-43ce-8081-c12abd9885bf
2013-11-14 Daniel Price <daniel.price@monash.edu>
* src/giza-clipping.c, src/giza-private.h: clip setting specific to
each device git-svn-id: https://svn.code.sf.net/p/giza/code@398
952f94de-64c9-43ce-8081-c12abd9885bf
2013-11-14 Daniel Price <daniel.price@monash.edu>
* src/giza-drivers.c, src/giza-private.h, src/giza-ptext.c,
src/giza-text-background-private.h, src/giza-text-background.c: text
background colour setting specific to each device git-svn-id: https://svn.code.sf.net/p/giza/code@397
952f94de-64c9-43ce-8081-c12abd9885bf
2013-11-14 Daniel Price <daniel.price@monash.edu>
* src/giza-line-style.c: get_line_style always returns something
even if giza not started git-svn-id: https://svn.code.sf.net/p/giza/code@396
952f94de-64c9-43ce-8081-c12abd9885bf
2013-11-14 Daniel Price <daniel.price@monash.edu>
* src/giza-character-size.c, src/giza-private.h: character height
setting specific to each device git-svn-id: https://svn.code.sf.net/p/giza/code@395
952f94de-64c9-43ce-8081-c12abd9885bf
2013-11-14 Daniel Price <daniel.price@monash.edu>
* src/giza-drivers.c, src/giza-private.h, src/giza-ptext.c,
src/giza-qtext.c, src/giza-text.c, src/giza.c: fontAngle setting
specific to each device git-svn-id: https://svn.code.sf.net/p/giza/code@394
952f94de-64c9-43ce-8081-c12abd9885bf
2013-11-14 Daniel Price <daniel.price@monash.edu>
* src/giza-box.c, src/giza-character-size.c, src/giza-points.c,
src/giza-private.h, src/giza-text.c: fontExtents stored specific to
each device; not globally git-svn-id: https://svn.code.sf.net/p/giza/code@393
952f94de-64c9-43ce-8081-c12abd9885bf
2013-11-14 Daniel Price <daniel.price@monash.edu>
* src/giza-line-style-private.h, src/giza-line-style.c,
src/giza-private.h: line style setting specific to each device git-svn-id: https://svn.code.sf.net/p/giza/code@392
952f94de-64c9-43ce-8081-c12abd9885bf
2013-11-14 Daniel Price <daniel.price@monash.edu>
* src/giza-line-width.c, src/giza-private.h: line width setting
specific to each device git-svn-id: https://svn.code.sf.net/p/giza/code@391
952f94de-64c9-43ce-8081-c12abd9885bf
2013-11-14 Daniel Price <daniel.price@monash.edu>
* src/giza-arrow-style-private.h, src/giza-arrow-style.c,
src/giza-arrow.c, src/giza-private.h: arrow style settings specific
to each device (giza_arrow_t) git-svn-id: https://svn.code.sf.net/p/giza/code@390
952f94de-64c9-43ce-8081-c12abd9885bf
2013-11-14 Daniel Price <daniel.price@monash.edu>
* src/giza-fill.c, src/giza-private.h: fill style and settings
specific to each device git-svn-id: https://svn.code.sf.net/p/giza/code@389
952f94de-64c9-43ce-8081-c12abd9885bf
2013-11-14 Daniel Price <daniel.price@monash.edu>
* include/giza.h, src/giza-annotate.c, src/giza-arrow.c,
src/giza-box.c, src/giza-buffering.c, src/giza-circle.c,
src/giza-colour-bar.c, src/giza-contour.c, src/giza-draw.c,
src/giza-drivers.c, src/giza-error-bars.c, src/giza-function-t.c,
src/giza-function-x.c, src/giza-function-y.c, src/giza-line.c,
src/giza-points.c, src/giza-polygon.c, src/giza-private.h,
src/giza-ptext.c, src/giza-rectangle.c, src/giza-render.c,
src/giza-vector.c, src/giza.c: buffering setting is specific to each
device git-svn-id: https://svn.code.sf.net/p/giza/code@388
952f94de-64c9-43ce-8081-c12abd9885bf
2013-11-14 Daniel Price <daniel.price@monash.edu>
* src/giza-colour-index.c: commented out temporary stuff git-svn-id: https://svn.code.sf.net/p/giza/code@387
952f94de-64c9-43ce-8081-c12abd9885bf
2013-11-14 Daniel Price <daniel.price@monash.edu>
* src/giza-box.c, src/giza-drivers.c, src/giza-private.h,
src/giza-viewport-private.h, src/giza-viewport.c, src/giza-window.c:
viewport settings now specific to each device git-svn-id: https://svn.code.sf.net/p/giza/code@386
952f94de-64c9-43ce-8081-c12abd9885bf
2013-11-14 Daniel Price <daniel.price@monash.edu>
* src/giza-annotate.c, src/giza-box.c, src/giza-driver-xw.c,
src/giza-drivers.c, src/giza-private.h, src/giza-transforms.c,
src/giza-viewport.c, src/giza-window-private.h, src/giza-window.c:
window settings now specific to each device git-svn-id: https://svn.code.sf.net/p/giza/code@385
952f94de-64c9-43ce-8081-c12abd9885bf
2013-11-14 Daniel Price <daniel.price@monash.edu>
* src/giza-drivers.c: typo fixed git-svn-id: https://svn.code.sf.net/p/giza/code@384
952f94de-64c9-43ce-8081-c12abd9885bf
2013-11-14 Daniel Price <daniel.price@monash.edu>
* src/giza-driver-xw.c, src/giza-drivers.c, src/giza-private.h,
src/giza-prompting-private.h, src/giza-prompting.c: start/stop
prompting setting now specific to each device, not global git-svn-id: https://svn.code.sf.net/p/giza/code@383
952f94de-64c9-43ce-8081-c12abd9885bf
2013-11-14 Daniel Price <daniel.price@monash.edu>
* interface/giza-cpgplot.c, interface/giza-fortran.F90,
interface/giza-pgplot.f90, src/giza-drivers.c, src/giza.c: numbering
of devices now from 1->N externally, from 0->N-1 internally;
implemented PGQID/giza_get_device_id git-svn-id: https://svn.code.sf.net/p/giza/code@382
952f94de-64c9-43ce-8081-c12abd9885bf
2013-11-14 Daniel Price <daniel.price@monash.edu>
* src/giza-driver-xw.c, src/giza-drivers.c, src/giza-paper.c,
src/giza-private.h: implemented resizing of X-window/bitmap devices
via giza_paper_size (not perfect yet) git-svn-id: https://svn.code.sf.net/p/giza/code@381
952f94de-64c9-43ce-8081-c12abd9885bf
2013-11-14 Daniel Price <daniel.price@monash.edu>
* src/giza-driver-eps-private.h, src/giza-driver-eps.c,
src/giza-driver-null-private.h, src/giza-driver-null.c,
src/giza-driver-pdf-private.h, src/giza-driver-pdf.c,
src/giza-driver-png-private.h, src/giza-driver-png.c,
src/giza-driver-ps-private.h, src/giza-driver-ps.c,
src/giza-driver-svg-private.h, src/giza-driver-svg.c,
src/giza-driver-xw-private.h, src/giza-driver-xw.c,
src/giza-drivers-private.h, src/giza-drivers.c, src/giza-paper.c,
src/giza-private.h, src/giza.c: deviceOpen and drawn now specific to
each device: removed sizeSpecified and reworked the way devices are
opened to handle this (giza_open_device now calls
giza_open_device_size rather than vice-versa) git-svn-id: https://svn.code.sf.net/p/giza/code@380
952f94de-64c9-43ce-8081-c12abd9885bf
2013-11-14 Daniel Price <daniel.price@monash.edu>
* build/Makefile, include/giza.h, interface/giza-cpgplot.c,
interface/giza-fortran.F90, interface/giza-pgplot.f90,
src/giza-arrow.c, src/giza-box.c, src/giza-character-size.c,
src/giza-circle.c, src/giza-clipping.c, src/giza-colour-index.c,
src/giza-contour.c, src/giza-cursor-routines.c,
src/giza-device-has-cursor.c, src/giza-draw-background.c,
src/giza-draw.c, src/giza-driver-eps.c, src/giza-driver-null.c,
src/giza-driver-pdf.c, src/giza-driver-png.c, src/giza-driver-ps.c,
src/giza-driver-svg.c, src/giza-driver-xw-private.h,
src/giza-driver-xw.c, src/giza-drivers.c, src/giza-error-bars.c,
src/giza-fill.c, src/giza-function-t.c, src/giza-function-x.c,
src/giza-function-y.c, src/giza-get-surface-size.c,
src/giza-line-cap.c, src/giza-line-style.c, src/giza-line-width.c,
src/giza-line.c, src/giza-move.c, src/giza-paper.c,
src/giza-points.c, src/giza-polygon.c, src/giza-print-id.c,
src/giza-private.h, src/giza-ptext.c, src/giza-qtext.c,
src/giza-rectangle.c, src/giza-render.c, src/giza-set-font.c,
src/giza-stroke.c, src/giza-text.c, src/giza-transforms.c,
src/giza-viewport.c, src/giza-window.c, src/lex.yy.c: multiple
device support implemented (LOTS of code changed): added
giza_select/pgslct routines to switch between devices git-svn-id: https://svn.code.sf.net/p/giza/code@379
952f94de-64c9-43ce-8081-c12abd9885bf
2013-08-23 Daniel Price <daniel.price@monash.edu>
* src/giza-driver-xw.c, src/giza-drivers.c: better cleanup on
failure to open device; does not require giza_close_device call git-svn-id: https://svn.code.sf.net/p/giza/code@378
952f94de-64c9-43ce-8081-c12abd9885bf
2013-06-18 Daniel Price <daniel.price@monash.edu>
* src/giza-colour-table.c: silenced warning regarding colour not set
if NaNs input to giza-render routines git-svn-id: https://svn.code.sf.net/p/giza/code@377
952f94de-64c9-43ce-8081-c12abd9885bf
2013-06-08 Daniel Price <daniel.price@monash.edu>
* include/giza.h, src/giza-driver-xw.c, src/giza-drivers.c,
src/giza-io.c, src/giza-private.h, src/giza.c: added autolog
feature: controlled via begin_autolog/end_autolog routines and
GIZA_LOG environment variable git-svn-id: https://svn.code.sf.net/p/giza/code@376
952f94de-64c9-43ce-8081-c12abd9885bf
2013-06-08 Daniel Price <daniel.price@monash.edu>
* build/Makefile: link for -lgfortran fixed git-svn-id: https://svn.code.sf.net/p/giza/code@375
952f94de-64c9-43ce-8081-c12abd9885bf
2013-06-08 Daniel Price <daniel.price@monash.edu>
* src/giza-vector.c: BUG FIX with vector arrows in double precision git-svn-id: https://svn.code.sf.net/p/giza/code@374
952f94de-64c9-43ce-8081-c12abd9885bf
2013-06-08 Daniel Price <daniel.price@monash.edu>
* interface/giza-fortran.F90: newline removed git-svn-id: https://svn.code.sf.net/p/giza/code@373
952f94de-64c9-43ce-8081-c12abd9885bf
2013-06-08 Daniel Price <daniel.price@monash.edu>
* src/giza-window.c: floating exception fixed in
giza_set_window_equal_scale if width=height=0 git-svn-id: https://svn.code.sf.net/p/giza/code@372
952f94de-64c9-43ce-8081-c12abd9885bf
2013-02-20 Daniel Price <daniel.price@monash.edu>
* build/Makefile: gfortran version checking removed (obsolete/no
longer necessary) git-svn-id: https://svn.code.sf.net/p/giza/code@371
952f94de-64c9-43ce-8081-c12abd9885bf
2013-02-18 Daniel Price <daniel.price@monash.edu>
* CHANGES, Makefile, README: dates/changelog updated for 0.7.6 git-svn-id: https://svn.code.sf.net/p/giza/code@370
952f94de-64c9-43ce-8081-c12abd9885bf
2013-02-18 Daniel Price <daniel.price@monash.edu>
* Makefile, build/Makefile: minor fixes to install target; should
now work with Macports git-svn-id: https://svn.code.sf.net/p/giza/code@369
952f94de-64c9-43ce-8081-c12abd9885bf
2013-02-18 Daniel Price <daniel.price@monash.edu>
* interface/giza-fortran.F90: [PATCH] fortran interface compiles
with ifort+debugging; thanks to Andy McLeod git-svn-id: https://svn.code.sf.net/p/giza/code@368
952f94de-64c9-43ce-8081-c12abd9885bf
2012-11-22 Daniel Price <daniel.price@monash.edu>
* src/giza-drivers.c: bug fix with box being drawn randomly due to
giza_stroke call git-svn-id: https://svn.code.sf.net/p/giza/code@367
952f94de-64c9-43ce-8081-c12abd9885bf
2012-11-16 Daniel Price <daniel.price@monash.edu>
* build/Makefile, test/Makefile: better clean targets for Makefiles git-svn-id: https://svn.code.sf.net/p/giza/code@366
952f94de-64c9-43ce-8081-c12abd9885bf
2012-11-16 Daniel Price <daniel.price@monash.edu>
* CHANGES: updated CHANGES for 0.7.5 git-svn-id: https://svn.code.sf.net/p/giza/code@365
952f94de-64c9-43ce-8081-c12abd9885bf
2012-11-16 Daniel Price <daniel.price@monash.edu>
* src/giza-drivers.c: compiler warnings with strncpy fixed (clang) git-svn-id: https://svn.code.sf.net/p/giza/code@364
952f94de-64c9-43ce-8081-c12abd9885bf
2012-11-16 Daniel Price <daniel.price@monash.edu>
* build/Makefile: version number bumped to 0.7.5 git-svn-id: https://svn.code.sf.net/p/giza/code@363
952f94de-64c9-43ce-8081-c12abd9885bf
2012-11-16 Daniel Price <daniel.price@monash.edu>
* src/giza-drivers.c: compiler warning fixed git-svn-id: https://svn.code.sf.net/p/giza/code@362
952f94de-64c9-43ce-8081-c12abd9885bf
2012-11-16 Daniel Price <daniel.price@monash.edu>
* AUTHORS: added AUTHORS file git-svn-id: https://svn.code.sf.net/p/giza/code@361
952f94de-64c9-43ce-8081-c12abd9885bf
2012-11-16 Daniel Price <daniel.price@monash.edu>
* INSTALL: updated INSTALL instructions git-svn-id: https://svn.code.sf.net/p/giza/code@360
952f94de-64c9-43ce-8081-c12abd9885bf
2012-11-16 Daniel Price <daniel.price@monash.edu>
* CHANGES, README: CHANGES file added; README now contains small
blurb git-svn-id: https://svn.code.sf.net/p/giza/code@359
952f94de-64c9-43ce-8081-c12abd9885bf
2012-11-16 Daniel Price <daniel.price@monash.edu>
* LICENSE => COPYING: LICENSE file renamed to COPYING git-svn-id: https://svn.code.sf.net/p/giza/code@358
952f94de-64c9-43ce-8081-c12abd9885bf
2012-11-16 Daniel Price <daniel.price@monash.edu>
* src/giza-driver-xw.c: XW driver no longer uses XNextEvent to
prevent compile problems on Ubuntu; also initial window call uses
WhitePixel as defined by Xlib git-svn-id: https://svn.code.sf.net/p/giza/code@357
952f94de-64c9-43ce-8081-c12abd9885bf
2012-11-16 Daniel Price <daniel.price@monash.edu>
* test/Makefile, test/test-arrow.c, test/test-box.c: added box/more
arrow tests git-svn-id: https://svn.code.sf.net/p/giza/code@356
952f94de-64c9-43ce-8081-c12abd9885bf
2012-11-16 Daniel Price <daniel.price@monash.edu>
* src/giza-arrow.c: giza arrow uses semi-angle instead of full
angle, as in PGPLOT (pgdemo1) git-svn-id: https://svn.code.sf.net/p/giza/code@355
952f94de-64c9-43ce-8081-c12abd9885bf
2012-11-16 Daniel Price <daniel.price@monash.edu>
* src/giza-arrow.c: BUG FIX with arrow heads becoming small in
certain directions git-svn-id: https://svn.code.sf.net/p/giza/code@354
952f94de-64c9-43ce-8081-c12abd9885bf
2012-11-16 Daniel Price <daniel.price@monash.edu>
* src/giza-drivers.c: giza_stroke called after device opened; avoids
black page bug if no box/window/viewport called prior to drawing git-svn-id: https://svn.code.sf.net/p/giza/code@353
952f94de-64c9-43ce-8081-c12abd9885bf
2012-11-09 Daniel Price <daniel.price@monash.edu>
* src/giza-colour-palette.c: new colour palette options added git-svn-id: https://svn.code.sf.net/p/giza/code@352
952f94de-64c9-43ce-8081-c12abd9885bf
2012-11-09 Daniel Price <daniel.price@monash.edu>
* src/giza-box.c: BUG FIX with log axis labelling if interval < 10 git-svn-id: https://svn.code.sf.net/p/giza/code@351
952f94de-64c9-43ce-8081-c12abd9885bf
2012-11-02 Daniel Price <daniel.price@monash.edu>
* build/Makefile: build respects DESTDIR conventions git-svn-id: https://svn.code.sf.net/p/giza/code@350
952f94de-64c9-43ce-8081-c12abd9885bf
2012-11-02 Daniel Price <daniel.price@monash.edu>
* src/giza-colour-palette.c: various line palettes added; can be
selected with GIZA_PALETTE environment variable git-svn-id: https://svn.code.sf.net/p/giza/code@349
952f94de-64c9-43ce-8081-c12abd9885bf
2012-11-02 Daniel Price <daniel.price@monash.edu>
* include/giza.h, src/giza-colour-index.c: routines added to set
colour representation in rgb git-svn-id: https://svn.code.sf.net/p/giza/code@348
952f94de-64c9-43ce-8081-c12abd9885bf
2012-08-28 Daniel Price <daniel.price@monash.edu>
* README: README added to repository git-svn-id: https://svn.code.sf.net/p/giza/code@347
952f94de-64c9-43ce-8081-c12abd9885bf
2012-08-28 Daniel Price <daniel.price@monash.edu>
* build/Makefile: README included in distribution git-svn-id: https://svn.code.sf.net/p/giza/code@346
952f94de-64c9-43ce-8081-c12abd9885bf
2012-08-28 Daniel Price <daniel.price@monash.edu>
* src/giza-driver-xw.c: commented out X-windows error-handling
routine to avoid compilation problems in Ubuntu git-svn-id: https://svn.code.sf.net/p/giza/code@345
952f94de-64c9-43ce-8081-c12abd9885bf
2012-08-23 Daniel Price <daniel.price@monash.edu>
* src/giza-driver-eps.c, src/giza-driver-svg.c: uses _0000 numbering
if part of sequence for eps and svg devices (by renaming file when
changing page) git-svn-id: https://svn.code.sf.net/p/giza/code@344
952f94de-64c9-43ce-8081-c12abd9885bf
2012-08-23 Daniel Price <daniel.price@monash.edu>
* src/giza-driver-eps.c, src/giza-driver-pdf.c,
src/giza-driver-png-private.h, src/giza-driver-png.c,
src/giza-driver-ps.c, src/giza-driver-svg.c,
src/giza-drivers-private.h, src/giza-drivers.c: png device names
first file differently depending on whether or not it is part of a
sequence git-svn-id: https://svn.code.sf.net/p/giza/code@343
952f94de-64c9-43ce-8081-c12abd9885bf
2012-08-23 Daniel Price <daniel.price@monash.edu>
* test/Makefile, test/test-fortran.f90: test Makefile compiles a
fortran example git-svn-id: https://svn.code.sf.net/p/giza/code@342
952f94de-64c9-43ce-8081-c12abd9885bf
2012-08-23 Daniel Price <daniel.price@monash.edu>
* src/giza-drivers.c: can specify hardcopy devices just using the
filename e.g. crap.png instead of having to type crap.png/png git-svn-id: https://svn.code.sf.net/p/giza/code@341
952f94de-64c9-43ce-8081-c12abd9885bf
2012-08-22 Daniel Price <daniel.price@monash.edu>
* src/giza-render.c: better handling of valMin=valMax in
giza_render_float git-svn-id: https://svn.code.sf.net/p/giza/code@340
952f94de-64c9-43ce-8081-c12abd9885bf
2012-07-21 Daniel Price <daniel.price@monash.edu>
* build/Makefile: minor change to comment git-svn-id: https://svn.code.sf.net/p/giza/code@339
952f94de-64c9-43ce-8081-c12abd9885bf
2012-07-21 Daniel Price <daniel.price@monash.edu>
* interface/giza-fortran.F90: BUG FIX with giza_function_x/y/t
interfaces with gfortran v4.7; also giza_plot_line now giza_line in
Fortran interface git-svn-id: https://svn.code.sf.net/p/giza/code@338
952f94de-64c9-43ce-8081-c12abd9885bf
2012-06-15 Daniel Price <daniel.price@monash.edu>
* build/Makefile: bumped version to 0.7.4 in Makefile git-svn-id: https://svn.code.sf.net/p/giza/code@337
952f94de-64c9-43ce-8081-c12abd9885bf
2012-06-15 Daniel Price <daniel.price@monash.edu>
* interface/giza-fortran.F90, src/giza-rectangle.c: added
giza_rectangle_rounded routine for plotting rectangles with rounded
corners git-svn-id: https://svn.code.sf.net/p/giza/code@336
952f94de-64c9-43ce-8081-c12abd9885bf
2012-06-15 Daniel Price <daniel.price@monash.edu>
* src/giza-cursor-routines.c: improvements to cursor routines:
mark_with_cursor handled by get_key_press routine, allows polygon
selection to be redrawn on the fly like giza_band; get_key_press
takes array of anchor points instead of just one; get_key_press
handles and returns shift-click event; added mark_line_char routines
which return last character pressed, like giza_band git-svn-id: https://svn.code.sf.net/p/giza/code@335
952f94de-64c9-43ce-8081-c12abd9885bf
2012-06-15 Daniel Price <daniel.price@monash.edu>
* include/giza-shared.h, interface/giza-fortran.F90,
src/giza-band-private.h, src/giza-band.c,
src/giza-cursor-private.h, src/giza-driver-xw-private.h,
src/giza-driver-xw.c, src/giza-drivers-private.h,
src/giza-drivers.c, src/giza-get-key-press.c: improvements to cursor
routines: mark_with_cursor handled by get_key_press routine, allows
polygon selection to be redrawn on the fly like giza_band;
get_key_press takes array of anchor points instead of just one;
get_key_press handles and returns shift-click event; added
mark_line_char routines which return last character pressed, like
giza_band git-svn-id: https://svn.code.sf.net/p/giza/code@334
952f94de-64c9-43ce-8081-c12abd9885bf
2012-06-15 Daniel Price <daniel.price@monash.edu>
* src/giza-band.c: circle cursor uses filled, partially transparent
circle similar to rectangle selection git-svn-id: https://svn.code.sf.net/p/giza/code@333
952f94de-64c9-43ce-8081-c12abd9885bf
2012-06-13 Daniel Price <daniel.price@monash.edu>
* include/giza-shared.h, interface/giza-fortran.F90,
src/giza-driver-xw.c: xw driver returns key bindings for
right/middle clicks and scroll events git-svn-id: https://svn.code.sf.net/p/giza/code@332
952f94de-64c9-43ce-8081-c12abd9885bf
2012-05-16 Daniel Price <daniel.price@monash.edu>
* Makefile, build/Makefile: version number bumped git-svn-id: https://svn.code.sf.net/p/giza/code@331
952f94de-64c9-43ce-8081-c12abd9885bf
2012-05-16 Daniel Price <daniel.price@monash.edu>
* docs/get-source-files.pl: minor change to script git-svn-id: https://svn.code.sf.net/p/giza/code@330
952f94de-64c9-43ce-8081-c12abd9885bf
2012-05-16 Daniel Price <daniel.price@monash.edu>
* build/Makefile: uses X11DIR to specify libX11 location in Makefile git-svn-id: https://svn.code.sf.net/p/giza/code@329
952f94de-64c9-43ce-8081-c12abd9885bf
2012-05-16 Daniel Price <daniel.price@monash.edu>
* interface/giza-cpgplot.c: fixed comment so does not get deleted by
header script git-svn-id: https://svn.code.sf.net/p/giza/code@328
952f94de-64c9-43ce-8081-c12abd9885bf
2012-05-16 Daniel Price <daniel.price@monash.edu>
* include/cpgplot.h: updated comments in cpgplot.h git-svn-id: https://svn.code.sf.net/p/giza/code@327
952f94de-64c9-43ce-8081-c12abd9885bf
2012-05-16 Daniel Price <daniel.price@monash.edu>
* include/giza.h, interface/giza-cpgplot.c,
interface/giza-fortran.F90, interface/giza-pgplot.f90,
src/giza-annotate.c, src/giza-arrow-style-private.h,
src/giza-arrow-style.c, src/giza-arrow.c, src/giza-band-private.h,
src/giza-band-style.c, src/giza-band.c, src/giza-box-time.c,
src/giza-box.c, src/giza-buffering.c,
src/giza-character-size-private.h, src/giza-character-size.c,
src/giza-circle.c, src/giza-clipping.c, src/giza-colour-bar.c,
src/giza-colour-index.c, src/giza-colour-palette.c,
src/giza-colour-private.h, src/giza-colour-table.c,
src/giza-contour.c, src/giza-cursor-private.h,
src/giza-cursor-routines.c, src/giza-device-has-cursor.c,
src/giza-draw-background.c, src/giza-draw.c,
src/giza-driver-eps-private.h, src/giza-driver-eps.c,
src/giza-driver-null-private.h, src/giza-driver-null.c,
src/giza-driver-pdf-private.h, src/giza-driver-pdf.c,
src/giza-driver-png-private.h, src/giza-driver-png.c,
src/giza-driver-ps-private.h, src/giza-driver-ps.c,
src/giza-driver-svg-private.h, src/giza-driver-svg.c,
src/giza-driver-xw-private.h, src/giza-driver-xw.c,
src/giza-drivers-private.h, src/giza-drivers.c,
src/giza-environment.c, src/giza-error-bars.c,
src/giza-fill-private.h, src/giza-fill.c, src/giza-format-number.c,
src/giza-function-t.c, src/giza-function-x.c,
src/giza-function-y.c, src/giza-get-key-press.c,
src/giza-get-surface-size.c, src/giza-io-private.h, src/giza-io.c,
src/giza-label.c, src/giza-line-cap.c,
src/giza-line-style-private.h, src/giza-line-style.c,
src/giza-line-width.c, src/giza-line.c, src/giza-move.c,
src/giza-paper.c, src/giza-points.c, src/giza-polygon.c,
src/giza-print-id.c, src/giza-private.h,
src/giza-prompting-private.h, src/giza-prompting.c,
src/giza-ptext.c, src/giza-qtext.c, src/giza-rectangle.c,
src/giza-render-private.h, src/giza-render.c, src/giza-save.c,
src/giza-set-font-private.h, src/giza-set-font.c,
src/giza-stroke-private.h, src/giza-stroke.c,
src/giza-text-background-private.h, src/giza-text-background.c,
src/giza-text-private.h, src/giza-text.c,
src/giza-transforms-private.h, src/giza-transforms.c,
src/giza-vector.c, src/giza-viewport-private.h,
src/giza-viewport.c, src/giza-warnings-private.h,
src/giza-warnings.c, src/giza-window-private.h, src/giza-window.c,
src/giza.c, test/test-XOpenDisplay.c, test/test-arrow.c,
test/test-band.c, test/test-box.c, test/test-cairo-xw.c,
test/test-change-page.c, test/test-circle.c,
test/test-colour-index.c, test/test-contour.c,
test/test-environment.c, test/test-error-bars.c,
test/test-format-number.c, test/test-line-cap.c,
test/test-line-style.c, test/test-openclose.c, test/test-pdf.c,
test/test-png.c, test/test-points.c, test/test-qtext.c,
test/test-rectangle.c, test/test-render.c,
test/test-set-line-width.c, test/test-vector.c, test/test-window.c,
test/test-xw.c: file headers updated and unified across all files git-svn-id: https://svn.code.sf.net/p/giza/code@326
952f94de-64c9-43ce-8081-c12abd9885bf
2012-05-16 Daniel Price <daniel.price@monash.edu>
* src/giza-driver-xw.c: typo fixed git-svn-id: https://svn.code.sf.net/p/giza/code@325
952f94de-64c9-43ce-8081-c12abd9885bf
2012-05-16 Daniel Price <daniel.price@monash.edu>
* src/giza-io-private.h, src/giza-io.c: giza-io routines declare
const char* not just char; avoids compiler warnings git-svn-id: https://svn.code.sf.net/p/giza/code@324
952f94de-64c9-43ce-8081-c12abd9885bf
2012-05-16 Daniel Price <daniel.price@monash.edu>
* src/giza-driver-xw.c: use surface_finish and checks for errors
when closing xlib surface git-svn-id: https://svn.code.sf.net/p/giza/code@323
952f94de-64c9-43ce-8081-c12abd9885bf
2012-05-16 Daniel Price <daniel.price@monash.edu>
* test/Makefile: makefile compiles several tests git-svn-id: https://svn.code.sf.net/p/giza/code@322
952f94de-64c9-43ce-8081-c12abd9885bf
2012-05-16 Daniel Price <daniel.price@monash.edu>
* src/giza-driver-eps.c, src/giza-driver-pdf.c,
src/giza-driver-ps.c, src/giza-driver-svg.c: better error handling
on closing vector surfaces (picks up cairo bug in Lion) git-svn-id: https://svn.code.sf.net/p/giza/code@321
952f94de-64c9-43ce-8081-c12abd9885bf
2012-05-14 Daniel Price <daniel.price@monash.edu>
* test/Makefile, test/test-png.c: added png test git-svn-id: https://svn.code.sf.net/p/giza/code@320
952f94de-64c9-43ce-8081-c12abd9885bf
2012-05-08 Daniel Price <daniel.price@monash.edu>
* test/Makefile, test/test-xw.c: updated xw test git-svn-id: https://svn.code.sf.net/p/giza/code@319
952f94de-64c9-43ce-8081-c12abd9885bf
2012-05-08 Daniel Price <daniel.price@monash.edu>
* test/test-cairo-xw.c: test reports cairo version git-svn-id: https://svn.code.sf.net/p/giza/code@318
952f94de-64c9-43ce-8081-c12abd9885bf
2012-05-08 Daniel Price <daniel.price@monash.edu>
* test/Makefile, test/test-cairo-xw.c: added Makefile for tests git-svn-id: https://svn.code.sf.net/p/giza/code@317
952f94de-64c9-43ce-8081-c12abd9885bf
2012-05-08 Daniel Price <daniel.price@monash.edu>
* test/test-cairo-xw.c, test/test-xw.c: added tests for the xw bug git-svn-id: https://svn.code.sf.net/p/giza/code@316
952f94de-64c9-43ce-8081-c12abd9885bf
2012-03-22 Daniel Price <daniel.price@monash.edu>
* include/giza-shared.h: defined GIZA_FOREGROUND and GIZA_BACKGROUND git-svn-id: https://svn.code.sf.net/p/giza/code@315
952f94de-64c9-43ce-8081-c12abd9885bf
2012-03-22 Daniel Price <daniel.price@monash.edu>
* include/giza.h, interface/giza-fortran.F90,
src/giza-render-private.h, src/giza-render.c: added
giza_render_alpha routines for brightness-corrected rendering git-svn-id: https://svn.code.sf.net/p/giza/code@314
952f94de-64c9-43ce-8081-c12abd9885bf
2012-03-22 Daniel Price <daniel.price@monash.edu>
* interface/giza-fortran.F90: optional viewport arguments to
giza_plot handled correctly git-svn-id: https://svn.code.sf.net/p/giza/code@313
952f94de-64c9-43ce-8081-c12abd9885bf
2012-03-22 Daniel Price <daniel.price@monash.edu>
* include/giza-shared.h: giza_units_normalised added git-svn-id: https://svn.code.sf.net/p/giza/code@312
952f94de-64c9-43ce-8081-c12abd9885bf
2012-03-22 Daniel Price <daniel.price@monash.edu>
* interface/giza-fortran.F90, test/test-fortran.f90: work on
giza_plot continues; handles and renders 2D array git-svn-id: https://svn.code.sf.net/p/giza/code@311
952f94de-64c9-43ce-8081-c12abd9885bf
2012-03-09 Daniel Price <daniel.price@monash.edu>
* interface/giza-fortran.F90: bug fix with gfortran4.6 and giza_open
interface git-svn-id: https://svn.code.sf.net/p/giza/code@310
952f94de-64c9-43ce-8081-c12abd9885bf
2012-03-07 Daniel Price <daniel.price@monash.edu>
* src/giza-driver-xw.c: X11 driver no longer uses XDefaultGCOfScreen
so should work on older systems git-svn-id: https://svn.code.sf.net/p/giza/code@309
952f94de-64c9-43ce-8081-c12abd9885bf
2012-03-07 Daniel Price <daniel.price@monash.edu>
* build/Makefile, include/giza.h, interface/giza-fortran.F90,
interface/giza-pgplot.f90, src/giza-box-time.c: routines/interfaces
added for pgtbox/giza_box_time (currently just calls giza_box with
options unchanged) git-svn-id: https://svn.code.sf.net/p/giza/code@308
952f94de-64c9-43ce-8081-c12abd9885bf
2012-03-07 Daniel Price <daniel.price@monash.edu>
* interface/giza-fortran.F90: high level giza_open/giza_close
interfaces added to Fortran interface git-svn-id: https://svn.code.sf.net/p/giza/code@307
952f94de-64c9-43ce-8081-c12abd9885bf
2012-03-07 Daniel Price <daniel.price@monash.edu>
* build/Makefile, include/giza.h, src/giza-set-font.c: freetype font
loading added (experimental, not compiled by default) git-svn-id: https://svn.code.sf.net/p/giza/code@306
952f94de-64c9-43ce-8081-c12abd9885bf
2012-03-07 Daniel Price <daniel.price@monash.edu>
* src/giza-box.c: minor fix to warning git-svn-id: https://svn.code.sf.net/p/giza/code@305
952f94de-64c9-43ce-8081-c12abd9885bf
2012-03-07 Daniel Price <daniel.price@monash.edu>
* src/giza-box.c: minor fix to documentation git-svn-id: https://svn.code.sf.net/p/giza/code@304
952f94de-64c9-43ce-8081-c12abd9885bf
2012-03-07 Daniel Price <daniel.price@monash.edu>
* src/giza-driver-eps.c: fixed icc warnings for eps driver git-svn-id: https://svn.code.sf.net/p/giza/code@303
952f94de-64c9-43ce-8081-c12abd9885bf
2012-03-07 Daniel Price <daniel.price@monash.edu>
* interface/giza-pgplot.f90, src/giza-drivers.c,
src/giza-private.h, src/giza.c: PGQINF fully implemented; additional
queries added to giza_query_device git-svn-id: https://svn.code.sf.net/p/giza/code@302
952f94de-64c9-43ce-8081-c12abd9885bf
2012-03-07 Daniel Price <daniel.price@monash.edu>
* src/giza-driver-png.c: bug fix with .png.png naming in png device;
change page now calls close_device_png to avoid repeated code git-svn-id: https://svn.code.sf.net/p/giza/code@301
952f94de-64c9-43ce-8081-c12abd9885bf
2012-03-07 Daniel Price <daniel.price@monash.edu>
* src/giza-box.c: obsolete comment removed git-svn-id: https://svn.code.sf.net/p/giza/code@300
952f94de-64c9-43ce-8081-c12abd9885bf
2012-03-07 Daniel Price <daniel.price@monash.edu>
* src/giza-box.c: improved readability of giza_box; variables better
named; docs added for M and L options git-svn-id: https://svn.code.sf.net/p/giza/code@299
952f94de-64c9-43ce-8081-c12abd9885bf
2012-03-07 Daniel Price <daniel.price@monash.edu>
* src/giza-box.c: minor cleanup, commented-out stuff removed git-svn-id: https://svn.code.sf.net/p/giza/code@298
952f94de-64c9-43ce-8081-c12abd9885bf
2012-03-07 Daniel Price <daniel.price@monash.edu>
* src/giza-box.c, src/giza-environment.c: full range of box/env
options implemented (grid lines, log axes) git-svn-id: https://svn.code.sf.net/p/giza/code@297
952f94de-64c9-43ce-8081-c12abd9885bf
2012-03-07 Daniel Price <daniel.price@monash.edu>
* src/giza-line-style.c: minor cleanups git-svn-id: https://svn.code.sf.net/p/giza/code@296
952f94de-64c9-43ce-8081-c12abd9885bf
2012-03-07 Daniel Price <daniel.price@monash.edu>
* src/giza-drivers.c: BUG FIX with default viewport on first page
(character height not initialised correctly), affects
giza_environment git-svn-id: https://svn.code.sf.net/p/giza/code@295
952f94de-64c9-43ce-8081-c12abd9885bf
2011-12-14 Daniel Price <daniel.price@monash.edu>
* build/Makefile: make clean does not destroy cairo libraries if
installed to giza/lib git-svn-id: https://svn.code.sf.net/p/giza/code@294
952f94de-64c9-43ce-8081-c12abd9885bf
2011-12-09 Daniel Price <daniel.price@monash.edu>
* interface/giza-fortran.F90: giza_set_colour_representation_alpha
now folded into generic giza_set_colour_representation interface in
Fortran git-svn-id: https://svn.code.sf.net/p/giza/code@293
952f94de-64c9-43ce-8081-c12abd9885bf
2011-12-07 Daniel Price <daniel.price@monash.edu>
* src/giza-colour-bar.c: bug fix with viewport/window not being
reset properly in giza_colour_bar/pgwedg git-svn-id: https://svn.code.sf.net/p/giza/code@292
952f94de-64c9-43ce-8081-c12abd9885bf
2011-12-07 terrencetricco <terrencetricco@952f94de-64c9-43ce-8081-c12abd9885bf>
* src/giza-colour-bar.c: Colour bar affine fix git-svn-id: https://svn.code.sf.net/p/giza/code@291
952f94de-64c9-43ce-8081-c12abd9885bf
2011-12-07 Daniel Price <daniel.price@monash.edu>
* include/giza.h, interface/giza-fortran.F90,
src/giza-colour-table.c: bug fix with giza_rgb_from_table_float git-svn-id: https://svn.code.sf.net/p/giza/code@290
952f94de-64c9-43ce-8081-c12abd9885bf
2011-12-07 Daniel Price <daniel.price@monash.edu>
* src/giza-line-width.c: silenced warning if line width too small
(now just silently sets the lw to the smallest possible) git-svn-id: https://svn.code.sf.net/p/giza/code@289
952f94de-64c9-43ce-8081-c12abd9885bf
2011-11-16 Daniel Price <daniel.price@monash.edu>
* build/Makefile, include/giza.h, interface/giza-cpgplot.c,
interface/giza-fortran.F90, interface/giza-pgplot.f90,
src/giza-colour-bar.c: implemented giza_colour_bar/PGWEDG git-svn-id: https://svn.code.sf.net/p/giza/code@288
952f94de-64c9-43ce-8081-c12abd9885bf
2011-11-16 Daniel Price <daniel.price@monash.edu>
* docs/api.pl: added comments to api web page git-svn-id: https://svn.code.sf.net/p/giza/code@287
952f94de-64c9-43ce-8081-c12abd9885bf
2011-11-16 Daniel Price <daniel.price@monash.edu>
* src/giza-driver-xw.c: x errors are errors, not warnings git-svn-id: https://svn.code.sf.net/p/giza/code@286
952f94de-64c9-43ce-8081-c12abd9885bf
2011-11-16 Daniel Price <daniel.price@monash.edu>
* src/giza-driver-xw.c: added routine to handle X11 protocol errors
nicely (issues a giza warning) git-svn-id: https://svn.code.sf.net/p/giza/code@285
952f94de-64c9-43ce-8081-c12abd9885bf
2011-11-16 Daniel Price <daniel.price@monash.edu>
* src/giza-driver-xw.c: added code (commented out) for better GC
create/free in xw driver git-svn-id: https://svn.code.sf.net/p/giza/code@284
952f94de-64c9-43ce-8081-c12abd9885bf
2011-11-14 Daniel Price <daniel.price@monash.edu>
* src/giza-driver-svg.c: icc warnings silenced in svg driver git-svn-id: https://svn.code.sf.net/p/giza/code@283
952f94de-64c9-43ce-8081-c12abd9885bf
2011-11-14 Daniel Price <daniel.price@monash.edu>
* docs/get-fortran-params.pl: fixed script with new location for
giza-shared.h git-svn-id: https://svn.code.sf.net/p/giza/code@282
952f94de-64c9-43ce-8081-c12abd9885bf
2011-11-14 Daniel Price <daniel.price@monash.edu>
* include/giza-shared.h, include/giza.h, interface/giza-cpgplot.c,
interface/giza-fortran.F90, interface/giza-pgplot.f90,
src/giza-render-private.h, src/giza-render.c: added extend parameter
to image rendering routines to set the padding type around the image git-svn-id: https://svn.code.sf.net/p/giza/code@281
952f94de-64c9-43ce-8081-c12abd9885bf
2011-11-13 Daniel Price <daniel.price@monash.edu>
* src/giza-render.c: image padding set back to default instead of
repeat in giza_render (fixes pgdemo4) git-svn-id: https://svn.code.sf.net/p/giza/code@280
952f94de-64c9-43ce-8081-c12abd9885bf
2011-11-13 Daniel Price <daniel.price@monash.edu>
* interface/giza-pgplot.f90: debugging statements removed git-svn-id: https://svn.code.sf.net/p/giza/code@279
952f94de-64c9-43ce-8081-c12abd9885bf
2011-11-13 Daniel Price <daniel.price@monash.edu>
* interface/giza-cpgplot.c, interface/giza-pgplot.f90: bug fix with
translation of tr->affine in pgplot interfaces if shear present
(fixes pgdemo4) git-svn-id: https://svn.code.sf.net/p/giza/code@278
952f94de-64c9-43ce-8081-c12abd9885bf
2011-11-11 Daniel Price <daniel.price@monash.edu>
* interface/giza-cpgplot.c, interface/giza-pgplot.f90: updated
PGCTAB calls to giza_set_colour_table to handle contrast/brightness git-svn-id: https://svn.code.sf.net/p/giza/code@277
952f94de-64c9-43ce-8081-c12abd9885bf
2011-11-11 Daniel Price <daniel.price@monash.edu>
* include/giza.h, interface/giza-fortran.F90,
src/giza-colour-table.c: added contrast and brightness arguments to
giza_set_colour_table; implemented ability to invert colour table
(not yet full support for brightness and contrast) git-svn-id: https://svn.code.sf.net/p/giza/code@276
952f94de-64c9-43ce-8081-c12abd9885bf
2011-11-10 Daniel Price <daniel.price@monash.edu>
* src/giza-contour.c: BUG FIX with indexing in contour_float git-svn-id: https://svn.code.sf.net/p/giza/code@275
952f94de-64c9-43ce-8081-c12abd9885bf
2011-11-10 Daniel Price <daniel.price@monash.edu>
* build/Makefile: clean removes .mod files from Fortran build git-svn-id: https://svn.code.sf.net/p/giza/code@274
952f94de-64c9-43ce-8081-c12abd9885bf
2011-11-10 Daniel Price <daniel.price@monash.edu>
* test/test-box.c, test/test-circle.c, test/test-environment.c,
test/test-error-bars.c, test/test-line-cap.c,
test/test-line-style.c, test/test-points.c,
test/test-set-line-width.c: permissions fixed git-svn-id: https://svn.code.sf.net/p/giza/code@273
952f94de-64c9-43ce-8081-c12abd9885bf
2011-11-10 Daniel Price <daniel.price@monash.edu>
* build/Makefile: 0.7.2 git-svn-id: https://svn.code.sf.net/p/giza/code@272
952f94de-64c9-43ce-8081-c12abd9885bf
2011-11-10 Daniel Price <daniel.price@monash.edu>
* build/Makefile, {interface => include}/cpgplot.h, {src =>
include}/giza-shared.h, {src => include}/giza.h: public header files
now live in the include directory rather than being copied around git-svn-id: https://svn.code.sf.net/p/giza/code@271
952f94de-64c9-43ce-8081-c12abd9885bf
2011-11-10 Daniel Price <daniel.price@monash.edu>
* src/giza-set-font.c: minor fix in api documentation git-svn-id: https://svn.code.sf.net/p/giza/code@270
952f94de-64c9-43ce-8081-c12abd9885bf
2011-11-10 Daniel Price <daniel.price@monash.edu>
* src/giza-viewport.c, src/giza-window.c: compiler warnings
fixed/uses fabs instead of abs git-svn-id: https://svn.code.sf.net/p/giza/code@269
952f94de-64c9-43ce-8081-c12abd9885bf
2011-11-10 Daniel Price <daniel.price@monash.edu>
* src/giza-vector.c: bug fix with giza-vector in previous commit git-svn-id: https://svn.code.sf.net/p/giza/code@268
952f94de-64c9-43ce-8081-c12abd9885bf
2011-11-10 Daniel Price <daniel.price@monash.edu>
* src/lex.yy.c: added const to all array input variables; consistent
with cpgplot interface git-svn-id: https://svn.code.sf.net/p/giza/code@267
952f94de-64c9-43ce-8081-c12abd9885bf
2011-11-10 Daniel Price <daniel.price@monash.edu>
* src/giza-drivers-private.h, src/giza-render-private.h,
src/giza-text-private.h: added const to all array input variables;
consistent with cpgplot interface git-svn-id: https://svn.code.sf.net/p/giza/code@266
952f94de-64c9-43ce-8081-c12abd9885bf
2011-11-10 Daniel Price <daniel.price@monash.edu>
* interface/giza-cpgplot.c, src/giza-annotate.c,
src/giza-contour.c, src/giza-drivers.c, src/giza-error-bars.c,
src/giza-label.c, src/giza-line.c, src/giza-points.c,
src/giza-polygon.c, src/giza-ptext.c, src/giza-qtext.c,
src/giza-render.c, src/giza-scanner.l, src/giza-vector.c,
src/giza.h: added const to all array input variables; consistent
with cpgplot interface git-svn-id: https://svn.code.sf.net/p/giza/code@265
952f94de-64c9-43ce-8081-c12abd9885bf
2011-11-10 Daniel Price <daniel.price@monash.edu>
* src/giza-viewport.c, src/giza-window.c: [PATCH contributed by
Daniel Kelson] viewport and window now handle xmin>xmax and
ymin>ymax correctly git-svn-id: https://svn.code.sf.net/p/giza/code@264
952f94de-64c9-43ce-8081-c12abd9885bf
2011-11-10 Daniel Price <daniel.price@monash.edu>
* interface/giza-cpgplot.c: added cpgimag interface git-svn-id: https://svn.code.sf.net/p/giza/code@263
952f94de-64c9-43ce-8081-c12abd9885bf
2011-11-10 Daniel Price <daniel.price@monash.edu>
* interface/giza-cpgplot.c: updated cpgplot interface to include
imaging routines; now similar to libpgplot in implementation level git-svn-id: https://svn.code.sf.net/p/giza/code@262
952f94de-64c9-43ce-8081-c12abd9885bf
2011-11-10 Daniel Price <daniel.price@monash.edu>
* src/giza-contour.c, src/giza-cursor-routines.c,
src/giza-points.c, src/giza-render-private.h, src/giza-render.c,
src/giza-vector.c, src/giza.h: [PATCH contributed by Daniel Kelson]
Arrays now passed as C pointers, not fixed size; fixes cpgplot
interface issues; tested against splash and works fine git-svn-id: https://svn.code.sf.net/p/giza/code@261
952f94de-64c9-43ce-8081-c12abd9885bf
2011-11-04 Daniel Price <daniel.price@monash.edu>
* src/giza-contour.c, src/giza-cursor-routines.c,
src/giza-points.c, src/giza-render-private.h, src/giza-render.c,
src/giza-vector.c, src/giza.h: reverted to v258 to avoid seg faults git-svn-id: https://svn.code.sf.net/p/giza/code@260
952f94de-64c9-43ce-8081-c12abd9885bf
2011-10-27 terrencetricco <terrencetricco@952f94de-64c9-43ce-8081-c12abd9885bf>
* src/giza-contour.c, src/giza-cursor-routines.c,
src/giza-points.c, src/giza-render-private.h, src/giza-render.c,
src/giza-vector.c, src/giza.h: Function calls now pass pointers to
arrays git-svn-id: https://svn.code.sf.net/p/giza/code@259
952f94de-64c9-43ce-8081-c12abd9885bf
2011-10-18 Daniel Price <daniel.price@monash.edu>
* src/giza-colour-index.c, src/giza-error-bars.c,
src/giza-private.h: implemented semi-transparent error bar plotting git-svn-id: https://svn.code.sf.net/p/giza/code@258
952f94de-64c9-43ce-8081-c12abd9885bf
2011-09-26 Daniel Price <daniel.price@monash.edu>
* src/giza-line-style.c: typo in warning message fixed git-svn-id: https://svn.code.sf.net/p/giza/code@257
952f94de-64c9-43ce-8081-c12abd9885bf
2011-09-21 Daniel Price <daniel.price@monash.edu>
* src/giza-box.c, src/giza-character-size.c, src/giza-points.c,
src/giza-ptext.c, src/giza-qtext.c: bug fix (regression) with
character height queries (font extents call now back in set
character height where it belongs) git-svn-id: https://svn.code.sf.net/p/giza/code@256
952f94de-64c9-43ce-8081-c12abd9885bf
2011-09-21 Daniel Price <daniel.price@monash.edu>
* src/giza-colour-table.c: mistaken const declarations removed;
replaced with static git-svn-id: https://svn.code.sf.net/p/giza/code@255
952f94de-64c9-43ce-8081-c12abd9885bf
2011-09-21 Daniel Price <daniel.price@monash.edu>
* src/giza-colour-table.c: mistaken const declarations removed git-svn-id: https://svn.code.sf.net/p/giza/code@254
952f94de-64c9-43ce-8081-c12abd9885bf
2011-09-21 Daniel Price <daniel.price@monash.edu>
* docs/api.pl, src/giza-colour-palette.c, src/giza-colour-table.c,
src/giza-render.c: bug fixes with generation of api documentation git-svn-id: https://svn.code.sf.net/p/giza/code@253
952f94de-64c9-43ce-8081-c12abd9885bf
2011-09-21 Daniel Price <daniel.price@monash.edu>
* src/giza-set-font.c: uses explicit font face creation/destruction
to avoid memory leaks (cairo >=1.8 only) git-svn-id: https://svn.code.sf.net/p/giza/code@252
952f94de-64c9-43ce-8081-c12abd9885bf
2011-09-21 Daniel Price <daniel.price@monash.edu>
* src/giza-drivers.c: character height initialises after font (does
not really matter, but better this way) git-svn-id: https://svn.code.sf.net/p/giza/code@251
952f94de-64c9-43ce-8081-c12abd9885bf
2011-09-21 Daniel Price <daniel.price@monash.edu>
* src/giza-colour-index.c: colour index variables declared static git-svn-id: https://svn.code.sf.net/p/giza/code@250
952f94de-64c9-43ce-8081-c12abd9885bf
2011-09-21 Daniel Price <daniel.price@monash.edu>
* docs/get-fortran-params.pl: minor edit to fortran-params script git-svn-id: https://svn.code.sf.net/p/giza/code@249
952f94de-64c9-43ce-8081-c12abd9885bf
2011-09-21 Daniel Price <daniel.price@monash.edu>
* src/giza-contour.c: bug fix with array overflow in giza_contour git-svn-id: https://svn.code.sf.net/p/giza/code@248
952f94de-64c9-43ce-8081-c12abd9885bf
2011-09-15 Daniel Price <daniel.price@monash.edu>
* src/giza-points.c: markerHeight declared static git-svn-id: https://svn.code.sf.net/p/giza/code@247
952f94de-64c9-43ce-8081-c12abd9885bf
2011-09-15 Daniel Price <daniel.price@monash.edu>
* test/test-openclose.c: basic test of multiple open/close calls
added git-svn-id: https://svn.code.sf.net/p/giza/code@246
952f94de-64c9-43ce-8081-c12abd9885bf
2011-09-15 Daniel Price <daniel.price@monash.edu>
* src/giza-drivers.c: valgrind bug fix with init_device_list using
uninitialised string git-svn-id: https://svn.code.sf.net/p/giza/code@245
952f94de-64c9-43ce-8081-c12abd9885bf
2011-09-15 Daniel Price <daniel.price@monash.edu>
* src/giza-box.c: bug fix with log labelling of 1 and 10 git-svn-id: https://svn.code.sf.net/p/giza/code@244
952f94de-64c9-43ce-8081-c12abd9885bf
2011-09-14 Daniel Price <daniel.price@monash.edu>
* test/test-XOpenDisplay.c: test added for memory leaks in X11 git-svn-id: https://svn.code.sf.net/p/giza/code@243
952f94de-64c9-43ce-8081-c12abd9885bf
2011-09-12 Daniel Price <daniel.price@monash.edu>
* interface/giza-pgplot.f90, src/giza-shared.h: changed order of
long/short dashes; line styles in libpgplot now always match pgplot git-svn-id: https://svn.code.sf.net/p/giza/code@242
952f94de-64c9-43ce-8081-c12abd9885bf
2011-09-12 Daniel Price <daniel.price@monash.edu>
* docs/get-fortran-params.pl, interface/giza-fortran.F90: updated
list of fortran params automatically git-svn-id: https://svn.code.sf.net/p/giza/code@241
952f94de-64c9-43ce-8081-c12abd9885bf
2011-09-12 Daniel Price <daniel.price@monash.edu>
* src/giza-label.c: bug fix with chopped labels in giza_label git-svn-id: https://svn.code.sf.net/p/giza/code@240
952f94de-64c9-43ce-8081-c12abd9885bf
2011-09-12 Daniel Price <daniel.price@monash.edu>
* src/giza-annotate.c: giza-annotate code shortened (unnecessary
extra lines removed) git-svn-id: https://svn.code.sf.net/p/giza/code@239
952f94de-64c9-43ce-8081-c12abd9885bf
2011-09-12 Daniel Price <daniel.price@monash.edu>
* src/giza-viewport.c: bug fix in default viewport causing labels
with giza_label to be clipped git-svn-id: https://svn.code.sf.net/p/giza/code@238
952f94de-64c9-43ce-8081-c12abd9885bf
2011-09-12 Daniel Price <daniel.price@monash.edu>
* src/giza-box.c, src/giza-character-size.c, src/giza-points.c,
src/giza-ptext.c, src/giza-qtext.c: [optimisation] do not query the
font extents every time the character size is set; instead do this
only in the routines that need to use Sets.font information git-svn-id: https://svn.code.sf.net/p/giza/code@237
952f94de-64c9-43ce-8081-c12abd9885bf
2011-09-12 Daniel Price <daniel.price@monash.edu>
* build/Makefile: bumped version number git-svn-id: https://svn.code.sf.net/p/giza/code@236
952f94de-64c9-43ce-8081-c12abd9885bf
2011-09-09 Daniel Price <daniel.price@monash.edu>
* src/giza-paper.c: header included for internal routine git-svn-id: https://svn.code.sf.net/p/giza/code@235
952f94de-64c9-43ce-8081-c12abd9885bf
2011-09-09 Daniel Price <daniel.price@monash.edu>
* interface/giza-fortran.F90, interface/giza-pgplot.f90,
src/giza-driver-eps.c, src/giza-driver-null.c,
src/giza-driver-pdf.c, src/giza-driver-png.c, src/giza-driver-ps.c,
src/giza-driver-svg.c, src/giza-driver-xw.c,
src/giza-drivers-private.h, src/giza-drivers.c, src/giza-paper.c,
src/giza-private.h, src/giza.h: rejigged the way the paper size is
set; can now be set in different units; set_paper_size calls redone;
Dev.widthCM and Dev.heightCM removed; less confusing all round git-svn-id: https://svn.code.sf.net/p/giza/code@234
952f94de-64c9-43ce-8081-c12abd9885bf
2011-09-09 Daniel Price <daniel.price@monash.edu>
* src/giza-paper.c: paper size queries use Dev.width not Dev.widthCM
(safer) git-svn-id: https://svn.code.sf.net/p/giza/code@233
952f94de-64c9-43ce-8081-c12abd9885bf
2011-09-09 Daniel Price <daniel.price@monash.edu>
* src/giza-viewport.c: set_viewport_inches uses Dev.width not
Dev.widthCM (safer) git-svn-id: https://svn.code.sf.net/p/giza/code@232
952f94de-64c9-43ce-8081-c12abd9885bf
2011-09-06 Daniel Price <daniel.price@monash.edu>
* src/giza-driver-ps.c: added comments to postscript header git-svn-id: https://svn.code.sf.net/p/giza/code@231
952f94de-64c9-43ce-8081-c12abd9885bf
2011-09-06 Daniel Price <daniel.price@monash.edu>
* src/giza-drivers.c, src/giza-viewport-private.h,
src/giza-viewport.c: standard viewport (as used by giza_environment)
now leaves boundary of 4 character heights on each size rather than
a fixed fraction git-svn-id: https://svn.code.sf.net/p/giza/code@230
952f94de-64c9-43ce-8081-c12abd9885bf
2011-09-06 Daniel Price <daniel.price@monash.edu>
* build/Makefile: gfortran version checks work with old gfortran
(v4.1.2) and give error git-svn-id: https://svn.code.sf.net/p/giza/code@229
952f94de-64c9-43ce-8081-c12abd9885bf
2011-09-06 Daniel Price <daniel.price@monash.edu>
* build/Makefile: checks gfortran version number and gives error if
gfortran is too old to compile fortran interface git-svn-id: https://svn.code.sf.net/p/giza/code@228
952f94de-64c9-43ce-8081-c12abd9885bf
2011-09-05 Daniel Price <daniel.price@monash.edu>
* build/Makefile: added $PREFIX/include to include line git-svn-id: https://svn.code.sf.net/p/giza/code@227
952f94de-64c9-43ce-8081-c12abd9885bf
2011-09-05 Daniel Price <daniel.price@monash.edu>
* src/giza-driver-pdf.c, src/giza-driver-ps.c: all drivers call
get_filename_for_device; avoids trim/case issues git-svn-id: https://svn.code.sf.net/p/giza/code@226
952f94de-64c9-43ce-8081-c12abd9885bf
2011-09-05 Daniel Price <daniel.price@monash.edu>
* src/giza-drivers.c: id decreased again when device close (fixes
spurious warnings) git-svn-id: https://svn.code.sf.net/p/giza/code@225
952f94de-64c9-43ce-8081-c12abd9885bf
2011-09-05 Daniel Price <daniel.price@monash.edu>
* build/Makefile: minor changes to Makefile structure git-svn-id: https://svn.code.sf.net/p/giza/code@224
952f94de-64c9-43ce-8081-c12abd9885bf
2011-09-05 Daniel Price <daniel.price@monash.edu>
* build/Makefile: still working on dylib vs .so; works on both now git-svn-id: https://svn.code.sf.net/p/giza/code@223
952f94de-64c9-43ce-8081-c12abd9885bf
2011-09-05 Daniel Price <daniel.price@monash.edu>
* build/Makefile: build more portable on os/x vs linux git-svn-id: https://svn.code.sf.net/p/giza/code@222
952f94de-64c9-43ce-8081-c12abd9885bf
2011-09-05 Daniel Price <daniel.price@monash.edu>
* build/Makefile: shared lib extension determined automatically git-svn-id: https://svn.code.sf.net/p/giza/code@221
952f94de-64c9-43ce-8081-c12abd9885bf
2011-08-31 Daniel Price <daniel.price@monash.edu>
* build/Makefile, interface/giza-fortran.F90,
interface/giza-pgplot.f90, src/giza-colour-index.c,
src/giza-colour-palette.c, src/giza-colour-private.h,
src/giza-drivers.c, src/giza-shared.h, src/giza.h: added
giza_colour_palette routines; libpgplot uses PGPLOT colour palette
by default git-svn-id: https://svn.code.sf.net/p/giza/code@220
952f94de-64c9-43ce-8081-c12abd9885bf
2011-08-31 Daniel Price <daniel.price@monash.edu>
* interface/giza-fortran.F90: bug fix with len_trim in f2c string
conversion git-svn-id: https://svn.code.sf.net/p/giza/code@219
952f94de-64c9-43ce-8081-c12abd9885bf
2011-08-30 Daniel Price <daniel.price@monash.edu>
* src/giza-annotate.c, src/giza-arrow.c, src/giza-band.c,
src/giza-box.c, src/giza-character-size.c, src/giza-circle.c,
src/giza-clipping.c, src/giza-colour-index.c,
src/giza-colour-private.h, src/giza-colour-table.c,
src/giza-contour.c, src/giza-cursor-routines.c,
src/giza-device-has-cursor.c, src/giza-driver-eps.c,
src/giza-driver-null.c, src/giza-driver-pdf.c,
src/giza-driver-png.c, src/giza-driver-svg.c, src/giza-driver-xw.c,
src/giza-drivers.c, src/giza-environment.c, src/giza-error-bars.c,
src/giza-fill.c, src/giza-format-number.c, src/giza-function-t.c,
src/giza-function-x.c, src/giza-function-y.c,
src/giza-get-key-press.c, src/giza-get-surface-size.c,
src/giza-io.c, src/giza-label.c, src/giza-line-style.c,
src/giza-line-width.c, src/giza-line.c, src/giza-points.c,
src/giza-polygon.c, src/giza-print-id.c, src/giza-prompting.c,
src/giza-qtext.c, src/giza-render.c, src/giza-set-font.c,
src/giza-stroke.c, src/giza-text.c, src/giza-vector.c,
src/giza-viewport.c, src/giza-warnings.c, src/giza-window.c,
src/giza.c, src/giza.h, src/lex.yy.c: spurious whitespace at end of
lines removed (script) git-svn-id: https://svn.code.sf.net/p/giza/code@218
952f94de-64c9-43ce-8081-c12abd9885bf
2011-08-30 Daniel Price <daniel.price@monash.edu>
* src/giza-annotate.c: better placement of text above viewport in
giza-annotate git-svn-id: https://svn.code.sf.net/p/giza/code@217
952f94de-64c9-43ce-8081-c12abd9885bf
2011-08-30 Daniel Price <daniel.price@monash.edu>
* src/giza-colour-index.c, src/giza-colour-private.h,
src/giza-drivers.c: implemented option to give exact pgplot colour
table git-svn-id: https://svn.code.sf.net/p/giza/code@216
952f94de-64c9-43ce-8081-c12abd9885bf
2011-08-30 Daniel Price <daniel.price@monash.edu>
* interface/giza-pgplot.f90: better linewidth conversion between
pgplot and giza in libpgplot git-svn-id: https://svn.code.sf.net/p/giza/code@215
952f94de-64c9-43ce-8081-c12abd9885bf
2011-08-30 Daniel Price <daniel.price@monash.edu>
* interface/giza-fortran.F90: whitespace removed from strings in
when passed through giza-fortran interface git-svn-id: https://svn.code.sf.net/p/giza/code@214
952f94de-64c9-43ce-8081-c12abd9885bf
2011-08-30 Daniel Price <daniel.price@monash.edu>
* src/giza-drivers-private.h, src/giza-drivers.c: bug fix with
whitespace in device names git-svn-id: https://svn.code.sf.net/p/giza/code@213
952f94de-64c9-43ce-8081-c12abd9885bf
2011-08-30 Daniel Price <daniel.price@monash.edu>
* src/giza-drivers.c: handles failure to call close_device; also bug
fix with _giza_lowercase git-svn-id: https://svn.code.sf.net/p/giza/code@212
952f94de-64c9-43ce-8081-c12abd9885bf
2011-08-30 Daniel Price <daniel.price@monash.edu>
* src/giza-drivers.c: handles failure to call close_device; also bug
fix with _giza_lowercase git-svn-id: https://svn.code.sf.net/p/giza/code@211
952f94de-64c9-43ce-8081-c12abd9885bf
2011-08-30 Daniel Price <daniel.price@monash.edu>
* src/giza-error-bars.c: more warnings silenced git-svn-id: https://svn.code.sf.net/p/giza/code@210
952f94de-64c9-43ce-8081-c12abd9885bf
2011-08-30 Daniel Price <daniel.price@monash.edu>
* build/Makefile: uses libtool instead of c compiler to build shared
library git-svn-id: https://svn.code.sf.net/p/giza/code@209
952f94de-64c9-43ce-8081-c12abd9885bf
2011-08-30 Daniel Price <daniel.price@monash.edu>
* src/giza-points.c, src/giza-polygon.c: silenced spurious warnings
in giza-points and giza-polygon git-svn-id: https://svn.code.sf.net/p/giza/code@208
952f94de-64c9-43ce-8081-c12abd9885bf
2011-08-30 Daniel Price <daniel.price@monash.edu>
* src/giza-driver-xw.c: better flush of xevents git-svn-id: https://svn.code.sf.net/p/giza/code@207
952f94de-64c9-43ce-8081-c12abd9885bf
2011-08-29 Daniel Price <daniel.price@monash.edu>
* build/Makefile: updated include paths git-svn-id: https://svn.code.sf.net/p/giza/code@206
952f94de-64c9-43ce-8081-c12abd9885bf
2011-08-26 Daniel Price <daniel.price@monash.edu>
* interface/giza-fortran.F90: debugging stuff removed git-svn-id: https://svn.code.sf.net/p/giza/code@205
952f94de-64c9-43ce-8081-c12abd9885bf
2011-08-26 Daniel Price <daniel.price@monash.edu>
* build/Makefile: minor fix in build git-svn-id: https://svn.code.sf.net/p/giza/code@204
952f94de-64c9-43ce-8081-c12abd9885bf
2011-08-26 Daniel Price <daniel.price@monash.edu>
* src/giza-paper.c: compiler warnings fixed git-svn-id: https://svn.code.sf.net/p/giza/code@203
952f94de-64c9-43ce-8081-c12abd9885bf
2011-08-26 Daniel Price <daniel.price@monash.edu>
* src/giza-colour-index.c: compiler warnings fixed git-svn-id: https://svn.code.sf.net/p/giza/code@202
952f94de-64c9-43ce-8081-c12abd9885bf
2011-08-26 Daniel Price <daniel.price@monash.edu>
* src/giza-arrow-style.c: compiler warnings fixed in arrow style git-svn-id: https://svn.code.sf.net/p/giza/code@201
952f94de-64c9-43ce-8081-c12abd9885bf
2011-08-26 Daniel Price <daniel.price@monash.edu>
* build/Makefile: .PHONY targets added git-svn-id: https://svn.code.sf.net/p/giza/code@200
952f94de-64c9-43ce-8081-c12abd9885bf
2011-08-26 Daniel Price <daniel.price@monash.edu>
* build/Makefile: minor tweaks to build git-svn-id: https://svn.code.sf.net/p/giza/code@199
952f94de-64c9-43ce-8081-c12abd9885bf
2011-08-26 Daniel Price <daniel.price@monash.edu>
* build/Makefile: makefile compatible with new splash build git-svn-id: https://svn.code.sf.net/p/giza/code@198
952f94de-64c9-43ce-8081-c12abd9885bf
2011-08-26 Daniel Price <daniel.price@monash.edu>
* build/Makefile: minor fixes to build git-svn-id: https://svn.code.sf.net/p/giza/code@197
952f94de-64c9-43ce-8081-c12abd9885bf
2011-08-26 Daniel Price <daniel.price@monash.edu>
* interface/pgplot-stubs.f90: removed obsolete pgplot-stubs file git-svn-id: https://svn.code.sf.net/p/giza/code@196
952f94de-64c9-43ce-8081-c12abd9885bf
2011-08-26 Daniel Price <daniel.price@monash.edu>
* .gitignore: updated .gitignore to ignore built libraries git-svn-id: https://svn.code.sf.net/p/giza/code@195
952f94de-64c9-43ce-8081-c12abd9885bf
2011-08-26 Daniel Price <daniel.price@monash.edu>
* docs/get-source-files.pl: script for getting list of source files
for Makefile git-svn-id: https://svn.code.sf.net/p/giza/code@194
952f94de-64c9-43ce-8081-c12abd9885bf
2011-08-26 Daniel Price <daniel.price@monash.edu>
* interface/cpgplot.h: minor formatting changes git-svn-id: https://svn.code.sf.net/p/giza/code@193
952f94de-64c9-43ce-8081-c12abd9885bf
2011-08-26 Daniel Price <daniel.price@monash.edu>
* build/Makefile, interface/Makefile, interface/giza-fortran.F90,
src/giza-format-number.c, src/{giza-shared-cpp.h => giza-shared.h},
src/giza-version.h, src/giza.h: giza-version.h now created
automatically at compile time; removed separate interface/Makefile
(subsumed into main Makefile) git-svn-id: https://svn.code.sf.net/p/giza/code@192
952f94de-64c9-43ce-8081-c12abd9885bf
2011-08-26 Daniel Price <daniel.price@monash.edu>
* src/giza-points.c: bug fix with polygon and stars in symbol
plotting git-svn-id: https://svn.code.sf.net/p/giza/code@191
952f94de-64c9-43ce-8081-c12abd9885bf
2011-08-23 Daniel Price <daniel.price@monash.edu>
* src/giza-points.c, src/giza-private.h, src/giza-scanner.l,
src/giza-text.c, src/lex.yy.c: implemented markers in character
strings (e.g. \m8) git-svn-id: https://svn.code.sf.net/p/giza/code@190
952f94de-64c9-43ce-8081-c12abd9885bf
2011-08-22 Daniel Price <daniel.price@monash.edu>
* interface/giza-cpgplot.c: finished adding cpgplot functions --
imaging routines not yet implemented git-svn-id: https://svn.code.sf.net/p/giza/code@189
952f94de-64c9-43ce-8081-c12abd9885bf
2011-08-22 Daniel Price <daniel.price@monash.edu>
* interface/giza-pgplot.f90: bug fix in pgqvsz git-svn-id: https://svn.code.sf.net/p/giza/code@188
952f94de-64c9-43ce-8081-c12abd9885bf
2011-08-17 Daniel Price <daniel.price@monash.edu>
* interface/giza-cpgplot.c, interface/giza-fortran.F90,
interface/giza-pgplot.f90: more cpgplot stuff; giza_version_string
in fortran module git-svn-id: https://svn.code.sf.net/p/giza/code@187
952f94de-64c9-43ce-8081-c12abd9885bf
2011-08-17 Daniel Price <daniel.price@monash.edu>
* interface/giza-cpgplot.c: implemented more cpgplot stuff git-svn-id: https://svn.code.sf.net/p/giza/code@186
952f94de-64c9-43ce-8081-c12abd9885bf
2011-08-16 Daniel Price <daniel.price@monash.edu>
* src/giza-driver-svg-private.h, src/giza-driver-svg.c,
src/giza-drivers-private.h, src/giza-drivers.c: svg driver added git-svn-id: https://svn.code.sf.net/p/giza/code@185
952f94de-64c9-43ce-8081-c12abd9885bf
2011-08-16 Daniel Price <daniel.price@monash.edu>
* src/giza-driver-xw-private.h, src/giza-driver-xw.c: allow
change_size_xw to be called from other routines git-svn-id: https://svn.code.sf.net/p/giza/code@184
952f94de-64c9-43ce-8081-c12abd9885bf
2011-08-16 Daniel Price <daniel.price@monash.edu>
* src/giza-draw-background.c: background only painted explicitly if
it is not transparent (to avoid bounding box issues on eps devices) git-svn-id: https://svn.code.sf.net/p/giza/code@183
952f94de-64c9-43ce-8081-c12abd9885bf
2011-08-15 Daniel Price <daniel.price@monash.edu>
* src/giza-drivers.c, src/giza-viewport.c, src/giza-window.c: BUG
FIX with initialisation of viewport/window (window now called from
set_viewport; fixes pgdemo2 issue) git-svn-id: https://svn.code.sf.net/p/giza/code@182
952f94de-64c9-43ce-8081-c12abd9885bf
2011-08-15 Daniel Price <daniel.price@monash.edu>
* src/giza-scanner.l, src/lex.yy.c: added \odot (but not in standard
font) git-svn-id: https://svn.code.sf.net/p/giza/code@181
952f94de-64c9-43ce-8081-c12abd9885bf
2011-08-10 Daniel Price <daniel.price@monash.edu>
* interface/giza-cpgplot.c: whole bunch more cpgplot routines added git-svn-id: https://svn.code.sf.net/p/giza/code@180
952f94de-64c9-43ce-8081-c12abd9885bf
2011-08-09 Daniel Price <daniel.price@monash.edu>
* interface/Makefile, interface/giza-cpgplot.c: added build for
libcpgplot; few more functions implemented git-svn-id: https://svn.code.sf.net/p/giza/code@179
952f94de-64c9-43ce-8081-c12abd9885bf
2011-08-09 Daniel Price <daniel.price@monash.edu>
* interface/giza-cpgplot.c, src/giza-colour-table.c, src/giza.h:
pgctab; use const on input variables git-svn-id: https://svn.code.sf.net/p/giza/code@178
952f94de-64c9-43ce-8081-c12abd9885bf
2011-08-09 Daniel Price <daniel.price@monash.edu>
* interface/giza-cpgplot.c: implemented the first few cpgplot
functions git-svn-id: https://svn.code.sf.net/p/giza/code@177
952f94de-64c9-43ce-8081-c12abd9885bf
2011-08-09 Daniel Price <daniel.price@monash.edu>
* docs/cpgplot_status.pl, interface/giza-cpgplot.c: documentation of
cpgplot interface added git-svn-id: https://svn.code.sf.net/p/giza/code@176
952f94de-64c9-43ce-8081-c12abd9885bf
2011-08-09 Daniel Price <daniel.price@monash.edu>
* interface/giza-pgplot.f90: bug fix with pggray interface + compile
problems git-svn-id: https://svn.code.sf.net/p/giza/code@175
952f94de-64c9-43ce-8081-c12abd9885bf
2011-08-09 Daniel Price <daniel.price@monash.edu>
* interface/cpgplot.h, interface/giza-cpgplot.c: added basic cpgplot
interface (just empty functions at present) git-svn-id: https://svn.code.sf.net/p/giza/code@174
952f94de-64c9-43ce-8081-c12abd9885bf
2011-08-05 Daniel Price <daniel.price@monash.edu>
* src/giza-drivers.c: all icc warnings fixed git-svn-id: https://svn.code.sf.net/p/giza/code@173
952f94de-64c9-43ce-8081-c12abd9885bf
2011-08-05 Daniel Price <daniel.price@monash.edu>
* src/giza-drivers-private.h, src/giza-drivers.c: strcasestr
replaced with standard c stuff git-svn-id: https://svn.code.sf.net/p/giza/code@172
952f94de-64c9-43ce-8081-c12abd9885bf
2011-08-05 Daniel Price <daniel.price@monash.edu>
* src/giza-scanner.l, src/lex.yy.c: unicode chars direct not using
escape sequences; \odot and \Sun implemented git-svn-id: https://svn.code.sf.net/p/giza/code@171
952f94de-64c9-43ce-8081-c12abd9885bf
2011-08-05 Daniel Price <daniel.price@monash.edu>
* src/giza-drivers.c: fixed icc warning (int->char conversion now
explicit) git-svn-id: https://svn.code.sf.net/p/giza/code@170
952f94de-64c9-43ce-8081-c12abd9885bf
2011-08-05 Daniel Price <daniel.price@monash.edu>
* src/giza-arrow.c, src/giza-box.c, src/giza-colour-index.c,
src/giza-colour-private.h, src/giza-colour-table.c,
src/giza-contour.c, src/giza-cursor-private.h,
src/giza-cursor-routines.c, src/giza-device-has-cursor.c,
src/giza-driver-pdf.c, src/giza-driver-png.c, src/giza-driver-ps.c,
src/giza-driver-xw.c, src/giza-fill-private.h, src/giza-fill.c,
src/giza-format-number.c, src/giza-function-t.c,
src/giza-function-x.c, src/giza-function-y.c,
src/giza-get-surface-size.c, src/giza-points.c, src/giza-private.h,
src/giza-prompting.c, src/giza-render-private.h, src/giza-render.c,
src/giza-shared-cpp.h, src/giza-vector.c, src/giza-warnings.c,
src/giza-window.c, src/giza.c, src/giza.h: fixed (almost) all icc
warnings git-svn-id: https://svn.code.sf.net/p/giza/code@169
952f94de-64c9-43ce-8081-c12abd9885bf
2011-08-05 Daniel Price <daniel.price@monash.edu>
* src/giza-driver-xw.c: xw driver catches the close window event git-svn-id: https://svn.code.sf.net/p/giza/code@168
952f94de-64c9-43ce-8081-c12abd9885bf
2011-08-02 Daniel Price <daniel.price@monash.edu>
* src/giza-band-style.c, src/giza-band.c, src/giza-driver-xw.c: band
now draws transparent box (looks nicer) git-svn-id: https://svn.code.sf.net/p/giza/code@167
952f94de-64c9-43ce-8081-c12abd9885bf
2011-07-29 Daniel Price <daniel.price@monash.edu>
* src/giza-drivers.c, src/giza.h: icc compiler warnings fixed git-svn-id: https://svn.code.sf.net/p/giza/code@166
952f94de-64c9-43ce-8081-c12abd9885bf
2011-07-29 Daniel Price <daniel.price@monash.edu>
* src/giza-driver-null.c: bug fix with types in null surface size git-svn-id: https://svn.code.sf.net/p/giza/code@165
952f94de-64c9-43ce-8081-c12abd9885bf
2011-07-29 Daniel Price <daniel.price@monash.edu>
* src/giza-driver-xw.c, src/giza-drivers.c: SEG FAULT FIXED!!!
finally got this show-stopping bug git-svn-id: https://svn.code.sf.net/p/giza/code@164
952f94de-64c9-43ce-8081-c12abd9885bf
2011-07-29 Daniel Price <daniel.price@monash.edu>
* src/giza-shared-cpp.h: bug fix in version numbering git-svn-id: https://svn.code.sf.net/p/giza/code@163
952f94de-64c9-43ce-8081-c12abd9885bf
2011-07-29 Daniel Price <daniel.price@monash.edu>
* src/giza-io.c, src/giza-shared-cpp.h, src/giza-version.h: added
giza version number; prints this with device list along with cairo
version git-svn-id: https://svn.code.sf.net/p/giza/code@162
952f94de-64c9-43ce-8081-c12abd9885bf
2011-07-29 Daniel Price <daniel.price@monash.edu>
* interface/giza-fortran.F90: much better string conversion between
c and fortran (standards conforming) git-svn-id: https://svn.code.sf.net/p/giza/code@161
952f94de-64c9-43ce-8081-c12abd9885bf
2011-07-28 Daniel Price <daniel.price@monash.edu>
* src/giza-driver-xw.c: band drawn in grey rather than foreground
colour (works on both black and white backgrounds git-svn-id: https://svn.code.sf.net/p/giza/code@160
952f94de-64c9-43ce-8081-c12abd9885bf
2011-07-28 Daniel Price <daniel.price@monash.edu>
* src/giza-driver-xw.c: bug fix with uninitialised variable in xw
driver git-svn-id: https://svn.code.sf.net/p/giza/code@159
952f94de-64c9-43ce-8081-c12abd9885bf
2011-07-28 Daniel Price <daniel.price@monash.edu>
* src/giza-band.c: bug fix with uninitialised variables in giza-band git-svn-id: https://svn.code.sf.net/p/giza/code@158
952f94de-64c9-43ce-8081-c12abd9885bf
2011-07-28 Daniel Price <daniel.price@monash.edu>
* src/giza-text.c: string.h included for strlen git-svn-id: https://svn.code.sf.net/p/giza/code@157
952f94de-64c9-43ce-8081-c12abd9885bf
2011-07-28 Daniel Price <daniel.price@monash.edu>
* src/giza-viewport.c: window initialisation commented (should be
unnecessary) git-svn-id: https://svn.code.sf.net/p/giza/code@156
952f94de-64c9-43ce-8081-c12abd9885bf
2011-07-28 Daniel Price <daniel.price@monash.edu>
* src/giza-private.h: revised GIZA_ZERO_FLOAT and GIZA_ZERO_DOUBLE
upwards slightly git-svn-id: https://svn.code.sf.net/p/giza/code@155
952f94de-64c9-43ce-8081-c12abd9885bf
2011-07-28 Daniel Price <daniel.price@monash.edu>
* src/giza-window.c: unnecessary checking of dxWin, dyWin removed git-svn-id: https://svn.code.sf.net/p/giza/code@154
952f94de-64c9-43ce-8081-c12abd9885bf
2011-07-28 Daniel Price <daniel.price@monash.edu>
* src/giza-driver-xw.c: BUG FIX with uninitialised variable in xw
driver git-svn-id: https://svn.code.sf.net/p/giza/code@153
952f94de-64c9-43ce-8081-c12abd9885bf
2011-07-28 Daniel Price <daniel.price@monash.edu>
* src/giza-drivers.c: header changed git-svn-id: https://svn.code.sf.net/p/giza/code@152
952f94de-64c9-43ce-8081-c12abd9885bf
2011-07-28 Daniel Price <daniel.price@monash.edu>
* src/giza-viewport.c: setting the default viewport does not reset
the window (because Win not set) git-svn-id: https://svn.code.sf.net/p/giza/code@151
952f94de-64c9-43ce-8081-c12abd9885bf
2011-07-28 Daniel Price <daniel.price@monash.edu>
* src/giza-window.c: code cleanup; bug fix with viewport
initialisation before window has been set; window setting now robust
if x1=x2 or y1=y2 git-svn-id: https://svn.code.sf.net/p/giza/code@150
952f94de-64c9-43ce-8081-c12abd9885bf
2011-07-26 Daniel Price <daniel.price@monash.edu>
* src/giza-text.c: minor checks added to text print (checks
strlen>0) git-svn-id: https://svn.code.sf.net/p/giza/code@149
952f94de-64c9-43ce-8081-c12abd9885bf
2011-06-30 Daniel Price <daniel.price@monash.edu>
* interface/giza-fortran.F90, interface/giza-pgplot.f90,
src/giza-character-size.c, src/giza-driver-eps.c,
src/giza-driver-null.c, src/giza-driver-pdf.c,
src/giza-driver-png.c, src/giza-driver-ps.c, src/giza-driver-xw.c,
src/giza-paper.c, src/giza-private.h, src/giza-qtext.c,
src/giza-shared-cpp.h, src/giza-viewport.c: implemented device size
query in pixels; this can be different to points (allows us to
specify resolution of vector devices other than 1 pixel per point) git-svn-id: https://svn.code.sf.net/p/giza/code@148
952f94de-64c9-43ce-8081-c12abd9885bf
2011-06-30 Daniel Price <daniel.price@monash.edu>
* interface/giza-fortran.F90, src/giza-render.c, src/giza.h: added
giza_render_transparent for rendering with a transparent minimum git-svn-id: https://svn.code.sf.net/p/giza/code@147
952f94de-64c9-43ce-8081-c12abd9885bf
2011-06-30 Daniel Price <daniel.price@monash.edu>
* src/giza-colour-table.c: cleanup of debugging stuff;
allocate/deallocate routines now unnecessary in colour table stuff git-svn-id: https://svn.code.sf.net/p/giza/code@146
952f94de-64c9-43ce-8081-c12abd9885bf
2011-06-30 Daniel Price <daniel.price@monash.edu>
* src/giza-colour-index.c: save/restore colour tables implemented
(could not get working with allocatable array components; so colour
tables now have fixed memory allocation; also more efficient) git-svn-id: https://svn.code.sf.net/p/giza/code@145
952f94de-64c9-43ce-8081-c12abd9885bf
2011-06-30 Daniel Price <daniel.price@monash.edu>
* src/giza-colour-private.h, src/giza-colour-table.c,
src/giza-render.c, src/giza.h: save/restore colour tables
implemented (could not get working with allocatable array
components; so colour tables now have fixed memory allocation; also
more efficient) git-svn-id: https://svn.code.sf.net/p/giza/code@144
952f94de-64c9-43ce-8081-c12abd9885bf
2011-06-30 Daniel Price <daniel.price@monash.edu>
* src/giza-colour-index.c, src/giza-colour-private.h,
src/giza-colour-table.c, src/giza-private.h: giza_set_colour_table
routines use giza_set_in_range; now only one version of this,
returns double git-svn-id: https://svn.code.sf.net/p/giza/code@143
952f94de-64c9-43ce-8081-c12abd9885bf
2011-06-30 Daniel Price <daniel.price@monash.edu>
* src/giza-colour-table.c: neatened up set_colour_table routines
with reallocate routine git-svn-id: https://svn.code.sf.net/p/giza/code@142
952f94de-64c9-43ce-8081-c12abd9885bf
2011-06-30 Daniel Price <daniel.price@monash.edu>
* interface/giza-fortran.F90, interface/giza-pgplot.f90,
src/giza-render.c, src/giza.h: added giza_render_gray routine; does
work but currently resets colour table git-svn-id: https://svn.code.sf.net/p/giza/code@141
952f94de-64c9-43ce-8081-c12abd9885bf
2011-06-30 Daniel Price <daniel.price@monash.edu>
* src/giza-colour-index.c: removed commented bit about redrawing
background (should never be done here) git-svn-id: https://svn.code.sf.net/p/giza/code@140
952f94de-64c9-43ce-8081-c12abd9885bf
2011-06-24 Daniel Price <daniel.price@monash.edu>
* src/giza-driver-xw.c: flushing of xevent queue restored git-svn-id: https://svn.code.sf.net/p/giza/code@139
952f94de-64c9-43ce-8081-c12abd9885bf
2011-06-24 Daniel Price <daniel.price@monash.edu>
* src/giza-driver-xw.c: debugging stuff removed from xw driver; also
commented out queue flushing git-svn-id: https://svn.code.sf.net/p/giza/code@138
952f94de-64c9-43ce-8081-c12abd9885bf
2011-06-20 Daniel Price <daniel.price@monash.edu>
* src/giza-drivers.c: bug fix: background colour changes now take
effect provided nothing has been plotted on the page git-svn-id: https://svn.code.sf.net/p/giza/code@137
952f94de-64c9-43ce-8081-c12abd9885bf
2011-06-20 Daniel Price <daniel.price@monash.edu>
* src/giza-drivers.c: documentation added for giza_query_device git-svn-id: https://svn.code.sf.net/p/giza/code@136
952f94de-64c9-43ce-8081-c12abd9885bf
2011-06-20 Daniel Price <daniel.price@monash.edu>
* src/giza-line.c: warnings about <2 points in giza_line removed git-svn-id: https://svn.code.sf.net/p/giza/code@135
952f94de-64c9-43ce-8081-c12abd9885bf
2011-06-20 Daniel Price <daniel.price@monash.edu>
* src/giza-driver-eps.c, src/giza-driver-png.c,
src/giza-drivers-private.h: png and eps devices use new
filename-setting routine git-svn-id: https://svn.code.sf.net/p/giza/code@134
952f94de-64c9-43ce-8081-c12abd9885bf
2011-06-20 Daniel Price <daniel.price@monash.edu>
* src/giza-drivers.c: added internal routine for setting filename on
one-file-per-plot devices; also bug fix with page change on null
device git-svn-id: https://svn.code.sf.net/p/giza/code@133
952f94de-64c9-43ce-8081-c12abd9885bf
2011-06-20 Daniel Price <daniel.price@monash.edu>
* src/giza-driver-xw.c: added function to purge Xevent queue git-svn-id: https://svn.code.sf.net/p/giza/code@132
952f94de-64c9-43ce-8081-c12abd9885bf
2011-06-20 Daniel Price <daniel.price@monash.edu>
* src/giza-set-font.c: initialisation of font matrix (commented out) git-svn-id: https://svn.code.sf.net/p/giza/code@131
952f94de-64c9-43ce-8081-c12abd9885bf
2011-06-20 Daniel Price <daniel.price@monash.edu>
* src/giza-character-size.c: minor comments added git-svn-id: https://svn.code.sf.net/p/giza/code@130
952f94de-64c9-43ce-8081-c12abd9885bf
2011-06-08 Daniel Price <daniel.price@monash.edu>
* src/giza-scanner.l, src/lex.yy.c: BUG FIX with super/subscripting
at end of string git-svn-id: https://svn.code.sf.net/p/giza/code@129
952f94de-64c9-43ce-8081-c12abd9885bf
2011-06-01 Daniel Price <daniel.price@monash.edu>
* src/giza-scanner.l, src/giza-text-private.h, src/lex.yy.c:
compiler warning about pointers fixed git-svn-id: https://svn.code.sf.net/p/giza/code@128
952f94de-64c9-43ce-8081-c12abd9885bf
2011-06-01 Daniel Price <daniel.price@monash.edu>
* src/giza-scanner.l, src/lex.yy.c: attempt to see if using longer
string fixes the seg fault problem git-svn-id: https://svn.code.sf.net/p/giza/code@127
952f94de-64c9-43ce-8081-c12abd9885bf
2011-06-01 Daniel Price <daniel.price@monash.edu>
* src/giza-scanner.l, src/lex.yy.c: BUG FIX with memory leaks in
get_chunk git-svn-id: https://svn.code.sf.net/p/giza/code@126
952f94de-64c9-43ce-8081-c12abd9885bf
2011-06-01 Daniel Price <daniel.price@monash.edu>
* interface/giza-fortran.F90: BUG FIX with cstring conversion
routine with zero-length strings and ifort/icc git-svn-id: https://svn.code.sf.net/p/giza/code@125
952f94de-64c9-43ce-8081-c12abd9885bf
2011-06-01 Daniel Price <daniel.price@monash.edu>
* src/giza-viewport.c: set_default_viewport handled slightly
differently; avoids possibility of recursive calls; less repeated
code git-svn-id: https://svn.code.sf.net/p/giza/code@124
952f94de-64c9-43ce-8081-c12abd9885bf
2011-06-01 Daniel Price <daniel.price@monash.edu>
* src/giza-private.h: added declarations for some internal routines git-svn-id: https://svn.code.sf.net/p/giza/code@123
952f94de-64c9-43ce-8081-c12abd9885bf
2011-06-01 Daniel Price <daniel.price@monash.edu>
* src/giza-line-style.c: uses GIZA_UNITS_MM instead of 2 git-svn-id: https://svn.code.sf.net/p/giza/code@122
952f94de-64c9-43ce-8081-c12abd9885bf
2011-05-31 Daniel Price <daniel.price@monash.edu>
* src/giza-driver-xw.c: restored use of X pixmap so banding works
again git-svn-id: https://svn.code.sf.net/p/giza/code@121
952f94de-64c9-43ce-8081-c12abd9885bf
2011-05-31 Daniel Price <daniel.price@monash.edu>
* src/giza-character-size.c: unnecessary set_trans call removed git-svn-id: https://svn.code.sf.net/p/giza/code@120
952f94de-64c9-43ce-8081-c12abd9885bf
2011-05-31 Daniel Price <daniel.price@monash.edu>
* src/giza-qtext.c: minor cleanups, sin/cos done more efficiently git-svn-id: https://svn.code.sf.net/p/giza/code@119
952f94de-64c9-43ce-8081-c12abd9885bf
2011-05-31 Daniel Price <daniel.price@monash.edu>
* src/giza-qtext.c: save/restore on character height in text query
routines git-svn-id: https://svn.code.sf.net/p/giza/code@118
952f94de-64c9-43ce-8081-c12abd9885bf
2011-05-31 Daniel Price <daniel.price@monash.edu>
* src/giza-viewport.c: comments added to make things clearer git-svn-id: https://svn.code.sf.net/p/giza/code@117
952f94de-64c9-43ce-8081-c12abd9885bf
2011-05-31 Daniel Price <daniel.price@monash.edu>
* src/giza-fill.c: bug fix with fill in old cairo versions git-svn-id: https://svn.code.sf.net/p/giza/code@116
952f94de-64c9-43ce-8081-c12abd9885bf
2011-05-31 Daniel Price <daniel.price@monash.edu>
* src/giza-driver-xw.c: temporary amendments to xwin driver to see
if seg fault problem is solved git-svn-id: https://svn.code.sf.net/p/giza/code@115
952f94de-64c9-43ce-8081-c12abd9885bf
2011-03-15 Daniel Price <daniel.price@monash.edu>
* src/giza-driver-xw.c: conversion of anchor point to integer is
done explicitly rather than implicitly (do we have to use ints for
this though?) git-svn-id: https://svn.code.sf.net/p/giza/code@114
952f94de-64c9-43ce-8081-c12abd9885bf
2011-03-15 Daniel Price <daniel.price@monash.edu>
* src/giza-driver-xw.c: spelling fixed git-svn-id: https://svn.code.sf.net/p/giza/code@113
952f94de-64c9-43ce-8081-c12abd9885bf
2011-03-15 Daniel Price <daniel.price@monash.edu>
* src/giza-scanner.l, src/lex.yy.c: -pedantic warnings fixed; c++
comments->c; moved some declarations git-svn-id: https://svn.code.sf.net/p/giza/code@112
952f94de-64c9-43ce-8081-c12abd9885bf
2011-03-15 Daniel Price <daniel.price@monash.edu>
* src/giza-viewport.c: better error handling in giza-viewport; on
error reverts to default viewport settings git-svn-id: https://svn.code.sf.net/p/giza/code@111
952f94de-64c9-43ce-8081-c12abd9885bf
2011-03-15 Daniel Price <daniel.price@monash.edu>
* src/giza-annotate.c, src/giza-arrow-style-private.h,
src/giza-arrow.c, src/giza-band.c, src/giza-box.c,
src/giza-character-size.c, src/giza-colour-index.c,
src/giza-colour-table.c, src/giza-contour.c,
src/giza-cursor-routines.c, src/giza-driver-eps.c,
src/giza-driver-null.c, src/giza-driver-pdf.c,
src/giza-driver-png.c, src/giza-driver-ps.c, src/giza-driver-xw.c,
src/giza-drivers.c, src/giza-error-bars.c, src/giza-fill.c,
src/giza-format-number.c, src/giza-function-t.c,
src/giza-function-x.c, src/giza-function-y.c, src/giza-io.c,
src/giza-line-style.c, src/giza-line.c, src/giza-paper.c,
src/giza-points.c, src/giza-polygon.c, src/giza-private.h,
src/giza-ptext.c, src/giza-qtext.c, src/giza-render.c,
src/giza-set-font.c, src/giza-vector.c, src/giza-window.c,
src/lex.yy.c: converted C++ style comments to C style comments (so
-pedantic works OK) git-svn-id: https://svn.code.sf.net/p/giza/code@110
952f94de-64c9-43ce-8081-c12abd9885bf
2011-03-15 Daniel Price <daniel.price@monash.edu>
* interface/Makefile: added -Wextra on interface compilation git-svn-id: https://svn.code.sf.net/p/giza/code@109
952f94de-64c9-43ce-8081-c12abd9885bf
2011-03-15 Daniel Price <daniel.price@monash.edu>
* src/giza-box.c: some more minor cleanups to fix icc compiler
warnings git-svn-id: https://svn.code.sf.net/p/giza/code@108
952f94de-64c9-43ce-8081-c12abd9885bf
2011-03-15 Daniel Price <daniel.price@monash.edu>
* src/giza-box.c: minor cleanups; removed multiple declarations of
variables git-svn-id: https://svn.code.sf.net/p/giza/code@107
952f94de-64c9-43ce-8081-c12abd9885bf
2011-03-14 Daniel Price <daniel.price@monash.edu>
* src/giza-driver-xw.c: MEMORY LEAK fixed; failure to call
cairo_destroy when changing page (valgrind) git-svn-id: https://svn.code.sf.net/p/giza/code@106
952f94de-64c9-43ce-8081-c12abd9885bf
2011-03-14 Daniel Price <daniel.price@monash.edu>
* src/giza-colour-table.c: explicitly checks that colours have been
set git-svn-id: https://svn.code.sf.net/p/giza/code@105
952f94de-64c9-43ce-8081-c12abd9885bf
2011-03-14 Daniel Price <daniel.price@monash.edu>
* src/giza.h: added const to declarations for arrays git-svn-id: https://svn.code.sf.net/p/giza/code@104
952f94de-64c9-43ce-8081-c12abd9885bf
2011-03-09 Daniel Price <daniel.price@monash.edu>
* src/giza-render.c: c style comments git-svn-id: https://svn.code.sf.net/p/giza/code@103
952f94de-64c9-43ce-8081-c12abd9885bf
2011-03-09 Daniel Price <daniel.price@monash.edu>
* src/giza-colour-table.c: BUG FIX causing uninitialised variable
problem in valgrind git-svn-id: https://svn.code.sf.net/p/giza/code@102
952f94de-64c9-43ce-8081-c12abd9885bf
2011-03-09 Daniel Price <daniel.price@monash.edu>
* src/giza-stroke.c: header file included git-svn-id: https://svn.code.sf.net/p/giza/code@101
952f94de-64c9-43ce-8081-c12abd9885bf
2011-03-09 Daniel Price <daniel.price@monash.edu>
* src/giza-text-background.c: giza.h included in header git-svn-id: https://svn.code.sf.net/p/giza/code@100
952f94de-64c9-43ce-8081-c12abd9885bf
2011-03-09 Daniel Price <daniel.price@monash.edu>
* src/giza-warnings.c: giza.h included in header git-svn-id: https://svn.code.sf.net/p/giza/code@99
952f94de-64c9-43ce-8081-c12abd9885bf
2011-03-09 Daniel Price <daniel.price@monash.edu>
* src/giza.h: added declarations for set_viewport_inches git-svn-id: https://svn.code.sf.net/p/giza/code@98
952f94de-64c9-43ce-8081-c12abd9885bf
2011-03-09 Daniel Price <daniel.price@monash.edu>
* src/giza-set-font.c: includes relevant header file git-svn-id: https://svn.code.sf.net/p/giza/code@97
952f94de-64c9-43ce-8081-c12abd9885bf
2011-03-09 Daniel Price <daniel.price@monash.edu>
* src/giza-line-width.c: added giza.h in header git-svn-id: https://svn.code.sf.net/p/giza/code@96
952f94de-64c9-43ce-8081-c12abd9885bf
2011-03-09 Daniel Price <daniel.price@monash.edu>
* src/giza-line-cap.c: added giza.h in header git-svn-id: https://svn.code.sf.net/p/giza/code@95
952f94de-64c9-43ce-8081-c12abd9885bf
2011-03-06 Daniel Price <daniel.price@monash.edu>
* src/giza-drivers.c: BUG FIX with memory overflow in
init_device_list causing seg fault git-svn-id: https://svn.code.sf.net/p/giza/code@94
952f94de-64c9-43ce-8081-c12abd9885bf
2011-03-06 Daniel Price <daniel.price@monash.edu>
* src/giza-drivers.c: BUG FIX with memory overflow in
init_device_list causing seg fault git-svn-id: https://svn.code.sf.net/p/giza/code@93
952f94de-64c9-43ce-8081-c12abd9885bf
2011-03-06 Daniel Price <daniel.price@monash.edu>
* src/giza-driver-eps.c, src/giza-driver-pdf.c,
src/giza-driver-ps.c: default background alpha 0 on eps, ps and pdf git-svn-id: https://svn.code.sf.net/p/giza/code@92
952f94de-64c9-43ce-8081-c12abd9885bf
2011-03-06 Daniel Price <daniel.price@monash.edu>
* src/giza-drivers.c: bug fix with pgNum not pgnum git-svn-id: https://svn.code.sf.net/p/giza/code@91
952f94de-64c9-43ce-8081-c12abd9885bf
2011-03-06 Daniel Price <daniel.price@monash.edu>
* src/giza-drivers.c: return Dev.pgnum instead of 0 from open_device git-svn-id: https://svn.code.sf.net/p/giza/code@90
952f94de-64c9-43ce-8081-c12abd9885bf
2011-03-06 Daniel Price <daniel.price@monash.edu>
* src/giza-drivers.c, src/giza-private.h: giza-prefix is now fixed
length; avoids possible memory leaks from failure to deallocate git-svn-id: https://svn.code.sf.net/p/giza/code@89
952f94de-64c9-43ce-8081-c12abd9885bf
2011-03-06 Daniel Price <daniel.price@monash.edu>
* src/giza-drivers.c: default background alpha is 1 not 0 git-svn-id: https://svn.code.sf.net/p/giza/code@88
952f94de-64c9-43ce-8081-c12abd9885bf
2011-03-06 Daniel Price <daniel.price@monash.edu>
* src/giza-drivers.c: uses generic code for flush_device except for
xwin device git-svn-id: https://svn.code.sf.net/p/giza/code@87
952f94de-64c9-43ce-8081-c12abd9885bf
2011-03-04 Daniel Price <daniel.price@monash.edu>
* src/giza-driver-eps.c: bug fix and uncommented cairo_surface_flush
in eps driver (should use surface not context) git-svn-id: https://svn.code.sf.net/p/giza/code@86
952f94de-64c9-43ce-8081-c12abd9885bf
2011-03-04 Daniel Price <daniel.price@monash.edu>
* src/giza-save.c, src/giza-set-font.c: BUG FIX with font not being
kept across a change of page: but currently ONLY works to one level
of save/restore git-svn-id: https://svn.code.sf.net/p/giza/code@85
952f94de-64c9-43ce-8081-c12abd9885bf
2011-03-04 Daniel Price <daniel.price@monash.edu>
* src/giza-drivers.c: giza_change_page uses giza-save/giza-restore
to save/restore settings git-svn-id: https://svn.code.sf.net/p/giza/code@84
952f94de-64c9-43ce-8081-c12abd9885bf
2011-03-02 Daniel Price <daniel.price@monash.edu>
* src/giza-drivers.c: giza_open_device prompts if first letter of
device string is ? git-svn-id: https://svn.code.sf.net/p/giza/code@83
952f94de-64c9-43ce-8081-c12abd9885bf
2011-03-02 Daniel Price <daniel.price@monash.edu>
* interface/giza-fortran.F90, interface/giza-pgplot.f90,
src/giza-colour-index.c, src/giza.h: implemented
set_colour_representation_hls git-svn-id: https://svn.code.sf.net/p/giza/code@82
952f94de-64c9-43ce-8081-c12abd9885bf
2011-03-02 Daniel Price <daniel.price@monash.edu>
* src/giza-colour-index.c: checks bounds on scir; avoids stupid
settings git-svn-id: https://svn.code.sf.net/p/giza/code@81
952f94de-64c9-43ce-8081-c12abd9885bf
2011-03-02 Daniel Price <daniel.price@monash.edu>
* src/giza-shared-cpp.h: allow 256 + 16 colours (mainly so splash
does not complain) git-svn-id: https://svn.code.sf.net/p/giza/code@80
952f94de-64c9-43ce-8081-c12abd9885bf
2011-03-02 Daniel Price <daniel.price@monash.edu>
* src/giza-colour-index-private.h, src/{giza-colour-table-private.h
=> giza-colour-private.h}: now only giza-colour-private.h git-svn-id: https://svn.code.sf.net/p/giza/code@79
952f94de-64c9-43ce-8081-c12abd9885bf
2011-03-02 Daniel Price <daniel.price@monash.edu>
* interface/giza-fortran.F90, interface/giza-pgplot.f90,
src/giza-colour-index.c, src/giza-colour-table.c,
src/giza-drivers.c, src/giza.h: set_colour_table now sets the colour
indices in the range set by set_colour_index_range; also get routine
for this; colour-index and colour-table have shared header file git-svn-id: https://svn.code.sf.net/p/giza/code@78
952f94de-64c9-43ce-8081-c12abd9885bf
2011-03-02 Daniel Price <daniel.price@monash.edu>
* src/giza-io-private.h, src/giza-prompting.c: private interfaces
declared properly git-svn-id: https://svn.code.sf.net/p/giza/code@77
952f94de-64c9-43ce-8081-c12abd9885bf
2011-03-02 Daniel Price <daniel.price@monash.edu>
* src/giza-io.c: unused variable warning fixed (do not care about
return value of fgets) git-svn-id: https://svn.code.sf.net/p/giza/code@76
952f94de-64c9-43ce-8081-c12abd9885bf
2011-03-02 Daniel Price <daniel.price@monash.edu>
* interface/giza-fortran.F90, interface/giza-pgplot.f90,
src/giza-colour-index.c, src/giza-render.c, src/giza-shared-cpp.h,
src/giza.h: PGPIXEL/giza_draw_pixels implemented git-svn-id: https://svn.code.sf.net/p/giza/code@75
952f94de-64c9-43ce-8081-c12abd9885bf
2011-03-01 Daniel Price <daniel.price@monash.edu>
* interface/giza-pgplot.f90, src/giza-print-id.c:
giza-print-id/PGIDEN implemented fully git-svn-id: https://svn.code.sf.net/p/giza/code@74
952f94de-64c9-43ce-8081-c12abd9885bf
2011-03-01 Daniel Price <daniel.price@monash.edu>
* src/giza-print-id.c: giza-print-id now working properly git-svn-id: https://svn.code.sf.net/p/giza/code@73
952f94de-64c9-43ce-8081-c12abd9885bf
2011-03-01 Daniel Price <daniel.price@monash.edu>
* src/giza-character-size.c: docs fixed for giza-character-size git-svn-id: https://svn.code.sf.net/p/giza/code@72
952f94de-64c9-43ce-8081-c12abd9885bf
2011-03-01 Daniel Price <daniel.price@monash.edu>
* src/giza.h: added paper_size function declarations to giza.h git-svn-id: https://svn.code.sf.net/p/giza/code@71
952f94de-64c9-43ce-8081-c12abd9885bf
2011-03-01 Daniel Price <daniel.price@monash.edu>
* src/giza-ptext.c: docs for ptext fixed git-svn-id: https://svn.code.sf.net/p/giza/code@70
952f94de-64c9-43ce-8081-c12abd9885bf
2011-03-01 Daniel Price <daniel.price@monash.edu>
* src/giza-paper.c: better docs on giza-get-paper-size git-svn-id: https://svn.code.sf.net/p/giza/code@69
952f94de-64c9-43ce-8081-c12abd9885bf
2011-03-01 Daniel Price <daniel.price@monash.edu>
* interface/giza-fortran.F90, interface/giza-pgplot.f90,
src/giza-print-id.c: added giza-print-id; replicates PGIDEN git-svn-id: https://svn.code.sf.net/p/giza/code@68
952f94de-64c9-43ce-8081-c12abd9885bf
2011-03-01 Daniel Price <daniel.price@monash.edu>
* src/giza.h: giza-qtextlen routines added to giza.h git-svn-id: https://svn.code.sf.net/p/giza/code@67
952f94de-64c9-43ce-8081-c12abd9885bf
2011-03-01 Daniel Price <daniel.price@monash.edu>
* interface/giza-pgplot.f90: FINISHED hatch fill implementation;
seems to work perfectly now; no known issues remaining git-svn-id: https://svn.code.sf.net/p/giza/code@66
952f94de-64c9-43ce-8081-c12abd9885bf
2011-03-01 Daniel Price <daniel.price@monash.edu>
* src/giza-fill.c: FINISHED hatch fill implementation; seems to work
perfectly now; no known issues remaining git-svn-id: https://svn.code.sf.net/p/giza/code@65
952f94de-64c9-43ce-8081-c12abd9885bf
2011-03-01 Daniel Price <daniel.price@monash.edu>
* src/giza-fill.c: hatch fill now explicitly draws lines on
transparent background; rotation partially working git-svn-id: https://svn.code.sf.net/p/giza/code@64
952f94de-64c9-43ce-8081-c12abd9885bf
2011-02-27 Daniel Price <daniel.price@monash.edu>
* src/giza-text.c, src/giza.h: added declarations for
giza_set_font_italic, giza_set_font_bold etc git-svn-id: https://svn.code.sf.net/p/giza/code@63
952f94de-64c9-43ce-8081-c12abd9885bf
2011-02-25 Daniel Price <daniel.price@monash.edu>
* src/giza-fill.c: hatch fill completely re-done; now explicitly
draws lines instead of using pre-drawn pattern; no funny effects;
some minor issues with robust handling of all angles remaining git-svn-id: https://svn.code.sf.net/p/giza/code@62
952f94de-64c9-43ce-8081-c12abd9885bf
2011-02-25 Daniel Price <daniel.price@monash.edu>
* src/giza-fill.c: implemented hatch fill using larger tiles, with
alpha, still not perfect git-svn-id: https://svn.code.sf.net/p/giza/code@61
952f94de-64c9-43ce-8081-c12abd9885bf
2011-02-23 Daniel Price <daniel.price@monash.edu>
* interface/giza-pgplot.f90, src/giza-text.c: changed definition of
-normal- font to arial; handles greek letters git-svn-id: https://svn.code.sf.net/p/giza/code@60
952f94de-64c9-43ce-8081-c12abd9885bf
2011-02-23 Daniel Price <daniel.price@monash.edu>
* src/giza-colour-index.c: initialised colour indices up to 16 git-svn-id: https://svn.code.sf.net/p/giza/code@59
952f94de-64c9-43ce-8081-c12abd9885bf
2011-02-23 Daniel Price <daniel.price@monash.edu>
* interface/giza-pgplot.f90: PGERAS implemented ->
giza_draw_background git-svn-id: https://svn.code.sf.net/p/giza/code@58
952f94de-64c9-43ce-8081-c12abd9885bf
2011-02-23 Daniel Price <daniel.price@monash.edu>
* interface/giza-fortran.F90, src/giza-colour-index.c,
src/giza-draw-background.c, src/giza-driver-eps-private.h,
src/giza-driver-eps.c, src/giza-driver-null-private.h,
src/giza-driver-null.c, src/giza-driver-pdf-private.h,
src/giza-driver-pdf.c, src/giza-driver-png-private.h,
src/giza-driver-png.c, src/giza-driver-ps-private.h,
src/giza-driver-ps.c, src/giza-driver-xw-private.h,
src/giza-driver-xw.c, src/giza-drivers-private.h,
src/giza-drivers.c, src/giza.h: giza_draw_background no longer
device specific; also public git-svn-id: https://svn.code.sf.net/p/giza/code@57
952f94de-64c9-43ce-8081-c12abd9885bf
2011-02-23 Daniel Price <daniel.price@monash.edu>
* src/giza-band-style.c, src/giza-save.c, src/giza.h: added
get_band_style function; band style added to save/restore functions git-svn-id: https://svn.code.sf.net/p/giza/code@56
952f94de-64c9-43ce-8081-c12abd9885bf
2011-02-23 Daniel Price <daniel.price@monash.edu>
* src/giza-save.c: hatching style and text background colour added
to save/restore routines git-svn-id: https://svn.code.sf.net/p/giza/code@55
952f94de-64c9-43ce-8081-c12abd9885bf
2011-02-23 Daniel Price <daniel.price@monash.edu>
* interface/giza-fortran.F90: bug fix with set/get hatching
interface git-svn-id: https://svn.code.sf.net/p/giza/code@54
952f94de-64c9-43ce-8081-c12abd9885bf
2011-02-23 Daniel Price <daniel.price@monash.edu>
* interface/giza-fortran.F90: hatching style interface routines
added git-svn-id: https://svn.code.sf.net/p/giza/code@53
952f94de-64c9-43ce-8081-c12abd9885bf
2011-02-23 Daniel Price <daniel.price@monash.edu>
* interface/giza-pgplot.f90, src/giza-fill.c, src/giza.h: added
set_hatching_style and get_hatching_style routines and interfaces;
not yet applied to hatch git-svn-id: https://svn.code.sf.net/p/giza/code@52
952f94de-64c9-43ce-8081-c12abd9885bf
2011-02-23 Daniel Price <daniel.price@monash.edu>
* interface/giza-fortran.F90, interface/giza-pgplot.f90,
src/giza-buffering.c, src/giza.h: added giza_flush_buffer,
replicates PGUPDT git-svn-id: https://svn.code.sf.net/p/giza/code@51
952f94de-64c9-43ce-8081-c12abd9885bf
2011-02-22 Daniel Price <daniel.price@monash.edu>
* interface/giza-pgplot.f90: PGQCF implemented, behaves as expected git-svn-id: https://svn.code.sf.net/p/giza/code@50
952f94de-64c9-43ce-8081-c12abd9885bf
2011-02-22 Daniel Price <daniel.price@monash.edu>
* src/giza-scanner.l, src/giza-text-private.h, src/giza-text.c,
src/lex.yy.c: added support for inline font switching; \rm, \it,
\fn, \fi, \fr, \fs; also \x for times git-svn-id: https://svn.code.sf.net/p/giza/code@49
952f94de-64c9-43ce-8081-c12abd9885bf
2011-02-22 Daniel Price <daniel.price@monash.edu>
* interface/giza-pgplot.f90: PGSCF now does roughly what it says on
the tin git-svn-id: https://svn.code.sf.net/p/giza/code@48
952f94de-64c9-43ce-8081-c12abd9885bf
2011-02-22 Daniel Price <daniel.price@monash.edu>
* src/giza-drivers.c: prompt happens for close_device routine; fixes
bug with windows closing before plot can be viewed git-svn-id: https://svn.code.sf.net/p/giza/code@47
952f94de-64c9-43ce-8081-c12abd9885bf
2011-02-22 Daniel Price <daniel.price@monash.edu>
* interface/giza-fortran.F90, src/giza-private.h,
src/giza-set-font.c: added set_font_bold, set_font_italic and
set_font_bold_italic routines git-svn-id: https://svn.code.sf.net/p/giza/code@46
952f94de-64c9-43ce-8081-c12abd9885bf
2011-02-22 Daniel Price <daniel.price@monash.edu>
* interface/giza-pgplot.f90, src/giza-fill.c: implemented hatched
fill styles git-svn-id: https://svn.code.sf.net/p/giza/code@45
952f94de-64c9-43ce-8081-c12abd9885bf
2011-02-22 Daniel Price <daniel.price@monash.edu>
* src/giza-viewport.c: clipping of viewport turned off if
giza_set_clipping set to false git-svn-id: https://svn.code.sf.net/p/giza/code@44
952f94de-64c9-43ce-8081-c12abd9885bf
2011-02-22 Daniel Price <daniel.price@monash.edu>
* src/giza-clipping.c: set/get clipping state routines added
(PGQCLP/PGSCLP) git-svn-id: https://svn.code.sf.net/p/giza/code@43
952f94de-64c9-43ce-8081-c12abd9885bf
2011-02-22 Daniel Price <daniel.price@monash.edu>
* interface/giza-fortran.F90, interface/giza-pgplot.f90,
src/giza-drivers.c, src/giza.h: set/get clipping state routines
added (PGQCLP/PGSCLP) git-svn-id: https://svn.code.sf.net/p/giza/code@42
952f94de-64c9-43ce-8081-c12abd9885bf
2011-02-22 Daniel Price <daniel.price@monash.edu>
* interface/giza-fortran.F90, interface/giza-pgplot.f90,
src/giza-move.c, src/giza.h: added PGQPOS/giza_get_current_point git-svn-id: https://svn.code.sf.net/p/giza/code@41
952f94de-64c9-43ce-8081-c12abd9885bf
2011-02-22 Daniel Price <daniel.price@monash.edu>
* src/giza-cursor-routines.c, src/giza.h: function definitions for
giza_mark_points etc added to giza.h; also spurious printf removed git-svn-id: https://svn.code.sf.net/p/giza/code@40
952f94de-64c9-43ce-8081-c12abd9885bf
2011-02-22 Daniel Price <daniel.price@monash.edu>
* interface/giza-fortran.F90, interface/giza-pgplot.f90,
src/giza-text-background.c, src/giza.h: added PGQTBG;
giza_get_text_background git-svn-id: https://svn.code.sf.net/p/giza/code@39
952f94de-64c9-43ce-8081-c12abd9885bf
2011-02-22 Daniel Price <daniel.price@monash.edu>
* interface/giza-fortran.F90, interface/giza-pgplot.f90,
src/giza-cursor-routines.c: added interface routines for
mark_points_ordered and mark_line_ordered git-svn-id: https://svn.code.sf.net/p/giza/code@38
952f94de-64c9-43ce-8081-c12abd9885bf
2011-02-22 Daniel Price <daniel.price@monash.edu>
* src/giza-shared-cpp.h: bug fix (regression) with definition of
GIZA_LEFT_CLICK: mark_points now works again with new structure git-svn-id: https://svn.code.sf.net/p/giza/code@37
952f94de-64c9-43ce-8081-c12abd9885bf
2011-02-21 Daniel Price <daniel.price@monash.edu>
* src/giza-colour-index.c: stuff for setting alpha added git-svn-id: https://svn.code.sf.net/p/giza/code@36
952f94de-64c9-43ce-8081-c12abd9885bf
2011-02-21 Daniel Price <daniel.price@monash.edu>
* interface/giza-fortran.F90, interface/giza-pgplot.f90,
src/giza-cursor-routines.c: added basic functionality for PGLCUR,
PGOLIN; mostly working but a few issues remaining git-svn-id: https://svn.code.sf.net/p/giza/code@35
952f94de-64c9-43ce-8081-c12abd9885bf
2011-02-21 Daniel Price <daniel.price@monash.edu>
* interface/Makefile: added -Wall in libpgplot build git-svn-id: https://svn.code.sf.net/p/giza/code@34
952f94de-64c9-43ce-8081-c12abd9885bf
2011-02-21 Daniel Price <daniel.price@monash.edu>
* src/giza-shared-cpp.h: defined foreground and background colour
indices using GIZA_BACKGROUND_COLOUR etc git-svn-id: https://svn.code.sf.net/p/giza/code@33
952f94de-64c9-43ce-8081-c12abd9885bf
2011-02-21 Daniel Price <daniel.price@monash.edu>
* src/giza-points.c: made -ve symbol points slightly bigger git-svn-id: https://svn.code.sf.net/p/giza/code@32
952f94de-64c9-43ce-8081-c12abd9885bf
2011-02-19 Daniel Price <daniel.price@monash.edu>
* src/giza-band.c, src/giza-shared-cpp.h: giza band types defined in
preprocessing git-svn-id: https://svn.code.sf.net/p/giza/code@31
952f94de-64c9-43ce-8081-c12abd9885bf
2011-02-19 Daniel Price <daniel.price@monash.edu>
* interface/giza-fortran.F90, interface/giza-pgplot.f90,
src/giza-box.c, src/giza.h: PGRND implemented; interface to
giza_round; added giza_round_float git-svn-id: https://svn.code.sf.net/p/giza/code@30
952f94de-64c9-43ce-8081-c12abd9885bf
2011-02-16 Daniel Price <daniel.price@monash.edu>
* interface/giza-pgplot.f90: PGNUMB interface added git-svn-id: https://svn.code.sf.net/p/giza/code@29
952f94de-64c9-43ce-8081-c12abd9885bf
2011-02-16 Daniel Price <daniel.price@monash.edu>
* .gitignore: added .gitignore file git-svn-id: https://svn.code.sf.net/p/giza/code@28
952f94de-64c9-43ce-8081-c12abd9885bf
2011-02-16 Daniel Price <daniel.price@monash.edu>
* interface/giza-fortran.F90, interface/giza-pgplot.f90,
src/giza-error-bars.c: PGERRX implemented; added
giza_error_bars_hori, giza_error_bars_hori_float to match PGERRX
specifications git-svn-id: https://svn.code.sf.net/p/giza/code@27
952f94de-64c9-43ce-8081-c12abd9885bf
2011-02-16 Daniel Price <daniel.price@monash.edu>
* src/giza-band.c, src/giza-drivers.c: giza_band stuff moved to
giza_band routine where possible; implemented all 7 pgplot band
styles plus additional circle band style; better docs for giza_band git-svn-id: https://svn.code.sf.net/p/giza/code@26
952f94de-64c9-43ce-8081-c12abd9885bf
2011-02-16 Daniel Price <daniel.price@monash.edu>
* src/giza-drivers.c: minor amendments to device list (eps vs. ps
differences); neatened code slightly git-svn-id: https://svn.code.sf.net/p/giza/code@25
952f94de-64c9-43ce-8081-c12abd9885bf
2011-02-16 Daniel Price <daniel.price@monash.edu>
* src/giza-prompting.c: bug fix with giza-prompting initialisation git-svn-id: https://svn.code.sf.net/p/giza/code@24
952f94de-64c9-43ce-8081-c12abd9885bf
2011-02-16 Daniel Price <daniel.price@monash.edu>
* src/giza-driver-xw.c, src/giza-drivers.c, src/giza-io.c,
src/giza-prompting.c: giza_prompting now behaves like PGASK: uses
terminal prompts instead of key press in window git-svn-id: https://svn.code.sf.net/p/giza/code@23
952f94de-64c9-43ce-8081-c12abd9885bf
2011-02-16 Daniel Price <daniel.price@monash.edu>
* interface/giza-pgplot.f90: use line missing in PGASK git-svn-id: https://svn.code.sf.net/p/giza/code@22
952f94de-64c9-43ce-8081-c12abd9885bf
2011-01-10 wetterj <wetterj@952f94de-64c9-43ce-8081-c12abd9885bf>
* branches/opengl/src/giza-features.h,
branches/opengl/src/giza-gl-interactive.c,
branches/opengl/src/giza-gl-private.h,
branches/opengl/src/giza-gl.h, branches/opengl/test/test-gl.c: Began
to impliment opengl acceleration git-svn-id: https://svn.code.sf.net/p/giza/code@21
952f94de-64c9-43ce-8081-c12abd9885bf
2011-01-10 wetterj <wetterj@952f94de-64c9-43ce-8081-c12abd9885bf>
* branches/{ => opengl}/INSTALL, branches/{ => opengl}/LICENSE,
branches/{ => opengl}/Makefile, branches/{ =>
opengl}/build/Makefile, branches/{ => opengl}/docs/api.pl,
branches/{ => opengl}/docs/pgplot_status.pl, branches/{ =>
opengl}/include/.gitignore, branches/{ =>
opengl}/interface/Makefile, branches/{ =>
opengl}/interface/giza-fortran.F90, branches/{ =>
opengl}/interface/giza-pgplot.f90, branches/{ =>
opengl}/interface/pgplot-stubs.f90, branches/{ =>
opengl}/lib/.gitignore, branches/{ => opengl}/src/giza-annotate.c,
branches/{ => opengl}/src/giza-arrow-style-private.h, branches/{ =>
opengl}/src/giza-arrow-style.c, branches/{ =>
opengl}/src/giza-arrow.c, branches/{ =>
opengl}/src/giza-band-private.h, branches/{ =>
opengl}/src/giza-band-style.c, branches/{ =>
opengl}/src/giza-band.c, branches/{ => opengl}/src/giza-box.c,
branches/{ => opengl}/src/giza-buffering.c, branches/{ =>
opengl}/src/giza-character-size-private.h, branches/{ =>
opengl}/src/giza-character-size.c, branches/{ =>
opengl}/src/giza-circle.c, branches/{ =>
opengl}/src/giza-colour-index-private.h, branches/{ =>
opengl}/src/giza-colour-index.c, branches/{ =>
opengl}/src/giza-colour-table-private.h, branches/{ =>
opengl}/src/giza-colour-table.c, branches/{ =>
opengl}/src/giza-contour.c, branches/{ =>
opengl}/src/giza-device-has-cursor.c, branches/{ =>
opengl}/src/giza-draw.c, branches/{ =>
opengl}/src/giza-driver-eps-private.h, branches/{ =>
opengl}/src/giza-driver-eps.c, branches/{ =>
opengl}/src/giza-driver-null-private.h, branches/{ =>
opengl}/src/giza-driver-null.c, branches/{ =>
opengl}/src/giza-driver-pdf-private.h, branches/{ =>
opengl}/src/giza-driver-pdf.c, branches/{ =>
opengl}/src/giza-driver-png-private.h, branches/{ =>
opengl}/src/giza-driver-png.c, branches/{ =>
opengl}/src/giza-driver-ps-private.h, branches/{ =>
opengl}/src/giza-driver-ps.c, branches/{ =>
opengl}/src/giza-driver-xw-private.h, branches/{ =>
opengl}/src/giza-driver-xw.c, branches/{ =>
opengl}/src/giza-drivers-private.h, branches/{ =>
opengl}/src/giza-drivers.c, branches/{ =>
opengl}/src/giza-environment.c, branches/{ =>
opengl}/src/giza-error-bars.c, branches/{ =>
opengl}/src/giza-fill-private.h, branches/{ =>
opengl}/src/giza-fill.c, branches/{ =>
opengl}/src/giza-format-number.c, branches/{ =>
opengl}/src/giza-function-t.c, branches/{ =>
opengl}/src/giza-function-x.c, branches/{ =>
opengl}/src/giza-function-y.c, branches/{ =>
opengl}/src/giza-get-key-press.c, branches/{ =>
opengl}/src/giza-get-surface-size.c, branches/{ =>
opengl}/src/giza-io-private.h, branches/{ => opengl}/src/giza-io.c,
branches/{ => opengl}/src/giza-label.c, branches/{ =>
opengl}/src/giza-line-cap.c, branches/{ =>
opengl}/src/giza-line-style-private.h, branches/{ =>
opengl}/src/giza-line-style.c, branches/{ =>
opengl}/src/giza-line-width.c, branches/{ =>
opengl}/src/giza-line.c, branches/{ => opengl}/src/giza-move.c,
branches/{ => opengl}/src/giza-paper.c, branches/{ =>
opengl}/src/giza-points.c, branches/{ =>
opengl}/src/giza-polygon.c, branches/{ =>
opengl}/src/giza-private.h, branches/{ =>
opengl}/src/giza-prompting-private.h, branches/{ =>
opengl}/src/giza-prompting.c, branches/{ =>
opengl}/src/giza-ptext.c, branches/{ => opengl}/src/giza-qtext.c,
branches/{ => opengl}/src/giza-rectangle.c, branches/{ =>
opengl}/src/giza-render.c, branches/{ => opengl}/src/giza-save.c,
branches/{ => opengl}/src/giza-scanner.l, branches/{ =>
opengl}/src/giza-set-font-private.h, branches/{ =>
opengl}/src/giza-set-font.c, branches/{ =>
opengl}/src/giza-shared-cpp.h, branches/{ =>
opengl}/src/giza-stroke-private.h, branches/{ =>
opengl}/src/giza-stroke.c, branches/{ =>
opengl}/src/giza-text-background-private.h, branches/{ =>
opengl}/src/giza-text-background.c, branches/{ =>
opengl}/src/giza-text-private.h, branches/{ =>
opengl}/src/giza-text.c, branches/{ =>
opengl}/src/giza-transforms-private.h, branches/{ =>
opengl}/src/giza-transforms.c, branches/{ =>
opengl}/src/giza-vector.c, branches/{ =>
opengl}/src/giza-viewport-private.h, branches/{ =>
opengl}/src/giza-viewport.c, branches/{ =>
opengl}/src/giza-warnings-private.h, branches/{ =>
opengl}/src/giza-warnings.c, branches/{ =>
opengl}/src/giza-window-private.h, branches/{ =>
opengl}/src/giza-window.c, branches/{ => opengl}/src/giza.c,
branches/{ => opengl}/src/giza.h, branches/{ =>
opengl}/src/lex.yy.c, branches/{ => opengl}/test/test-arrow.c,
branches/{ => opengl}/test/test-band.c, branches/{ =>
opengl}/test/test-box.c, branches/{ =>
opengl}/test/test-change-page.c, branches/{ =>
opengl}/test/test-circle.c, branches/{ =>
opengl}/test/test-colour-index.c, branches/{ =>
opengl}/test/test-contour.c, branches/{ =>
opengl}/test/test-environment.c, branches/{ =>
opengl}/test/test-error-bars.c, branches/{ =>
opengl}/test/test-format-number.c, branches/{ =>
opengl}/test/test-line-cap.c, branches/{ =>
opengl}/test/test-line-style.c, branches/{ =>
opengl}/test/test-points.c, branches/{ =>
opengl}/test/test-qtext.c, branches/{ =>
opengl}/test/test-rectangle.c, branches/{ =>
opengl}/test/test-render.c, branches/{ =>
opengl}/test/test-set-line-width.c, branches/{ =>
opengl}/test/test-vector.c, branches/{ =>
opengl}/test/test-window.c: Created a branch to work on opengl
acceleration git-svn-id: https://svn.code.sf.net/p/giza/code@20
952f94de-64c9-43ce-8081-c12abd9885bf
2011-01-10 wetterj <wetterj@952f94de-64c9-43ce-8081-c12abd9885bf>
* branches/INSTALL, branches/LICENSE, branches/Makefile,
branches/build/Makefile, branches/docs/api.pl,
branches/docs/pgplot_status.pl, branches/include/.gitignore,
branches/interface/Makefile, branches/interface/giza-fortran.F90,
branches/interface/giza-pgplot.f90,
branches/interface/pgplot-stubs.f90, branches/lib/.gitignore,
branches/src/giza-annotate.c,
branches/src/giza-arrow-style-private.h,
branches/src/giza-arrow-style.c, branches/src/giza-arrow.c,
branches/src/giza-band-private.h, branches/src/giza-band-style.c,
branches/src/giza-band.c, branches/src/giza-box.c,
branches/src/giza-buffering.c,
branches/src/giza-character-size-private.h,
branches/src/giza-character-size.c, branches/src/giza-circle.c,
branches/src/giza-colour-index-private.h,
branches/src/giza-colour-index.c,
branches/src/giza-colour-table-private.h,
branches/src/giza-colour-table.c, branches/src/giza-contour.c,
branches/src/giza-device-has-cursor.c, branches/src/giza-draw.c,
branches/src/giza-driver-eps-private.h,
branches/src/giza-driver-eps.c,
branches/src/giza-driver-null-private.h,
branches/src/giza-driver-null.c,
branches/src/giza-driver-pdf-private.h,
branches/src/giza-driver-pdf.c,
branches/src/giza-driver-png-private.h,
branches/src/giza-driver-png.c,
branches/src/giza-driver-ps-private.h,
branches/src/giza-driver-ps.c,
branches/src/giza-driver-xw-private.h,
branches/src/giza-driver-xw.c, branches/src/giza-drivers-private.h,
branches/src/giza-drivers.c, branches/src/giza-environment.c,
branches/src/giza-error-bars.c, branches/src/giza-fill-private.h,
branches/src/giza-fill.c, branches/src/giza-format-number.c,
branches/src/giza-function-t.c, branches/src/giza-function-x.c,
branches/src/giza-function-y.c, branches/src/giza-get-key-press.c,
branches/src/giza-get-surface-size.c,
branches/src/giza-io-private.h, branches/src/giza-io.c,
branches/src/giza-label.c, branches/src/giza-line-cap.c,
branches/src/giza-line-style-private.h,
branches/src/giza-line-style.c, branches/src/giza-line-width.c,
branches/src/giza-line.c, branches/src/giza-move.c,
branches/src/giza-paper.c, branches/src/giza-points.c,
branches/src/giza-polygon.c, branches/src/giza-private.h,
branches/src/giza-prompting-private.h,
branches/src/giza-prompting.c, branches/src/giza-ptext.c,
branches/src/giza-qtext.c, branches/src/giza-rectangle.c,
branches/src/giza-render.c, branches/src/giza-save.c,
branches/src/giza-scanner.l, branches/src/giza-set-font-private.h,
branches/src/giza-set-font.c, branches/src/giza-shared-cpp.h,
branches/src/giza-stroke-private.h, branches/src/giza-stroke.c,
branches/src/giza-text-background-private.h,
branches/src/giza-text-background.c,
branches/src/giza-text-private.h, branches/src/giza-text.c,
branches/src/giza-transforms-private.h,
branches/src/giza-transforms.c, branches/src/giza-vector.c,
branches/src/giza-viewport-private.h, branches/src/giza-viewport.c,
branches/src/giza-warnings-private.h, branches/src/giza-warnings.c,
branches/src/giza-window-private.h, branches/src/giza-window.c,
branches/src/giza.c, branches/src/giza.h, branches/src/lex.yy.c,
branches/test/test-arrow.c, branches/test/test-band.c,
branches/test/test-box.c, branches/test/test-change-page.c,
branches/test/test-circle.c, branches/test/test-colour-index.c,
branches/test/test-contour.c, branches/test/test-environment.c,
branches/test/test-error-bars.c,
branches/test/test-format-number.c, branches/test/test-line-cap.c,
branches/test/test-line-style.c, branches/test/test-points.c,
branches/test/test-qtext.c, branches/test/test-rectangle.c,
branches/test/test-render.c, branches/test/test-set-line-width.c,
branches/test/test-vector.c, branches/test/test-window.c: Creating
an open gl branch of giza. git-svn-id: https://svn.code.sf.net/p/giza/code@19
952f94de-64c9-43ce-8081-c12abd9885bf
2010-12-21 wetterj <wetterj@952f94de-64c9-43ce-8081-c12abd9885bf>
* src/giza-driver-eps.c, src/giza-driver-pdf.c,
src/giza-driver-png.c, src/giza-driver-ps.c, src/giza-driver-xw.c,
src/giza-drivers-private.h, src/giza-drivers.c, src/giza-io.c: Fixed
bug when drawing transparent backgrounds, and a bug in displaying
avalible devices git-svn-id: https://svn.code.sf.net/p/giza/code@18
952f94de-64c9-43ce-8081-c12abd9885bf
2010-12-12 wetterj <wetterj@952f94de-64c9-43ce-8081-c12abd9885bf>
* src/giza-arrow-style-private.h, src/giza-arrow-style.c,
src/giza-band-private.h, src/giza-band-style.c,
src/giza-buffering.c, src/giza-character-size-private.h,
src/giza-character-size.c, src/giza-colour-index-private.h,
src/giza-colour-index.c, src/giza-colour-table-private.h,
src/giza-colour-table.c, src/giza-device-has-cursor.c,
src/giza-driver-eps-private.h, src/giza-driver-eps.c,
src/giza-driver-null-private.h, src/giza-driver-null.c,
src/giza-driver-pdf-private.h, src/giza-driver-pdf.c,
src/giza-driver-png-private.h, src/giza-driver-png.c,
src/giza-driver-ps-private.h, src/giza-driver-ps.c,
src/giza-driver-xw-private.h, src/giza-driver-xw.c,
src/giza-drivers-private.h, src/giza-drivers.c,
src/giza-environment.c, src/giza-error-bars.c,
src/giza-fill-private.h, src/giza-fill.c, src/giza-io-private.h,
src/giza-io.c, src/giza-line-style-private.h,
src/giza-line-style.c, src/giza-private.h,
src/giza-prompting-private.h, src/giza-prompting.c,
src/giza-save.c, src/giza-set-font-private.h, src/giza-set-font.c,
src/giza-stroke-private.h, src/giza-stroke.c,
src/giza-text-private.h, src/giza-text.c,
src/giza-transforms-private.h, src/giza-transforms.c,
src/giza-viewport.c, src/giza-warnings-private.h,
src/giza-warnings.c, src/giza-window-private.h, src/giza-window.c,
src/giza.c, src/giza.h: Added void to empty parameter lists in
function decliractions and definitions git-svn-id: https://svn.code.sf.net/p/giza/code@17
952f94de-64c9-43ce-8081-c12abd9885bf
2010-12-09 wetterj <wetterj@952f94de-64c9-43ce-8081-c12abd9885bf>
* src/giza-drivers-private.h, src/giza-drivers.c, src/giza-io.c:
Fixed a memory leak caused when printing avalible devices git-svn-id: https://svn.code.sf.net/p/giza/code@16
952f94de-64c9-43ce-8081-c12abd9885bf
2010-12-09 wetterj <wetterj@952f94de-64c9-43ce-8081-c12abd9885bf>
* src/giza-colour-index.c, src/giza-driver-xw.c,
src/giza-drivers.c, src/giza-private.h: All devices but Xlib have
default background alpha 0 git-svn-id: https://svn.code.sf.net/p/giza/code@15
952f94de-64c9-43ce-8081-c12abd9885bf
2010-12-08 wetterj <wetterj@952f94de-64c9-43ce-8081-c12abd9885bf>
* interface/giza-pgplot.f90: Added an interface to mimic pgask git-svn-id: https://svn.code.sf.net/p/giza/code@14
952f94de-64c9-43ce-8081-c12abd9885bf
2010-12-08 wetterj <wetterj@952f94de-64c9-43ce-8081-c12abd9885bf>
* interface/giza-fortran.F90, src/giza-colour-index.c: Fixed some
typos that broke the build on the last commit git-svn-id: https://svn.code.sf.net/p/giza/code@13
952f94de-64c9-43ce-8081-c12abd9885bf
2010-12-08 wetterj <wetterj@952f94de-64c9-43ce-8081-c12abd9885bf>
* interface/giza-fortran.F90, src/giza-colour-index.c, src/giza.h:
Added alpha to colour index functions git-svn-id: https://svn.code.sf.net/p/giza/code@12
952f94de-64c9-43ce-8081-c12abd9885bf
2010-12-07 wetterj <wetterj@952f94de-64c9-43ce-8081-c12abd9885bf>
* src/giza-format-number.c, src/giza-ptext.c: Added missing null
character to string returned from giza_format_number git-svn-id: https://svn.code.sf.net/p/giza/code@11
952f94de-64c9-43ce-8081-c12abd9885bf
2010-12-06 wetterj <wetterj@952f94de-64c9-43ce-8081-c12abd9885bf>
* src/giza-arrow-style-private.h, src/giza-arrow.c,
src/giza-band.c, src/giza-box.c, src/giza-buffering.c,
src/giza-circle.c, src/giza-driver-xw-private.h,
src/giza-driver-xw.c, src/giza-drivers.c, src/giza-error-bars.c,
src/giza-format-number.c, src/giza-get-key-press.c,
src/giza-polygon.c, src/giza-rectangle.c, src/giza-save.c,
src/giza-stroke.c: Fixed many compiler warnings git-svn-id: https://svn.code.sf.net/p/giza/code@10
952f94de-64c9-43ce-8081-c12abd9885bf
2010-12-06 wetterj <wetterj@952f94de-64c9-43ce-8081-c12abd9885bf>
* src/giza-driver-eps.c: Fixed bug in change_page for the eps driver git-svn-id: https://svn.code.sf.net/p/giza/code@9
952f94de-64c9-43ce-8081-c12abd9885bf
2010-12-06 wetterj <wetterj@952f94de-64c9-43ce-8081-c12abd9885bf>
* src/giza-drivers.c: Device type is now case insensitive git-svn-id: https://svn.code.sf.net/p/giza/code@8
952f94de-64c9-43ce-8081-c12abd9885bf
2010-12-06 Daniel Price <daniel.price@monash.edu>
* interface/giza-fortran.F90: added set_text_background to Fortran
interface git-svn-id: https://svn.code.sf.net/p/giza/code@7
952f94de-64c9-43ce-8081-c12abd9885bf
2010-12-06 Daniel Price <daniel.price@monash.edu>
* build/Makefile: added warnings to default compilation git-svn-id: https://svn.code.sf.net/p/giza/code@6
952f94de-64c9-43ce-8081-c12abd9885bf
2010-12-02 Daniel Price <daniel.price@monash.edu>
* src/giza-driver-eps.c, src/giza-render.c: updated svn repo with
git stuff git-svn-id: https://svn.code.sf.net/p/giza/code@5
952f94de-64c9-43ce-8081-c12abd9885bf
2010-11-29 wetterj <wetterj@952f94de-64c9-43ce-8081-c12abd9885bf>
* build/Makefile, src/giza-driver-eps-private.h,
src/giza-driver-eps.c, src/giza-driver-xw-private.h,
src/giza-driver-xw.c, src/giza-drivers-private.h,
src/giza-drivers.c: Added optional EPS driver.XLib driver is now
optional. git-svn-id: https://svn.code.sf.net/p/giza/code@4
952f94de-64c9-43ce-8081-c12abd9885bf
2010-11-24 wetterj <wetterj@952f94de-64c9-43ce-8081-c12abd9885bf>
* interface/giza-fortran.F90, src/giza-box.c,
src/giza-format-number.c, src/giza-shared-cpp.h, src/giza.c,
src/giza.h, test/test-format-number.c: Changed giza_format_number to
imitate pgplot's pgnumb. git-svn-id: https://svn.code.sf.net/p/giza/code@3
952f94de-64c9-43ce-8081-c12abd9885bf
2010-11-22 wetterj <wetterj@952f94de-64c9-43ce-8081-c12abd9885bf>
* build/Makefile, src/giza-drivers.c, src/giza-ptext.c,
src/giza-text-background-private.h, src/giza-text-background.c,
src/giza.h: Added a function to set text background. git-svn-id: https://svn.code.sf.net/p/giza/code@2
952f94de-64c9-43ce-8081-c12abd9885bf
2010-11-22 wetterj <wetterj@952f94de-64c9-43ce-8081-c12abd9885bf>
* Initial import. git-svn-id: https://svn.code.sf.net/p/giza/code@1
952f94de-64c9-43ce-8081-c12abd9885bf
|