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
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Index: GOffice Reference Manual</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
<link rel="home" href="index.html" title="GOffice Reference Manual">
<link rel="up" href="index.html" title="GOffice Reference Manual">
<link rel="prev" href="GOString.html" title="GOString">
<link rel="next" href="annotation-glossary.html" title="Annotation Glossary">
<meta name="generator" content="GTK-Doc V1.27 (XML mode)">
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
<td width="100%" align="left" class="shortcuts"></td>
<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
<td><img src="up-insensitive.png" width="16" height="16" border="0"></td>
<td><a accesskey="p" href="GOString.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
<td><a accesskey="n" href="annotation-glossary.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
</tr></table>
<div class="index">
<div class="titlepage"><div><div><h1 class="title">
<a name="gsf-index"></a>Index</h1></div></div></div>
<pre class="screen">
GObject
<span class="lineart">├──</span> GInitiallyUnowned
<span class="lineart">│</span> <span class="lineart">╰──</span> GtkWidget
<span class="lineart">│</span> <span class="lineart">╰──</span> GtkContainer
<span class="lineart">│</span> <span class="lineart">├──</span> GtkBox
<span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">├──</span> GO3DRotationSel
<span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">├──</span> <a class="link" href="GOComboBox.html" title="GOComboBox">GOComboBox</a>
<span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">├──</span> <a class="link" href="GOCalendarButton.html" title="GOCalendarButton">GOCalendarButton</a>
<span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">├──</span> <a class="link" href="GOComboColor.html" title="GOComboColor">GOComboColor</a>
<span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">╰──</span> <a class="link" href="GOComboPixmaps.html" title="GOComboPixmaps">GOComboPixmaps</a>
<span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">├──</span> <a class="link" href="GOCharmapSel.html" title="GOCharmapSel">GOCharmapSel</a>
<span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">├──</span> GOColorPalette
<span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">├──</span> <a class="link" href="GOFontSel.html" title="GOFontSel">GOFontSel</a>
<span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">├──</span> <a class="link" href="GOFormatSel.html" title="GOFormatSel">GOFormatSel</a>
<span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">├──</span> <a class="link" href="GOLocaleSel.html" title="GOLocaleSel">GOLocaleSel</a>
<span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">├──</span> <a class="link" href="GOSelector.html" title="GOSelector">GOSelector</a>
<span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">╰──</span> GogChildButton
<span class="lineart">│</span> <span class="lineart">├──</span> GtkBin
<span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">├──</span> <a class="link" href="GOArrow.html#GOArrowSel">GOArrowSel</a>
<span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">├──</span> GtkWindow
<span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">╰──</span> GtkDialog
<span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">├──</span> GOComponentMimeDialog
<span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">╰──</span> GOFontSelDialog
<span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">├──</span> GoMathEditor
<span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">╰──</span> GtkButton
<span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">╰──</span> <a class="link" href="GOOptionMenu.html" title="GOOptionMenu">GOOptionMenu</a>
<span class="lineart">│</span> <span class="lineart">├──</span> GtkLayout
<span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">├──</span> <a class="link" href="GOGraphWidget.html" title="GOGraphWidget">GOGraphWidget</a>
<span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">╰──</span> <a class="link" href="GocCanvas.html" title="GocCanvas">GocCanvas</a>
<span class="lineart">│</span> <span class="lineart">├──</span> GtkMenuShell
<span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">╰──</span> GtkMenu
<span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">├──</span> <a class="link" href="GOComboPixmaps.html#GOMenuPixmaps">GOMenuPixmaps</a>
<span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">╰──</span> <a class="link" href="GOPalette.html" title="GOPalette">GOPalette</a>
<span class="lineart">│</span> <span class="lineart">╰──</span> GtkGrid
<span class="lineart">│</span> <span class="lineart">╰──</span> <a class="link" href="GORotationSel.html" title="GORotationSel">GORotationSel</a>
<span class="lineart">├──</span> GtkAction
<span class="lineart">│</span> <span class="lineart">├──</span> GOActionComboColor
<span class="lineart">│</span> <span class="lineart">├──</span> GOActionComboPixmaps
<span class="lineart">│</span> <span class="lineart">├──</span> GOActionComboStack
<span class="lineart">│</span> <span class="lineart">╰──</span> GOActionComboText
<span class="lineart">├──</span> <a class="link" href="GOColorGroup.html" title="GOColorGroup">GOColorGroup</a>
<span class="lineart">├──</span> <a class="link" href="GOComponent.html" title="GOComponent">GOComponent</a>
<span class="lineart">├──</span> <a class="link" href="GOData.html" title="GOData">GOData</a>
<span class="lineart">│</span> <span class="lineart">├──</span> <a class="link" href="GODataMatrix.html" title="GODataMatrix">GODataMatrix</a>
<span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">╰──</span> <a class="link" href="goffice-0.10-Simple-data.html#GODataMatrixVal">GODataMatrixVal</a>
<span class="lineart">│</span> <span class="lineart">├──</span> <a class="link" href="GODataScalar.html" title="GODataScalar">GODataScalar</a>
<span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">├──</span> <a class="link" href="goffice-0.10-Simple-data.html#GODataScalarStr">GODataScalarStr</a>
<span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">╰──</span> <a class="link" href="goffice-0.10-Simple-data.html#GODataScalarVal">GODataScalarVal</a>
<span class="lineart">│</span> <span class="lineart">╰──</span> <a class="link" href="goffice-0.10-GODataCVector.html#GODataVector">GODataVector</a>
<span class="lineart">│</span> <span class="lineart">├──</span> <a class="link" href="goffice-0.10-Simple-data.html#GODataVectorStr">GODataVectorStr</a>
<span class="lineart">│</span> <span class="lineart">╰──</span> <a class="link" href="goffice-0.10-Simple-data.html#GODataVectorVal">GODataVectorVal</a>
<span class="lineart">├──</span> <a class="link" href="GODistribution.html" title="GODistribution">GODistribution</a>
<span class="lineart">├──</span> <a class="link" href="GODocControl.html" title="GODocControl">GODocControl</a>
<span class="lineart">├──</span> <a class="link" href="GODoc.html" title="GODoc">GODoc</a>
<span class="lineart">├──</span> <a class="link" href="GOImage.html" title="GOImage">GOImage</a>
<span class="lineart">│</span> <span class="lineart">├──</span> <a class="link" href="goffice-0.10-Windows-Metafiles-support.html#GOEmf">GOEmf</a>
<span class="lineart">│</span> <span class="lineart">├──</span> <a class="link" href="GOPixbuf.html" title="GOPixbuf">GOPixbuf</a>
<span class="lineart">│</span> <span class="lineart">├──</span> <a class="link" href="goffice-0.10-Encapsulated-Postscript-support.html#GOSpectre">GOSpectre</a>
<span class="lineart">│</span> <span class="lineart">╰──</span> <a class="link" href="goffice-0.10-Scalable-Vector-Graphics-support.html#GOSvg">GOSvg</a>
<span class="lineart">├──</span> <a class="link" href="goffice-0.10-GOFileOpeners.html#GOFileOpener">GOFileOpener</a>
<span class="lineart">├──</span> <a class="link" href="GOFileSaver.html" title="GOFileSaver">GOFileSaver</a>
<span class="lineart">├──</span> <a class="link" href="GOIOContext.html" title="GOIOContext">GOIOContext</a>
<span class="lineart">├──</span> <a class="link" href="GOMarker.html" title="GOMarker">GOMarker</a>
<span class="lineart">├──</span> <a class="link" href="GOPlugin.html" title="GOPlugin">GOPlugin</a>
<span class="lineart">├──</span> <a class="link" href="GOPluginLoaderModule.html" title="GOPluginLoaderModule">GOPluginLoaderModule</a>
<span class="lineart">├──</span> <a class="link" href="GOPluginService.html" title="GOPluginService">GOPluginService</a>
<span class="lineart">│</span> <span class="lineart">├──</span> <a class="link" href="GOPluginService.html#GOPluginServiceFileOpener">GOPluginServiceFileOpener</a>
<span class="lineart">│</span> <span class="lineart">├──</span> <a class="link" href="GOPluginService.html#GOPluginServiceFileSaver">GOPluginServiceFileSaver</a>
<span class="lineart">│</span> <span class="lineart">├──</span> <a class="link" href="GOPluginService.html#GOPluginServiceGeneral">GOPluginServiceGeneral</a>
<span class="lineart">│</span> <span class="lineart">├──</span> <a class="link" href="GOPluginService.html#GOPluginServiceSimple">GOPluginServiceSimple</a>
<span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">╰──</span> <a class="link" href="GOPluginService.html#GOPluginServiceGObjectLoader">GOPluginServiceGObjectLoader</a>
<span class="lineart">│</span> <span class="lineart">├──</span> <a class="link" href="GOPluginService.html#GOPluginServicePluginLoader">GOPluginServicePluginLoader</a>
<span class="lineart">│</span> <span class="lineart">╰──</span> <a class="link" href="GOPlugin.html#GOPluginServiceResource">GOPluginServiceResource</a>
<span class="lineart">├──</span> <a class="link" href="GOSearchReplace.html" title="GOSearchReplace">GOSearchReplace</a>
<span class="lineart">├──</span> <a class="link" href="GOStyle.html" title="GOStyle">GOStyle</a>
<span class="lineart">│</span> <span class="lineart">╰──</span> <a class="link" href="GogStyledObject.html#GogStyle">GogStyle</a>
<span class="lineart">├──</span> <a class="link" href="GOUndoUnary.html#GOUndo">GOUndo</a>
<span class="lineart">│</span> <span class="lineart">├──</span> <a class="link" href="GOUndoUnary.html#GOUndoBinary">GOUndoBinary</a>
<span class="lineart">│</span> <span class="lineart">├──</span> <a class="link" href="GOUndoUnary.html#GOUndoGroup">GOUndoGroup</a>
<span class="lineart">│</span> <span class="lineart">╰──</span> <a class="link" href="GOUndoUnary.html" title="GOUndoUnary">GOUndoUnary</a>
<span class="lineart">├──</span> <a class="link" href="GoView.html" title="GoView">GoView</a>
<span class="lineart">├──</span> <a class="link" href="GocItem.html" title="GocItem">GocItem</a>
<span class="lineart">│</span> <span class="lineart">├──</span> <a class="link" href="GocStyledItem.html" title="GocStyledItem">GocStyledItem</a>
<span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">├──</span> <a class="link" href="GocArc.html" title="GocArc">GocArc</a>
<span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">├──</span> <a class="link" href="GocCircle.html" title="GocCircle">GocCircle</a>
<span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">├──</span> <a class="link" href="GocEllipse.html" title="GocEllipse">GocEllipse</a>
<span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">├──</span> <a class="link" href="GocLine.html" title="GocLine">GocLine</a>
<span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">├──</span> GocPath
<span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">├──</span> <a class="link" href="GocPolygon.html" title="GocPolygon">GocPolygon</a>
<span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">├──</span> <a class="link" href="GocPolyline.html" title="GocPolyline">GocPolyline</a>
<span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">├──</span> <a class="link" href="GocRectangle.html" title="GocRectangle">GocRectangle</a>
<span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">╰──</span> <a class="link" href="GocText.html" title="GocText">GocText</a>
<span class="lineart">│</span> <span class="lineart">├──</span> GocComponent
<span class="lineart">│</span> <span class="lineart">├──</span> <a class="link" href="GocGraph.html" title="GocGraph">GocGraph</a>
<span class="lineart">│</span> <span class="lineart">├──</span> <a class="link" href="GocGroup.html" title="GocGroup">GocGroup</a>
<span class="lineart">│</span> <span class="lineart">├──</span> GocImage
<span class="lineart">│</span> <span class="lineart">├──</span> <a class="link" href="GocPixbuf.html" title="GocPixbuf">GocPixbuf</a>
<span class="lineart">│</span> <span class="lineart">╰──</span> <a class="link" href="GocWidget.html" title="GocWidget">GocWidget</a>
<span class="lineart">├──</span> <a class="link" href="GogObject.html" title="GogObject">GogObject</a>
<span class="lineart">│</span> <span class="lineart">├──</span> <a class="link" href="Gog3DBox.html" title="Gog3DBox">Gog3DBox</a>
<span class="lineart">│</span> <span class="lineart">├──</span> <a class="link" href="GogStyledObject.html" title="GogStyledObject">GogStyledObject</a>
<span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">├──</span> <a class="link" href="GogAxisLine.html#GogAxisBase">GogAxisBase</a>
<span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">├──</span> <a class="link" href="GogAxis.html" title="GogAxis">GogAxis</a>
<span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">╰──</span> <a class="link" href="GogAxisLine.html" title="GogAxisLine">GogAxisLine</a>
<span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">├──</span> <a class="link" href="GogOutlinedView.html#GogOutlinedObject">GogOutlinedObject</a>
<span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">├──</span> <a class="link" href="GogChart.html" title="GogChart">GogChart</a>
<span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">├──</span> <a class="link" href="GogSeriesLabels.html#GogDataLabel">GogDataLabel</a>
<span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">├──</span> <a class="link" href="GogGraph.html" title="GogGraph">GogGraph</a>
<span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">├──</span> <a class="link" href="GogText.html" title="GogText">GogText</a>
<span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">├──</span> <a class="link" href="GogLabel.html" title="GogLabel">GogLabel</a>
<span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">╰──</span> <a class="link" href="GogRegEqn.html" title="GogRegEqn">GogRegEqn</a>
<span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">├──</span> <a class="link" href="GogLegend.html" title="GogLegend">GogLegend</a>
<span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">╰──</span> <a class="link" href="GogSeriesLabels.html" title="GogSeriesLabels">GogSeriesLabels</a>
<span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">├──</span> <a class="link" href="GogColorScale.html" title="GogColorScale">GogColorScale</a>
<span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">├──</span> <a class="link" href="GogGrid.html" title="GogGrid">GogGrid</a>
<span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">├──</span> <a class="link" href="GogGridLine.html" title="GogGridLine">GogGridLine</a>
<span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">├──</span> <a class="link" href="GogTrendLine.html" title="GogTrendLine">GogTrendLine</a>
<span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">├──</span> <a class="link" href="GogRegCurve.html" title="GogRegCurve">GogRegCurve</a>
<span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">╰──</span> <a class="link" href="GogSmoothedCurve.html" title="GogSmoothedCurve">GogSmoothedCurve</a>
<span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">├──</span> <a class="link" href="GogSeries.html#GogSeriesElement">GogSeriesElement</a>
<span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">├──</span> <a class="link" href="GogSeries.html" title="GogSeries">GogSeries</a>
<span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">╰──</span> <a class="link" href="GogSeriesLines.html" title="GogSeriesLines">GogSeriesLines</a>
<span class="lineart">│</span> <span class="lineart">╰──</span> <a class="link" href="GogPlot.html" title="GogPlot">GogPlot</a>
<span class="lineart">├──</span> <a class="link" href="GogView.html" title="GogView">GogView</a>
<span class="lineart">│</span> <span class="lineart">├──</span> <a class="link" href="Gog3DBox.html#Gog3DBoxView">Gog3DBoxView</a>
<span class="lineart">│</span> <span class="lineart">├──</span> GogAxisBaseView
<span class="lineart">│</span> <span class="lineart">├──</span> <a class="link" href="GogOutlinedView.html" title="GogOutlinedView">GogOutlinedView</a>
<span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">╰──</span> <a class="link" href="GogGraph.html#GogGraphView">GogGraphView</a>
<span class="lineart">│</span> <span class="lineart">╰──</span> <a class="link" href="GogPlot.html#GogPlotView">GogPlotView</a>
<span class="lineart">├──</span> <a class="link" href="GogAxisColorMap.html" title="GogAxisColorMap">GogAxisColorMap</a>
<span class="lineart">├──</span> <a class="link" href="GogErrorBar.html" title="GogErrorBar">GogErrorBar</a>
<span class="lineart">├──</span> <a class="link" href="GogRenderer.html" title="GogRenderer">GogRenderer</a>
<span class="lineart">╰──</span> <a class="link" href="goffice-0.10-Theming.html#GogTheme">GogTheme</a>
<a href="/usr/share/gtk-doc/html/gobject/GTypeModule.html">GInterface</a>
<span class="lineart">├──</span> <a class="link" href="GOCmdContext.html" title="GOCmdContext">GOCmdContext</a>
<span class="lineart">├──</span> <a class="link" href="GOPersist.html" title="GOPersist">GOPersist</a>
<span class="lineart">├──</span> <a class="link" href="GOPluginLoader.html" title="GOPluginLoader">GOPluginLoader</a>
<span class="lineart">├──</span> <a class="link" href="GOStyledObject.html" title="GOStyledObject">GOStyledObject</a>
<span class="lineart">├──</span> <a class="link" href="GogDataset.html" title="GogDataset">GogDataset</a>
<span class="lineart">├──</span> <a class="link" href="GogDataEditor.html#GogDataAllocator">GogDataAllocator</a>
<span class="lineart">╰──</span> <a class="link" href="GogDataEditor.html" title="GogDataEditor">GogDataEditor</a>
<a href="/usr/share/gtk-doc/html/gobject/gobject-Boxed-Types.html">GBoxed</a>
<span class="lineart">├──</span> <a class="link" href="GOArrow.html" title="GOArrow">GOArrow</a>
<span class="lineart">├──</span> <a class="link" href="GOBezierSpline.html" title="GOBezierSpline">GOBezierSpline</a>
<span class="lineart">├──</span> <a class="link" href="GOComplex.html" title="GOComplex">GOComplex</a>
<span class="lineart">├──</span> <a class="link" href="GOComplex.html#GOComplexl">GOComplexl</a>
<span class="lineart">├──</span> GOConfNode
<span class="lineart">├──</span> <a class="link" href="goffice-0.10-Cubic-splines.html#GOCSpline">GOCSpline</a>
<span class="lineart">├──</span> <a class="link" href="goffice-0.10-Cubic-splines.html#GOCSplinel">GOCSplinel</a>
<span class="lineart">├──</span> <a class="link" href="GODateConventions.html" title="GODateConventions">GODateConventions</a>
<span class="lineart">├──</span> <a class="link" href="GOEditor.html" title="GOEditor">GOEditor</a>
<span class="lineart">├──</span> <a class="link" href="GOErrorInfo.html" title="GOErrorInfo">GOErrorInfo</a>
<span class="lineart">├──</span> <a class="link" href="goffice-0.10-File-utilities.html#GOFilePermissions">GOFilePermissions</a>
<span class="lineart">├──</span> <a class="link" href="GOFont.html" title="GOFont">GOFont</a>
<span class="lineart">├──</span> <a class="link" href="GOFont.html#GOFontMetrics">GOFontMetrics</a>
<span class="lineart">├──</span> <a class="link" href="GOFormat.html#GOFormatCurrency">GOFormatCurrency</a>
<span class="lineart">├──</span> <a class="link" href="GOFormat.html#GOFormatDetails">GOFormatDetails</a>
<span class="lineart">├──</span> <a class="link" href="GOFormat.html" title="GOFormat">GOFormat</a>
<span class="lineart">├──</span> <a class="link" href="GOImage.html#GOImageFormatInfo">GOImageFormatInfo</a>
<span class="lineart">├──</span> <a class="link" href="goffice-0.10-Line.html#GOLineDashSequence">GOLineDashSequence</a>
<span class="lineart">├──</span> <a class="link" href="goffice-0.10-GLib-extras.html#GOMemChunk">GOMemChunk</a>
<span class="lineart">├──</span> <a class="link" href="GOPath.html" title="GOPath">GOPath</a>
<span class="lineart">├──</span> <a class="link" href="goffice-0.10-GORegression.html#go-regression-stat-t">go_regression_stat_t</a>
<span class="lineart">├──</span> <a class="link" href="goffice-0.10-GORegression.html#go-regression-stat-tl">go_regression_stat_tl</a>
<span class="lineart">├──</span> <a class="link" href="GOString.html" title="GOString">GOString</a>
<span class="lineart">├──</span> GoUnit
<span class="lineart">├──</span> <a class="link" href="goffice-0.10-Utils.html#GocIntArray">GocIntArray</a>
<span class="lineart">├──</span> <a class="link" href="goffice-0.10-Utils.html#GocPoints">GocPoints</a>
<span class="lineart">├──</span> <a class="link" href="GogAxisMap.html" title="GogAxisMap">GogAxisMap</a>
<span class="lineart">├──</span> GogChartMap3D
<span class="lineart">├──</span> <a class="link" href="GogChartMap.html" title="GogChartMap">GogChartMap</a>
<span class="lineart">├──</span> <a class="link" href="GogObject.html#GogObjectRole">GogObjectRole</a>
<span class="lineart">├──</span> <a class="link" href="GogSeriesLabels.html#GogSeriesLabelElt">GogSeriesLabelElt</a>
<span class="lineart">├──</span> <a class="link" href="goffice-0.10-GogTool.html#GogToolAction">GogToolAction</a>
<span class="lineart">╰──</span> <a class="link" href="GogView.html#GogViewAllocation">GogViewAllocation</a>
<a href="/usr/share/gtk-doc/html/gobject/gobject-Enumeration-and-Flag-Types.html">GEnum</a>
<span class="lineart">├──</span> <a class="link" href="goffice-0.10-Geometry-helpers.html#GODirection" title="enum GODirection">GODirection</a>
<span class="lineart">├──</span> <a class="link" href="goffice-0.10-Files.html#GOFileFormatLevel" title="enum GOFileFormatLevel">GOFileFormatLevel</a>
<span class="lineart">├──</span> <a class="link" href="goffice-0.10-Files.html#GOFileSaveScope" title="enum GOFileSaveScope">GOFileSaveScope</a>
<span class="lineart">├──</span> <a class="link" href="goffice-0.10-Miscellaneous.html#GoResourceType" title="enum GoResourceType">GoResourceType</a>
<span class="lineart">╰──</span> <a class="link" href="goffice-0.10-Miscellaneous.html#GOAnchorType" title="enum GOAnchorType">GOAnchorType</a>
</pre>
<div xmlns:xlink="http://www.w3.org/1999/xlink" class="index">
<div class="indexdiv">
<h3>A</h3>
<dl>
<dt id="ientry-idm42544">acosh, <a class="indexterm" href="goffice-0.10-Mathematics.html#acosh">acosh ()</a>
</dt>
<dt id="ientry-idm42554">asinh, <a class="indexterm" href="goffice-0.10-Mathematics.html#asinh">asinh ()</a>
</dt>
<dt id="ientry-idm42564">atanh, <a class="indexterm" href="goffice-0.10-Mathematics.html#atanh">atanh ()</a>
</dt>
</dl>
</div>
<div class="indexdiv">
<h3>E</h3>
<dl><dt id="ientry-idm42574">expm1, <a class="indexterm" href="goffice-0.10-Mathematics.html#expm1">expm1 ()</a>
</dt></dl>
</div>
<div class="indexdiv">
<h3>F</h3>
<dl><dt id="ientry-idm42584">frexpl, <a class="indexterm" href="goffice-0.10-Mathematics.html#frexpl">frexpl ()</a>
</dt></dl>
</div>
<div class="indexdiv">
<h3>G</h3>
<dl>
<dt id="ientry-idm51454">GOAccumulator, <a class="indexterm" href="goffice-0.10-GOAccumulator.html#GOAccumulator">GOAccumulator</a>
</dt>
<dt id="ientry-idm51459">GOAccumulatorl, <a class="indexterm" href="goffice-0.10-GOAccumulator.html#GOAccumulatorl">GOAccumulatorl</a>
</dt>
<dt id="ientry-idm35734">GOAnchorType, <a class="indexterm" href="goffice-0.10-Miscellaneous.html#GOAnchorType">enum GOAnchorType</a>
</dt>
<dt id="ientry-idm30845">GOArrow, <a class="indexterm" href="GOArrow.html#GOArrow-struct">GOArrow</a>
</dt>
<dt id="ientry-idm30926">GOArrowSel, <a class="indexterm" href="GOArrow.html#GOArrowSel-struct">GOArrowSel</a>
</dt>
<dt id="ientry-idm30934">GOArrowSel:arrow, <a class="indexterm" href="GOArrow.html#GOArrowSel--arrow">The “arrow” property</a>
</dt>
<dt id="ientry-idm30896">GOArrowType, <a class="indexterm" href="GOArrow.html#GOArrowType">enum GOArrowType</a>
</dt>
<dt id="ientry-idm61720">GOBasisType, <a class="indexterm" href="GODateConventions.html#GOBasisType">enum GOBasisType</a>
</dt>
<dt id="ientry-idm38789">GOBezierSpline, <a class="indexterm" href="GOBezierSpline.html#GOBezierSpline-struct">GOBezierSpline</a>
</dt>
<dt id="ientry-idm28379">GOCalendarButton, <a class="indexterm" href="GOCalendarButton.html#GOCalendarButton-struct">GOCalendarButton</a>
</dt>
<dt id="ientry-idm28387">GOCalendarButton::changed, <a class="indexterm" href="GOCalendarButton.html#GOCalendarButton-changed">The “changed” signal</a>
</dt>
<dt id="ientry-idm23335">GocArc, <a class="indexterm" href="GocArc.html#GocArc-struct">GocArc</a>
</dt>
<dt id="ientry-idm23348">GocArc:ang1, <a class="indexterm" href="GocArc.html#GocArc--ang1">The “ang1” property</a>
</dt>
<dt id="ientry-idm23359">GocArc:ang2, <a class="indexterm" href="GocArc.html#GocArc--ang2">The “ang2” property</a>
</dt>
<dt id="ientry-idm23370">GocArc:end-arrow, <a class="indexterm" href="GocArc.html#GocArc--end-arrow">The “end-arrow” property</a>
</dt>
<dt id="ientry-idm23380">GocArc:rotation, <a class="indexterm" href="GocArc.html#GocArc--rotation">The “rotation” property</a>
</dt>
<dt id="ientry-idm23392">GocArc:start-arrow, <a class="indexterm" href="GocArc.html#GocArc--start-arrow">The “start-arrow” property</a>
</dt>
<dt id="ientry-idm23402">GocArc:type, <a class="indexterm" href="GocArc.html#GocArc--type">The “type” property</a>
</dt>
<dt id="ientry-idm23414">GocArc:xc, <a class="indexterm" href="GocArc.html#GocArc--xc">The “xc” property</a>
</dt>
<dt id="ientry-idm23425">GocArc:xr, <a class="indexterm" href="GocArc.html#GocArc--xr">The “xr” property</a>
</dt>
<dt id="ientry-idm23436">GocArc:yc, <a class="indexterm" href="GocArc.html#GocArc--yc">The “yc” property</a>
</dt>
<dt id="ientry-idm23447">GocArc:yr, <a class="indexterm" href="GocArc.html#GocArc--yr">The “yr” property</a>
</dt>
<dt id="ientry-idm23340">GocArcClass, <a class="indexterm" href="GocArc.html#GocArcClass">GocArcClass</a>
</dt>
<dt id="ientry-idm20801">GocCanvas, <a class="indexterm" href="GocCanvas.html#GocCanvas-struct">GocCanvas</a>
</dt>
<dt id="ientry-idm20806">GocCanvasClass, <a class="indexterm" href="GocCanvas.html#GocCanvasClass">GocCanvasClass</a>
</dt>
<dt id="ientry-idm23532">GocCircle, <a class="indexterm" href="GocCircle.html#GocCircle-struct">GocCircle</a>
</dt>
<dt id="ientry-idm23545">GocCircle:radius, <a class="indexterm" href="GocCircle.html#GocCircle--radius">The “radius” property</a>
</dt>
<dt id="ientry-idm23557">GocCircle:x, <a class="indexterm" href="GocCircle.html#GocCircle--x">The “x” property</a>
</dt>
<dt id="ientry-idm23568">GocCircle:y, <a class="indexterm" href="GocCircle.html#GocCircle--y">The “y” property</a>
</dt>
<dt id="ientry-idm23537">GocCircleClass, <a class="indexterm" href="GocCircle.html#GocCircleClass">GocCircleClass</a>
</dt>
<dt id="ientry-idm20811">GocDirection, <a class="indexterm" href="GocCanvas.html#GocDirection">enum GocDirection</a>
</dt>
<dt id="ientry-idm23667">GocEllipse, <a class="indexterm" href="GocEllipse.html#GocEllipse-struct">GocEllipse</a>
</dt>
<dt id="ientry-idm23680">GocEllipse:height, <a class="indexterm" href="GocEllipse.html#GocEllipse--height">The “height” property</a>
</dt>
<dt id="ientry-idm23692">GocEllipse:rotation, <a class="indexterm" href="GocEllipse.html#GocEllipse--rotation">The “rotation” property</a>
</dt>
<dt id="ientry-idm23704">GocEllipse:width, <a class="indexterm" href="GocEllipse.html#GocEllipse--width">The “width” property</a>
</dt>
<dt id="ientry-idm23716">GocEllipse:x, <a class="indexterm" href="GocEllipse.html#GocEllipse--x">The “x” property</a>
</dt>
<dt id="ientry-idm23727">GocEllipse:y, <a class="indexterm" href="GocEllipse.html#GocEllipse--y">The “y” property</a>
</dt>
<dt id="ientry-idm23672">GocEllipseClass, <a class="indexterm" href="GocEllipse.html#GocEllipseClass">GocEllipseClass</a>
</dt>
<dt id="ientry-idm23829">GocGraph, <a class="indexterm" href="GocGraph.html#GocGraph-struct">GocGraph</a>
</dt>
<dt id="ientry-idm23842">GocGraph:graph, <a class="indexterm" href="GocGraph.html#GocGraph--graph">The “graph” property</a>
</dt>
<dt id="ientry-idm23852">GocGraph:height, <a class="indexterm" href="GocGraph.html#GocGraph--height">The “height” property</a>
</dt>
<dt id="ientry-idm23864">GocGraph:renderer, <a class="indexterm" href="GocGraph.html#GocGraph--renderer">The “renderer” property</a>
</dt>
<dt id="ientry-idm23874">GocGraph:width, <a class="indexterm" href="GocGraph.html#GocGraph--width">The “width” property</a>
</dt>
<dt id="ientry-idm23886">GocGraph:x, <a class="indexterm" href="GocGraph.html#GocGraph--x">The “x” property</a>
</dt>
<dt id="ientry-idm23897">GocGraph:y, <a class="indexterm" href="GocGraph.html#GocGraph--y">The “y” property</a>
</dt>
<dt id="ientry-idm23834">GocGraphClass, <a class="indexterm" href="GocGraph.html#GocGraphClass">GocGraphClass</a>
</dt>
<dt id="ientry-idm22797">GocGroup, <a class="indexterm" href="GocGroup.html#GocGroup-struct">GocGroup</a>
</dt>
<dt id="ientry-idm22827">GocGroup:x, <a class="indexterm" href="GocGroup.html#GocGroup--x">The “x” property</a>
</dt>
<dt id="ientry-idm22838">GocGroup:y, <a class="indexterm" href="GocGroup.html#GocGroup--y">The “y” property</a>
</dt>
<dt id="ientry-idm22802">GocGroupClass, <a class="indexterm" href="GocGroup.html#GocGroupClass">struct GocGroupClass</a>
</dt>
<dt id="ientry-idm29239">GOCharmapSel, <a class="indexterm" href="GOCharmapSel.html#GOCharmapSel-struct">GOCharmapSel</a>
</dt>
<dt id="ientry-idm29285">GOCharmapSel::charmap-changed, <a class="indexterm" href="GOCharmapSel.html#GOCharmapSel-charmap-changed">The “charmap-changed” signal</a>
</dt>
<dt id="ientry-idm29271">GOCharmapSel:TestDirection, <a class="indexterm" href="GOCharmapSel.html#GOCharmapSel--TestDirection">The “TestDirection” property</a>
</dt>
<dt id="ientry-idm29244">GOCharmapSelTestDirection, <a class="indexterm" href="GOCharmapSel.html#GOCharmapSelTestDirection">enum GOCharmapSelTestDirection</a>
</dt>
<dt id="ientry-idm25518">GocIntArray, <a class="indexterm" href="goffice-0.10-Utils.html#GocIntArray-struct">GocIntArray</a>
</dt>
<dt id="ientry-idm22092">GocItem, <a class="indexterm" href="GocItem.html#GocItem-struct">GocItem</a>
</dt>
<dt id="ientry-idm22255">GocItem:canvas, <a class="indexterm" href="GocItem.html#GocItem--canvas">The “canvas” property</a>
</dt>
<dt id="ientry-idm22265">GocItem:parent, <a class="indexterm" href="GocItem.html#GocItem--parent">The “parent” property</a>
</dt>
<dt id="ientry-idm22097">GocItemClass, <a class="indexterm" href="GocItem.html#GocItemClass">struct GocItemClass</a>
</dt>
<dt id="ientry-idm24003">GocLine, <a class="indexterm" href="GocLine.html#GocLine-struct">GocLine</a>
</dt>
<dt id="ientry-idm24016">GocLine:end-arrow, <a class="indexterm" href="GocLine.html#GocLine--end-arrow">The “end-arrow” property</a>
</dt>
<dt id="ientry-idm24026">GocLine:start-arrow, <a class="indexterm" href="GocLine.html#GocLine--start-arrow">The “start-arrow” property</a>
</dt>
<dt id="ientry-idm24036">GocLine:x0, <a class="indexterm" href="GocLine.html#GocLine--x0">The “x0” property</a>
</dt>
<dt id="ientry-idm24047">GocLine:x1, <a class="indexterm" href="GocLine.html#GocLine--x1">The “x1” property</a>
</dt>
<dt id="ientry-idm24058">GocLine:y0, <a class="indexterm" href="GocLine.html#GocLine--y0">The “y0” property</a>
</dt>
<dt id="ientry-idm24069">GocLine:y1, <a class="indexterm" href="GocLine.html#GocLine--y1">The “y1” property</a>
</dt>
<dt id="ientry-idm24008">GocLineClass, <a class="indexterm" href="GocLine.html#GocLineClass">GocLineClass</a>
</dt>
<dt id="ientry-idm31443">GOColor, <a class="indexterm" href="goffice-0.10-GOColor.html#GOColor">GOColor</a>
</dt>
<dt id="ientry-idm28598">GOColorGroup, <a class="indexterm" href="GOColorGroup.html#GOColorGroup-struct">GOColorGroup</a>
</dt>
<dt id="ientry-idm28611">GOColorGroup::history-changed, <a class="indexterm" href="GOColorGroup.html#GOColorGroup-history-changed">The “history-changed” signal</a>
</dt>
<dt id="ientry-idm26397">GOComboBox, <a class="indexterm" href="GOComboBox.html#GOComboBox-struct">struct GOComboBox</a>
</dt>
<dt id="ientry-idm26458">GOComboBox::pop-down-done, <a class="indexterm" href="GOComboBox.html#GOComboBox-pop-down-done">The “pop-down-done” signal</a>
</dt>
<dt id="ientry-idm26434">GOComboBox:show-arrow, <a class="indexterm" href="GOComboBox.html#GOComboBox--show-arrow">The “show-arrow” property</a>
</dt>
<dt id="ientry-idm26445">GOComboBox:title, <a class="indexterm" href="GOComboBox.html#GOComboBox--title">The “title” property</a>
</dt>
<dt id="ientry-idm26402">GOComboBoxClass, <a class="indexterm" href="GOComboBox.html#GOComboBoxClass">struct GOComboBoxClass</a>
</dt>
<dt id="ientry-idm29034">GOComboColor, <a class="indexterm" href="GOComboColor.html#GOComboColor-struct">GOComboColor</a>
</dt>
<dt id="ientry-idm29042">GOComboColor::color-changed, <a class="indexterm" href="GOComboColor.html#GOComboColor-color-changed">The “color-changed” signal</a>
</dt>
<dt id="ientry-idm29064">GOComboColor::display-custom-dialog, <a class="indexterm" href="GOComboColor.html#GOComboColor-display-custom-dialog">The “display-custom-dialog” signal</a>
</dt>
<dt id="ientry-idm26822">GOComboPixmaps, <a class="indexterm" href="GOComboPixmaps.html#GOComboPixmaps-struct">GOComboPixmaps</a>
</dt>
<dt id="ientry-idm26835">GOComboPixmaps::changed, <a class="indexterm" href="GOComboPixmaps.html#GOComboPixmaps-changed">The “changed” signal</a>
</dt>
<dt id="ientry-idm60838">GOComponent, <a class="indexterm" href="GOComponent.html#GOComponent-struct">GOComponent</a>
</dt>
<dt id="ientry-idm61018">GOComponent::changed, <a class="indexterm" href="GOComponent.html#GOComponent-changed">The “changed” signal</a>
</dt>
<dt id="ientry-idm60946">GOComponent:ascent, <a class="indexterm" href="GOComponent.html#GOComponent--ascent">The “ascent” property</a>
</dt>
<dt id="ientry-idm60958">GOComponent:descent, <a class="indexterm" href="GOComponent.html#GOComponent--descent">The “descent” property</a>
</dt>
<dt id="ientry-idm60970">GOComponent:height, <a class="indexterm" href="GOComponent.html#GOComponent--height">The “height” property</a>
</dt>
<dt id="ientry-idm60982">GOComponent:inline, <a class="indexterm" href="GOComponent.html#GOComponent--inline">The “inline” property</a>
</dt>
<dt id="ientry-idm60993">GOComponent:mime-type, <a class="indexterm" href="GOComponent.html#GOComponent--mime-type">The “mime-type” property</a>
</dt>
<dt id="ientry-idm61004">GOComponent:width, <a class="indexterm" href="GOComponent.html#GOComponent--width">The “width” property</a>
</dt>
<dt id="ientry-idm60843">GOComponentClass, <a class="indexterm" href="GOComponent.html#GOComponentClass">GOComponentClass</a>
</dt>
<dt id="ientry-idm60116">GOComponentSaxHandler, <a class="indexterm" href="GOComponent.html#GOComponentSaxHandler">GOComponentSaxHandler ()</a>
</dt>
<dt id="ientry-idm61667">GoCouponConvention, <a class="indexterm" href="GODateConventions.html#GoCouponConvention">GoCouponConvention</a>
</dt>
<dt id="ientry-idm24162">GocPixbuf, <a class="indexterm" href="GocPixbuf.html#GocPixbuf-struct">GocPixbuf</a>
</dt>
<dt id="ientry-idm24175">GocPixbuf:height, <a class="indexterm" href="GocPixbuf.html#GocPixbuf--height">The “height” property</a>
</dt>
<dt id="ientry-idm24186">GocPixbuf:pixbuf, <a class="indexterm" href="GocPixbuf.html#GocPixbuf--pixbuf">The “pixbuf” property</a>
</dt>
<dt id="ientry-idm24196">GocPixbuf:width, <a class="indexterm" href="GocPixbuf.html#GocPixbuf--width">The “width” property</a>
</dt>
<dt id="ientry-idm24207">GocPixbuf:x, <a class="indexterm" href="GocPixbuf.html#GocPixbuf--x">The “x” property</a>
</dt>
<dt id="ientry-idm24218">GocPixbuf:y, <a class="indexterm" href="GocPixbuf.html#GocPixbuf--y">The “y” property</a>
</dt>
<dt id="ientry-idm24167">GocPixbufClass, <a class="indexterm" href="GocPixbuf.html#GocPixbufClass">GocPixbufClass</a>
</dt>
<dt id="ientry-idm25149">GocPoint, <a class="indexterm" href="goffice-0.10-Structures.html#GocPoint">GocPoint</a>
</dt>
<dt id="ientry-idm25543">GocPoints, <a class="indexterm" href="goffice-0.10-Utils.html#GocPoints-struct">GocPoints</a>
</dt>
<dt id="ientry-idm24310">GocPolygon, <a class="indexterm" href="GocPolygon.html#GocPolygon-struct">GocPolygon</a>
</dt>
<dt id="ientry-idm24323">GocPolygon:fill-rule, <a class="indexterm" href="GocPolygon.html#GocPolygon--fill-rule">The “fill-rule” property</a>
</dt>
<dt id="ientry-idm24334">GocPolygon:points, <a class="indexterm" href="GocPolygon.html#GocPolygon--points">The “points” property</a>
</dt>
<dt id="ientry-idm24344">GocPolygon:sizes, <a class="indexterm" href="GocPolygon.html#GocPolygon--sizes">The “sizes” property</a>
</dt>
<dt id="ientry-idm24354">GocPolygon:use-spline, <a class="indexterm" href="GocPolygon.html#GocPolygon--use-spline">The “use-spline” property</a>
</dt>
<dt id="ientry-idm24315">GocPolygonClass, <a class="indexterm" href="GocPolygon.html#GocPolygonClass">GocPolygonClass</a>
</dt>
<dt id="ientry-idm24432">GocPolyline, <a class="indexterm" href="GocPolyline.html#GocPolyline-struct">GocPolyline</a>
</dt>
<dt id="ientry-idm24445">GocPolyline:points, <a class="indexterm" href="GocPolyline.html#GocPolyline--points">The “points” property</a>
</dt>
<dt id="ientry-idm24455">GocPolyline:use-spline, <a class="indexterm" href="GocPolyline.html#GocPolyline--use-spline">The “use-spline” property</a>
</dt>
<dt id="ientry-idm24437">GocPolylineClass, <a class="indexterm" href="GocPolyline.html#GocPolylineClass">GocPolylineClass</a>
</dt>
<dt id="ientry-idm25181">GocRect, <a class="indexterm" href="goffice-0.10-Structures.html#GocRect">GocRect</a>
</dt>
<dt id="ientry-idm24575">GocRectangle, <a class="indexterm" href="GocRectangle.html#GocRectangle-struct">GocRectangle</a>
</dt>
<dt id="ientry-idm24588">GocRectangle:height, <a class="indexterm" href="GocRectangle.html#GocRectangle--height">The “height” property</a>
</dt>
<dt id="ientry-idm24600">GocRectangle:rotation, <a class="indexterm" href="GocRectangle.html#GocRectangle--rotation">The “rotation” property</a>
</dt>
<dt id="ientry-idm24612">GocRectangle:rx, <a class="indexterm" href="GocRectangle.html#GocRectangle--rx">The “rx” property</a>
</dt>
<dt id="ientry-idm24624">GocRectangle:ry, <a class="indexterm" href="GocRectangle.html#GocRectangle--ry">The “ry” property</a>
</dt>
<dt id="ientry-idm24636">GocRectangle:type, <a class="indexterm" href="GocRectangle.html#GocRectangle--type">The “type” property</a>
</dt>
<dt id="ientry-idm24648">GocRectangle:width, <a class="indexterm" href="GocRectangle.html#GocRectangle--width">The “width” property</a>
</dt>
<dt id="ientry-idm24660">GocRectangle:x, <a class="indexterm" href="GocRectangle.html#GocRectangle--x">The “x” property</a>
</dt>
<dt id="ientry-idm24671">GocRectangle:y, <a class="indexterm" href="GocRectangle.html#GocRectangle--y">The “y” property</a>
</dt>
<dt id="ientry-idm24580">GocRectangleClass, <a class="indexterm" href="GocRectangle.html#GocRectangleClass">GocRectangleClass</a>
</dt>
<dt id="ientry-idm44723">GOCSplineType, <a class="indexterm" href="goffice-0.10-Cubic-splines.html#GOCSplineType">enum GOCSplineType</a>
</dt>
<dt id="ientry-idm23100">GocStyledItem, <a class="indexterm" href="GocStyledItem.html#GocStyledItem-struct">GocStyledItem</a>
</dt>
<dt id="ientry-idm23165">GocStyledItem::style-changed, <a class="indexterm" href="GocStyledItem.html#GocStyledItem-style-changed">The “style-changed” signal</a>
</dt>
<dt id="ientry-idm23142">GocStyledItem:scale-line-width, <a class="indexterm" href="GocStyledItem.html#GocStyledItem--scale-line-width">The “scale-line-width” property</a>
</dt>
<dt id="ientry-idm23153">GocStyledItem:style, <a class="indexterm" href="GocStyledItem.html#GocStyledItem--style">The “style” property</a>
</dt>
<dt id="ientry-idm23105">GocStyledItemClass, <a class="indexterm" href="GocStyledItem.html#GocStyledItemClass">struct GocStyledItemClass</a>
</dt>
<dt id="ientry-idm24805">GocText, <a class="indexterm" href="GocText.html#GocText-struct">GocText</a>
</dt>
<dt id="ientry-idm24818">GocText:anchor, <a class="indexterm" href="GocText.html#GocText--anchor">The “anchor” property</a>
</dt>
<dt id="ientry-idm24829">GocText:attributes, <a class="indexterm" href="GocText.html#GocText--attributes">The “attributes” property</a>
</dt>
<dt id="ientry-idm24839">GocText:clip, <a class="indexterm" href="GocText.html#GocText--clip">The “clip” property</a>
</dt>
<dt id="ientry-idm24850">GocText:clip-height, <a class="indexterm" href="GocText.html#GocText--clip-height">The “clip-height” property</a>
</dt>
<dt id="ientry-idm24862">GocText:clip-width, <a class="indexterm" href="GocText.html#GocText--clip-width">The “clip-width” property</a>
</dt>
<dt id="ientry-idm24874">GocText:rotation, <a class="indexterm" href="GocText.html#GocText--rotation">The “rotation” property</a>
</dt>
<dt id="ientry-idm24886">GocText:text, <a class="indexterm" href="GocText.html#GocText--text">The “text” property</a>
</dt>
<dt id="ientry-idm24897">GocText:wrap-width, <a class="indexterm" href="GocText.html#GocText--wrap-width">The “wrap-width” property</a>
</dt>
<dt id="ientry-idm24909">GocText:x, <a class="indexterm" href="GocText.html#GocText--x">The “x” property</a>
</dt>
<dt id="ientry-idm24920">GocText:y, <a class="indexterm" href="GocText.html#GocText--y">The “y” property</a>
</dt>
<dt id="ientry-idm24810">GocTextClass, <a class="indexterm" href="GocText.html#GocTextClass">GocTextClass</a>
</dt>
<dt id="ientry-idm25048">GocWidget, <a class="indexterm" href="GocWidget.html#GocWidget-struct">GocWidget</a>
</dt>
<dt id="ientry-idm25061">GocWidget:height, <a class="indexterm" href="GocWidget.html#GocWidget--height">The “height” property</a>
</dt>
<dt id="ientry-idm25073">GocWidget:widget, <a class="indexterm" href="GocWidget.html#GocWidget--widget">The “widget” property</a>
</dt>
<dt id="ientry-idm25083">GocWidget:width, <a class="indexterm" href="GocWidget.html#GocWidget--width">The “width” property</a>
</dt>
<dt id="ientry-idm25095">GocWidget:x, <a class="indexterm" href="GocWidget.html#GocWidget--x">The “x” property</a>
</dt>
<dt id="ientry-idm25106">GocWidget:y, <a class="indexterm" href="GocWidget.html#GocWidget--y">The “y” property</a>
</dt>
<dt id="ientry-idm25053">GocWidgetClass, <a class="indexterm" href="GocWidget.html#GocWidgetClass">GocWidgetClass</a>
</dt>
<dt id="ientry-idm19891">goc_canvas_c2w, <a class="indexterm" href="GocCanvas.html#goc-canvas-c2w">goc_canvas_c2w ()</a>
</dt>
<dt id="ientry-idm19954">goc_canvas_get_bounds, <a class="indexterm" href="GocCanvas.html#goc-canvas-get-bounds">goc_canvas_get_bounds ()</a>
</dt>
<dt id="ientry-idm19976">goc_canvas_get_cur_event, <a class="indexterm" href="GocCanvas.html#goc-canvas-get-cur-event">goc_canvas_get_cur_event ()</a>
</dt>
<dt id="ientry-idm20010">goc_canvas_get_direction, <a class="indexterm" href="GocCanvas.html#goc-canvas-get-direction">goc_canvas_get_direction ()</a>
</dt>
<dt id="ientry-idm20039">goc_canvas_get_document, <a class="indexterm" href="GocCanvas.html#goc-canvas-get-document">goc_canvas_get_document ()</a>
</dt>
<dt id="ientry-idm20075">goc_canvas_get_grabbed_item, <a class="indexterm" href="GocCanvas.html#goc-canvas-get-grabbed-item">goc_canvas_get_grabbed_item ()</a>
</dt>
<dt id="ientry-idm20109">goc_canvas_get_height, <a class="indexterm" href="GocCanvas.html#goc-canvas-get-height">goc_canvas_get_height ()</a>
</dt>
<dt id="ientry-idm20138">goc_canvas_get_item_at, <a class="indexterm" href="GocCanvas.html#goc-canvas-get-item-at">goc_canvas_get_item_at ()</a>
</dt>
<dt id="ientry-idm20192">goc_canvas_get_pixels_per_unit, <a class="indexterm" href="GocCanvas.html#goc-canvas-get-pixels-per-unit">goc_canvas_get_pixels_per_unit ()</a>
</dt>
<dt id="ientry-idm20221">goc_canvas_get_realized, <a class="indexterm" href="GocCanvas.html#goc-canvas-get-realized">goc_canvas_get_realized ()</a>
</dt>
<dt id="ientry-idm20254">goc_canvas_get_root, <a class="indexterm" href="GocCanvas.html#goc-canvas-get-root">goc_canvas_get_root ()</a>
</dt>
<dt id="ientry-idm20289">goc_canvas_get_scroll_position, <a class="indexterm" href="GocCanvas.html#goc-canvas-get-scroll-position">goc_canvas_get_scroll_position ()</a>
</dt>
<dt id="ientry-idm20334">goc_canvas_get_width, <a class="indexterm" href="GocCanvas.html#goc-canvas-get-width">goc_canvas_get_width ()</a>
</dt>
<dt id="ientry-idm20363">goc_canvas_grab_item, <a class="indexterm" href="GocCanvas.html#goc-canvas-grab-item">goc_canvas_grab_item ()</a>
</dt>
<dt id="ientry-idm20405">goc_canvas_invalidate, <a class="indexterm" href="GocCanvas.html#goc-canvas-invalidate">goc_canvas_invalidate ()</a>
</dt>
<dt id="ientry-idm20468">goc_canvas_invalidate_region, <a class="indexterm" href="GocCanvas.html#goc-canvas-invalidate-region">goc_canvas_invalidate_region ()</a>
</dt>
<dt id="ientry-idm20515">goc_canvas_render, <a class="indexterm" href="GocCanvas.html#goc-canvas-render">goc_canvas_render ()</a>
</dt>
<dt id="ientry-idm20540">goc_canvas_scroll_to, <a class="indexterm" href="GocCanvas.html#goc-canvas-scroll-to">goc_canvas_scroll_to ()</a>
</dt>
<dt id="ientry-idm20589">goc_canvas_set_direction, <a class="indexterm" href="GocCanvas.html#goc-canvas-set-direction">goc_canvas_set_direction ()</a>
</dt>
<dt id="ientry-idm20627">goc_canvas_set_document, <a class="indexterm" href="GocCanvas.html#goc-canvas-set-document">goc_canvas_set_document ()</a>
</dt>
<dt id="ientry-idm20671">goc_canvas_set_pixels_per_unit, <a class="indexterm" href="GocCanvas.html#goc-canvas-set-pixels-per-unit">goc_canvas_set_pixels_per_unit ()</a>
</dt>
<dt id="ientry-idm20707">goc_canvas_ungrab_item, <a class="indexterm" href="GocCanvas.html#goc-canvas-ungrab-item">goc_canvas_ungrab_item ()</a>
</dt>
<dt id="ientry-idm20736">goc_canvas_w2c, <a class="indexterm" href="GocCanvas.html#goc-canvas-w2c">goc_canvas_w2c ()</a>
</dt>
<dt id="ientry-idm22401">goc_group_add_child, <a class="indexterm" href="GocGroup.html#goc-group-add-child">goc_group_add_child ()</a>
</dt>
<dt id="ientry-idm22441">goc_group_adjust_bounds, <a class="indexterm" href="GocGroup.html#goc-group-adjust-bounds">goc_group_adjust_bounds ()</a>
</dt>
<dt id="ientry-idm22513">goc_group_adjust_coords, <a class="indexterm" href="GocGroup.html#goc-group-adjust-coords">goc_group_adjust_coords ()</a>
</dt>
<dt id="ientry-idm22563">goc_group_cairo_transform, <a class="indexterm" href="GocGroup.html#goc-group-cairo-transform">goc_group_cairo_transform ()</a>
</dt>
<dt id="ientry-idm22634">goc_group_clear, <a class="indexterm" href="GocGroup.html#goc-group-clear">goc_group_clear ()</a>
</dt>
<dt id="ientry-idm22662">goc_group_new, <a class="indexterm" href="GocGroup.html#goc-group-new">goc_group_new ()</a>
</dt>
<dt id="ientry-idm22700">goc_group_remove_child, <a class="indexterm" href="GocGroup.html#goc-group-remove-child">goc_group_remove_child ()</a>
</dt>
<dt id="ientry-idm22742">goc_group_set_clip_path, <a class="indexterm" href="GocGroup.html#goc-group-set-clip-path">goc_group_set_clip_path ()</a>
</dt>
<dt id="ientry-idm25318">goc_int_array_new, <a class="indexterm" href="goffice-0.10-Utils.html#goc-int-array-new">goc_int_array_new ()</a>
</dt>
<dt id="ientry-idm25354">goc_int_array_ref, <a class="indexterm" href="goffice-0.10-Utils.html#goc-int-array-ref">goc_int_array_ref ()</a>
</dt>
<dt id="ientry-idm25389">goc_int_array_unref, <a class="indexterm" href="goffice-0.10-Utils.html#goc-int-array-unref">goc_int_array_unref ()</a>
</dt>
<dt id="ientry-idm21094">goc_item_bounds_changed, <a class="indexterm" href="GocItem.html#goc-item-bounds-changed">goc_item_bounds_changed ()</a>
</dt>
<dt id="ientry-idm21122">goc_item_destroy, <a class="indexterm" href="GocItem.html#goc-item-destroy">goc_item_destroy ()</a>
</dt>
<dt id="ientry-idm21150">goc_item_distance, <a class="indexterm" href="GocItem.html#goc-item-distance">goc_item_distance ()</a>
</dt>
<dt id="ientry-idm21212">goc_item_draw, <a class="indexterm" href="GocItem.html#goc-item-draw">goc_item_draw ()</a>
</dt>
<dt id="ientry-idm21252">goc_item_draw_region, <a class="indexterm" href="GocItem.html#goc-item-draw-region">goc_item_draw_region ()</a>
</dt>
<dt id="ientry-idm21341">goc_item_get_bounds, <a class="indexterm" href="GocItem.html#goc-item-get-bounds">goc_item_get_bounds ()</a>
</dt>
<dt id="ientry-idm21405">goc_item_get_operator, <a class="indexterm" href="GocItem.html#goc-item-get-operator">goc_item_get_operator ()</a>
</dt>
<dt id="ientry-idm21437">goc_item_get_parent, <a class="indexterm" href="GocItem.html#goc-item-get-parent">goc_item_get_parent ()</a>
</dt>
<dt id="ientry-idm21471">goc_item_get_style_context, <a class="indexterm" href="GocItem.html#goc-item-get-style-context">goc_item_get_style_context ()</a>
</dt>
<dt id="ientry-idm21503">goc_item_get_window, <a class="indexterm" href="GocItem.html#goc-item-get-window">goc_item_get_window ()</a>
</dt>
<dt id="ientry-idm21541">goc_item_grab, <a class="indexterm" href="GocItem.html#goc-item-grab">goc_item_grab ()</a>
</dt>
<dt id="ientry-idm21568">goc_item_hide, <a class="indexterm" href="GocItem.html#goc-item-hide">goc_item_hide ()</a>
</dt>
<dt id="ientry-idm21596">goc_item_invalidate, <a class="indexterm" href="GocItem.html#goc-item-invalidate">goc_item_invalidate ()</a>
</dt>
<dt id="ientry-idm21624">goc_item_is_visible, <a class="indexterm" href="GocItem.html#goc-item-is-visible">goc_item_is_visible ()</a>
</dt>
<dt id="ientry-idm21656">goc_item_lower, <a class="indexterm" href="GocItem.html#goc-item-lower">goc_item_lower ()</a>
</dt>
<dt id="ientry-idm21696">goc_item_lower_to_bottom, <a class="indexterm" href="GocItem.html#goc-item-lower-to-bottom">goc_item_lower_to_bottom ()</a>
</dt>
<dt id="ientry-idm21726">goc_item_new, <a class="indexterm" href="GocItem.html#goc-item-new">goc_item_new ()</a>
</dt>
<dt id="ientry-idm21796">goc_item_raise, <a class="indexterm" href="GocItem.html#goc-item-raise">goc_item_raise ()</a>
</dt>
<dt id="ientry-idm21836">goc_item_raise_to_top, <a class="indexterm" href="GocItem.html#goc-item-raise-to-top">goc_item_raise_to_top ()</a>
</dt>
<dt id="ientry-idm21866">goc_item_set, <a class="indexterm" href="GocItem.html#goc-item-set">goc_item_set ()</a>
</dt>
<dt id="ientry-idm21915">goc_item_set_operator, <a class="indexterm" href="GocItem.html#goc-item-set-operator">goc_item_set_operator ()</a>
</dt>
<dt id="ientry-idm21956">goc_item_set_transform, <a class="indexterm" href="GocItem.html#goc-item-set-transform">goc_item_set_transform ()</a>
</dt>
<dt id="ientry-idm21997">goc_item_set_visible, <a class="indexterm" href="GocItem.html#goc-item-set-visible">goc_item_set_visible ()</a>
</dt>
<dt id="ientry-idm22034">goc_item_show, <a class="indexterm" href="GocItem.html#goc-item-show">goc_item_show ()</a>
</dt>
<dt id="ientry-idm22062">goc_item_ungrab, <a class="indexterm" href="GocItem.html#goc-item-ungrab">goc_item_ungrab ()</a>
</dt>
<dt id="ientry-idm25419">goc_points_new, <a class="indexterm" href="goffice-0.10-Utils.html#goc-points-new">goc_points_new ()</a>
</dt>
<dt id="ientry-idm25455">goc_points_ref, <a class="indexterm" href="goffice-0.10-Utils.html#goc-points-ref">goc_points_ref ()</a>
</dt>
<dt id="ientry-idm25488">goc_points_unref, <a class="indexterm" href="goffice-0.10-Utils.html#goc-points-unref">goc_points_unref ()</a>
</dt>
<dt id="ientry-idm23026">goc_styled_item_get_scale_line_width, <a class="indexterm" href="GocStyledItem.html#goc-styled-item-get-scale-line-width">goc_styled_item_get_scale_line_width ()</a>
</dt>
<dt id="ientry-idm22971">goc_styled_item_set_cairo_line, <a class="indexterm" href="GocStyledItem.html#goc-styled-item-set-cairo-line">goc_styled_item_set_cairo_line ()</a>
</dt>
<dt id="ientry-idm23060">goc_styled_item_set_scale_line_width, <a class="indexterm" href="GocStyledItem.html#goc-styled-item-set-scale-line-width">goc_styled_item_set_scale_line_width ()</a>
</dt>
<dt id="ientry-idm25024">goc_widget_set_bounds, <a class="indexterm" href="GocWidget.html#goc-widget-set-bounds">goc_widget_set_bounds ()</a>
</dt>
<dt id="ientry-idm41024">GOData, <a class="indexterm" href="GOData.html#GOData-struct">GOData</a>
</dt>
<dt id="ientry-idm41032">GOData::changed, <a class="indexterm" href="GOData.html#GOData-changed">The “changed” signal</a>
</dt>
<dt id="ientry-idm41584">GODataMatrix, <a class="indexterm" href="GODataMatrix.html#GODataMatrix-struct">GODataMatrix</a>
</dt>
<dt id="ientry-idm42182">GODataMatrixVal, <a class="indexterm" href="goffice-0.10-Simple-data.html#GODataMatrixVal-struct">GODataMatrixVal</a>
</dt>
<dt id="ientry-idm41139">GODataScalar, <a class="indexterm" href="GODataScalar.html#GODataScalar-struct">GODataScalar</a>
</dt>
<dt id="ientry-idm42187">GODataScalarStr, <a class="indexterm" href="goffice-0.10-Simple-data.html#GODataScalarStr-struct">GODataScalarStr</a>
</dt>
<dt id="ientry-idm42192">GODataScalarVal, <a class="indexterm" href="goffice-0.10-Simple-data.html#GODataScalarVal-struct">GODataScalarVal</a>
</dt>
<dt id="ientry-idm41356">GODataVector, <a class="indexterm" href="goffice-0.10-GODataCVector.html#GODataVector-struct">GODataVector</a>
</dt>
<dt id="ientry-idm42197">GODataVectorStr, <a class="indexterm" href="goffice-0.10-Simple-data.html#GODataVectorStr-struct">GODataVectorStr</a>
</dt>
<dt id="ientry-idm42202">GODataVectorVal, <a class="indexterm" href="goffice-0.10-Simple-data.html#GODataVectorVal-struct">GODataVectorVal</a>
</dt>
<dt id="ientry-idm61645">GODateConventions, <a class="indexterm" href="GODateConventions.html#GODateConventions-struct">GODateConventions</a>
</dt>
<dt id="ientry-idm38529">GODirection, <a class="indexterm" href="goffice-0.10-Geometry-helpers.html#GODirection">enum GODirection</a>
</dt>
<dt id="ientry-idm48311">GODistance, <a class="indexterm" href="goffice-0.10-Units.html#GODistance">GODistance</a>
</dt>
<dt id="ientry-idm45214">GODistribution, <a class="indexterm" href="GODistribution.html#GODistribution-struct">GODistribution</a>
</dt>
<dt id="ientry-idm45280">GODistribution:location, <a class="indexterm" href="GODistribution.html#GODistribution--location">The “location” property</a>
</dt>
<dt id="ientry-idm45291">GODistribution:scale, <a class="indexterm" href="GODistribution.html#GODistribution--scale">The “scale” property</a>
</dt>
<dt id="ientry-idm45219">GODistributionType, <a class="indexterm" href="GODistribution.html#GODistributionType">enum GODistributionType</a>
</dt>
<dt id="ientry-idm56097">GODoc, <a class="indexterm" href="GODoc.html#GODoc-struct">GODoc</a>
</dt>
<dt id="ientry-idm56161">GODoc::metadata-changed, <a class="indexterm" href="GODoc.html#GODoc-metadata-changed">The “metadata-changed” signal</a>
</dt>
<dt id="ientry-idm56175">GODoc::metadata-update, <a class="indexterm" href="GODoc.html#GODoc-metadata-update">The “metadata-update” signal</a>
</dt>
<dt id="ientry-idm56105">GODoc:dirty, <a class="indexterm" href="GODoc.html#GODoc--dirty">The “dirty” property</a>
</dt>
<dt id="ientry-idm56116">GODoc:dirty-time, <a class="indexterm" href="GODoc.html#GODoc--dirty-time">The “dirty-time” property</a>
</dt>
<dt id="ientry-idm56127">GODoc:modtime, <a class="indexterm" href="GODoc.html#GODoc--modtime">The “modtime” property</a>
</dt>
<dt id="ientry-idm56137">GODoc:pristine, <a class="indexterm" href="GODoc.html#GODoc--pristine">The “pristine” property</a>
</dt>
<dt id="ientry-idm56148">GODoc:uri, <a class="indexterm" href="GODoc.html#GODoc--uri">The “uri” property</a>
</dt>
<dt id="ientry-idm55120">GODocControl, <a class="indexterm" href="GODocControl.html#GODocControl-struct">GODocControl</a>
</dt>
<dt id="ientry-idm55125">GODocControlState, <a class="indexterm" href="GODocControl.html#GODocControlState">enum GODocControlState</a>
</dt>
<dt id="ientry-idm52145">GODotDot, <a class="indexterm" href="goffice-0.10-File-utilities.html#GODotDot">enum GODotDot</a>
</dt>
<dt id="ientry-idm35884">GODrawingAnchor, <a class="indexterm" href="goffice-0.10-Miscellaneous.html#GODrawingAnchor">GODrawingAnchor</a>
</dt>
<dt id="ientry-idm35917">GODrawingAnchorDir, <a class="indexterm" href="goffice-0.10-Miscellaneous.html#GODrawingAnchorDir">enum GODrawingAnchorDir</a>
</dt>
<dt id="ientry-idm31936">GOEditor, <a class="indexterm" href="GOEditor.html#GOEditor-struct">GOEditor</a>
</dt>
<dt id="ientry-idm40192">GOEmf, <a class="indexterm" href="goffice-0.10-Windows-Metafiles-support.html#GOEmf-struct">GOEmf</a>
</dt>
<dt id="ientry-idm56680">GOErrorInfo, <a class="indexterm" href="GOErrorInfo.html#GOErrorInfo-struct">GOErrorInfo</a>
</dt>
<dt id="ientry-idm52380">GOFileFormatLevel, <a class="indexterm" href="goffice-0.10-Files.html#GOFileFormatLevel">enum GOFileFormatLevel</a>
</dt>
<dt id="ientry-idm53370">GOFileOpener, <a class="indexterm" href="goffice-0.10-GOFileOpeners.html#GOFileOpener-struct">GOFileOpener</a>
</dt>
<dt id="ientry-idm53415">GOFileOpener:description, <a class="indexterm" href="goffice-0.10-GOFileOpeners.html#GOFileOpener--description">The “description” property</a>
</dt>
<dt id="ientry-idm53426">GOFileOpener:id, <a class="indexterm" href="goffice-0.10-GOFileOpeners.html#GOFileOpener--id">The “id” property</a>
</dt>
<dt id="ientry-idm53437">GOFileOpener:interactive-only, <a class="indexterm" href="goffice-0.10-GOFileOpeners.html#GOFileOpener--interactive-only">The “interactive-only” property</a>
</dt>
<dt id="ientry-idm53375">GOFileOpenerClass, <a class="indexterm" href="goffice-0.10-GOFileOpeners.html#GOFileOpenerClass">GOFileOpenerClass</a>
</dt>
<dt id="ientry-idm52690">GOFileOpenerOpenFunc, <a class="indexterm" href="goffice-0.10-GOFileOpeners.html#GOFileOpenerOpenFunc">GOFileOpenerOpenFunc ()</a>
</dt>
<dt id="ientry-idm52711">GOFileOpenerOpenFuncWithEnc, <a class="indexterm" href="goffice-0.10-GOFileOpeners.html#GOFileOpenerOpenFuncWithEnc">GOFileOpenerOpenFuncWithEnc ()</a>
</dt>
<dt id="ientry-idm52735">GOFileOpenerProbeFunc, <a class="indexterm" href="goffice-0.10-GOFileOpeners.html#GOFileOpenerProbeFunc">GOFileOpenerProbeFunc ()</a>
</dt>
<dt id="ientry-idm52175">GOFilePermissions, <a class="indexterm" href="goffice-0.10-File-utilities.html#GOFilePermissions-struct">struct GOFilePermissions</a>
</dt>
<dt id="ientry-idm52435">GOFileProbeLevel, <a class="indexterm" href="goffice-0.10-Files.html#GOFileProbeLevel">enum GOFileProbeLevel</a>
</dt>
<dt id="ientry-idm54344">GOFileSaver, <a class="indexterm" href="GOFileSaver.html#GOFileSaver-struct">GOFileSaver</a>
</dt>
<dt id="ientry-idm54481">GOFileSaver::set-export-options, <a class="indexterm" href="GOFileSaver.html#GOFileSaver-set-export-options">The “set-export-options” signal</a>
</dt>
<dt id="ientry-idm54380">GOFileSaver:description, <a class="indexterm" href="GOFileSaver.html#GOFileSaver--description">The “description” property</a>
</dt>
<dt id="ientry-idm54391">GOFileSaver:extension, <a class="indexterm" href="GOFileSaver.html#GOFileSaver--extension">The “extension” property</a>
</dt>
<dt id="ientry-idm54402">GOFileSaver:format-level, <a class="indexterm" href="GOFileSaver.html#GOFileSaver--format-level">The “format-level” property</a>
</dt>
<dt id="ientry-idm54413">GOFileSaver:id, <a class="indexterm" href="GOFileSaver.html#GOFileSaver--id">The “id” property</a>
</dt>
<dt id="ientry-idm54424">GOFileSaver:interactive-only, <a class="indexterm" href="GOFileSaver.html#GOFileSaver--interactive-only">The “interactive-only” property</a>
</dt>
<dt id="ientry-idm54435">GOFileSaver:mime-type, <a class="indexterm" href="GOFileSaver.html#GOFileSaver--mime-type">The “mime-type” property</a>
</dt>
<dt id="ientry-idm54446">GOFileSaver:overwrite, <a class="indexterm" href="GOFileSaver.html#GOFileSaver--overwrite">The “overwrite” property</a>
</dt>
<dt id="ientry-idm54457">GOFileSaver:scope, <a class="indexterm" href="GOFileSaver.html#GOFileSaver--scope">The “scope” property</a>
</dt>
<dt id="ientry-idm54468">GOFileSaver:sheet-selection, <a class="indexterm" href="GOFileSaver.html#GOFileSaver--sheet-selection">The “sheet-selection” property</a>
</dt>
<dt id="ientry-idm54349">GOFileSaverClass, <a class="indexterm" href="GOFileSaver.html#GOFileSaverClass">GOFileSaverClass</a>
</dt>
<dt id="ientry-idm53708">GOFileSaverSaveFunc, <a class="indexterm" href="GOFileSaver.html#GOFileSaverSaveFunc">GOFileSaverSaveFunc ()</a>
</dt>
<dt id="ientry-idm52466">GOFileSaveScope, <a class="indexterm" href="goffice-0.10-Files.html#GOFileSaveScope">enum GOFileSaveScope</a>
</dt>
<dt id="ientry-idm36158">GOFontScript, <a class="indexterm" href="goffice-0.10-Miscellaneous.html#GOFontScript">enum GOFontScript</a>
</dt>
<dt id="ientry-idm29592">GOFontSel, <a class="indexterm" href="GOFontSel.html#GOFontSel-struct">GOFontSel</a>
</dt>
<dt id="ientry-idm29699">GOFontSel::font-changed, <a class="indexterm" href="GOFontSel.html#GOFontSel-font-changed">The “font-changed” signal</a>
</dt>
<dt id="ientry-idm29600">GOFontSel:color-default, <a class="indexterm" href="GOFontSel.html#GOFontSel--color-default">The “color-default” property</a>
</dt>
<dt id="ientry-idm29611">GOFontSel:color-group, <a class="indexterm" href="GOFontSel.html#GOFontSel--color-group">The “color-group” property</a>
</dt>
<dt id="ientry-idm29621">GOFontSel:color-unset-text, <a class="indexterm" href="GOFontSel.html#GOFontSel--color-unset-text">The “color-unset-text” property</a>
</dt>
<dt id="ientry-idm29632">GOFontSel:show-color, <a class="indexterm" href="GOFontSel.html#GOFontSel--show-color">The “show-color” property</a>
</dt>
<dt id="ientry-idm29643">GOFontSel:show-script, <a class="indexterm" href="GOFontSel.html#GOFontSel--show-script">The “show-script” property</a>
</dt>
<dt id="ientry-idm29654">GOFontSel:show-strikethrough, <a class="indexterm" href="GOFontSel.html#GOFontSel--show-strikethrough">The “show-strikethrough” property</a>
</dt>
<dt id="ientry-idm29665">GOFontSel:show-style, <a class="indexterm" href="GOFontSel.html#GOFontSel--show-style">The “show-style” property</a>
</dt>
<dt id="ientry-idm29676">GOFontSel:show-underline, <a class="indexterm" href="GOFontSel.html#GOFontSel--show-underline">The “show-underline” property</a>
</dt>
<dt id="ientry-idm29687">GOFontSel:underline-picker, <a class="indexterm" href="GOFontSel.html#GOFontSel--underline-picker">The “underline-picker” property</a>
</dt>
<dt id="ientry-idm64791">GOFormat, <a class="indexterm" href="GOFormat.html#GOFormat-struct">GOFormat</a>
</dt>
<dt id="ientry-idm64796">GOFormatCurrency, <a class="indexterm" href="GOFormat.html#GOFormatCurrency-struct">GOFormatCurrency</a>
</dt>
<dt id="ientry-idm64845">GOFormatDetails, <a class="indexterm" href="GOFormat.html#GOFormatDetails-struct">GOFormatDetails</a>
</dt>
<dt id="ientry-idm65080">GOFormatFamily, <a class="indexterm" href="GOFormat.html#GOFormatFamily">enum GOFormatFamily</a>
</dt>
<dt id="ientry-idm65164">GOFormatMagic, <a class="indexterm" href="GOFormat.html#GOFormatMagic">enum GOFormatMagic</a>
</dt>
<dt id="ientry-idm62908">GOFormatMeasure, <a class="indexterm" href="GOFormat.html#GOFormatMeasure">GOFormatMeasure ()</a>
</dt>
<dt id="ientry-idm65224">GOFormatNumberError, <a class="indexterm" href="GOFormat.html#GOFormatNumberError">enum GOFormatNumberError</a>
</dt>
<dt id="ientry-idm30078">GOFormatSel, <a class="indexterm" href="GOFormatSel.html#GOFormatSel-struct">GOFormatSel</a>
</dt>
<dt id="ientry-idm30086">GOFormatSel::format-changed, <a class="indexterm" href="GOFormatSel.html#GOFormatSel-format-changed">The “format-changed” signal</a>
</dt>
<dt id="ientry-idm30102">GOFormatSel::generate-preview, <a class="indexterm" href="GOFormatSel.html#GOFormatSel-generate-preview">The “generate-preview” signal</a>
</dt>
<dt id="ientry-idm19608">Gog3DBox, <a class="indexterm" href="Gog3DBox.html#Gog3DBox-struct">Gog3DBox</a>
</dt>
<dt id="ientry-idm19621">Gog3DBox:fov, <a class="indexterm" href="Gog3DBox.html#Gog3DBox--fov">The “fov” property</a>
</dt>
<dt id="ientry-idm19633">Gog3DBox:phi, <a class="indexterm" href="Gog3DBox.html#Gog3DBox--phi">The “phi” property</a>
</dt>
<dt id="ientry-idm19645">Gog3DBox:psi, <a class="indexterm" href="Gog3DBox.html#Gog3DBox--psi">The “psi” property</a>
</dt>
<dt id="ientry-idm19657">Gog3DBox:theta, <a class="indexterm" href="Gog3DBox.html#Gog3DBox--theta">The “theta” property</a>
</dt>
<dt id="ientry-idm19613">Gog3DBoxView, <a class="indexterm" href="Gog3DBox.html#Gog3DBoxView-struct">Gog3DBoxView</a>
</dt>
<dt id="ientry-idm4003">GogAxisBase, <a class="indexterm" href="GogAxisLine.html#GogAxisBase-struct">GogAxisBase</a>
</dt>
<dt id="ientry-idm4082">GogAxisBase:cross-axis-id, <a class="indexterm" href="GogAxisLine.html#GogAxisBase--cross-axis-id">The “cross-axis-id” property</a>
</dt>
<dt id="ientry-idm4093">GogAxisBase:major-tick-in, <a class="indexterm" href="GogAxisLine.html#GogAxisBase--major-tick-in">The “major-tick-in” property</a>
</dt>
<dt id="ientry-idm4104">GogAxisBase:major-tick-labeled, <a class="indexterm" href="GogAxisLine.html#GogAxisBase--major-tick-labeled">The “major-tick-labeled” property</a>
</dt>
<dt id="ientry-idm4115">GogAxisBase:major-tick-out, <a class="indexterm" href="GogAxisLine.html#GogAxisBase--major-tick-out">The “major-tick-out” property</a>
</dt>
<dt id="ientry-idm4126">GogAxisBase:major-tick-size-pts, <a class="indexterm" href="GogAxisLine.html#GogAxisBase--major-tick-size-pts">The “major-tick-size-pts” property</a>
</dt>
<dt id="ientry-idm4138">GogAxisBase:minor-tick-in, <a class="indexterm" href="GogAxisLine.html#GogAxisBase--minor-tick-in">The “minor-tick-in” property</a>
</dt>
<dt id="ientry-idm4149">GogAxisBase:minor-tick-out, <a class="indexterm" href="GogAxisLine.html#GogAxisBase--minor-tick-out">The “minor-tick-out” property</a>
</dt>
<dt id="ientry-idm4160">GogAxisBase:minor-tick-size-pts, <a class="indexterm" href="GogAxisLine.html#GogAxisBase--minor-tick-size-pts">The “minor-tick-size-pts” property</a>
</dt>
<dt id="ientry-idm4172">GogAxisBase:padding-pts, <a class="indexterm" href="GogAxisLine.html#GogAxisBase--padding-pts">The “padding-pts” property</a>
</dt>
<dt id="ientry-idm4184">GogAxisBase:pos, <a class="indexterm" href="GogAxisLine.html#GogAxisBase--pos">The “pos” property</a>
</dt>
<dt id="ientry-idm4196">GogAxisBase:pos-str, <a class="indexterm" href="GogAxisLine.html#GogAxisBase--pos-str">The “pos-str” property</a>
</dt>
<dt id="ientry-idm19503">GogAxisColorMap, <a class="indexterm" href="GogAxisColorMap.html#GogAxisColorMap-struct">GogAxisColorMap</a>
</dt>
<dt id="ientry-idm19511">GogAxisColorMap:resource-type, <a class="indexterm" href="GogAxisColorMap.html#GogAxisColorMap--resource-type">The “resource-type” property</a>
</dt>
<dt id="ientry-idm18953">GogAxisColorMapHandler, <a class="indexterm" href="GogAxisColorMap.html#GogAxisColorMapHandler">GogAxisColorMapHandler ()</a>
</dt>
<dt id="ientry-idm3370">GogAxisElemType, <a class="indexterm" href="GogAxis.html#GogAxisElemType">enum GogAxisElemType</a>
</dt>
<dt id="ientry-idm4008">GogAxisLine, <a class="indexterm" href="GogAxisLine.html#GogAxisLine-struct">GogAxisLine</a>
</dt>
<dt id="ientry-idm4207">GogAxisLine:assigned-format-string-XL, <a class="indexterm" href="GogAxisLine.html#GogAxisLine--assigned-format-string-XL">The “assigned-format-string-XL” property</a>
</dt>
<dt id="ientry-idm18740">GogAxisMap, <a class="indexterm" href="GogAxisMap.html#GogAxisMap-struct">GogAxisMap</a>
</dt>
<dt id="ientry-idm3578">GogAxisMetrics, <a class="indexterm" href="GogAxis.html#GogAxisMetrics">enum GogAxisMetrics</a>
</dt>
<dt id="ientry-idm3421">GogAxisPolarUnit, <a class="indexterm" href="GogAxis.html#GogAxisPolarUnit">enum GogAxisPolarUnit</a>
</dt>
<dt id="ientry-idm4013">GogAxisPosition, <a class="indexterm" href="GogAxisLine.html#GogAxisPosition">enum GogAxisPosition</a>
</dt>
<dt id="ientry-idm3499">GogAxisSet, <a class="indexterm" href="GogAxis.html#GogAxisSet">enum GogAxisSet</a>
</dt>
<dt id="ientry-idm3457">GogAxisTick, <a class="indexterm" href="GogAxis.html#GogAxisTick">GogAxisTick</a>
</dt>
<dt id="ientry-idm4049">GogAxisTickTypes, <a class="indexterm" href="GogAxisLine.html#GogAxisTickTypes">enum GogAxisTickTypes</a>
</dt>
<dt id="ientry-idm3626">GogAxisType, <a class="indexterm" href="GogAxis.html#GogAxisType">enum GogAxisType</a>
</dt>
<dt id="ientry-idm17912">GogChartMap, <a class="indexterm" href="GogChartMap.html#GogChartMap-struct">GogChartMap</a>
</dt>
<dt id="ientry-idm17917">GogChartMapPolarData, <a class="indexterm" href="GogChartMap.html#GogChartMapPolarData">GogChartMapPolarData</a>
</dt>
<dt id="ientry-idm4384">GogColorScale, <a class="indexterm" href="GogColorScale.html#GogColorScale-struct">GogColorScale</a>
</dt>
<dt id="ientry-idm4392">GogColorScale:axis, <a class="indexterm" href="GogColorScale.html#GogColorScale--axis">The “axis” property</a>
</dt>
<dt id="ientry-idm4403">GogColorScale:horizontal, <a class="indexterm" href="GogColorScale.html#GogColorScale--horizontal">The “horizontal” property</a>
</dt>
<dt id="ientry-idm4414">GogColorScale:tick-size-pts, <a class="indexterm" href="GogColorScale.html#GogColorScale--tick-size-pts">The “tick-size-pts” property</a>
</dt>
<dt id="ientry-idm4426">GogColorScale:width, <a class="indexterm" href="GogColorScale.html#GogColorScale--width">The “width” property</a>
</dt>
<dt id="ientry-idm13110">GogDataAllocator, <a class="indexterm" href="GogDataEditor.html#GogDataAllocator-struct">GogDataAllocator</a>
</dt>
<dt id="ientry-idm13115">GogDataAllocatorClass, <a class="indexterm" href="GogDataEditor.html#GogDataAllocatorClass">GogDataAllocatorClass</a>
</dt>
<dt id="ientry-idm6126">GogDataDuplicator, <a class="indexterm" href="GogObject.html#GogDataDuplicator">GogDataDuplicator ()</a>
</dt>
<dt id="ientry-idm13155">GogDataEditorClass, <a class="indexterm" href="GogDataEditor.html#GogDataEditorClass">GogDataEditorClass</a>
</dt>
<dt id="ientry-idm5381">GogDataLabel, <a class="indexterm" href="GogSeriesLabels.html#GogDataLabel-struct">GogDataLabel</a>
</dt>
<dt id="ientry-idm5502">GogDataLabel:format, <a class="indexterm" href="GogSeriesLabels.html#GogDataLabel--format">The “format” property</a>
</dt>
<dt id="ientry-idm5513">GogDataLabel:index, <a class="indexterm" href="GogSeriesLabels.html#GogDataLabel--index">The “index” property</a>
</dt>
<dt id="ientry-idm5525">GogDataLabel:offset, <a class="indexterm" href="GogSeriesLabels.html#GogDataLabel--offset">The “offset” property</a>
</dt>
<dt id="ientry-idm5537">GogDataLabel:position, <a class="indexterm" href="GogSeriesLabels.html#GogDataLabel--position">The “position” property</a>
</dt>
<dt id="ientry-idm13594">GogDatasetClass, <a class="indexterm" href="GogDataset.html#GogDatasetClass">GogDatasetClass</a>
</dt>
<dt id="ientry-idm13644">GogDatasetElement, <a class="indexterm" href="GogDataset.html#GogDatasetElement">GogDatasetElement</a>
</dt>
<dt id="ientry-idm13196">GogDataType, <a class="indexterm" href="GogDataEditor.html#GogDataType">enum GogDataType</a>
</dt>
<dt id="ientry-idm11036">GogDimType, <a class="indexterm" href="GogSeries.html#GogDimType">enum GogDimType</a>
</dt>
<dt id="ientry-idm1484">GogEnumFunc, <a class="indexterm" href="GogChart.html#GogEnumFunc">GogEnumFunc ()</a>
</dt>
<dt id="ientry-idm38365">GOGeometryAABR, <a class="indexterm" href="goffice-0.10-Geometry-helpers.html#GOGeometryAABR">GOGeometryAABR</a>
</dt>
<dt id="ientry-idm38370">GOGeometryOBR, <a class="indexterm" href="goffice-0.10-Geometry-helpers.html#GOGeometryOBR">GOGeometryOBR</a>
</dt>
<dt id="ientry-idm38428">GOGeometryRotationType, <a class="indexterm" href="goffice-0.10-Geometry-helpers.html#GOGeometryRotationType">enum GOGeometryRotationType</a>
</dt>
<dt id="ientry-idm38470">GOGeometrySide, <a class="indexterm" href="goffice-0.10-Geometry-helpers.html#GOGeometrySide">enum GOGeometrySide</a>
</dt>
<dt id="ientry-idm4900">GogErrorBar, <a class="indexterm" href="GogErrorBar.html#GogErrorBar-struct">GogErrorBar</a>
</dt>
<dt id="ientry-idm4905">GogErrorBarDirection, <a class="indexterm" href="GogErrorBar.html#GogErrorBarDirection">enum GogErrorBarDirection</a>
</dt>
<dt id="ientry-idm4941">GogErrorBarDisplay, <a class="indexterm" href="GogErrorBar.html#GogErrorBarDisplay">enum GogErrorBarDisplay</a>
</dt>
<dt id="ientry-idm4977">GogErrorBarType, <a class="indexterm" href="GogErrorBar.html#GogErrorBarType">enum GogErrorBarType</a>
</dt>
<dt id="ientry-idm1121">GogGraph, <a class="indexterm" href="GogGraph.html#GogGraph-struct">GogGraph</a>
</dt>
<dt id="ientry-idm1237">GogGraph::add-data, <a class="indexterm" href="GogGraph.html#GogGraph-add-data">The “add-data” signal</a>
</dt>
<dt id="ientry-idm1284">GogGraph::remove-data, <a class="indexterm" href="GogGraph.html#GogGraph-remove-data">The “remove-data” signal</a>
</dt>
<dt id="ientry-idm1170">GogGraph:document, <a class="indexterm" href="GogGraph.html#GogGraph--document">The “document” property</a>
</dt>
<dt id="ientry-idm1180">GogGraph:height-pts, <a class="indexterm" href="GogGraph.html#GogGraph--height-pts">The “height-pts” property</a>
</dt>
<dt id="ientry-idm1192">GogGraph:theme, <a class="indexterm" href="GogGraph.html#GogGraph--theme">The “theme” property</a>
</dt>
<dt id="ientry-idm1202">GogGraph:theme-name, <a class="indexterm" href="GogGraph.html#GogGraph--theme-name">The “theme-name” property</a>
</dt>
<dt id="ientry-idm1213">GogGraph:width-pts, <a class="indexterm" href="GogGraph.html#GogGraph--width-pts">The “width-pts” property</a>
</dt>
<dt id="ientry-idm1126">GogGraphClass, <a class="indexterm" href="GogGraph.html#GogGraphClass">GogGraphClass</a>
</dt>
<dt id="ientry-idm1162">GogGraphView, <a class="indexterm" href="GogGraph.html#GogGraphView-struct">GogGraphView</a>
</dt>
<dt id="ientry-idm1331">GogGraphView::selection-changed, <a class="indexterm" href="GogGraph.html#GogGraphView-selection-changed">The “selection-changed” signal</a>
</dt>
<dt id="ientry-idm1225">GogGraphView:renderer, <a class="indexterm" href="GogGraph.html#GogGraphView--renderer">The “renderer” property</a>
</dt>
<dt id="ientry-idm2048">GogGridType, <a class="indexterm" href="GogGrid.html#GogGridType">enum GogGridType</a>
</dt>
<dt id="ientry-idm7474">GogManualSizeMode, <a class="indexterm" href="GogObject.html#GogManualSizeMode">enum GogManualSizeMode</a>
</dt>
<dt id="ientry-idm11085">GogMSDimType, <a class="indexterm" href="GogSeries.html#GogMSDimType">enum GogMSDimType</a>
</dt>
<dt id="ientry-idm7510">GogObject, <a class="indexterm" href="GogObject.html#GogObject-struct">GogObject</a>
</dt>
<dt id="ientry-idm8122">GogObject::changed, <a class="indexterm" href="GogObject.html#GogObject-changed">The “changed” signal</a>
</dt>
<dt id="ientry-idm8138">GogObject::child-added, <a class="indexterm" href="GogObject.html#GogObject-child-added">The “child-added” signal</a>
</dt>
<dt id="ientry-idm8184">GogObject::child-name-changed, <a class="indexterm" href="GogObject.html#GogObject-child-name-changed">The “child-name-changed” signal</a>
</dt>
<dt id="ientry-idm8200">GogObject::child-removed, <a class="indexterm" href="GogObject.html#GogObject-child-removed">The “child-removed” signal</a>
</dt>
<dt id="ientry-idm8246">GogObject::children-reordered, <a class="indexterm" href="GogObject.html#GogObject-children-reordered">The “children-reordered” signal</a>
</dt>
<dt id="ientry-idm8260">GogObject::name-changed, <a class="indexterm" href="GogObject.html#GogObject-name-changed">The “name-changed” signal</a>
</dt>
<dt id="ientry-idm8274">GogObject::update-editor, <a class="indexterm" href="GogObject.html#GogObject-update-editor">The “update-editor” signal</a>
</dt>
<dt id="ientry-idm8031">GogObject:alignment, <a class="indexterm" href="GogObject.html#GogObject--alignment">The “alignment” property</a>
</dt>
<dt id="ientry-idm8042">GogObject:anchor, <a class="indexterm" href="GogObject.html#GogObject--anchor">The “anchor” property</a>
</dt>
<dt id="ientry-idm8053">GogObject:compass, <a class="indexterm" href="GogObject.html#GogObject--compass">The “compass” property</a>
</dt>
<dt id="ientry-idm8064">GogObject:id, <a class="indexterm" href="GogObject.html#GogObject--id">The “id” property</a>
</dt>
<dt id="ientry-idm8076">GogObject:invisible, <a class="indexterm" href="GogObject.html#GogObject--invisible">The “invisible” property</a>
</dt>
<dt id="ientry-idm8087">GogObject:is-position-manual, <a class="indexterm" href="GogObject.html#GogObject--is-position-manual">The “is-position-manual” property</a>
</dt>
<dt id="ientry-idm8098">GogObject:manual-size, <a class="indexterm" href="GogObject.html#GogObject--manual-size">The “manual-size” property</a>
</dt>
<dt id="ientry-idm8109">GogObject:position, <a class="indexterm" href="GogObject.html#GogObject--position">The “position” property</a>
</dt>
<dt id="ientry-idm7515">GogObjectClass, <a class="indexterm" href="GogObject.html#GogObjectClass">GogObjectClass</a>
</dt>
<dt id="ientry-idm7653">GogObjectNamingConv, <a class="indexterm" href="GogObject.html#GogObjectNamingConv">enum GogObjectNamingConv</a>
</dt>
<dt id="ientry-idm7794">GogObjectPosition, <a class="indexterm" href="GogObject.html#GogObjectPosition">enum GogObjectPosition</a>
</dt>
<dt id="ientry-idm7683">GogObjectRole, <a class="indexterm" href="GogObject.html#GogObjectRole-struct">GogObjectRole</a>
</dt>
<dt id="ientry-idm8648">GogOutlinedObject, <a class="indexterm" href="GogOutlinedView.html#GogOutlinedObject-struct">GogOutlinedObject</a>
</dt>
<dt id="ientry-idm8699">GogOutlinedObject:padding-pts, <a class="indexterm" href="GogOutlinedView.html#GogOutlinedObject--padding-pts">The “padding-pts” property</a>
</dt>
<dt id="ientry-idm8653">GogOutlinedObjectClass, <a class="indexterm" href="GogOutlinedView.html#GogOutlinedObjectClass">GogOutlinedObjectClass</a>
</dt>
<dt id="ientry-idm8658">GogOutlinedView, <a class="indexterm" href="GogOutlinedView.html#GogOutlinedView-struct">GogOutlinedView</a>
</dt>
<dt id="ientry-idm8663">GogOutlinedViewClass, <a class="indexterm" href="GogOutlinedView.html#GogOutlinedViewClass">GogOutlinedViewClass</a>
</dt>
<dt id="ientry-idm9652">GogPlot, <a class="indexterm" href="GogPlot.html#GogPlot-struct">GogPlot</a>
</dt>
<dt id="ientry-idm9874">GogPlot:bubble-axis, <a class="indexterm" href="GogPlot.html#GogPlot--bubble-axis">The “bubble-axis” property</a>
</dt>
<dt id="ientry-idm9886">GogPlot:circ-axis, <a class="indexterm" href="GogPlot.html#GogPlot--circ-axis">The “circ-axis” property</a>
</dt>
<dt id="ientry-idm9898">GogPlot:color-axis, <a class="indexterm" href="GogPlot.html#GogPlot--color-axis">The “color-axis” property</a>
</dt>
<dt id="ientry-idm9910">GogPlot:guru-hints, <a class="indexterm" href="GogPlot.html#GogPlot--guru-hints">The “guru-hints” property</a>
</dt>
<dt id="ientry-idm9921">GogPlot:interpolation, <a class="indexterm" href="GogPlot.html#GogPlot--interpolation">The “interpolation” property</a>
</dt>
<dt id="ientry-idm9932">GogPlot:plot-group, <a class="indexterm" href="GogPlot.html#GogPlot--plot-group">The “plot-group” property</a>
</dt>
<dt id="ientry-idm9943">GogPlot:pseudo-3d-axis, <a class="indexterm" href="GogPlot.html#GogPlot--pseudo-3d-axis">The “pseudo-3d-axis” property</a>
</dt>
<dt id="ientry-idm9955">GogPlot:radial-axis, <a class="indexterm" href="GogPlot.html#GogPlot--radial-axis">The “radial-axis” property</a>
</dt>
<dt id="ientry-idm9967">GogPlot:vary-style-by-element, <a class="indexterm" href="GogPlot.html#GogPlot--vary-style-by-element">The “vary-style-by-element” property</a>
</dt>
<dt id="ientry-idm9978">GogPlot:x-axis, <a class="indexterm" href="GogPlot.html#GogPlot--x-axis">The “x-axis” property</a>
</dt>
<dt id="ientry-idm9990">GogPlot:y-axis, <a class="indexterm" href="GogPlot.html#GogPlot--y-axis">The “y-axis” property</a>
</dt>
<dt id="ientry-idm10002">GogPlot:z-axis, <a class="indexterm" href="GogPlot.html#GogPlot--z-axis">The “z-axis” property</a>
</dt>
<dt id="ientry-idm9817">GogPlotBoundInfo, <a class="indexterm" href="GogPlot.html#GogPlotBoundInfo">GogPlotBoundInfo</a>
</dt>
<dt id="ientry-idm9657">GogPlotClass, <a class="indexterm" href="GogPlot.html#GogPlotClass">GogPlotClass</a>
</dt>
<dt id="ientry-idm9761">GogPlotDesc, <a class="indexterm" href="GogPlot.html#GogPlotDesc">GogPlotDesc</a>
</dt>
<dt id="ientry-idm16238">GogPlotFamily, <a class="indexterm" href="goffice-0.10-Families-and-types.html#GogPlotFamily">GogPlotFamily</a>
</dt>
<dt id="ientry-idm16299">GogPlotType, <a class="indexterm" href="goffice-0.10-Families-and-types.html#GogPlotType">GogPlotType</a>
</dt>
<dt id="ientry-idm9783">GogPlotView, <a class="indexterm" href="GogPlot.html#GogPlotView-struct">GogPlotView</a>
</dt>
<dt id="ientry-idm9788">GogPlotViewClass, <a class="indexterm" href="GogPlot.html#GogPlotViewClass">GogPlotViewClass</a>
</dt>
<dt id="ientry-idm32316">GOGradientDirection, <a class="indexterm" href="goffice-0.10-Gradient.html#GOGradientDirection">enum GOGradientDirection</a>
</dt>
<dt id="ientry-idm25910">GOGraphWidget, <a class="indexterm" href="GOGraphWidget.html#GOGraphWidget-struct">GOGraphWidget</a>
</dt>
<dt id="ientry-idm25959">GOGraphWidget:aspect-ratio, <a class="indexterm" href="GOGraphWidget.html#GOGraphWidget--aspect-ratio">The “aspect-ratio” property</a>
</dt>
<dt id="ientry-idm25970">GOGraphWidget:graph, <a class="indexterm" href="GOGraphWidget.html#GOGraphWidget--graph">The “graph” property</a>
</dt>
<dt id="ientry-idm25980">GOGraphWidget:hres, <a class="indexterm" href="GOGraphWidget.html#GOGraphWidget--hres">The “hres” property</a>
</dt>
<dt id="ientry-idm25992">GOGraphWidget:vres, <a class="indexterm" href="GOGraphWidget.html#GOGraphWidget--vres">The “vres” property</a>
</dt>
<dt id="ientry-idm25915">GOGraphWidgetClass, <a class="indexterm" href="GOGraphWidget.html#GOGraphWidgetClass">GOGraphWidgetClass</a>
</dt>
<dt id="ientry-idm25920">GOGraphWidgetSizeMode, <a class="indexterm" href="GOGraphWidget.html#GOGraphWidgetSizeMode">enum GOGraphWidgetSizeMode</a>
</dt>
<dt id="ientry-idm11789">GogRegCurve, <a class="indexterm" href="GogRegCurve.html#GogRegCurve-struct">GogRegCurve</a>
</dt>
<dt id="ientry-idm11870">GogRegCurve:drawing-bounds, <a class="indexterm" href="GogRegCurve.html#GogRegCurve--drawing-bounds">The “drawing-bounds” property</a>
</dt>
<dt id="ientry-idm11881">GogRegCurve:skip-invalid, <a class="indexterm" href="GogRegCurve.html#GogRegCurve--skip-invalid">The “skip-invalid” property</a>
</dt>
<dt id="ientry-idm11794">GogRegCurveClass, <a class="indexterm" href="GogRegCurve.html#GogRegCurveClass">GogRegCurveClass</a>
</dt>
<dt id="ientry-idm11837">GogRegCurveDrawingBounds, <a class="indexterm" href="GogRegCurve.html#GogRegCurveDrawingBounds">enum GogRegCurveDrawingBounds</a>
</dt>
<dt id="ientry-idm10866">GogSeries, <a class="indexterm" href="GogSeries.html#GogSeries-struct">GogSeries</a>
</dt>
<dt id="ientry-idm11372">GogSeries:fill-type, <a class="indexterm" href="GogSeries.html#GogSeries--fill-type">The “fill-type” property</a>
</dt>
<dt id="ientry-idm11383">GogSeries:has-legend, <a class="indexterm" href="GogSeries.html#GogSeries--has-legend">The “has-legend” property</a>
</dt>
<dt id="ientry-idm11394">GogSeries:interpolation, <a class="indexterm" href="GogSeries.html#GogSeries--interpolation">The “interpolation” property</a>
</dt>
<dt id="ientry-idm11405">GogSeries:interpolation-skip-invalid, <a class="indexterm" href="GogSeries.html#GogSeries--interpolation-skip-invalid">The “interpolation-skip-invalid” property</a>
</dt>
<dt id="ientry-idm10871">GogSeriesClass, <a class="indexterm" href="GogSeries.html#GogSeriesClass">GogSeriesClass</a>
</dt>
<dt id="ientry-idm10956">GogSeriesDesc, <a class="indexterm" href="GogSeries.html#GogSeriesDesc">GogSeriesDesc</a>
</dt>
<dt id="ientry-idm10978">GogSeriesDimDesc, <a class="indexterm" href="GogSeries.html#GogSeriesDimDesc">GogSeriesDimDesc</a>
</dt>
<dt id="ientry-idm11188">GogSeriesElement, <a class="indexterm" href="GogSeries.html#GogSeriesElement-struct">GogSeriesElement</a>
</dt>
<dt id="ientry-idm11416">GogSeriesElement:index, <a class="indexterm" href="GogSeries.html#GogSeriesElement--index">The “index” property</a>
</dt>
<dt id="ientry-idm11193">GogSeriesElementClass, <a class="indexterm" href="GogSeries.html#GogSeriesElementClass">GogSeriesElementClass</a>
</dt>
<dt id="ientry-idm11261">GogSeriesFillType, <a class="indexterm" href="GogSeries.html#GogSeriesFillType">enum GogSeriesFillType</a>
</dt>
<dt id="ientry-idm5386">GogSeriesLabelElt, <a class="indexterm" href="GogSeriesLabels.html#GogSeriesLabelElt-struct">GogSeriesLabelElt</a>
</dt>
<dt id="ientry-idm5494">GogSeriesLabels, <a class="indexterm" href="GogSeriesLabels.html#GogSeriesLabels-struct">GogSeriesLabels</a>
</dt>
<dt id="ientry-idm5548">GogSeriesLabels:format, <a class="indexterm" href="GogSeriesLabels.html#GogSeriesLabels--format">The “format” property</a>
</dt>
<dt id="ientry-idm5559">GogSeriesLabels:offset, <a class="indexterm" href="GogSeriesLabels.html#GogSeriesLabels--offset">The “offset” property</a>
</dt>
<dt id="ientry-idm5571">GogSeriesLabels:position, <a class="indexterm" href="GogSeriesLabels.html#GogSeriesLabels--position">The “position” property</a>
</dt>
<dt id="ientry-idm5428">GogSeriesLabelsPos, <a class="indexterm" href="GogSeriesLabels.html#GogSeriesLabelsPos">enum GogSeriesLabelsPos</a>
</dt>
<dt id="ientry-idm11222">GogSeriesPriority, <a class="indexterm" href="GogSeries.html#GogSeriesPriority">enum GogSeriesPriority</a>
</dt>
<dt id="ientry-idm11615">GogSmoothedCurve, <a class="indexterm" href="GogSmoothedCurve.html#GogSmoothedCurve-struct">GogSmoothedCurve</a>
</dt>
<dt id="ientry-idm11620">GogSmoothedCurveClass, <a class="indexterm" href="GogSmoothedCurve.html#GogSmoothedCurveClass">GogSmoothedCurveClass</a>
</dt>
<dt id="ientry-idm8426">GogStyle, <a class="indexterm" href="GogStyledObject.html#GogStyle-struct">GogStyle</a>
</dt>
<dt id="ientry-idm8431">GogStyledObject, <a class="indexterm" href="GogStyledObject.html#GogStyledObject-struct">GogStyledObject</a>
</dt>
<dt id="ientry-idm8487">GogStyledObject::style-changed, <a class="indexterm" href="GogStyledObject.html#GogStyledObject-style-changed">The “style-changed” signal</a>
</dt>
<dt id="ientry-idm8475">GogStyledObject:style, <a class="indexterm" href="GogStyledObject.html#GogStyledObject--style">The “style” property</a>
</dt>
<dt id="ientry-idm8436">GogStyledObjectClass, <a class="indexterm" href="GogStyledObject.html#GogStyledObjectClass">GogStyledObjectClass</a>
</dt>
<dt id="ientry-idm13811">GogText, <a class="indexterm" href="GogText.html#GogText-struct">GogText</a>
</dt>
<dt id="ientry-idm13855">GogText:allow-markup, <a class="indexterm" href="GogText.html#GogText--allow-markup">The “allow-markup” property</a>
</dt>
<dt id="ientry-idm13866">GogText:allow-wrap, <a class="indexterm" href="GogText.html#GogText--allow-wrap">The “allow-wrap” property</a>
</dt>
<dt id="ientry-idm13877">GogText:rotate-bg, <a class="indexterm" href="GogText.html#GogText--rotate-bg">The “rotate-bg” property</a>
</dt>
<dt id="ientry-idm13888">GogText:rotate-frame, <a class="indexterm" href="GogText.html#GogText--rotate-frame">The “rotate-frame” property</a>
</dt>
<dt id="ientry-idm13816">GogTextClass, <a class="indexterm" href="GogText.html#GogTextClass">GogTextClass</a>
</dt>
<dt id="ientry-idm17219">GogTheme, <a class="indexterm" href="goffice-0.10-Theming.html#GogTheme-struct">GogTheme</a>
</dt>
<dt id="ientry-idm17227">GogTheme:resource-type, <a class="indexterm" href="goffice-0.10-Theming.html#GogTheme--resource-type">The “resource-type” property</a>
</dt>
<dt id="ientry-idm15809">GogTool, <a class="indexterm" href="goffice-0.10-GogTool.html#GogTool">GogTool</a>
</dt>
<dt id="ientry-idm15882">GogToolAction, <a class="indexterm" href="goffice-0.10-GogTool.html#GogToolAction-struct">struct GogToolAction</a>
</dt>
<dt id="ientry-idm11546">GogTrendLine, <a class="indexterm" href="GogTrendLine.html#GogTrendLine-struct">GogTrendLine</a>
</dt>
<dt id="ientry-idm11559">GogTrendLine:has-legend, <a class="indexterm" href="GogTrendLine.html#GogTrendLine--has-legend">The “has-legend” property</a>
</dt>
<dt id="ientry-idm11551">GogTrendLineClass, <a class="indexterm" href="GogTrendLine.html#GogTrendLineClass">GogTrendLineClass</a>
</dt>
<dt id="ientry-idm16384">GogTrendLineType, <a class="indexterm" href="goffice-0.10-Families-and-types.html#GogTrendLineType">GogTrendLineType</a>
</dt>
<dt id="ientry-idm12686">GogView, <a class="indexterm" href="GogView.html#GogView-struct">GogView</a>
</dt>
<dt id="ientry-idm12904">GogView:model, <a class="indexterm" href="GogView.html#GogView--model">The “model” property</a>
</dt>
<dt id="ientry-idm12914">GogView:parent, <a class="indexterm" href="GogView.html#GogView--parent">The “parent” property</a>
</dt>
<dt id="ientry-idm12772">GogViewAllocation, <a class="indexterm" href="GogView.html#GogViewAllocation-struct">GogViewAllocation</a>
</dt>
<dt id="ientry-idm12691">GogViewClass, <a class="indexterm" href="GogView.html#GogViewClass">GogViewClass</a>
</dt>
<dt id="ientry-idm12821">GogViewPadding, <a class="indexterm" href="GogView.html#GogViewPadding">GogViewPadding</a>
</dt>
<dt id="ientry-idm12870">GogViewRequisition, <a class="indexterm" href="GogView.html#GogViewRequisition">GogViewRequisition</a>
</dt>
<dt id="ientry-idm19603">GOG_3D_BOX_TYPE, <a class="indexterm" href="Gog3DBox.html#GOG-3D-BOX-TYPE:CAPS">GOG_3D_BOX_TYPE</a>
</dt>
<dt id="ientry-idm2377">gog_axis_add_contributor, <a class="indexterm" href="GogAxis.html#gog-axis-add-contributor">gog_axis_add_contributor ()</a>
</dt>
<dt id="ientry-idm3903">gog_axis_base_get_crossed_axis, <a class="indexterm" href="GogAxisLine.html#gog-axis-base-get-crossed-axis">gog_axis_base_get_crossed_axis ()</a>
</dt>
<dt id="ientry-idm3935">gog_axis_base_get_crossed_axis_for_plot, <a class="indexterm" href="GogAxisLine.html#gog-axis-base-get-crossed-axis-for-plot">gog_axis_base_get_crossed_axis_for_plot ()</a>
</dt>
<dt id="ientry-idm3978">gog_axis_base_get_crossed_axis_type, <a class="indexterm" href="GogAxisLine.html#gog-axis-base-get-crossed-axis-type">gog_axis_base_get_crossed_axis_type ()</a>
</dt>
<dt id="ientry-idm3893">gog_axis_base_get_cross_location, <a class="indexterm" href="GogAxisLine.html#gog-axis-base-get-cross-location">gog_axis_base_get_cross_location ()</a>
</dt>
<dt id="ientry-idm2417">gog_axis_bound_changed, <a class="indexterm" href="GogAxis.html#gog-axis-bound-changed">gog_axis_bound_changed ()</a>
</dt>
<dt id="ientry-idm2454">gog_axis_clear_contributors, <a class="indexterm" href="GogAxis.html#gog-axis-clear-contributors">gog_axis_clear_contributors ()</a>
</dt>
<dt id="ientry-idm18993">gog_axis_color_map_delete, <a class="indexterm" href="GogAxisColorMap.html#gog-axis-color-map-delete">gog_axis_color_map_delete ()</a>
</dt>
<dt id="ientry-idm19025">gog_axis_color_map_dup, <a class="indexterm" href="GogAxisColorMap.html#gog-axis-color-map-dup">gog_axis_color_map_dup ()</a>
</dt>
<dt id="ientry-idm18902">gog_axis_color_map_edit, <a class="indexterm" href="GogAxisColorMap.html#gog-axis-color-map-edit">gog_axis_color_map_edit ()</a>
</dt>
<dt id="ientry-idm19058">gog_axis_color_map_foreach, <a class="indexterm" href="GogAxisColorMap.html#gog-axis-color-map-foreach">gog_axis_color_map_foreach ()</a>
</dt>
<dt id="ientry-idm19098">gog_axis_color_map_from_colors, <a class="indexterm" href="GogAxisColorMap.html#gog-axis-color-map-from-colors">gog_axis_color_map_from_colors ()</a>
</dt>
<dt id="ientry-idm19157">gog_axis_color_map_get_color, <a class="indexterm" href="GogAxisColorMap.html#gog-axis-color-map-get-color">gog_axis_color_map_get_color ()</a>
</dt>
<dt id="ientry-idm19197">gog_axis_color_map_get_from_id, <a class="indexterm" href="GogAxisColorMap.html#gog-axis-color-map-get-from-id">gog_axis_color_map_get_from_id ()</a>
</dt>
<dt id="ientry-idm19259">gog_axis_color_map_get_id, <a class="indexterm" href="GogAxisColorMap.html#gog-axis-color-map-get-id">gog_axis_color_map_get_id ()</a>
</dt>
<dt id="ientry-idm19229">gog_axis_color_map_get_max, <a class="indexterm" href="GogAxisColorMap.html#gog-axis-color-map-get-max">gog_axis_color_map_get_max ()</a>
</dt>
<dt id="ientry-idm19292">gog_axis_color_map_get_name, <a class="indexterm" href="GogAxisColorMap.html#gog-axis-color-map-get-name">gog_axis_color_map_get_name ()</a>
</dt>
<dt id="ientry-idm19325">gog_axis_color_map_get_resource_type, <a class="indexterm" href="GogAxisColorMap.html#gog-axis-color-map-get-resource-type">gog_axis_color_map_get_resource_type ()</a>
</dt>
<dt id="ientry-idm19356">gog_axis_color_map_get_snapshot, <a class="indexterm" href="GogAxisColorMap.html#gog-axis-color-map-get-snapshot">gog_axis_color_map_get_snapshot ()</a>
</dt>
<dt id="ientry-idm19427">gog_axis_color_map_to_cairo, <a class="indexterm" href="GogAxisColorMap.html#gog-axis-color-map-to-cairo">gog_axis_color_map_to_cairo ()</a>
</dt>
<dt id="ientry-idm2464">gog_axis_contributors, <a class="indexterm" href="GogAxis.html#gog-axis-contributors">gog_axis_contributors ()</a>
</dt>
<dt id="ientry-idm2497">gog_axis_data_get_bounds, <a class="indexterm" href="GogAxis.html#gog-axis-data-get-bounds">gog_axis_data_get_bounds ()</a>
</dt>
<dt id="ientry-idm2516">gog_axis_del_contributor, <a class="indexterm" href="GogAxis.html#gog-axis-del-contributor">gog_axis_del_contributor ()</a>
</dt>
<dt id="ientry-idm2556">gog_axis_get_atype, <a class="indexterm" href="GogAxis.html#gog-axis-get-atype">gog_axis_get_atype ()</a>
</dt>
<dt id="ientry-idm2566">gog_axis_get_bounds, <a class="indexterm" href="GogAxis.html#gog-axis-get-bounds">gog_axis_get_bounds ()</a>
</dt>
<dt id="ientry-idm2617">gog_axis_get_circular_rotation, <a class="indexterm" href="GogAxis.html#gog-axis-get-circular-rotation">gog_axis_get_circular_rotation ()</a>
</dt>
<dt id="ientry-idm2648">gog_axis_get_color_map, <a class="indexterm" href="GogAxis.html#gog-axis-get-color-map">gog_axis_get_color_map ()</a>
</dt>
<dt id="ientry-idm2685">gog_axis_get_color_scale, <a class="indexterm" href="GogAxis.html#gog-axis-get-color-scale">gog_axis_get_color_scale ()</a>
</dt>
<dt id="ientry-idm2722">gog_axis_get_date_conv, <a class="indexterm" href="GogAxis.html#gog-axis-get-date-conv">gog_axis_get_date_conv ()</a>
</dt>
<dt id="ientry-idm2732">gog_axis_get_effective_format, <a class="indexterm" href="GogAxis.html#gog-axis-get-effective-format">gog_axis_get_effective_format ()</a>
</dt>
<dt id="ientry-idm2768">gog_axis_get_effective_span, <a class="indexterm" href="GogAxis.html#gog-axis-get-effective-span">gog_axis_get_effective_span ()</a>
</dt>
<dt id="ientry-idm2784">gog_axis_get_entry, <a class="indexterm" href="GogAxis.html#gog-axis-get-entry">gog_axis_get_entry ()</a>
</dt>
<dt id="ientry-idm2827">gog_axis_get_format, <a class="indexterm" href="GogAxis.html#gog-axis-get-format">gog_axis_get_format ()</a>
</dt>
<dt id="ientry-idm2860">gog_axis_get_grid_line, <a class="indexterm" href="GogAxis.html#gog-axis-get-grid-line">gog_axis_get_grid_line ()</a>
</dt>
<dt id="ientry-idm2901">gog_axis_get_labels, <a class="indexterm" href="GogAxis.html#gog-axis-get-labels">gog_axis_get_labels ()</a>
</dt>
<dt id="ientry-idm2946">gog_axis_get_major_ticks_distance, <a class="indexterm" href="GogAxis.html#gog-axis-get-major-ticks-distance">gog_axis_get_major_ticks_distance ()</a>
</dt>
<dt id="ientry-idm2956">gog_axis_get_metrics, <a class="indexterm" href="GogAxis.html#gog-axis-get-metrics">gog_axis_get_metrics ()</a>
</dt>
<dt id="ientry-idm2966">gog_axis_get_polar_perimeter, <a class="indexterm" href="GogAxis.html#gog-axis-get-polar-perimeter">gog_axis_get_polar_perimeter ()</a>
</dt>
<dt id="ientry-idm2976">gog_axis_get_polar_unit, <a class="indexterm" href="GogAxis.html#gog-axis-get-polar-unit">gog_axis_get_polar_unit ()</a>
</dt>
<dt id="ientry-idm3006">gog_axis_get_ref_axis, <a class="indexterm" href="GogAxis.html#gog-axis-get-ref-axis">gog_axis_get_ref_axis ()</a>
</dt>
<dt id="ientry-idm3041">gog_axis_get_ticks, <a class="indexterm" href="GogAxis.html#gog-axis-get-ticks">gog_axis_get_ticks ()</a>
</dt>
<dt id="ientry-idm3083">gog_axis_is_center_on_ticks, <a class="indexterm" href="GogAxis.html#gog-axis-is-center-on-ticks">gog_axis_is_center_on_ticks ()</a>
</dt>
<dt id="ientry-idm3113">gog_axis_is_discrete, <a class="indexterm" href="GogAxis.html#gog-axis-is-discrete">gog_axis_is_discrete ()</a>
</dt>
<dt id="ientry-idm3143">gog_axis_is_inverted, <a class="indexterm" href="GogAxis.html#gog-axis-is-inverted">gog_axis_is_inverted ()</a>
</dt>
<dt id="ientry-idm3173">gog_axis_is_zero_important, <a class="indexterm" href="GogAxis.html#gog-axis-is-zero-important">gog_axis_is_zero_important ()</a>
</dt>
<dt id="ientry-idm3988">gog_axis_line_get_ticks, <a class="indexterm" href="GogAxisLine.html#gog-axis-line-get-ticks">gog_axis_line_get_ticks ()</a>
</dt>
<dt id="ientry-idm18124">gog_axis_map, <a class="indexterm" href="GogAxisMap.html#gog-axis-map">gog_axis_map ()</a>
</dt>
<dt id="ientry-idm18164">gog_axis_map_derivative_to_view, <a class="indexterm" href="GogAxisMap.html#gog-axis-map-derivative-to-view">gog_axis_map_derivative_to_view ()</a>
</dt>
<dt id="ientry-idm18202">gog_axis_map_finite, <a class="indexterm" href="GogAxisMap.html#gog-axis-map-finite">gog_axis_map_finite ()</a>
</dt>
<dt id="ientry-idm18245">gog_axis_map_free, <a class="indexterm" href="GogAxisMap.html#gog-axis-map-free">gog_axis_map_free ()</a>
</dt>
<dt id="ientry-idm18276">gog_axis_map_from_view, <a class="indexterm" href="GogAxisMap.html#gog-axis-map-from-view">gog_axis_map_from_view ()</a>
</dt>
<dt id="ientry-idm18315">gog_axis_map_get_baseline, <a class="indexterm" href="GogAxisMap.html#gog-axis-map-get-baseline">gog_axis_map_get_baseline ()</a>
</dt>
<dt id="ientry-idm18345">gog_axis_map_get_bounds, <a class="indexterm" href="GogAxisMap.html#gog-axis-map-get-bounds">gog_axis_map_get_bounds ()</a>
</dt>
<dt id="ientry-idm18396">gog_axis_map_get_extents, <a class="indexterm" href="GogAxisMap.html#gog-axis-map-get-extents">gog_axis_map_get_extents ()</a>
</dt>
<dt id="ientry-idm18447">gog_axis_map_get_real_bounds, <a class="indexterm" href="GogAxisMap.html#gog-axis-map-get-real-bounds">gog_axis_map_get_real_bounds ()</a>
</dt>
<dt id="ientry-idm18498">gog_axis_map_get_real_extents, <a class="indexterm" href="GogAxisMap.html#gog-axis-map-get-real-extents">gog_axis_map_get_real_extents ()</a>
</dt>
<dt id="ientry-idm18549">gog_axis_map_is_discrete, <a class="indexterm" href="GogAxisMap.html#gog-axis-map-is-discrete">gog_axis_map_is_discrete ()</a>
</dt>
<dt id="ientry-idm18580">gog_axis_map_is_inverted, <a class="indexterm" href="GogAxisMap.html#gog-axis-map-is-inverted">gog_axis_map_is_inverted ()</a>
</dt>
<dt id="ientry-idm18611">gog_axis_map_is_valid, <a class="indexterm" href="GogAxisMap.html#gog-axis-map-is-valid">gog_axis_map_is_valid ()</a>
</dt>
<dt id="ientry-idm18644">gog_axis_map_new, <a class="indexterm" href="GogAxisMap.html#gog-axis-map-new">gog_axis_map_new ()</a>
</dt>
<dt id="ientry-idm18699">gog_axis_map_to_view, <a class="indexterm" href="GogAxisMap.html#gog-axis-map-to-view">gog_axis_map_to_view ()</a>
</dt>
<dt id="ientry-idm3183">gog_axis_set_bounds, <a class="indexterm" href="GogAxis.html#gog-axis-set-bounds">gog_axis_set_bounds ()</a>
</dt>
<dt id="ientry-idm3228">gog_axis_set_extents, <a class="indexterm" href="GogAxis.html#gog-axis-set-extents">gog_axis_set_extents ()</a>
</dt>
<dt id="ientry-idm3273">gog_axis_set_format, <a class="indexterm" href="GogAxis.html#gog-axis-set-format">gog_axis_set_format ()</a>
</dt>
<dt id="ientry-idm3318">gog_axis_set_from_str, <a class="indexterm" href="GogAxis.html#gog-axis-set-from-str">gog_axis_set_from_str ()</a>
</dt>
<dt id="ientry-idm3328">gog_axis_set_polar_unit, <a class="indexterm" href="GogAxis.html#gog-axis-set-polar-unit">gog_axis_set_polar_unit ()</a>
</dt>
<dt id="ientry-idm1508">gog_chart_axis_set_assign, <a class="indexterm" href="GogChart.html#gog-chart-axis-set-assign">gog_chart_axis_set_assign ()</a>
</dt>
<dt id="ientry-idm1521">gog_chart_axis_set_is_valid, <a class="indexterm" href="GogChart.html#gog-chart-axis-set-is-valid">gog_chart_axis_set_is_valid ()</a>
</dt>
<dt id="ientry-idm1534">gog_chart_foreach_elem, <a class="indexterm" href="GogChart.html#gog-chart-foreach-elem">gog_chart_foreach_elem ()</a>
</dt>
<dt id="ientry-idm1591">gog_chart_get_axes, <a class="indexterm" href="GogChart.html#gog-chart-get-axes">gog_chart_get_axes ()</a>
</dt>
<dt id="ientry-idm1637">gog_chart_get_axis_set, <a class="indexterm" href="GogChart.html#gog-chart-get-axis-set">gog_chart_get_axis_set ()</a>
</dt>
<dt id="ientry-idm1647">gog_chart_get_cardinality, <a class="indexterm" href="GogChart.html#gog-chart-get-cardinality">gog_chart_get_cardinality ()</a>
</dt>
<dt id="ientry-idm1695">gog_chart_get_grid, <a class="indexterm" href="GogChart.html#gog-chart-get-grid">gog_chart_get_grid ()</a>
</dt>
<dt id="ientry-idm1771">gog_chart_get_plots, <a class="indexterm" href="GogChart.html#gog-chart-get-plots">gog_chart_get_plots ()</a>
</dt>
<dt id="ientry-idm1728">gog_chart_get_plot_area, <a class="indexterm" href="GogChart.html#gog-chart-get-plot-area">gog_chart_get_plot_area ()</a>
</dt>
<dt id="ientry-idm1805">gog_chart_get_position, <a class="indexterm" href="GogChart.html#gog-chart-get-position">gog_chart_get_position ()</a>
</dt>
<dt id="ientry-idm1846">gog_chart_is_3d, <a class="indexterm" href="GogChart.html#gog-chart-is-3d">gog_chart_is_3d ()</a>
</dt>
<dt id="ientry-idm17346">gog_chart_map_2D_derivative_to_view, <a class="indexterm" href="GogChartMap.html#gog-chart-map-2D-derivative-to-view">gog_chart_map_2D_derivative_to_view ()</a>
</dt>
<dt id="ientry-idm17403">gog_chart_map_2D_to_view, <a class="indexterm" href="GogChartMap.html#gog-chart-map-2D-to-view">gog_chart_map_2D_to_view ()</a>
</dt>
<dt id="ientry-idm17466">gog_chart_map_free, <a class="indexterm" href="GogChartMap.html#gog-chart-map-free">gog_chart_map_free ()</a>
</dt>
<dt id="ientry-idm17494">gog_chart_map_get_axis_map, <a class="indexterm" href="GogChartMap.html#gog-chart-map-get-axis-map">gog_chart_map_get_axis_map ()</a>
</dt>
<dt id="ientry-idm17539">gog_chart_map_get_polar_parms, <a class="indexterm" href="GogChartMap.html#gog-chart-map-get-polar-parms">gog_chart_map_get_polar_parms ()</a>
</dt>
<dt id="ientry-idm17574">gog_chart_map_is_valid, <a class="indexterm" href="GogChartMap.html#gog-chart-map-is-valid">gog_chart_map_is_valid ()</a>
</dt>
<dt id="ientry-idm17611">gog_chart_map_make_close_path, <a class="indexterm" href="GogChartMap.html#gog-chart-map-make-close-path">gog_chart_map_make_close_path ()</a>
</dt>
<dt id="ientry-idm17679">gog_chart_map_make_path, <a class="indexterm" href="GogChartMap.html#gog-chart-map-make-path">gog_chart_map_make_path ()</a>
</dt>
<dt id="ientry-idm17765">gog_chart_map_new, <a class="indexterm" href="GogChartMap.html#gog-chart-map-new">gog_chart_map_new ()</a>
</dt>
<dt id="ientry-idm17847">gog_chart_map_view_to_2D, <a class="indexterm" href="GogChartMap.html#gog-chart-map-view-to-2D">gog_chart_map_view_to_2D ()</a>
</dt>
<dt id="ientry-idm1856">gog_chart_request_cardinality_update, <a class="indexterm" href="GogChart.html#gog-chart-request-cardinality-update">gog_chart_request_cardinality_update ()</a>
</dt>
<dt id="ientry-idm1866">gog_chart_set_plot_area, <a class="indexterm" href="GogChart.html#gog-chart-set-plot-area">gog_chart_set_plot_area ()</a>
</dt>
<dt id="ientry-idm1904">gog_chart_set_position, <a class="indexterm" href="GogChart.html#gog-chart-set-position">gog_chart_set_position ()</a>
</dt>
<dt id="ientry-idm1942">gog_chart_view_get_plot_area, <a class="indexterm" href="GogChart.html#gog-chart-view-get-plot-area">gog_chart_view_get_plot_area ()</a>
</dt>
<dt id="ientry-idm4311">gog_color_scale_get_axis, <a class="indexterm" href="GogColorScale.html#gog-color-scale-get-axis">gog_color_scale_get_axis ()</a>
</dt>
<dt id="ientry-idm4345">gog_color_scale_set_axis, <a class="indexterm" href="GogColorScale.html#gog-color-scale-set-axis">gog_color_scale_set_axis ()</a>
</dt>
<dt id="ientry-idm13316">gog_dataset_dims, <a class="indexterm" href="GogDataset.html#gog-dataset-dims">gog_dataset_dims ()</a>
</dt>
<dt id="ientry-idm13363">gog_dataset_dup_to_simple, <a class="indexterm" href="GogDataset.html#gog-dataset-dup-to-simple">gog_dataset_dup_to_simple ()</a>
</dt>
<dt id="ientry-idm13376">gog_dataset_finalize, <a class="indexterm" href="GogDataset.html#gog-dataset-finalize">gog_dataset_finalize ()</a>
</dt>
<dt id="ientry-idm13386">gog_dataset_get_dim, <a class="indexterm" href="GogDataset.html#gog-dataset-get-dim">gog_dataset_get_dim ()</a>
</dt>
<dt id="ientry-idm13424">gog_dataset_get_elem, <a class="indexterm" href="GogDataset.html#gog-dataset-get-elem">gog_dataset_get_elem ()</a>
</dt>
<dt id="ientry-idm13460">gog_dataset_parent_changed, <a class="indexterm" href="GogDataset.html#gog-dataset-parent-changed">gog_dataset_parent_changed ()</a>
</dt>
<dt id="ientry-idm13473">gog_dataset_set_dim, <a class="indexterm" href="GogDataset.html#gog-dataset-set-dim">gog_dataset_set_dim ()</a>
</dt>
<dt id="ientry-idm13534">gog_dataset_set_dim_internal, <a class="indexterm" href="GogDataset.html#gog-dataset-set-dim-internal">gog_dataset_set_dim_internal ()</a>
</dt>
<dt id="ientry-idm12999">gog_data_allocator_allocate, <a class="indexterm" href="GogDataEditor.html#gog-data-allocator-allocate">gog_data_allocator_allocate ()</a>
</dt>
<dt id="ientry-idm13036">gog_data_allocator_editor, <a class="indexterm" href="GogDataEditor.html#gog-data-allocator-editor">gog_data_allocator_editor ()</a>
</dt>
<dt id="ientry-idm13079">gog_data_editor_set_format, <a class="indexterm" href="GogDataEditor.html#gog-data-editor-set-format">gog_data_editor_set_format ()</a>
</dt>
<dt id="ientry-idm13092">gog_data_editor_set_value_double, <a class="indexterm" href="GogDataEditor.html#gog-data-editor-set-value-double">gog_data_editor_set_value_double ()</a>
</dt>
<dt id="ientry-idm5248">gog_data_label_get_element, <a class="indexterm" href="GogSeriesLabels.html#gog-data-label-get-element">gog_data_label_get_element ()</a>
</dt>
<dt id="ientry-idm5258">gog_data_label_get_position, <a class="indexterm" href="GogSeriesLabels.html#gog-data-label-get-position">gog_data_label_get_position ()</a>
</dt>
<dt id="ientry-idm5268">gog_data_label_set_allowed_position, <a class="indexterm" href="GogSeriesLabels.html#gog-data-label-set-allowed-position">gog_data_label_set_allowed_position ()</a>
</dt>
<dt id="ientry-idm5281">gog_data_label_set_default_position, <a class="indexterm" href="GogSeriesLabels.html#gog-data-label-set-default-position">gog_data_label_set_default_position ()</a>
</dt>
<dt id="ientry-idm5294">gog_data_label_set_position, <a class="indexterm" href="GogSeriesLabels.html#gog-data-label-set-position">gog_data_label_set_position ()</a>
</dt>
<dt id="ientry-idm4602">gog_error_bar_dup, <a class="indexterm" href="GogErrorBar.html#gog-error-bar-dup">gog_error_bar_dup ()</a>
</dt>
<dt id="ientry-idm4634">gog_error_bar_get_bounds, <a class="indexterm" href="GogErrorBar.html#gog-error-bar-get-bounds">gog_error_bar_get_bounds ()</a>
</dt>
<dt id="ientry-idm4699">gog_error_bar_get_minmax, <a class="indexterm" href="GogErrorBar.html#gog-error-bar-get-minmax">gog_error_bar_get_minmax ()</a>
</dt>
<dt id="ientry-idm4715">gog_error_bar_is_visible, <a class="indexterm" href="GogErrorBar.html#gog-error-bar-is-visible">gog_error_bar_is_visible ()</a>
</dt>
<dt id="ientry-idm4725">gog_error_bar_prefs, <a class="indexterm" href="GogErrorBar.html#gog-error-bar-prefs">gog_error_bar_prefs ()</a>
</dt>
<dt id="ientry-idm4804">gog_error_bar_render, <a class="indexterm" href="GogErrorBar.html#gog-error-bar-render">gog_error_bar_render ()</a>
</dt>
<dt id="ientry-idm401">gog_graph_dup, <a class="indexterm" href="GogGraph.html#gog-graph-dup">gog_graph_dup ()</a>
</dt>
<dt id="ientry-idm434">gog_graph_export_image, <a class="indexterm" href="GogGraph.html#gog-graph-export-image">gog_graph_export_image ()</a>
</dt>
<dt id="ientry-idm512">gog_graph_force_update, <a class="indexterm" href="GogGraph.html#gog-graph-force-update">gog_graph_force_update ()</a>
</dt>
<dt id="ientry-idm539">gog_graph_get_data, <a class="indexterm" href="GogGraph.html#gog-graph-get-data">gog_graph_get_data ()</a>
</dt>
<dt id="ientry-idm572">gog_graph_get_document, <a class="indexterm" href="GogGraph.html#gog-graph-get-document">gog_graph_get_document ()</a>
</dt>
<dt id="ientry-idm608">gog_graph_get_size, <a class="indexterm" href="GogGraph.html#gog-graph-get-size">gog_graph_get_size ()</a>
</dt>
<dt id="ientry-idm653">gog_graph_get_supported_image_formats, <a class="indexterm" href="GogGraph.html#gog-graph-get-supported-image-formats">gog_graph_get_supported_image_formats ()</a>
</dt>
<dt id="ientry-idm674">gog_graph_get_theme, <a class="indexterm" href="GogGraph.html#gog-graph-get-theme">gog_graph_get_theme ()</a>
</dt>
<dt id="ientry-idm709">gog_graph_num_cols, <a class="indexterm" href="GogGraph.html#gog-graph-num-cols">gog_graph_num_cols ()</a>
</dt>
<dt id="ientry-idm719">gog_graph_num_rows, <a class="indexterm" href="GogGraph.html#gog-graph-num-rows">gog_graph_num_rows ()</a>
</dt>
<dt id="ientry-idm761">gog_graph_ref_data, <a class="indexterm" href="GogGraph.html#gog-graph-ref-data">gog_graph_ref_data ()</a>
</dt>
<dt id="ientry-idm808">gog_graph_render_to_cairo, <a class="indexterm" href="GogGraph.html#gog-graph-render-to-cairo">gog_graph_render_to_cairo ()</a>
</dt>
<dt id="ientry-idm729">gog_graph_request_update, <a class="indexterm" href="GogGraph.html#gog-graph-request-update">gog_graph_request_update ()</a>
</dt>
<dt id="ientry-idm866">gog_graph_set_size, <a class="indexterm" href="GogGraph.html#gog-graph-set-size">gog_graph_set_size ()</a>
</dt>
<dt id="ientry-idm911">gog_graph_set_theme, <a class="indexterm" href="GogGraph.html#gog-graph-set-theme">gog_graph_set_theme ()</a>
</dt>
<dt id="ientry-idm924">gog_graph_unref_data, <a class="indexterm" href="GogGraph.html#gog-graph-unref-data">gog_graph_unref_data ()</a>
</dt>
<dt id="ientry-idm961">gog_graph_validate_chart_layout, <a class="indexterm" href="GogGraph.html#gog-graph-validate-chart-layout">gog_graph_validate_chart_layout ()</a>
</dt>
<dt id="ientry-idm993">gog_graph_view_get_selection, <a class="indexterm" href="GogGraph.html#gog-graph-view-get-selection">gog_graph_view_get_selection ()</a>
</dt>
<dt id="ientry-idm1025">gog_graph_view_handle_event, <a class="indexterm" href="GogGraph.html#gog-graph-view-handle-event">gog_graph_view_handle_event ()</a>
</dt>
<dt id="ientry-idm1081">gog_graph_view_set_selection, <a class="indexterm" href="GogGraph.html#gog-graph-view-set-selection">gog_graph_view_set_selection ()</a>
</dt>
<dt id="ientry-idm2023">gog_grid_get_gtype, <a class="indexterm" href="GogGrid.html#gog-grid-get-gtype">gog_grid_get_gtype ()</a>
</dt>
<dt id="ientry-idm4477">gog_grid_line_is_minor, <a class="indexterm" href="GogGridLine.html#gog-grid-line-is-minor">gog_grid_line_is_minor ()</a>
</dt>
<dt id="ientry-idm4487">gog_grid_line_view_render_lines, <a class="indexterm" href="GogGridLine.html#gog-grid-line-view-render-lines">gog_grid_line_view_render_lines ()</a>
</dt>
<dt id="ientry-idm4497">gog_grid_line_view_render_stripes, <a class="indexterm" href="GogGridLine.html#gog-grid-line-view-render-stripes">gog_grid_line_view_render_stripes ()</a>
</dt>
<dt id="ientry-idm2033">gog_grid_set_gtype, <a class="indexterm" href="GogGrid.html#gog-grid-set-gtype">gog_grid_set_gtype ()</a>
</dt>
<dt id="ientry-idm15573">gog_guru, <a class="indexterm" href="goffice-0.10-Graph-editor-dialog.html#gog-guru">gog_guru ()</a>
</dt>
<dt id="ientry-idm15634">gog_guru_add_custom_widget, <a class="indexterm" href="goffice-0.10-Graph-editor-dialog.html#gog-guru-add-custom-widget">gog_guru_add_custom_widget ()</a>
</dt>
<dt id="ientry-idm15647">gog_guru_get_help_button, <a class="indexterm" href="goffice-0.10-Graph-editor-dialog.html#gog-guru-get-help-button">gog_guru_get_help_button ()</a>
</dt>
<dt id="ientry-idm6141">gog_object_add_by_name, <a class="indexterm" href="GogObject.html#gog-object-add-by-name">gog_object_add_by_name ()</a>
</dt>
<dt id="ientry-idm6194">gog_object_add_by_role, <a class="indexterm" href="GogObject.html#gog-object-add-by-role">gog_object_add_by_role ()</a>
</dt>
<dt id="ientry-idm6255">gog_object_can_reorder, <a class="indexterm" href="GogObject.html#gog-object-can-reorder">gog_object_can_reorder ()</a>
</dt>
<dt id="ientry-idm6305">gog_object_clear_parent, <a class="indexterm" href="GogObject.html#gog-object-clear-parent">gog_object_clear_parent ()</a>
</dt>
<dt id="ientry-idm6337">gog_object_document_changed, <a class="indexterm" href="GogObject.html#gog-object-document-changed">gog_object_document_changed ()</a>
</dt>
<dt id="ientry-idm6350">gog_object_dup, <a class="indexterm" href="GogObject.html#gog-object-dup">gog_object_dup ()</a>
</dt>
<dt id="ientry-idm6407">gog_object_emit_changed, <a class="indexterm" href="GogObject.html#gog-object-emit-changed">gog_object_emit_changed ()</a>
</dt>
<dt id="ientry-idm6420">gog_object_find_role_by_name, <a class="indexterm" href="GogObject.html#gog-object-find-role-by-name">gog_object_find_role_by_name ()</a>
</dt>
<dt id="ientry-idm6527">gog_object_get_children, <a class="indexterm" href="GogObject.html#gog-object-get-children">gog_object_get_children ()</a>
</dt>
<dt id="ientry-idm6433">gog_object_get_child_by_name, <a class="indexterm" href="GogObject.html#gog-object-get-child-by-name">gog_object_get_child_by_name ()</a>
</dt>
<dt id="ientry-idm6480">gog_object_get_child_by_role, <a class="indexterm" href="GogObject.html#gog-object-get-child-by-role">gog_object_get_child_by_role ()</a>
</dt>
<dt id="ientry-idm6572">gog_object_get_editor, <a class="indexterm" href="GogObject.html#gog-object-get-editor">gog_object_get_editor ()</a>
</dt>
<dt id="ientry-idm6629">gog_object_get_graph, <a class="indexterm" href="GogObject.html#gog-object-get-graph">gog_object_get_graph ()</a>
</dt>
<dt id="ientry-idm6661">gog_object_get_id, <a class="indexterm" href="GogObject.html#gog-object-get-id">gog_object_get_id ()</a>
</dt>
<dt id="ientry-idm6671">gog_object_get_manual_allocation, <a class="indexterm" href="GogObject.html#gog-object-get-manual-allocation">gog_object_get_manual_allocation ()</a>
</dt>
<dt id="ientry-idm6722">gog_object_get_manual_position, <a class="indexterm" href="GogObject.html#gog-object-get-manual-position">gog_object_get_manual_position ()</a>
</dt>
<dt id="ientry-idm6760">gog_object_get_manual_size_mode, <a class="indexterm" href="GogObject.html#gog-object-get-manual-size-mode">gog_object_get_manual_size_mode ()</a>
</dt>
<dt id="ientry-idm6770">gog_object_get_name, <a class="indexterm" href="GogObject.html#gog-object-get-name">gog_object_get_name ()</a>
</dt>
<dt id="ientry-idm6800">gog_object_get_parent, <a class="indexterm" href="GogObject.html#gog-object-get-parent">gog_object_get_parent ()</a>
</dt>
<dt id="ientry-idm6835">gog_object_get_parent_typed, <a class="indexterm" href="GogObject.html#gog-object-get-parent-typed">gog_object_get_parent_typed ()</a>
</dt>
<dt id="ientry-idm6883">gog_object_get_position_flags, <a class="indexterm" href="GogObject.html#gog-object-get-position-flags">gog_object_get_position_flags ()</a>
</dt>
<dt id="ientry-idm6925">gog_object_get_theme, <a class="indexterm" href="GogObject.html#gog-object-get-theme">gog_object_get_theme ()</a>
</dt>
<dt id="ientry-idm6957">gog_object_is_default_position_flags, <a class="indexterm" href="GogObject.html#gog-object-is-default-position-flags">gog_object_is_default_position_flags ()</a>
</dt>
<dt id="ientry-idm6970">gog_object_is_deletable, <a class="indexterm" href="GogObject.html#gog-object-is-deletable">gog_object_is_deletable ()</a>
</dt>
<dt id="ientry-idm7002">gog_object_is_visible, <a class="indexterm" href="GogObject.html#gog-object-is-visible">gog_object_is_visible()</a>
</dt>
<dt id="ientry-idm7007">gog_object_new_view, <a class="indexterm" href="GogObject.html#gog-object-new-view">gog_object_new_view ()</a>
</dt>
<dt id="ientry-idm7055">gog_object_possible_additions, <a class="indexterm" href="GogObject.html#gog-object-possible-additions">gog_object_possible_additions ()</a>
</dt>
<dt id="ientry-idm7088">gog_object_register_roles, <a class="indexterm" href="GogObject.html#gog-object-register-roles">gog_object_register_roles ()</a>
</dt>
<dt id="ientry-idm7134">gog_object_reorder, <a class="indexterm" href="GogObject.html#gog-object-reorder">gog_object_reorder ()</a>
</dt>
<dt id="ientry-idm7173">gog_object_request_editor_update, <a class="indexterm" href="GogObject.html#gog-object-request-editor-update">gog_object_request_editor_update ()</a>
</dt>
<dt id="ientry-idm7200">gog_object_request_update, <a class="indexterm" href="GogObject.html#gog-object-request-update">gog_object_request_update ()</a>
</dt>
<dt id="ientry-idm7210">gog_object_set_invisible, <a class="indexterm" href="GogObject.html#gog-object-set-invisible">gog_object_set_invisible ()</a>
</dt>
<dt id="ientry-idm7239">gog_object_set_manual_position, <a class="indexterm" href="GogObject.html#gog-object-set-manual-position">gog_object_set_manual_position ()</a>
</dt>
<dt id="ientry-idm7277">gog_object_set_name, <a class="indexterm" href="GogObject.html#gog-object-set-name">gog_object_set_name ()</a>
</dt>
<dt id="ientry-idm7331">gog_object_set_parent, <a class="indexterm" href="GogObject.html#gog-object-set-parent">gog_object_set_parent ()</a>
</dt>
<dt id="ientry-idm7398">gog_object_set_position_flags, <a class="indexterm" href="GogObject.html#gog-object-set-position-flags">gog_object_set_position_flags ()</a>
</dt>
<dt id="ientry-idm7452">gog_object_update, <a class="indexterm" href="GogObject.html#gog-object-update">gog_object_update ()</a>
</dt>
<dt id="ientry-idm8636">gog_outlined_object_get_pad, <a class="indexterm" href="GogOutlinedView.html#gog-outlined-object-get-pad">gog_outlined_object_get_pad ()</a>
</dt>
<dt id="ientry-idm7464">GOG_PARAM_FORCE_SAVE, <a class="indexterm" href="GogObject.html#GOG-PARAM-FORCE-SAVE:CAPS">GOG_PARAM_FORCE_SAVE</a>
</dt>
<dt id="ientry-idm7469">GOG_PARAM_POSITION, <a class="indexterm" href="GogObject.html#GOG-PARAM-POSITION:CAPS">GOG_PARAM_POSITION</a>
</dt>
<dt id="ientry-idm9037">gog_plot_axis_clear, <a class="indexterm" href="GogPlot.html#gog-plot-axis-clear">gog_plot_axis_clear ()</a>
</dt>
<dt id="ientry-idm9076">gog_plot_axis_set_assign, <a class="indexterm" href="GogPlot.html#gog-plot-axis-set-assign">gog_plot_axis_set_assign ()</a>
</dt>
<dt id="ientry-idm9089">gog_plot_axis_set_is_valid, <a class="indexterm" href="GogPlot.html#gog-plot-axis-set-is-valid">gog_plot_axis_set_is_valid ()</a>
</dt>
<dt id="ientry-idm9102">gog_plot_axis_set_pref, <a class="indexterm" href="GogPlot.html#gog-plot-axis-set-pref">gog_plot_axis_set_pref ()</a>
</dt>
<dt id="ientry-idm9112">gog_plot_clear_series, <a class="indexterm" href="GogPlot.html#gog-plot-clear-series">gog_plot_clear_series ()</a>
</dt>
<dt id="ientry-idm9122">gog_plot_description, <a class="indexterm" href="GogPlot.html#gog-plot-description">gog_plot_description ()</a>
</dt>
<dt id="ientry-idm16024">gog_plot_families, <a class="indexterm" href="goffice-0.10-Families-and-types.html#gog-plot-families">gog_plot_families ()</a>
</dt>
<dt id="ientry-idm16040">gog_plot_family_by_name, <a class="indexterm" href="goffice-0.10-Families-and-types.html#gog-plot-family-by-name">gog_plot_family_by_name ()</a>
</dt>
<dt id="ientry-idm16070">gog_plot_family_register, <a class="indexterm" href="goffice-0.10-Families-and-types.html#gog-plot-family-register">gog_plot_family_register ()</a>
</dt>
<dt id="ientry-idm16123">gog_plot_family_unregister, <a class="indexterm" href="goffice-0.10-Families-and-types.html#gog-plot-family-unregister">gog_plot_family_unregister ()</a>
</dt>
<dt id="ientry-idm9160">gog_plot_foreach_elem, <a class="indexterm" href="GogPlot.html#gog-plot-foreach-elem">gog_plot_foreach_elem ()</a>
</dt>
<dt id="ientry-idm9220">gog_plot_get_axis, <a class="indexterm" href="GogPlot.html#gog-plot-get-axis">gog_plot_get_axis ()</a>
</dt>
<dt id="ientry-idm9263">gog_plot_get_axis_bounds, <a class="indexterm" href="GogPlot.html#gog-plot-get-axis-bounds">gog_plot_get_axis_bounds ()</a>
</dt>
<dt id="ientry-idm9323">gog_plot_get_cardinality, <a class="indexterm" href="GogPlot.html#gog-plot-get-cardinality">gog_plot_get_cardinality ()</a>
</dt>
<dt id="ientry-idm9032">GOG_PLOT_GET_CLASS, <a class="indexterm" href="GogPlot.html#GOG-PLOT-GET-CLASS:CAPS">GOG_PLOT_GET_CLASS()</a>
</dt>
<dt id="ientry-idm9372">gog_plot_get_percent_value, <a class="indexterm" href="GogPlot.html#gog-plot-get-percent-value">gog_plot_get_percent_value ()</a>
</dt>
<dt id="ientry-idm9388">gog_plot_get_series, <a class="indexterm" href="GogPlot.html#gog-plot-get-series">gog_plot_get_series ()</a>
</dt>
<dt id="ientry-idm9418">gog_plot_guru_helper, <a class="indexterm" href="GogPlot.html#gog-plot-guru-helper">gog_plot_guru_helper ()</a>
</dt>
<dt id="ientry-idm9428">gog_plot_new_by_name, <a class="indexterm" href="GogPlot.html#gog-plot-new-by-name">gog_plot_new_by_name ()</a>
</dt>
<dt id="ientry-idm9438">gog_plot_new_by_type, <a class="indexterm" href="GogPlot.html#gog-plot-new-by-type">gog_plot_new_by_type ()</a>
</dt>
<dt id="ientry-idm9448">gog_plot_new_series, <a class="indexterm" href="GogPlot.html#gog-plot-new-series">gog_plot_new_series ()</a>
</dt>
<dt id="ientry-idm9481">gog_plot_request_cardinality_update, <a class="indexterm" href="GogPlot.html#gog-plot-request-cardinality-update">gog_plot_request_cardinality_update ()</a>
</dt>
<dt id="ientry-idm9491">gog_plot_set_axis, <a class="indexterm" href="GogPlot.html#gog-plot-set-axis">gog_plot_set_axis ()</a>
</dt>
<dt id="ientry-idm9531">gog_plot_supports_vary_style_by_element, <a class="indexterm" href="GogPlot.html#gog-plot-supports-vary-style-by-element">gog_plot_supports_vary_style_by_element ()</a>
</dt>
<dt id="ientry-idm16133">gog_plot_type_register, <a class="indexterm" href="goffice-0.10-Families-and-types.html#gog-plot-type-register">gog_plot_type_register ()</a>
</dt>
<dt id="ientry-idm9541">gog_plot_update_3d, <a class="indexterm" href="GogPlot.html#gog-plot-update-3d">gog_plot_update_3d ()</a>
</dt>
<dt id="ientry-idm9551">gog_plot_update_cardinality, <a class="indexterm" href="GogPlot.html#gog-plot-update-cardinality">gog_plot_update_cardinality ()</a>
</dt>
<dt id="ientry-idm9588">gog_plot_view_get_data_at_point, <a class="indexterm" href="GogPlot.html#gog-plot-view-get-data-at-point">gog_plot_view_get_data_at_point ()</a>
</dt>
<dt id="ientry-idm11761">gog_reg_curve_get_bounds, <a class="indexterm" href="GogRegCurve.html#gog-reg-curve-get-bounds">gog_reg_curve_get_bounds ()</a>
</dt>
<dt id="ientry-idm11777">gog_reg_curve_get_equation, <a class="indexterm" href="GogRegCurve.html#gog-reg-curve-get-equation">gog_reg_curve_get_equation ()</a>
</dt>
<dt id="ientry-idm11751">gog_reg_curve_get_R2, <a class="indexterm" href="GogRegCurve.html#gog-reg-curve-get-R2">gog_reg_curve_get_R2 ()</a>
</dt>
<dt id="ientry-idm14235">gog_renderer_draw_circle, <a class="indexterm" href="GogRenderer.html#gog-renderer-draw-circle">gog_renderer_draw_circle ()</a>
</dt>
<dt id="ientry-idm14254">gog_renderer_draw_color_map, <a class="indexterm" href="GogRenderer.html#gog-renderer-draw-color-map">gog_renderer_draw_color_map ()</a>
</dt>
<dt id="ientry-idm14276">gog_renderer_draw_data_label, <a class="indexterm" href="GogRenderer.html#gog-renderer-draw-data-label">gog_renderer_draw_data_label ()</a>
</dt>
<dt id="ientry-idm14298">gog_renderer_draw_gostring, <a class="indexterm" href="GogRenderer.html#gog-renderer-draw-gostring">gog_renderer_draw_gostring ()</a>
</dt>
<dt id="ientry-idm14385">gog_renderer_draw_grip, <a class="indexterm" href="GogRenderer.html#gog-renderer-draw-grip">gog_renderer_draw_grip ()</a>
</dt>
<dt id="ientry-idm14430">gog_renderer_draw_marker, <a class="indexterm" href="GogRenderer.html#gog-renderer-draw-marker">gog_renderer_draw_marker ()</a>
</dt>
<dt id="ientry-idm14474">gog_renderer_draw_rectangle, <a class="indexterm" href="GogRenderer.html#gog-renderer-draw-rectangle">gog_renderer_draw_rectangle ()</a>
</dt>
<dt id="ientry-idm14510">gog_renderer_draw_rotated_rectangle, <a class="indexterm" href="GogRenderer.html#gog-renderer-draw-rotated-rectangle">gog_renderer_draw_rotated_rectangle ()</a>
</dt>
<dt id="ientry-idm14526">gog_renderer_draw_selection_rectangle, <a class="indexterm" href="GogRenderer.html#gog-renderer-draw-selection-rectangle">gog_renderer_draw_selection_rectangle ()</a>
</dt>
<dt id="ientry-idm14539">gog_renderer_draw_shape, <a class="indexterm" href="GogRenderer.html#gog-renderer-draw-shape">gog_renderer_draw_shape ()</a>
</dt>
<dt id="ientry-idm14552">gog_renderer_draw_text, <a class="indexterm" href="GogRenderer.html#gog-renderer-draw-text">gog_renderer_draw_text ()</a>
</dt>
<dt id="ientry-idm14646">gog_renderer_export_image, <a class="indexterm" href="GogRenderer.html#gog-renderer-export-image">gog_renderer_export_image ()</a>
</dt>
<dt id="ientry-idm14723">gog_renderer_fill_circle, <a class="indexterm" href="GogRenderer.html#gog-renderer-fill-circle">gog_renderer_fill_circle ()</a>
</dt>
<dt id="ientry-idm14742">gog_renderer_fill_rectangle, <a class="indexterm" href="GogRenderer.html#gog-renderer-fill-rectangle">gog_renderer_fill_rectangle ()</a>
</dt>
<dt id="ientry-idm14755">gog_renderer_fill_serie, <a class="indexterm" href="GogRenderer.html#gog-renderer-fill-serie">gog_renderer_fill_serie ()</a>
</dt>
<dt id="ientry-idm14771">gog_renderer_fill_shape, <a class="indexterm" href="GogRenderer.html#gog-renderer-fill-shape">gog_renderer_fill_shape ()</a>
</dt>
<dt id="ientry-idm14784">gog_renderer_get_cairo_surface, <a class="indexterm" href="GogRenderer.html#gog-renderer-get-cairo-surface">gog_renderer_get_cairo_surface ()</a>
</dt>
<dt id="ientry-idm14794">gog_renderer_get_gostring_AABR, <a class="indexterm" href="GogRenderer.html#gog-renderer-get-gostring-AABR">gog_renderer_get_gostring_AABR ()</a>
</dt>
<dt id="ientry-idm14850">gog_renderer_get_gostring_OBR, <a class="indexterm" href="GogRenderer.html#gog-renderer-get-gostring-OBR">gog_renderer_get_gostring_OBR ()</a>
</dt>
<dt id="ientry-idm14906">gog_renderer_get_hairline_width_pts, <a class="indexterm" href="GogRenderer.html#gog-renderer-get-hairline-width-pts">gog_renderer_get_hairline_width_pts ()</a>
</dt>
<dt id="ientry-idm14935">gog_renderer_get_pixbuf, <a class="indexterm" href="GogRenderer.html#gog-renderer-get-pixbuf">gog_renderer_get_pixbuf ()</a>
</dt>
<dt id="ientry-idm14969">gog_renderer_get_scale, <a class="indexterm" href="GogRenderer.html#gog-renderer-get-scale">gog_renderer_get_scale ()</a>
</dt>
<dt id="ientry-idm14979">gog_renderer_get_text_AABR, <a class="indexterm" href="GogRenderer.html#gog-renderer-get-text-AABR">gog_renderer_get_text_AABR ()</a>
</dt>
<dt id="ientry-idm15044">gog_renderer_get_text_OBR, <a class="indexterm" href="GogRenderer.html#gog-renderer-get-text-OBR">gog_renderer_get_text_OBR ()</a>
</dt>
<dt id="ientry-idm15523">GOG_RENDERER_GRIP_SIZE, <a class="indexterm" href="GogRenderer.html#GOG-RENDERER-GRIP-SIZE:CAPS">GOG_RENDERER_GRIP_SIZE</a>
</dt>
<dt id="ientry-idm15528">GOG_RENDERER_HAIRLINE_WIDTH_PTS, <a class="indexterm" href="GogRenderer.html#GOG-RENDERER-HAIRLINE-WIDTH-PTS:CAPS">GOG_RENDERER_HAIRLINE_WIDTH_PTS</a>
</dt>
<dt id="ientry-idm15109">gog_renderer_in_grip, <a class="indexterm" href="GogRenderer.html#gog-renderer-in-grip">gog_renderer_in_grip()</a>
</dt>
<dt id="ientry-idm15114">gog_renderer_line_size, <a class="indexterm" href="GogRenderer.html#gog-renderer-line-size">gog_renderer_line_size ()</a>
</dt>
<dt id="ientry-idm15127">gog_renderer_new, <a class="indexterm" href="GogRenderer.html#gog-renderer-new">gog_renderer_new ()</a>
</dt>
<dt id="ientry-idm15157">gog_renderer_pop_clip, <a class="indexterm" href="GogRenderer.html#gog-renderer-pop-clip">gog_renderer_pop_clip ()</a>
</dt>
<dt id="ientry-idm15184">gog_renderer_pop_style, <a class="indexterm" href="GogRenderer.html#gog-renderer-pop-style">gog_renderer_pop_style ()</a>
</dt>
<dt id="ientry-idm15194">gog_renderer_pt2r, <a class="indexterm" href="GogRenderer.html#gog-renderer-pt2r">gog_renderer_pt2r ()</a>
</dt>
<dt id="ientry-idm15207">gog_renderer_pt2r_x, <a class="indexterm" href="GogRenderer.html#gog-renderer-pt2r-x">gog_renderer_pt2r_x ()</a>
</dt>
<dt id="ientry-idm15220">gog_renderer_pt2r_y, <a class="indexterm" href="GogRenderer.html#gog-renderer-pt2r-y">gog_renderer_pt2r_y ()</a>
</dt>
<dt id="ientry-idm15233">gog_renderer_push_clip, <a class="indexterm" href="GogRenderer.html#gog-renderer-push-clip">gog_renderer_push_clip ()</a>
</dt>
<dt id="ientry-idm15271">gog_renderer_push_clip_rectangle, <a class="indexterm" href="GogRenderer.html#gog-renderer-push-clip-rectangle">gog_renderer_push_clip_rectangle ()</a>
</dt>
<dt id="ientry-idm15334">gog_renderer_push_style, <a class="indexterm" href="GogRenderer.html#gog-renderer-push-style">gog_renderer_push_style ()</a>
</dt>
<dt id="ientry-idm15347">gog_renderer_render_to_cairo, <a class="indexterm" href="GogRenderer.html#gog-renderer-render-to-cairo">gog_renderer_render_to_cairo ()</a>
</dt>
<dt id="ientry-idm15366">gog_renderer_request_update, <a class="indexterm" href="GogRenderer.html#gog-renderer-request-update">gog_renderer_request_update ()</a>
</dt>
<dt id="ientry-idm15376">gog_renderer_stroke_circle, <a class="indexterm" href="GogRenderer.html#gog-renderer-stroke-circle">gog_renderer_stroke_circle ()</a>
</dt>
<dt id="ientry-idm15395">gog_renderer_stroke_rectangle, <a class="indexterm" href="GogRenderer.html#gog-renderer-stroke-rectangle">gog_renderer_stroke_rectangle ()</a>
</dt>
<dt id="ientry-idm15408">gog_renderer_stroke_serie, <a class="indexterm" href="GogRenderer.html#gog-renderer-stroke-serie">gog_renderer_stroke_serie ()</a>
</dt>
<dt id="ientry-idm15421">gog_renderer_stroke_shape, <a class="indexterm" href="GogRenderer.html#gog-renderer-stroke-shape">gog_renderer_stroke_shape ()</a>
</dt>
<dt id="ientry-idm15434">gog_renderer_update, <a class="indexterm" href="GogRenderer.html#gog-renderer-update">gog_renderer_update ()</a>
</dt>
<dt id="ientry-idm10292">gog_series_check_validity, <a class="indexterm" href="GogSeries.html#gog-series-check-validity">gog_series_check_validity ()</a>
</dt>
<dt id="ientry-idm10319">gog_series_get_element, <a class="indexterm" href="GogSeries.html#gog-series-get-element">gog_series_get_element ()</a>
</dt>
<dt id="ientry-idm10363">gog_series_get_fill_type, <a class="indexterm" href="GogSeries.html#gog-series-get-fill-type">gog_series_get_fill_type ()</a>
</dt>
<dt id="ientry-idm10373">gog_series_get_fill_type_from_combo, <a class="indexterm" href="GogSeries.html#gog-series-get-fill-type-from-combo">gog_series_get_fill_type_from_combo ()</a>
</dt>
<dt id="ientry-idm10386">gog_series_get_interpolation_params, <a class="indexterm" href="GogSeries.html#gog-series-get-interpolation-params">gog_series_get_interpolation_params ()</a>
</dt>
<dt id="ientry-idm10419">gog_series_get_name, <a class="indexterm" href="GogSeries.html#gog-series-get-name">gog_series_get_name ()</a>
</dt>
<dt id="ientry-idm10454">gog_series_get_overrides, <a class="indexterm" href="GogSeries.html#gog-series-get-overrides">gog_series_get_overrides ()</a>
</dt>
<dt id="ientry-idm10488">gog_series_get_plot, <a class="indexterm" href="GogSeries.html#gog-series-get-plot">gog_series_get_plot ()</a>
</dt>
<dt id="ientry-idm10536">gog_series_get_xyz_data, <a class="indexterm" href="GogSeries.html#gog-series-get-xyz-data">gog_series_get_xyz_data ()</a>
</dt>
<dt id="ientry-idm10520">gog_series_get_xy_data, <a class="indexterm" href="GogSeries.html#gog-series-get-xy-data">gog_series_get_xy_data ()</a>
</dt>
<dt id="ientry-idm10555">gog_series_has_legend, <a class="indexterm" href="GogSeries.html#gog-series-has-legend">gog_series_has_legend ()</a>
</dt>
<dt id="ientry-idm10584">gog_series_is_valid, <a class="indexterm" href="GogSeries.html#gog-series-is-valid">gog_series_is_valid ()</a>
</dt>
<dt id="ientry-idm5307">gog_series_labels_get_position, <a class="indexterm" href="GogSeriesLabels.html#gog-series-labels-get-position">gog_series_labels_get_position ()</a>
</dt>
<dt id="ientry-idm5317">gog_series_labels_scalar_get_element, <a class="indexterm" href="GogSeriesLabels.html#gog-series-labels-scalar-get-element">gog_series_labels_scalar_get_element ()</a>
</dt>
<dt id="ientry-idm5327">gog_series_labels_set_allowed_position, <a class="indexterm" href="GogSeriesLabels.html#gog-series-labels-set-allowed-position">gog_series_labels_set_allowed_position ()</a>
</dt>
<dt id="ientry-idm5340">gog_series_labels_set_default_position, <a class="indexterm" href="GogSeriesLabels.html#gog-series-labels-set-default-position">gog_series_labels_set_default_position ()</a>
</dt>
<dt id="ientry-idm5353">gog_series_labels_set_position, <a class="indexterm" href="GogSeriesLabels.html#gog-series-labels-set-position">gog_series_labels_set_position ()</a>
</dt>
<dt id="ientry-idm5366">gog_series_labels_vector_get_element, <a class="indexterm" href="GogSeriesLabels.html#gog-series-labels-vector-get-element">gog_series_labels_vector_get_element ()</a>
</dt>
<dt id="ientry-idm5614">gog_series_lines_stroke, <a class="indexterm" href="GogSeriesLines.html#gog-series-lines-stroke">gog_series_lines_stroke ()</a>
</dt>
<dt id="ientry-idm5636">gog_series_lines_use_markers, <a class="indexterm" href="GogSeriesLines.html#gog-series-lines-use-markers">gog_series_lines_use_markers ()</a>
</dt>
<dt id="ientry-idm10613">gog_series_map_XL_dim, <a class="indexterm" href="GogSeries.html#gog-series-map-XL-dim">gog_series_map_XL_dim ()</a>
</dt>
<dt id="ientry-idm10626">gog_series_num_elements, <a class="indexterm" href="GogSeries.html#gog-series-num-elements">gog_series_num_elements ()</a>
</dt>
<dt id="ientry-idm10655">gog_series_populate_fill_type_combo, <a class="indexterm" href="GogSeries.html#gog-series-populate-fill-type-combo">gog_series_populate_fill_type_combo ()</a>
</dt>
<dt id="ientry-idm10687">gog_series_set_dim, <a class="indexterm" href="GogSeries.html#gog-series-set-dim">gog_series_set_dim ()</a>
</dt>
<dt id="ientry-idm10750">gog_series_set_fill_type, <a class="indexterm" href="GogSeries.html#gog-series-set-fill-type">gog_series_set_fill_type ()</a>
</dt>
<dt id="ientry-idm10763">gog_series_set_index, <a class="indexterm" href="GogSeries.html#gog-series-set-index">gog_series_set_index ()</a>
</dt>
<dt id="ientry-idm10812">gog_series_set_name, <a class="indexterm" href="GogSeries.html#gog-series-set-name">gog_series_set_name ()</a>
</dt>
<dt id="ientry-idm10668">gog_series_set_XL_dim, <a class="indexterm" href="GogSeries.html#gog-series-set-XL-dim">gog_series_set_XL_dim ()</a>
</dt>
<dt id="ientry-idm8404">gog_style_new, <a class="indexterm" href="GogStyledObject.html#gog-style-new">gog_style_new ()</a>
</dt>
<dt id="ientry-idm13789">gog_text_get_markup, <a class="indexterm" href="GogText.html#gog-text-get-markup">gog_text_get_markup ()</a>
</dt>
<dt id="ientry-idm13799">gog_text_get_str, <a class="indexterm" href="GogText.html#gog-text-get-str">gog_text_get_str ()</a>
</dt>
<dt id="ientry-idm16791">gog_theme_delete, <a class="indexterm" href="goffice-0.10-Theming.html#gog-theme-delete">gog_theme_delete ()</a>
</dt>
<dt id="ientry-idm16823">gog_theme_dup, <a class="indexterm" href="goffice-0.10-Theming.html#gog-theme-dup">gog_theme_dup ()</a>
</dt>
<dt id="ientry-idm16857">gog_theme_edit, <a class="indexterm" href="goffice-0.10-Theming.html#gog-theme-edit">gog_theme_edit ()</a>
</dt>
<dt id="ientry-idm16947">gog_theme_fillin_style, <a class="indexterm" href="goffice-0.10-Theming.html#gog-theme-fillin-style">gog_theme_fillin_style ()</a>
</dt>
<dt id="ientry-idm16907">gog_theme_foreach, <a class="indexterm" href="goffice-0.10-Theming.html#gog-theme-foreach">gog_theme_foreach ()</a>
</dt>
<dt id="ientry-idm17021">gog_theme_get_color_map, <a class="indexterm" href="goffice-0.10-Theming.html#gog-theme-get-color-map">gog_theme_get_color_map ()</a>
</dt>
<dt id="ientry-idm17063">gog_theme_get_description, <a class="indexterm" href="goffice-0.10-Theming.html#gog-theme-get-description">gog_theme_get_description ()</a>
</dt>
<dt id="ientry-idm17073">gog_theme_get_id, <a class="indexterm" href="goffice-0.10-Theming.html#gog-theme-get-id">gog_theme_get_id ()</a>
</dt>
<dt id="ientry-idm17103">gog_theme_get_name, <a class="indexterm" href="goffice-0.10-Theming.html#gog-theme-get-name">gog_theme_get_name ()</a>
</dt>
<dt id="ientry-idm17132">gog_theme_get_resource_type, <a class="indexterm" href="goffice-0.10-Theming.html#gog-theme-get-resource-type">gog_theme_get_resource_type ()</a>
</dt>
<dt id="ientry-idm17142">gog_theme_registry_get_theme_names, <a class="indexterm" href="goffice-0.10-Theming.html#gog-theme-registry-get-theme-names">gog_theme_registry_get_theme_names ()</a>
</dt>
<dt id="ientry-idm17158">gog_theme_registry_lookup, <a class="indexterm" href="goffice-0.10-Theming.html#gog-theme-registry-lookup">gog_theme_registry_lookup ()</a>
</dt>
<dt id="ientry-idm17190">gog_theme_save_to_home_dir, <a class="indexterm" href="goffice-0.10-Theming.html#gog-theme-save-to-home-dir">gog_theme_save_to_home_dir ()</a>
</dt>
<dt id="ientry-idm15752">gog_tool_action_double_click, <a class="indexterm" href="goffice-0.10-GogTool.html#gog-tool-action-double-click">gog_tool_action_double_click ()</a>
</dt>
<dt id="ientry-idm15762">gog_tool_action_free, <a class="indexterm" href="goffice-0.10-GogTool.html#gog-tool-action-free">gog_tool_action_free ()</a>
</dt>
<dt id="ientry-idm15772">gog_tool_action_move, <a class="indexterm" href="goffice-0.10-GogTool.html#gog-tool-action-move">gog_tool_action_move ()</a>
</dt>
<dt id="ientry-idm15788">gog_tool_action_new, <a class="indexterm" href="goffice-0.10-GogTool.html#gog-tool-action-new">gog_tool_action_new ()</a>
</dt>
<dt id="ientry-idm11514">gog_trend_line_has_legend, <a class="indexterm" href="GogTrendLine.html#gog-trend-line-has-legend">gog_trend_line_has_legend ()</a>
</dt>
<dt id="ientry-idm11524">gog_trend_line_new_by_name, <a class="indexterm" href="GogTrendLine.html#gog-trend-line-new-by-name">gog_trend_line_new_by_name ()</a>
</dt>
<dt id="ientry-idm11534">gog_trend_line_new_by_type, <a class="indexterm" href="GogTrendLine.html#gog-trend-line-new-by-type">gog_trend_line_new_by_type ()</a>
</dt>
<dt id="ientry-idm16221">gog_trend_line_types, <a class="indexterm" href="goffice-0.10-Families-and-types.html#gog-trend-line-types">gog_trend_line_types ()</a>
</dt>
<dt id="ientry-idm12087">gog_view_find_child_view, <a class="indexterm" href="GogView.html#gog-view-find-child-view">gog_view_find_child_view ()</a>
</dt>
<dt id="ientry-idm12134">gog_view_get_model, <a class="indexterm" href="GogView.html#gog-view-get-model">gog_view_get_model ()</a>
</dt>
<dt id="ientry-idm12168">gog_view_get_natural_size, <a class="indexterm" href="GogView.html#gog-view-get-natural-size">gog_view_get_natural_size ()</a>
</dt>
<dt id="ientry-idm12181">gog_view_get_tip_at_point, <a class="indexterm" href="GogView.html#gog-view-get-tip-at-point">gog_view_get_tip_at_point ()</a>
</dt>
<dt id="ientry-idm12293">gog_view_get_toolkit, <a class="indexterm" href="GogView.html#gog-view-get-toolkit">gog_view_get_toolkit ()</a>
</dt>
<dt id="ientry-idm12232">gog_view_get_tool_at_point, <a class="indexterm" href="GogView.html#gog-view-get-tool-at-point">gog_view_get_tool_at_point ()</a>
</dt>
<dt id="ientry-idm12326">gog_view_get_view_at_point, <a class="indexterm" href="GogView.html#gog-view-get-view-at-point">gog_view_get_view_at_point ()</a>
</dt>
<dt id="ientry-idm12400">gog_view_padding_request, <a class="indexterm" href="GogView.html#gog-view-padding-request">gog_view_padding_request ()</a>
</dt>
<dt id="ientry-idm12416">gog_view_queue_redraw, <a class="indexterm" href="GogView.html#gog-view-queue-redraw">gog_view_queue_redraw ()</a>
</dt>
<dt id="ientry-idm12443">gog_view_queue_resize, <a class="indexterm" href="GogView.html#gog-view-queue-resize">gog_view_queue_resize ()</a>
</dt>
<dt id="ientry-idm12470">gog_view_render, <a class="indexterm" href="GogView.html#gog-view-render">gog_view_render ()</a>
</dt>
<dt id="ientry-idm12483">gog_view_render_toolkit, <a class="indexterm" href="GogView.html#gog-view-render-toolkit">gog_view_render_toolkit ()</a>
</dt>
<dt id="ientry-idm12510">gog_view_size_allocate, <a class="indexterm" href="GogView.html#gog-view-size-allocate">gog_view_size_allocate ()</a>
</dt>
<dt id="ientry-idm12547">gog_view_size_child_request, <a class="indexterm" href="GogView.html#gog-view-size-child-request">gog_view_size_child_request ()</a>
</dt>
<dt id="ientry-idm12603">gog_view_size_request, <a class="indexterm" href="GogView.html#gog-view-size-request">gog_view_size_request ()</a>
</dt>
<dt id="ientry-idm12653">gog_view_update_sizes, <a class="indexterm" href="GogView.html#gog-view-update-sizes">gog_view_update_sizes ()</a>
</dt>
<dt id="ientry-idm39585">GOImage, <a class="indexterm" href="GOImage.html#GOImage-struct">GOImage</a>
</dt>
<dt id="ientry-idm39810">GOImage:height, <a class="indexterm" href="GOImage.html#GOImage--height">The “height” property</a>
</dt>
<dt id="ientry-idm39822">GOImage:width, <a class="indexterm" href="GOImage.html#GOImage--width">The “width” property</a>
</dt>
<dt id="ientry-idm39590">GOImageClass, <a class="indexterm" href="GOImage.html#GOImageClass">GOImageClass</a>
</dt>
<dt id="ientry-idm39663">GOImageFormat, <a class="indexterm" href="GOImage.html#GOImageFormat">enum GOImageFormat</a>
</dt>
<dt id="ientry-idm39729">GOImageFormatInfo, <a class="indexterm" href="GOImage.html#GOImageFormatInfo-struct">GOImageFormatInfo</a>
</dt>
<dt id="ientry-idm34793">GOImageType, <a class="indexterm" href="GOStyle.html#GOImageType">enum GOImageType</a>
</dt>
<dt id="ientry-idm57252">GOIOContextClass, <a class="indexterm" href="GOIOContext.html#GOIOContextClass">GOIOContextClass</a>
</dt>
<dt id="ientry-idm15486">GoJustification, <a class="indexterm" href="GogRenderer.html#GoJustification">enum GoJustification</a>
</dt>
<dt id="ientry-idm32880">GOLineDashSequence, <a class="indexterm" href="goffice-0.10-Line.html#GOLineDashSequence-struct">GOLineDashSequence</a>
</dt>
<dt id="ientry-idm35989">GOLineDashType, <a class="indexterm" href="goffice-0.10-Miscellaneous.html#GOLineDashType">enum GOLineDashType</a>
</dt>
<dt id="ientry-idm36068">GOLineInterpolation, <a class="indexterm" href="goffice-0.10-Miscellaneous.html#GOLineInterpolation">enum GOLineInterpolation</a>
</dt>
<dt id="ientry-idm30277">GOLocaleSel, <a class="indexterm" href="GOLocaleSel.html#GOLocaleSel-struct">GOLocaleSel</a>
</dt>
<dt id="ientry-idm30285">GOLocaleSel::locale-changed, <a class="indexterm" href="GOLocaleSel.html#GOLocaleSel-locale-changed">The “locale-changed” signal</a>
</dt>
<dt id="ientry-idm65621">GOMapFunc, <a class="indexterm" href="goffice-0.10-GLib-extras.html#GOMapFunc">GOMapFunc ()</a>
</dt>
<dt id="ientry-idm33408">GOMarker, <a class="indexterm" href="GOMarker.html#GOMarker-struct">GOMarker</a>
</dt>
<dt id="ientry-idm33413">GOMarkerShape, <a class="indexterm" href="GOMarker.html#GOMarkerShape">enum GOMarkerShape</a>
</dt>
<dt id="ientry-idm66691">GOMemChunk, <a class="indexterm" href="goffice-0.10-GLib-extras.html#GOMemChunk-struct">GOMemChunk</a>
</dt>
<dt id="ientry-idm26827">GOMenuPixmaps, <a class="indexterm" href="GOComboPixmaps.html#GOMenuPixmaps-struct">GOMenuPixmaps</a>
</dt>
<dt id="ientry-idm26851">GOMenuPixmaps::changed, <a class="indexterm" href="GOComboPixmaps.html#GOMenuPixmaps-changed">The “changed” signal</a>
</dt>
<dt id="ientry-idm59747">GOMimePriority, <a class="indexterm" href="goffice-0.10-Components-factory.html#GOMimePriority">enum GOMimePriority</a>
</dt>
<dt id="ientry-idm31448">GONamedColor, <a class="indexterm" href="goffice-0.10-GOColor.html#GONamedColor">GONamedColor</a>
</dt>
<dt id="ientry-idm27182">GOOptionMenu, <a class="indexterm" href="GOOptionMenu.html#GOOptionMenu-struct">struct GOOptionMenu</a>
</dt>
<dt id="ientry-idm27202">GOOptionMenu::changed, <a class="indexterm" href="GOOptionMenu.html#GOOptionMenu-changed">The “changed” signal</a>
</dt>
<dt id="ientry-idm27190">GOOptionMenu:menu, <a class="indexterm" href="GOOptionMenu.html#GOOptionMenu--menu">The “menu” property</a>
</dt>
<dt id="ientry-idm27674">GOPalette, <a class="indexterm" href="GOPalette.html#GOPalette-struct">struct GOPalette</a>
</dt>
<dt id="ientry-idm27682">GOPalette::activate, <a class="indexterm" href="GOPalette.html#GOPalette-activate">The “activate” signal</a>
</dt>
<dt id="ientry-idm27698">GOPalette::automatic-activate, <a class="indexterm" href="GOPalette.html#GOPalette-automatic-activate">The “automatic-activate” signal</a>
</dt>
<dt id="ientry-idm27714">GOPalette::custom-activate, <a class="indexterm" href="GOPalette.html#GOPalette-custom-activate">The “custom-activate” signal</a>
</dt>
<dt id="ientry-idm27357">GOPaletteSwatchRenderCallback, <a class="indexterm" href="GOPalette.html#GOPaletteSwatchRenderCallback">GOPaletteSwatchRenderCallback ()</a>
</dt>
<dt id="ientry-idm27378">GOPaletteSwatchTooltipCallback, <a class="indexterm" href="GOPalette.html#GOPaletteSwatchTooltipCallback">GOPaletteSwatchTooltipCallback ()</a>
</dt>
<dt id="ientry-idm65636">GOParseKeyValueFunc, <a class="indexterm" href="goffice-0.10-GLib-extras.html#GOParseKeyValueFunc">GOParseKeyValueFunc ()</a>
</dt>
<dt id="ientry-idm37696">GOPath, <a class="indexterm" href="GOPath.html#GOPath-struct">GOPath</a>
</dt>
<dt id="ientry-idm36745">GOPathClosePathFunc, <a class="indexterm" href="GOPath.html#GOPathClosePathFunc">GOPathClosePathFunc ()</a>
</dt>
<dt id="ientry-idm36757">GOPathCurveToFunc, <a class="indexterm" href="GOPath.html#GOPathCurveToFunc">GOPathCurveToFunc ()</a>
</dt>
<dt id="ientry-idm37701">GOPathDirection, <a class="indexterm" href="GOPath.html#GOPathDirection">enum GOPathDirection</a>
</dt>
<dt id="ientry-idm36778">GOPathLineToFunc, <a class="indexterm" href="GOPath.html#GOPathLineToFunc">GOPathLineToFunc ()</a>
</dt>
<dt id="ientry-idm36793">GOPathMoveToFunc, <a class="indexterm" href="GOPath.html#GOPathMoveToFunc">GOPathMoveToFunc ()</a>
</dt>
<dt id="ientry-idm37725">GOPathOptions, <a class="indexterm" href="GOPath.html#GOPathOptions">enum GOPathOptions</a>
</dt>
<dt id="ientry-idm37755">GOPathPoint, <a class="indexterm" href="GOPath.html#GOPathPoint">GOPathPoint</a>
</dt>
<dt id="ientry-idm33831">GOPattern, <a class="indexterm" href="goffice-0.10-GOPattern.html#GOPattern">GOPattern</a>
</dt>
<dt id="ientry-idm33865">GOPatternType, <a class="indexterm" href="goffice-0.10-GOPattern.html#GOPatternType">enum GOPatternType</a>
</dt>
<dt id="ientry-idm67475">GOPersist, <a class="indexterm" href="GOPersist.html#GOPersist-struct">GOPersist</a>
</dt>
<dt id="ientry-idm67480">GOPersistClass, <a class="indexterm" href="GOPersist.html#GOPersistClass">GOPersistClass</a>
</dt>
<dt id="ientry-idm39954">GOPixbuf, <a class="indexterm" href="GOPixbuf.html#GOPixbuf-struct">GOPixbuf</a>
</dt>
<dt id="ientry-idm39962">GOPixbuf:image-type, <a class="indexterm" href="GOPixbuf.html#GOPixbuf--image-type">The “image-type” property</a>
</dt>
<dt id="ientry-idm39973">GOPixbuf:pixbuf, <a class="indexterm" href="GOPixbuf.html#GOPixbuf--pixbuf">The “pixbuf” property</a>
</dt>
<dt id="ientry-idm58756">GOPluginLoaderClass, <a class="indexterm" href="GOPluginLoader.html#GOPluginLoaderClass">GOPluginLoaderClass</a>
</dt>
<dt id="ientry-idm58920">GOPluginLoaderModule, <a class="indexterm" href="GOPluginLoaderModule.html#GOPluginLoaderModule-struct">GOPluginLoaderModule</a>
</dt>
<dt id="ientry-idm58925">GOPluginLoaderModuleClass, <a class="indexterm" href="GOPluginLoaderModule.html#GOPluginLoaderModuleClass">GOPluginLoaderModuleClass</a>
</dt>
<dt id="ientry-idm57521">GOPluginMethod, <a class="indexterm" href="GOPlugin.html#GOPluginMethod">GOPluginMethod ()</a>
</dt>
<dt id="ientry-idm59350">GOPluginService, <a class="indexterm" href="GOPluginService.html#GOPluginService-struct">GOPluginService</a>
</dt>
<dt id="ientry-idm59355">GOPluginServiceClass, <a class="indexterm" href="GOPluginService.html#GOPluginServiceClass">GOPluginServiceClass</a>
</dt>
<dt id="ientry-idm59124">GOPluginServiceCreate, <a class="indexterm" href="GOPluginService.html#GOPluginServiceCreate">GOPluginServiceCreate ()</a>
</dt>
<dt id="ientry-idm59436">GOPluginServiceFileOpener, <a class="indexterm" href="GOPluginService.html#GOPluginServiceFileOpener-struct">GOPluginServiceFileOpener</a>
</dt>
<dt id="ientry-idm59441">GOPluginServiceFileOpenerCallbacks, <a class="indexterm" href="GOPluginService.html#GOPluginServiceFileOpenerCallbacks">GOPluginServiceFileOpenerCallbacks</a>
</dt>
<dt id="ientry-idm59470">GOPluginServiceFileSaver, <a class="indexterm" href="GOPluginService.html#GOPluginServiceFileSaver-struct">GOPluginServiceFileSaver</a>
</dt>
<dt id="ientry-idm59475">GOPluginServiceFileSaverCallbacks, <a class="indexterm" href="GOPluginService.html#GOPluginServiceFileSaverCallbacks">GOPluginServiceFileSaverCallbacks</a>
</dt>
<dt id="ientry-idm59500">GOPluginServiceGeneral, <a class="indexterm" href="GOPluginService.html#GOPluginServiceGeneral-struct">GOPluginServiceGeneral</a>
</dt>
<dt id="ientry-idm59505">GOPluginServiceGeneralCallbacks, <a class="indexterm" href="GOPluginService.html#GOPluginServiceGeneralCallbacks">GOPluginServiceGeneralCallbacks</a>
</dt>
<dt id="ientry-idm59495">GOPluginServiceGObjectLoader, <a class="indexterm" href="GOPluginService.html#GOPluginServiceGObjectLoader-struct">GOPluginServiceGObjectLoader</a>
</dt>
<dt id="ientry-idm59405">GOPluginServiceGObjectLoaderClass, <a class="indexterm" href="GOPluginService.html#GOPluginServiceGObjectLoaderClass">GOPluginServiceGObjectLoaderClass</a>
</dt>
<dt id="ientry-idm59532">GOPluginServicePluginLoader, <a class="indexterm" href="GOPluginService.html#GOPluginServicePluginLoader-struct">GOPluginServicePluginLoader</a>
</dt>
<dt id="ientry-idm59537">GOPluginServicePluginLoaderCallbacks, <a class="indexterm" href="GOPluginService.html#GOPluginServicePluginLoaderCallbacks">GOPluginServicePluginLoaderCallbacks</a>
</dt>
<dt id="ientry-idm58534">GOPluginServiceResource, <a class="indexterm" href="GOPlugin.html#GOPluginServiceResource-struct">GOPluginServiceResource</a>
</dt>
<dt id="ientry-idm59559">GOPluginServiceSimple, <a class="indexterm" href="GOPluginService.html#GOPluginServiceSimple-struct">GOPluginServiceSimple</a>
</dt>
<dt id="ientry-idm48316">GOPoint, <a class="indexterm" href="goffice-0.10-Units.html#GOPoint">GOPoint</a>
</dt>
<dt id="ientry-idm48347">GORect, <a class="indexterm" href="goffice-0.10-Units.html#GORect">GORect</a>
</dt>
<dt id="ientry-idm61953">GORegexp, <a class="indexterm" href="goffice-0.10-GORegexp.html#GORegexp">GORegexp</a>
</dt>
<dt id="ientry-idm61975">GORegmatch, <a class="indexterm" href="goffice-0.10-GORegexp.html#GORegmatch">GORegmatch</a>
</dt>
<dt id="ientry-idm62006">GORegoff, <a class="indexterm" href="goffice-0.10-GORegexp.html#GORegoff">GORegoff</a>
</dt>
<dt id="ientry-idm46512">GORegressionFunction, <a class="indexterm" href="goffice-0.10-GORegression.html#GORegressionFunction">GORegressionFunction ()</a>
</dt>
<dt id="ientry-idm46530">GORegressionFunctionl, <a class="indexterm" href="goffice-0.10-GORegression.html#GORegressionFunctionl">GORegressionFunctionl ()</a>
</dt>
<dt id="ientry-idm47656">GORegressionResult, <a class="indexterm" href="goffice-0.10-GORegression.html#GORegressionResult">enum GORegressionResult</a>
</dt>
<dt id="ientry-idm47710">GORegressionStat, <a class="indexterm" href="goffice-0.10-GORegression.html#GORegressionStat">GORegressionStat</a>
</dt>
<dt id="ientry-idm47715">GORegressionStatl, <a class="indexterm" href="goffice-0.10-GORegression.html#GORegressionStatl">GORegressionStatl</a>
</dt>
<dt id="ientry-idm36188">GoResourceType, <a class="indexterm" href="goffice-0.10-Miscellaneous.html#GoResourceType">enum GoResourceType</a>
</dt>
<dt id="ientry-idm30436">GORotationSel, <a class="indexterm" href="GORotationSel.html#GORotationSel-struct">GORotationSel</a>
</dt>
<dt id="ientry-idm30444">GORotationSel::rotation-changed, <a class="indexterm" href="GORotationSel.html#GORotationSel-rotation-changed">The “rotation-changed” signal</a>
</dt>
<dt id="ientry-idm62244">GOSearchReplace, <a class="indexterm" href="GOSearchReplace.html#GOSearchReplace-struct">GOSearchReplace</a>
</dt>
<dt id="ientry-idm62325">GOSearchReplace:ignore-case, <a class="indexterm" href="GOSearchReplace.html#GOSearchReplace--ignore-case">The “ignore-case” property</a>
</dt>
<dt id="ientry-idm62336">GOSearchReplace:is-regexp, <a class="indexterm" href="GOSearchReplace.html#GOSearchReplace--is-regexp">The “is-regexp” property</a>
</dt>
<dt id="ientry-idm62347">GOSearchReplace:match-words, <a class="indexterm" href="GOSearchReplace.html#GOSearchReplace--match-words">The “match-words” property</a>
</dt>
<dt id="ientry-idm62358">GOSearchReplace:preserve-case, <a class="indexterm" href="GOSearchReplace.html#GOSearchReplace--preserve-case">The “preserve-case” property</a>
</dt>
<dt id="ientry-idm62369">GOSearchReplace:replace-text, <a class="indexterm" href="GOSearchReplace.html#GOSearchReplace--replace-text">The “replace-text” property</a>
</dt>
<dt id="ientry-idm62380">GOSearchReplace:search-text, <a class="indexterm" href="GOSearchReplace.html#GOSearchReplace--search-text">The “search-text” property</a>
</dt>
<dt id="ientry-idm28192">GOSelector, <a class="indexterm" href="GOSelector.html#GOSelector-struct">struct GOSelector</a>
</dt>
<dt id="ientry-idm28200">GOSelector::activate, <a class="indexterm" href="GOSelector.html#GOSelector-activate">The “activate” signal</a>
</dt>
<dt id="ientry-idm27868">GOSelectorDndDataGet, <a class="indexterm" href="GOSelector.html#GOSelectorDndDataGet">GOSelectorDndDataGet ()</a>
</dt>
<dt id="ientry-idm27880">GOSelectorDndDataReceived, <a class="indexterm" href="GOSelector.html#GOSelectorDndDataReceived">GOSelectorDndDataReceived ()</a>
</dt>
<dt id="ientry-idm27895">GOSelectorDndFillIcon, <a class="indexterm" href="GOSelector.html#GOSelectorDndFillIcon">GOSelectorDndFillIcon ()</a>
</dt>
<dt id="ientry-idm56685">GOSeverity, <a class="indexterm" href="GOErrorInfo.html#GOSeverity">enum GOSeverity</a>
</dt>
<dt id="ientry-idm60913">GOSnapshotType, <a class="indexterm" href="GOComponent.html#GOSnapshotType">enum GOSnapshotType</a>
</dt>
<dt id="ientry-idm40280">GOSpectre, <a class="indexterm" href="goffice-0.10-Encapsulated-Postscript-support.html#GOSpectre-struct">GOSpectre</a>
</dt>
<dt id="ientry-idm68935">GOString, <a class="indexterm" href="GOString.html#GOString-struct">GOString</a>
</dt>
<dt id="ientry-idm68958">GOStringPhonetic, <a class="indexterm" href="GOString.html#GOStringPhonetic">GOStringPhonetic</a>
</dt>
<dt id="ientry-idm34829">GOStyle, <a class="indexterm" href="GOStyle.html#GOStyle-struct">GOStyle</a>
</dt>
<dt id="ientry-idm35577">GOStyledObject, <a class="indexterm" href="GOStyledObject.html#GOStyledObject-struct">GOStyledObject</a>
</dt>
<dt id="ientry-idm35582">GOStyledObjectClass, <a class="indexterm" href="GOStyledObject.html#GOStyledObjectClass">GOStyledObjectClass</a>
</dt>
<dt id="ientry-idm34834">GOStyleFill, <a class="indexterm" href="GOStyle.html#GOStyleFill">enum GOStyleFill</a>
</dt>
<dt id="ientry-idm34870">GOStyleFlag, <a class="indexterm" href="GOStyle.html#GOStyleFlag">enum GOStyleFlag</a>
</dt>
<dt id="ientry-idm34940">GOStyleLine, <a class="indexterm" href="GOStyle.html#GOStyleLine">GOStyleLine</a>
</dt>
<dt id="ientry-idm35065">GOStyleMark, <a class="indexterm" href="GOStyle.html#GOStyleMark">GOStyleMark</a>
</dt>
<dt id="ientry-idm40065">GOSvg, <a class="indexterm" href="goffice-0.10-Scalable-Vector-Graphics-support.html#GOSvg-struct">GOSvg</a>
</dt>
<dt id="ientry-idm35717">GOTranslateFunc, <a class="indexterm" href="goffice-0.10-Miscellaneous.html#GOTranslateFunc">GOTranslateFunc ()</a>
</dt>
<dt id="ientry-idm67988">GOUndo, <a class="indexterm" href="GOUndoUnary.html#GOUndo-struct">struct GOUndo</a>
</dt>
<dt id="ientry-idm67993">GOUndoBinary, <a class="indexterm" href="GOUndoUnary.html#GOUndoBinary-struct">struct GOUndoBinary</a>
</dt>
<dt id="ientry-idm67998">GOUndoBinaryClass, <a class="indexterm" href="GOUndoUnary.html#GOUndoBinaryClass">struct GOUndoBinaryClass</a>
</dt>
<dt id="ientry-idm67661">GOUndoBinaryFunc, <a class="indexterm" href="GOUndoUnary.html#GOUndoBinaryFunc">GOUndoBinaryFunc ()</a>
</dt>
<dt id="ientry-idm68020">GOUndoClass, <a class="indexterm" href="GOUndoUnary.html#GOUndoClass">struct GOUndoClass</a>
</dt>
<dt id="ientry-idm68049">GOUndoGroup, <a class="indexterm" href="GOUndoUnary.html#GOUndoGroup-struct">struct GOUndoGroup</a>
</dt>
<dt id="ientry-idm68054">GOUndoGroupClass, <a class="indexterm" href="GOUndoUnary.html#GOUndoGroupClass">struct GOUndoGroupClass</a>
</dt>
<dt id="ientry-idm68076">GOUndoUnary, <a class="indexterm" href="GOUndoUnary.html#GOUndoUnary-struct">struct GOUndoUnary</a>
</dt>
<dt id="ientry-idm68081">GOUndoUnaryClass, <a class="indexterm" href="GOUndoUnary.html#GOUndoUnaryClass">struct GOUndoUnaryClass</a>
</dt>
<dt id="ientry-idm67679">GOUndoUnaryFunc, <a class="indexterm" href="GOUndoUnary.html#GOUndoUnaryFunc">GOUndoUnaryFunc ()</a>
</dt>
<dt id="ientry-idm51224">go_accumulator_add, <a class="indexterm" href="goffice-0.10-GOAccumulator.html#go-accumulator-add">go_accumulator_add ()</a>
</dt>
<dt id="ientry-idm51272">go_accumulator_addl, <a class="indexterm" href="goffice-0.10-GOAccumulator.html#go-accumulator-addl">go_accumulator_addl ()</a>
</dt>
<dt id="ientry-idm51240">go_accumulator_add_quad, <a class="indexterm" href="goffice-0.10-GOAccumulator.html#go-accumulator-add-quad">go_accumulator_add_quad ()</a>
</dt>
<dt id="ientry-idm51256">go_accumulator_add_quadl, <a class="indexterm" href="goffice-0.10-GOAccumulator.html#go-accumulator-add-quadl">go_accumulator_add_quadl ()</a>
</dt>
<dt id="ientry-idm51288">go_accumulator_clear, <a class="indexterm" href="goffice-0.10-GOAccumulator.html#go-accumulator-clear">go_accumulator_clear ()</a>
</dt>
<dt id="ientry-idm51301">go_accumulator_clearl, <a class="indexterm" href="goffice-0.10-GOAccumulator.html#go-accumulator-clearl">go_accumulator_clearl ()</a>
</dt>
<dt id="ientry-idm51314">go_accumulator_end, <a class="indexterm" href="goffice-0.10-GOAccumulator.html#go-accumulator-end">go_accumulator_end ()</a>
</dt>
<dt id="ientry-idm51324">go_accumulator_endl, <a class="indexterm" href="goffice-0.10-GOAccumulator.html#go-accumulator-endl">go_accumulator_endl ()</a>
</dt>
<dt id="ientry-idm51334">go_accumulator_free, <a class="indexterm" href="goffice-0.10-GOAccumulator.html#go-accumulator-free">go_accumulator_free ()</a>
</dt>
<dt id="ientry-idm51347">go_accumulator_freel, <a class="indexterm" href="goffice-0.10-GOAccumulator.html#go-accumulator-freel">go_accumulator_freel ()</a>
</dt>
<dt id="ientry-idm51360">go_accumulator_functional, <a class="indexterm" href="goffice-0.10-GOAccumulator.html#go-accumulator-functional">go_accumulator_functional ()</a>
</dt>
<dt id="ientry-idm51369">go_accumulator_functionall, <a class="indexterm" href="goffice-0.10-GOAccumulator.html#go-accumulator-functionall">go_accumulator_functionall ()</a>
</dt>
<dt id="ientry-idm51378">go_accumulator_new, <a class="indexterm" href="goffice-0.10-GOAccumulator.html#go-accumulator-new">go_accumulator_new ()</a>
</dt>
<dt id="ientry-idm51390">go_accumulator_newl, <a class="indexterm" href="goffice-0.10-GOAccumulator.html#go-accumulator-newl">go_accumulator_newl ()</a>
</dt>
<dt id="ientry-idm51402">go_accumulator_start, <a class="indexterm" href="goffice-0.10-GOAccumulator.html#go-accumulator-start">go_accumulator_start ()</a>
</dt>
<dt id="ientry-idm51414">go_accumulator_startl, <a class="indexterm" href="goffice-0.10-GOAccumulator.html#go-accumulator-startl">go_accumulator_startl ()</a>
</dt>
<dt id="ientry-idm51426">go_accumulator_value, <a class="indexterm" href="goffice-0.10-GOAccumulator.html#go-accumulator-value">go_accumulator_value ()</a>
</dt>
<dt id="ientry-idm51439">go_accumulator_valuel, <a class="indexterm" href="goffice-0.10-GOAccumulator.html#go-accumulator-valuel">go_accumulator_valuel ()</a>
</dt>
<dt id="ientry-idm42597">go_add_epsilon, <a class="indexterm" href="goffice-0.10-Mathematics.html#go-add-epsilon">go_add_epsilon ()</a>
</dt>
<dt id="ientry-idm42607">go_add_epsilonl, <a class="indexterm" href="goffice-0.10-Mathematics.html#go-add-epsilonl">go_add_epsilonl ()</a>
</dt>
<dt id="ientry-idm30628">go_arrow_clear, <a class="indexterm" href="GOArrow.html#go-arrow-clear">go_arrow_clear ()</a>
</dt>
<dt id="ientry-idm30638">go_arrow_draw, <a class="indexterm" href="GOArrow.html#go-arrow-draw">go_arrow_draw ()</a>
</dt>
<dt id="ientry-idm30702">go_arrow_dup, <a class="indexterm" href="GOArrow.html#go-arrow-dup">go_arrow_dup ()</a>
</dt>
<dt id="ientry-idm30712">go_arrow_equal, <a class="indexterm" href="GOArrow.html#go-arrow-equal">go_arrow_equal ()</a>
</dt>
<dt id="ientry-idm30725">go_arrow_init, <a class="indexterm" href="GOArrow.html#go-arrow-init">go_arrow_init ()</a>
</dt>
<dt id="ientry-idm30747">go_arrow_init_kite, <a class="indexterm" href="GOArrow.html#go-arrow-init-kite">go_arrow_init_kite ()</a>
</dt>
<dt id="ientry-idm30766">go_arrow_init_oval, <a class="indexterm" href="GOArrow.html#go-arrow-init-oval">go_arrow_init_oval ()</a>
</dt>
<dt id="ientry-idm30802">go_arrow_sel_get_arrow, <a class="indexterm" href="GOArrow.html#go-arrow-sel-get-arrow">go_arrow_sel_get_arrow ()</a>
</dt>
<dt id="ientry-idm30812">go_arrow_sel_get_type, <a class="indexterm" href="GOArrow.html#go-arrow-sel-get-type">go_arrow_sel_get_type ()</a>
</dt>
<dt id="ientry-idm30821">go_arrow_sel_new, <a class="indexterm" href="GOArrow.html#go-arrow-sel-new">go_arrow_sel_new ()</a>
</dt>
<dt id="ientry-idm30830">go_arrow_sel_set_arrow, <a class="indexterm" href="GOArrow.html#go-arrow-sel-set-arrow">go_arrow_sel_set_arrow ()</a>
</dt>
<dt id="ientry-idm30782">go_arrow_type_as_str, <a class="indexterm" href="GOArrow.html#go-arrow-type-as-str">go_arrow_type_as_str ()</a>
</dt>
<dt id="ientry-idm30792">go_arrow_type_from_str, <a class="indexterm" href="GOArrow.html#go-arrow-type-from-str">go_arrow_type_from_str ()</a>
</dt>
<dt id="ientry-idm65727">go_ascii_strcase_equal, <a class="indexterm" href="goffice-0.10-GLib-extras.html#go-ascii-strcase-equal">go_ascii_strcase_equal ()</a>
</dt>
<dt id="ientry-idm65740">go_ascii_strcase_hash, <a class="indexterm" href="goffice-0.10-GLib-extras.html#go-ascii-strcase-hash">go_ascii_strcase_hash ()</a>
</dt>
<dt id="ientry-idm42617">go_ascii_strtod, <a class="indexterm" href="goffice-0.10-Mathematics.html#go-ascii-strtod">go_ascii_strtod ()</a>
</dt>
<dt id="ientry-idm42630">go_ascii_strtold, <a class="indexterm" href="goffice-0.10-Mathematics.html#go-ascii-strtold">go_ascii_strtold ()</a>
</dt>
<dt id="ientry-idm42643">go_atan2pi, <a class="indexterm" href="goffice-0.10-Mathematics.html#go-atan2pi">go_atan2pi ()</a>
</dt>
<dt id="ientry-idm42656">go_atan2pil, <a class="indexterm" href="goffice-0.10-Mathematics.html#go-atan2pil">go_atan2pil ()</a>
</dt>
<dt id="ientry-idm42669">go_atanpi, <a class="indexterm" href="goffice-0.10-Mathematics.html#go-atanpi">go_atanpi ()</a>
</dt>
<dt id="ientry-idm42679">go_atanpil, <a class="indexterm" href="goffice-0.10-Mathematics.html#go-atanpil">go_atanpil ()</a>
</dt>
<dt id="ientry-idm51676">go_basename_from_uri, <a class="indexterm" href="goffice-0.10-File-utilities.html#go-basename-from-uri">go_basename_from_uri ()</a>
</dt>
<dt id="ientry-idm38634">go_bezier_spline_destroy, <a class="indexterm" href="GOBezierSpline.html#go-bezier-spline-destroy">go_bezier_spline_destroy ()</a>
</dt>
<dt id="ientry-idm38659">go_bezier_spline_init, <a class="indexterm" href="GOBezierSpline.html#go-bezier-spline-init">go_bezier_spline_init ()</a>
</dt>
<dt id="ientry-idm38716">go_bezier_spline_to_cairo, <a class="indexterm" href="GOBezierSpline.html#go-bezier-spline-to-cairo">go_bezier_spline_to_cairo ()</a>
</dt>
<dt id="ientry-idm38759">go_bezier_spline_to_path, <a class="indexterm" href="GOBezierSpline.html#go-bezier-spline-to-path">go_bezier_spline_to_path ()</a>
</dt>
<dt id="ientry-idm36301">GO_CAIRO_CLAMP, <a class="indexterm" href="goffice-0.10-Cairo-utilities.html#GO-CAIRO-CLAMP:CAPS">GO_CAIRO_CLAMP()</a>
</dt>
<dt id="ientry-idm36306">GO_CAIRO_CLAMP_SNAP, <a class="indexterm" href="goffice-0.10-Cairo-utilities.html#GO-CAIRO-CLAMP-SNAP:CAPS">GO_CAIRO_CLAMP_SNAP()</a>
</dt>
<dt id="ientry-idm36311">go_cairo_convert_data_from_pixbuf, <a class="indexterm" href="goffice-0.10-Cairo-utilities.html#go-cairo-convert-data-from-pixbuf">go_cairo_convert_data_from_pixbuf ()</a>
</dt>
<dt id="ientry-idm36376">go_cairo_convert_data_to_pixbuf, <a class="indexterm" href="goffice-0.10-Cairo-utilities.html#go-cairo-convert-data-to-pixbuf">go_cairo_convert_data_to_pixbuf ()</a>
</dt>
<dt id="ientry-idm36441">go_cairo_emit_svg_path, <a class="indexterm" href="goffice-0.10-Cairo-utilities.html#go-cairo-emit-svg-path">go_cairo_emit_svg_path ()</a>
</dt>
<dt id="ientry-idm36475">go_cairo_surface_is_vector, <a class="indexterm" href="goffice-0.10-Cairo-utilities.html#go-cairo-surface-is-vector">go_cairo_surface_is_vector ()</a>
</dt>
<dt id="ientry-idm28310">go_calendar_button_get_calendar, <a class="indexterm" href="GOCalendarButton.html#go-calendar-button-get-calendar">go_calendar_button_get_calendar ()</a>
</dt>
<dt id="ientry-idm28342">go_calendar_button_get_date, <a class="indexterm" href="GOCalendarButton.html#go-calendar-button-get-date">go_calendar_button_get_date ()</a>
</dt>
<dt id="ientry-idm28355">go_calendar_button_new, <a class="indexterm" href="GOCalendarButton.html#go-calendar-button-new">go_calendar_button_new ()</a>
</dt>
<dt id="ientry-idm28364">go_calendar_button_set_date, <a class="indexterm" href="GOCalendarButton.html#go-calendar-button-set-date">go_calendar_button_set_date ()</a>
</dt>
<dt id="ientry-idm29191">go_charmap_sel_get_encoding, <a class="indexterm" href="GOCharmapSel.html#go-charmap-sel-get-encoding">go_charmap_sel_get_encoding ()</a>
</dt>
<dt id="ientry-idm29201">go_charmap_sel_get_encoding_name, <a class="indexterm" href="GOCharmapSel.html#go-charmap-sel-get-encoding-name">go_charmap_sel_get_encoding_name ()</a>
</dt>
<dt id="ientry-idm29214">go_charmap_sel_new, <a class="indexterm" href="GOCharmapSel.html#go-charmap-sel-new">go_charmap_sel_new ()</a>
</dt>
<dt id="ientry-idm29224">go_charmap_sel_set_encoding, <a class="indexterm" href="GOCharmapSel.html#go-charmap-sel-set-encoding">go_charmap_sel_set_encoding ()</a>
</dt>
<dt id="ientry-idm54808">go_cmd_context_error, <a class="indexterm" href="GOCmdContext.html#go-cmd-context-error">go_cmd_context_error ()</a>
</dt>
<dt id="ientry-idm54821">go_cmd_context_error_export, <a class="indexterm" href="GOCmdContext.html#go-cmd-context-error-export">go_cmd_context_error_export ()</a>
</dt>
<dt id="ientry-idm54834">go_cmd_context_error_import, <a class="indexterm" href="GOCmdContext.html#go-cmd-context-error-import">go_cmd_context_error_import ()</a>
</dt>
<dt id="ientry-idm54847">go_cmd_context_error_info, <a class="indexterm" href="GOCmdContext.html#go-cmd-context-error-info">go_cmd_context_error_info ()</a>
</dt>
<dt id="ientry-idm54860">go_cmd_context_error_info_list, <a class="indexterm" href="GOCmdContext.html#go-cmd-context-error-info-list">go_cmd_context_error_info_list ()</a>
</dt>
<dt id="ientry-idm54898">go_cmd_context_error_invalid, <a class="indexterm" href="GOCmdContext.html#go-cmd-context-error-invalid">go_cmd_context_error_invalid ()</a>
</dt>
<dt id="ientry-idm54914">go_cmd_context_error_system, <a class="indexterm" href="GOCmdContext.html#go-cmd-context-error-system">go_cmd_context_error_system ()</a>
</dt>
<dt id="ientry-idm54927">go_cmd_context_get_password, <a class="indexterm" href="GOCmdContext.html#go-cmd-context-get-password">go_cmd_context_get_password ()</a>
</dt>
<dt id="ientry-idm54940">go_cmd_context_progress_message_set, <a class="indexterm" href="GOCmdContext.html#go-cmd-context-progress-message-set">go_cmd_context_progress_message_set ()</a>
</dt>
<dt id="ientry-idm54953">go_cmd_context_progress_set, <a class="indexterm" href="GOCmdContext.html#go-cmd-context-progress-set">go_cmd_context_progress_set ()</a>
</dt>
<dt id="ientry-idm54966">go_cmd_context_set_sensitive, <a class="indexterm" href="GOCmdContext.html#go-cmd-context-set-sensitive">go_cmd_context_set_sensitive ()</a>
</dt>
<dt id="ientry-idm48396">GO_CM_PER_IN, <a class="indexterm" href="goffice-0.10-Units.html#GO-CM-PER-IN:CAPS">GO_CM_PER_IN</a>
</dt>
<dt id="ientry-idm48209">GO_CM_TO_EMU, <a class="indexterm" href="goffice-0.10-Units.html#GO-CM-TO-EMU:CAPS">GO_CM_TO_EMU()</a>
</dt>
<dt id="ientry-idm48214">GO_CM_TO_IN, <a class="indexterm" href="goffice-0.10-Units.html#GO-CM-TO-IN:CAPS">GO_CM_TO_IN()</a>
</dt>
<dt id="ientry-idm48219">GO_CM_TO_PT, <a class="indexterm" href="goffice-0.10-Units.html#GO-CM-TO-PT:CAPS">GO_CM_TO_PT()</a>
</dt>
<dt id="ientry-idm48224">GO_CM_TO_UN, <a class="indexterm" href="goffice-0.10-Units.html#GO-CM-TO-UN:CAPS">GO_CM_TO_UN()</a>
</dt>
<dt id="ientry-idm31254">go_color_as_str, <a class="indexterm" href="goffice-0.10-GOColor.html#go-color-as-str">go_color_as_str ()</a>
</dt>
<dt id="ientry-idm31479">GO_COLOR_BLACK, <a class="indexterm" href="goffice-0.10-GOColor.html#GO-COLOR-BLACK:CAPS">GO_COLOR_BLACK</a>
</dt>
<dt id="ientry-idm31484">GO_COLOR_BLUE, <a class="indexterm" href="goffice-0.10-GOColor.html#GO-COLOR-BLUE:CAPS">GO_COLOR_BLUE</a>
</dt>
<dt id="ientry-idm31149">GO_COLOR_CHANGE_A, <a class="indexterm" href="goffice-0.10-GOColor.html#GO-COLOR-CHANGE-A:CAPS">GO_COLOR_CHANGE_A()</a>
</dt>
<dt id="ientry-idm31154">GO_COLOR_CHANGE_B, <a class="indexterm" href="goffice-0.10-GOColor.html#GO-COLOR-CHANGE-B:CAPS">GO_COLOR_CHANGE_B()</a>
</dt>
<dt id="ientry-idm31159">GO_COLOR_CHANGE_G, <a class="indexterm" href="goffice-0.10-GOColor.html#GO-COLOR-CHANGE-G:CAPS">GO_COLOR_CHANGE_G()</a>
</dt>
<dt id="ientry-idm31164">GO_COLOR_CHANGE_R, <a class="indexterm" href="goffice-0.10-GOColor.html#GO-COLOR-CHANGE-R:CAPS">GO_COLOR_CHANGE_R()</a>
</dt>
<dt id="ientry-idm31489">GO_COLOR_CYAN, <a class="indexterm" href="goffice-0.10-GOColor.html#GO-COLOR-CYAN:CAPS">GO_COLOR_CYAN</a>
</dt>
<dt id="ientry-idm31169">GO_COLOR_DOUBLE_A, <a class="indexterm" href="goffice-0.10-GOColor.html#GO-COLOR-DOUBLE-A:CAPS">GO_COLOR_DOUBLE_A()</a>
</dt>
<dt id="ientry-idm31174">GO_COLOR_DOUBLE_B, <a class="indexterm" href="goffice-0.10-GOColor.html#GO-COLOR-DOUBLE-B:CAPS">GO_COLOR_DOUBLE_B()</a>
</dt>
<dt id="ientry-idm31179">GO_COLOR_DOUBLE_G, <a class="indexterm" href="goffice-0.10-GOColor.html#GO-COLOR-DOUBLE-G:CAPS">GO_COLOR_DOUBLE_G()</a>
</dt>
<dt id="ientry-idm31184">GO_COLOR_DOUBLE_R, <a class="indexterm" href="goffice-0.10-GOColor.html#GO-COLOR-DOUBLE-R:CAPS">GO_COLOR_DOUBLE_R()</a>
</dt>
<dt id="ientry-idm31189">GO_COLOR_FROM_GDK_RGBA, <a class="indexterm" href="goffice-0.10-GOColor.html#GO-COLOR-FROM-GDK-RGBA:CAPS">GO_COLOR_FROM_GDK_RGBA()</a>
</dt>
<dt id="ientry-idm31264">go_color_from_gdk_rgba, <a class="indexterm" href="goffice-0.10-GOColor.html#go-color-from-gdk-rgba">go_color_from_gdk_rgba ()</a>
</dt>
<dt id="ientry-idm31194">GO_COLOR_FROM_RGB, <a class="indexterm" href="goffice-0.10-GOColor.html#GO-COLOR-FROM-RGB:CAPS">GO_COLOR_FROM_RGB()</a>
</dt>
<dt id="ientry-idm31199">GO_COLOR_FROM_RGBA, <a class="indexterm" href="goffice-0.10-GOColor.html#GO-COLOR-FROM-RGBA:CAPS">GO_COLOR_FROM_RGBA()</a>
</dt>
<dt id="ientry-idm31305">go_color_from_str, <a class="indexterm" href="goffice-0.10-GOColor.html#go-color-from-str">go_color_from_str ()</a>
</dt>
<dt id="ientry-idm31494">GO_COLOR_GREEN, <a class="indexterm" href="goffice-0.10-GOColor.html#GO-COLOR-GREEN:CAPS">GO_COLOR_GREEN</a>
</dt>
<dt id="ientry-idm31204">GO_COLOR_GREY, <a class="indexterm" href="goffice-0.10-GOColor.html#GO-COLOR-GREY:CAPS">GO_COLOR_GREY()</a>
</dt>
<dt id="ientry-idm28476">go_color_group_add_color, <a class="indexterm" href="GOColorGroup.html#go-color-group-add-color">go_color_group_add_color ()</a>
</dt>
<dt id="ientry-idm28512">go_color_group_fetch, <a class="indexterm" href="GOColorGroup.html#go-color-group-fetch">go_color_group_fetch ()</a>
</dt>
<dt id="ientry-idm28554">go_color_group_find, <a class="indexterm" href="GOColorGroup.html#go-color-group-find">go_color_group_find ()</a>
</dt>
<dt id="ientry-idm28603">GO_COLOR_GROUP_HISTORY_SIZE, <a class="indexterm" href="GOColorGroup.html#GO-COLOR-GROUP-HISTORY-SIZE:CAPS">GO_COLOR_GROUP_HISTORY_SIZE</a>
</dt>
<dt id="ientry-idm31209">GO_COLOR_INTERPOLATE, <a class="indexterm" href="goffice-0.10-GOColor.html#GO-COLOR-INTERPOLATE:CAPS">GO_COLOR_INTERPOLATE()</a>
</dt>
<dt id="ientry-idm31214">GO_COLOR_MONO_INTERPOLATE, <a class="indexterm" href="goffice-0.10-GOColor.html#GO-COLOR-MONO-INTERPOLATE:CAPS">GO_COLOR_MONO_INTERPOLATE()</a>
</dt>
<dt id="ientry-idm31499">GO_COLOR_RED, <a class="indexterm" href="goffice-0.10-GOColor.html#GO-COLOR-RED:CAPS">GO_COLOR_RED</a>
</dt>
<dt id="ientry-idm31219">GO_COLOR_TO_CAIRO, <a class="indexterm" href="goffice-0.10-GOColor.html#GO-COLOR-TO-CAIRO:CAPS">GO_COLOR_TO_CAIRO()</a>
</dt>
<dt id="ientry-idm31347">go_color_to_gdk_rgba, <a class="indexterm" href="goffice-0.10-GOColor.html#go-color-to-gdk-rgba">go_color_to_gdk_rgba ()</a>
</dt>
<dt id="ientry-idm31391">go_color_to_pango, <a class="indexterm" href="goffice-0.10-GOColor.html#go-color-to-pango">go_color_to_pango ()</a>
</dt>
<dt id="ientry-idm31224">GO_COLOR_TO_RGB, <a class="indexterm" href="goffice-0.10-GOColor.html#GO-COLOR-TO-RGB:CAPS">GO_COLOR_TO_RGB()</a>
</dt>
<dt id="ientry-idm31229">GO_COLOR_TO_RGBA, <a class="indexterm" href="goffice-0.10-GOColor.html#GO-COLOR-TO-RGBA:CAPS">GO_COLOR_TO_RGBA()</a>
</dt>
<dt id="ientry-idm31234">GO_COLOR_UINT_A, <a class="indexterm" href="goffice-0.10-GOColor.html#GO-COLOR-UINT-A:CAPS">GO_COLOR_UINT_A()</a>
</dt>
<dt id="ientry-idm31239">GO_COLOR_UINT_B, <a class="indexterm" href="goffice-0.10-GOColor.html#GO-COLOR-UINT-B:CAPS">GO_COLOR_UINT_B()</a>
</dt>
<dt id="ientry-idm31244">GO_COLOR_UINT_G, <a class="indexterm" href="goffice-0.10-GOColor.html#GO-COLOR-UINT-G:CAPS">GO_COLOR_UINT_G()</a>
</dt>
<dt id="ientry-idm31249">GO_COLOR_UINT_R, <a class="indexterm" href="goffice-0.10-GOColor.html#GO-COLOR-UINT-R:CAPS">GO_COLOR_UINT_R()</a>
</dt>
<dt id="ientry-idm31504">GO_COLOR_VIOLET, <a class="indexterm" href="goffice-0.10-GOColor.html#GO-COLOR-VIOLET:CAPS">GO_COLOR_VIOLET</a>
</dt>
<dt id="ientry-idm31509">GO_COLOR_WHITE, <a class="indexterm" href="goffice-0.10-GOColor.html#GO-COLOR-WHITE:CAPS">GO_COLOR_WHITE</a>
</dt>
<dt id="ientry-idm31514">GO_COLOR_YELLOW, <a class="indexterm" href="goffice-0.10-GOColor.html#GO-COLOR-YELLOW:CAPS">GO_COLOR_YELLOW</a>
</dt>
<dt id="ientry-idm26172">go_combo_box_construct, <a class="indexterm" href="GOComboBox.html#go-combo-box-construct">go_combo_box_construct ()</a>
</dt>
<dt id="ientry-idm26191">go_combo_box_get_pos, <a class="indexterm" href="GOComboBox.html#go-combo-box-get-pos">go_combo_box_get_pos ()</a>
</dt>
<dt id="ientry-idm26207">go_combo_box_get_title, <a class="indexterm" href="GOComboBox.html#go-combo-box-get-title">go_combo_box_get_title ()</a>
</dt>
<dt id="ientry-idm26217">go_combo_box_popup_display, <a class="indexterm" href="GOComboBox.html#go-combo-box-popup-display">go_combo_box_popup_display ()</a>
</dt>
<dt id="ientry-idm26227">go_combo_box_popup_hide, <a class="indexterm" href="GOComboBox.html#go-combo-box-popup-hide">go_combo_box_popup_hide ()</a>
</dt>
<dt id="ientry-idm26254">go_combo_box_set_display, <a class="indexterm" href="GOComboBox.html#go-combo-box-set-display">go_combo_box_set_display ()</a>
</dt>
<dt id="ientry-idm26292">go_combo_box_set_relief, <a class="indexterm" href="GOComboBox.html#go-combo-box-set-relief">go_combo_box_set_relief ()</a>
</dt>
<dt id="ientry-idm26305">go_combo_box_set_tearable, <a class="indexterm" href="GOComboBox.html#go-combo-box-set-tearable">go_combo_box_set_tearable ()</a>
</dt>
<dt id="ientry-idm26340">go_combo_box_set_title, <a class="indexterm" href="GOComboBox.html#go-combo-box-set-title">go_combo_box_set_title ()</a>
</dt>
<dt id="ientry-idm26376">go_combo_box_set_tooltip, <a class="indexterm" href="GOComboBox.html#go-combo-box-set-tooltip">go_combo_box_set_tooltip ()</a>
</dt>
<dt id="ientry-idm28755">go_combo_color_get_color, <a class="indexterm" href="GOComboColor.html#go-combo-color-get-color">go_combo_color_get_color ()</a>
</dt>
<dt id="ientry-idm28768">go_combo_color_new, <a class="indexterm" href="GOComboColor.html#go-combo-color-new">go_combo_color_new ()</a>
</dt>
<dt id="ientry-idm28825">go_combo_color_set_allow_alpha, <a class="indexterm" href="GOComboColor.html#go-combo-color-set-allow-alpha">go_combo_color_set_allow_alpha ()</a>
</dt>
<dt id="ientry-idm28861">go_combo_color_set_color, <a class="indexterm" href="GOComboColor.html#go-combo-color-set-color">go_combo_color_set_color ()</a>
</dt>
<dt id="ientry-idm28898">go_combo_color_set_color_gdk, <a class="indexterm" href="GOComboColor.html#go-combo-color-set-color-gdk">go_combo_color_set_color_gdk ()</a>
</dt>
<dt id="ientry-idm28932">go_combo_color_set_color_to_default, <a class="indexterm" href="GOComboColor.html#go-combo-color-set-color-to-default">go_combo_color_set_color_to_default ()</a>
</dt>
<dt id="ientry-idm28959">go_combo_color_set_icon, <a class="indexterm" href="GOComboColor.html#go-combo-color-set-icon">go_combo_color_set_icon ()</a>
</dt>
<dt id="ientry-idm28996">go_combo_color_set_instant_apply, <a class="indexterm" href="GOComboColor.html#go-combo-color-set-instant-apply">go_combo_color_set_instant_apply ()</a>
</dt>
<dt id="ientry-idm26626">go_combo_pixmaps_add_element, <a class="indexterm" href="GOComboPixmaps.html#go-combo-pixmaps-add-element">go_combo_pixmaps_add_element ()</a>
</dt>
<dt id="ientry-idm26683">go_combo_pixmaps_clear_elements, <a class="indexterm" href="GOComboPixmaps.html#go-combo-pixmaps-clear-elements">go_combo_pixmaps_clear_elements ()</a>
</dt>
<dt id="ientry-idm26710">go_combo_pixmaps_get_preview, <a class="indexterm" href="GOComboPixmaps.html#go-combo-pixmaps-get-preview">go_combo_pixmaps_get_preview ()</a>
</dt>
<dt id="ientry-idm26742">go_combo_pixmaps_get_selected, <a class="indexterm" href="GOComboPixmaps.html#go-combo-pixmaps-get-selected">go_combo_pixmaps_get_selected ()</a>
</dt>
<dt id="ientry-idm26755">go_combo_pixmaps_new, <a class="indexterm" href="GOComboPixmaps.html#go-combo-pixmaps-new">go_combo_pixmaps_new ()</a>
</dt>
<dt id="ientry-idm26765">go_combo_pixmaps_select_id, <a class="indexterm" href="GOComboPixmaps.html#go-combo-pixmaps-select-id">go_combo_pixmaps_select_id ()</a>
</dt>
<dt id="ientry-idm26778">go_combo_pixmaps_select_index, <a class="indexterm" href="GOComboPixmaps.html#go-combo-pixmaps-select-index">go_combo_pixmaps_select_index ()</a>
</dt>
<dt id="ientry-idm43464">go_complex_add, <a class="indexterm" href="GOComplex.html#go-complex-add">go_complex_add ()</a>
</dt>
<dt id="ientry-idm43480">go_complex_addl, <a class="indexterm" href="GOComplex.html#go-complex-addl">go_complex_addl ()</a>
</dt>
<dt id="ientry-idm43496">go_complex_angle, <a class="indexterm" href="GOComplex.html#go-complex-angle">go_complex_angle ()</a>
</dt>
<dt id="ientry-idm43526">go_complex_anglel, <a class="indexterm" href="GOComplex.html#go-complex-anglel">go_complex_anglel ()</a>
</dt>
<dt id="ientry-idm43506">go_complex_angle_pi, <a class="indexterm" href="GOComplex.html#go-complex-angle-pi">go_complex_angle_pi ()</a>
</dt>
<dt id="ientry-idm43516">go_complex_angle_pil, <a class="indexterm" href="GOComplex.html#go-complex-angle-pil">go_complex_angle_pil ()</a>
</dt>
<dt id="ientry-idm43536">go_complex_conj, <a class="indexterm" href="GOComplex.html#go-complex-conj">go_complex_conj ()</a>
</dt>
<dt id="ientry-idm43549">go_complex_conjl, <a class="indexterm" href="GOComplex.html#go-complex-conjl">go_complex_conjl ()</a>
</dt>
<dt id="ientry-idm43562">go_complex_cos, <a class="indexterm" href="GOComplex.html#go-complex-cos">go_complex_cos ()</a>
</dt>
<dt id="ientry-idm43575">go_complex_cosl, <a class="indexterm" href="GOComplex.html#go-complex-cosl">go_complex_cosl ()</a>
</dt>
<dt id="ientry-idm43588">go_complex_div, <a class="indexterm" href="GOComplex.html#go-complex-div">go_complex_div ()</a>
</dt>
<dt id="ientry-idm43604">go_complex_divl, <a class="indexterm" href="GOComplex.html#go-complex-divl">go_complex_divl ()</a>
</dt>
<dt id="ientry-idm43620">go_complex_exp, <a class="indexterm" href="GOComplex.html#go-complex-exp">go_complex_exp ()</a>
</dt>
<dt id="ientry-idm43633">go_complex_expl, <a class="indexterm" href="GOComplex.html#go-complex-expl">go_complex_expl ()</a>
</dt>
<dt id="ientry-idm43646">go_complex_from_polar, <a class="indexterm" href="GOComplex.html#go-complex-from-polar">go_complex_from_polar ()</a>
</dt>
<dt id="ientry-idm43662">go_complex_from_polarl, <a class="indexterm" href="GOComplex.html#go-complex-from-polarl">go_complex_from_polarl ()</a>
</dt>
<dt id="ientry-idm43678">go_complex_from_string, <a class="indexterm" href="GOComplex.html#go-complex-from-string">go_complex_from_string ()</a>
</dt>
<dt id="ientry-idm43694">go_complex_from_stringl, <a class="indexterm" href="GOComplex.html#go-complex-from-stringl">go_complex_from_stringl ()</a>
</dt>
<dt id="ientry-idm43710">go_complex_init, <a class="indexterm" href="GOComplex.html#go-complex-init">go_complex_init ()</a>
</dt>
<dt id="ientry-idm43726">go_complex_initl, <a class="indexterm" href="GOComplex.html#go-complex-initl">go_complex_initl ()</a>
</dt>
<dt id="ientry-idm43742">go_complex_invalid, <a class="indexterm" href="GOComplex.html#go-complex-invalid">go_complex_invalid ()</a>
</dt>
<dt id="ientry-idm43772">go_complex_invalidl, <a class="indexterm" href="GOComplex.html#go-complex-invalidl">go_complex_invalidl ()</a>
</dt>
<dt id="ientry-idm43752">go_complex_invalid_p, <a class="indexterm" href="GOComplex.html#go-complex-invalid-p">go_complex_invalid_p ()</a>
</dt>
<dt id="ientry-idm43762">go_complex_invalid_pl, <a class="indexterm" href="GOComplex.html#go-complex-invalid-pl">go_complex_invalid_pl ()</a>
</dt>
<dt id="ientry-idm43782">go_complex_ln, <a class="indexterm" href="GOComplex.html#go-complex-ln">go_complex_ln ()</a>
</dt>
<dt id="ientry-idm43795">go_complex_lnl, <a class="indexterm" href="GOComplex.html#go-complex-lnl">go_complex_lnl ()</a>
</dt>
<dt id="ientry-idm43808">go_complex_mod, <a class="indexterm" href="GOComplex.html#go-complex-mod">go_complex_mod ()</a>
</dt>
<dt id="ientry-idm43818">go_complex_modl, <a class="indexterm" href="GOComplex.html#go-complex-modl">go_complex_modl ()</a>
</dt>
<dt id="ientry-idm43828">go_complex_mul, <a class="indexterm" href="GOComplex.html#go-complex-mul">go_complex_mul ()</a>
</dt>
<dt id="ientry-idm43844">go_complex_mull, <a class="indexterm" href="GOComplex.html#go-complex-mull">go_complex_mull ()</a>
</dt>
<dt id="ientry-idm43860">go_complex_pow, <a class="indexterm" href="GOComplex.html#go-complex-pow">go_complex_pow ()</a>
</dt>
<dt id="ientry-idm43876">go_complex_powl, <a class="indexterm" href="GOComplex.html#go-complex-powl">go_complex_powl ()</a>
</dt>
<dt id="ientry-idm43892">go_complex_real, <a class="indexterm" href="GOComplex.html#go-complex-real">go_complex_real ()</a>
</dt>
<dt id="ientry-idm43925">go_complex_reall, <a class="indexterm" href="GOComplex.html#go-complex-reall">go_complex_reall ()</a>
</dt>
<dt id="ientry-idm43905">go_complex_real_p, <a class="indexterm" href="GOComplex.html#go-complex-real-p">go_complex_real_p ()</a>
</dt>
<dt id="ientry-idm43915">go_complex_real_pl, <a class="indexterm" href="GOComplex.html#go-complex-real-pl">go_complex_real_pl ()</a>
</dt>
<dt id="ientry-idm43938">go_complex_scale_real, <a class="indexterm" href="GOComplex.html#go-complex-scale-real">go_complex_scale_real ()</a>
</dt>
<dt id="ientry-idm43951">go_complex_scale_reall, <a class="indexterm" href="GOComplex.html#go-complex-scale-reall">go_complex_scale_reall ()</a>
</dt>
<dt id="ientry-idm43964">go_complex_sin, <a class="indexterm" href="GOComplex.html#go-complex-sin">go_complex_sin ()</a>
</dt>
<dt id="ientry-idm43977">go_complex_sinl, <a class="indexterm" href="GOComplex.html#go-complex-sinl">go_complex_sinl ()</a>
</dt>
<dt id="ientry-idm43990">go_complex_sqrt, <a class="indexterm" href="GOComplex.html#go-complex-sqrt">go_complex_sqrt ()</a>
</dt>
<dt id="ientry-idm44003">go_complex_sqrtl, <a class="indexterm" href="GOComplex.html#go-complex-sqrtl">go_complex_sqrtl ()</a>
</dt>
<dt id="ientry-idm44016">go_complex_sub, <a class="indexterm" href="GOComplex.html#go-complex-sub">go_complex_sub ()</a>
</dt>
<dt id="ientry-idm44032">go_complex_subl, <a class="indexterm" href="GOComplex.html#go-complex-subl">go_complex_subl ()</a>
</dt>
<dt id="ientry-idm44048">go_complex_tan, <a class="indexterm" href="GOComplex.html#go-complex-tan">go_complex_tan ()</a>
</dt>
<dt id="ientry-idm44061">go_complex_tanl, <a class="indexterm" href="GOComplex.html#go-complex-tanl">go_complex_tanl ()</a>
</dt>
<dt id="ientry-idm44074">go_complex_to_polar, <a class="indexterm" href="GOComplex.html#go-complex-to-polar">go_complex_to_polar ()</a>
</dt>
<dt id="ientry-idm44090">go_complex_to_polarl, <a class="indexterm" href="GOComplex.html#go-complex-to-polarl">go_complex_to_polarl ()</a>
</dt>
<dt id="ientry-idm44106">go_complex_to_string, <a class="indexterm" href="GOComplex.html#go-complex-to-string">go_complex_to_string ()</a>
</dt>
<dt id="ientry-idm44125">go_complex_to_stringl, <a class="indexterm" href="GOComplex.html#go-complex-to-stringl">go_complex_to_stringl ()</a>
</dt>
<dt id="ientry-idm44144">go_complex_zero_p, <a class="indexterm" href="GOComplex.html#go-complex-zero-p">go_complex_zero_p ()</a>
</dt>
<dt id="ientry-idm44154">go_complex_zero_pl, <a class="indexterm" href="GOComplex.html#go-complex-zero-pl">go_complex_zero_pl ()</a>
</dt>
<dt id="ientry-idm59660">go_components_add_filter, <a class="indexterm" href="goffice-0.10-Components-factory.html#go-components-add-filter">go_components_add_filter ()</a>
</dt>
<dt id="ientry-idm59670">go_components_add_mime_type, <a class="indexterm" href="goffice-0.10-Components-factory.html#go-components-add-mime-type">go_components_add_mime_type ()</a>
</dt>
<dt id="ientry-idm59686">go_components_get_mime_suffix, <a class="indexterm" href="goffice-0.10-Components-factory.html#go-components-get-mime-suffix">go_components_get_mime_suffix ()</a>
</dt>
<dt id="ientry-idm59696">go_components_get_mime_types, <a class="indexterm" href="goffice-0.10-Components-factory.html#go-components-get-mime-types">go_components_get_mime_types ()</a>
</dt>
<dt id="ientry-idm59712">go_components_get_priority, <a class="indexterm" href="goffice-0.10-Components-factory.html#go-components-get-priority">go_components_get_priority ()</a>
</dt>
<dt id="ientry-idm59722">go_components_set_mime_suffix, <a class="indexterm" href="goffice-0.10-Components-factory.html#go-components-set-mime-suffix">go_components_set_mime_suffix ()</a>
</dt>
<dt id="ientry-idm59735">go_components_support_clipboard, <a class="indexterm" href="goffice-0.10-Components-factory.html#go-components-support-clipboard">go_components_support_clipboard ()</a>
</dt>
<dt id="ientry-idm60131">go_component_build_snapshot, <a class="indexterm" href="GOComponent.html#go-component-build-snapshot">go_component_build_snapshot ()</a>
</dt>
<dt id="ientry-idm60141">go_component_duplicate, <a class="indexterm" href="GOComponent.html#go-component-duplicate">go_component_duplicate ()</a>
</dt>
<dt id="ientry-idm60174">go_component_edit, <a class="indexterm" href="GOComponent.html#go-component-edit">go_component_edit ()</a>
</dt>
<dt id="ientry-idm60207">go_component_emit_changed, <a class="indexterm" href="GOComponent.html#go-component-emit-changed">go_component_emit_changed ()</a>
</dt>
<dt id="ientry-idm60217">go_component_export_image, <a class="indexterm" href="GOComponent.html#go-component-export-image">go_component_export_image ()</a>
</dt>
<dt id="ientry-idm60295">go_component_get_command_context, <a class="indexterm" href="GOComponent.html#go-component-get-command-context">go_component_get_command_context ()</a>
</dt>
<dt id="ientry-idm60327">go_component_get_data, <a class="indexterm" href="GOComponent.html#go-component-get-data">go_component_get_data ()</a>
</dt>
<dt id="ientry-idm60349">go_component_get_inline, <a class="indexterm" href="GOComponent.html#go-component-get-inline">go_component_get_inline ()</a>
</dt>
<dt id="ientry-idm60379">go_component_get_mime_type, <a class="indexterm" href="GOComponent.html#go-component-get-mime-type">go_component_get_mime_type ()</a>
</dt>
<dt id="ientry-idm60389">go_component_get_size, <a class="indexterm" href="GOComponent.html#go-component-get-size">go_component_get_size ()</a>
</dt>
<dt id="ientry-idm60405">go_component_get_snapshot, <a class="indexterm" href="GOComponent.html#go-component-get-snapshot">go_component_get_snapshot ()</a>
</dt>
<dt id="ientry-idm60458">go_component_get_use_font_from_app, <a class="indexterm" href="GOComponent.html#go-component-get-use-font-from-app">go_component_get_use_font_from_app ()</a>
</dt>
<dt id="ientry-idm60488">go_component_is_editable, <a class="indexterm" href="GOComponent.html#go-component-is-editable">go_component_is_editable ()</a>
</dt>
<dt id="ientry-idm60498">go_component_is_resizable, <a class="indexterm" href="GOComponent.html#go-component-is-resizable">go_component_is_resizable ()</a>
</dt>
<dt id="ientry-idm60508">go_component_new_by_mime_type, <a class="indexterm" href="GOComponent.html#go-component-new-by-mime-type">go_component_new_by_mime_type ()</a>
</dt>
<dt id="ientry-idm60518">go_component_new_from_uri, <a class="indexterm" href="GOComponent.html#go-component-new-from-uri">go_component_new_from_uri ()</a>
</dt>
<dt id="ientry-idm60528">go_component_render, <a class="indexterm" href="GOComponent.html#go-component-render">go_component_render ()</a>
</dt>
<dt id="ientry-idm60547">go_component_sax_push_parser, <a class="indexterm" href="GOComponent.html#go-component-sax-push-parser">go_component_sax_push_parser ()</a>
</dt>
<dt id="ientry-idm60607">go_component_set_command_context, <a class="indexterm" href="GOComponent.html#go-component-set-command-context">go_component_set_command_context ()</a>
</dt>
<dt id="ientry-idm60620">go_component_set_data, <a class="indexterm" href="GOComponent.html#go-component-set-data">go_component_set_data ()</a>
</dt>
<dt id="ientry-idm60636">go_component_set_default_command_context, <a class="indexterm" href="GOComponent.html#go-component-set-default-command-context">go_component_set_default_command_context ()</a>
</dt>
<dt id="ientry-idm60646">go_component_set_default_size, <a class="indexterm" href="GOComponent.html#go-component-set-default-size">go_component_set_default_size ()</a>
</dt>
<dt id="ientry-idm60665">go_component_set_font, <a class="indexterm" href="GOComponent.html#go-component-set-font">go_component_set_font ()</a>
</dt>
<dt id="ientry-idm60708">go_component_set_inline, <a class="indexterm" href="GOComponent.html#go-component-set-inline">go_component_set_inline ()</a>
</dt>
<dt id="ientry-idm60746">go_component_set_size, <a class="indexterm" href="GOComponent.html#go-component-set-size">go_component_set_size ()</a>
</dt>
<dt id="ientry-idm60775">go_component_set_use_font_from_app, <a class="indexterm" href="GOComponent.html#go-component-set-use-font-from-app">go_component_set_use_font_from_app ()</a>
</dt>
<dt id="ientry-idm60762">go_component_set_window, <a class="indexterm" href="GOComponent.html#go-component-set-window">go_component_set_window ()</a>
</dt>
<dt id="ientry-idm60813">go_component_stop_editing, <a class="indexterm" href="GOComponent.html#go-component-stop-editing">go_component_stop_editing ()</a>
</dt>
<dt id="ientry-idm60823">go_component_write_xml_sax, <a class="indexterm" href="GOComponent.html#go-component-write-xml-sax">go_component_write_xml_sax ()</a>
</dt>
<dt id="ientry-idm42689">go_continued_fraction, <a class="indexterm" href="goffice-0.10-Mathematics.html#go-continued-fraction">go_continued_fraction ()</a>
</dt>
<dt id="ientry-idm42708">go_cospi, <a class="indexterm" href="goffice-0.10-Mathematics.html#go-cospi">go_cospi ()</a>
</dt>
<dt id="ientry-idm42736">go_cospil, <a class="indexterm" href="goffice-0.10-Mathematics.html#go-cospil">go_cospil ()</a>
</dt>
<dt id="ientry-idm42764">go_cotpi, <a class="indexterm" href="goffice-0.10-Mathematics.html#go-cotpi">go_cotpi ()</a>
</dt>
<dt id="ientry-idm42774">go_cotpil, <a class="indexterm" href="goffice-0.10-Mathematics.html#go-cotpil">go_cotpil ()</a>
</dt>
<dt id="ientry-idm61255">go_coupdaybs, <a class="indexterm" href="GODateConventions.html#go-coupdaybs">go_coupdaybs ()</a>
</dt>
<dt id="ientry-idm61306">go_coupdays, <a class="indexterm" href="GODateConventions.html#go-coupdays">go_coupdays ()</a>
</dt>
<dt id="ientry-idm61357">go_coupdaysnc, <a class="indexterm" href="GODateConventions.html#go-coupdaysnc">go_coupdaysnc ()</a>
</dt>
<dt id="ientry-idm61230">go_coup_cd, <a class="indexterm" href="GODateConventions.html#go-coup-cd">go_coup_cd ()</a>
</dt>
<dt id="ientry-idm44302">go_cspline_destroy, <a class="indexterm" href="goffice-0.10-Cubic-splines.html#go-cspline-destroy">go_cspline_destroy ()</a>
</dt>
<dt id="ientry-idm44327">go_cspline_destroyl, <a class="indexterm" href="goffice-0.10-Cubic-splines.html#go-cspline-destroyl">go_cspline_destroyl ()</a>
</dt>
<dt id="ientry-idm44337">go_cspline_get_deriv, <a class="indexterm" href="goffice-0.10-Cubic-splines.html#go-cspline-get-deriv">go_cspline_get_deriv ()</a>
</dt>
<dt id="ientry-idm44374">go_cspline_get_derivl, <a class="indexterm" href="goffice-0.10-Cubic-splines.html#go-cspline-get-derivl">go_cspline_get_derivl ()</a>
</dt>
<dt id="ientry-idm44387">go_cspline_get_derivs, <a class="indexterm" href="goffice-0.10-Cubic-splines.html#go-cspline-get-derivs">go_cspline_get_derivs ()</a>
</dt>
<dt id="ientry-idm44433">go_cspline_get_derivsl, <a class="indexterm" href="goffice-0.10-Cubic-splines.html#go-cspline-get-derivsl">go_cspline_get_derivsl ()</a>
</dt>
<dt id="ientry-idm44449">go_cspline_get_integrals, <a class="indexterm" href="goffice-0.10-Cubic-splines.html#go-cspline-get-integrals">go_cspline_get_integrals ()</a>
</dt>
<dt id="ientry-idm44495">go_cspline_get_integralsl, <a class="indexterm" href="goffice-0.10-Cubic-splines.html#go-cspline-get-integralsl">go_cspline_get_integralsl ()</a>
</dt>
<dt id="ientry-idm44511">go_cspline_get_value, <a class="indexterm" href="goffice-0.10-Cubic-splines.html#go-cspline-get-value">go_cspline_get_value ()</a>
</dt>
<dt id="ientry-idm44548">go_cspline_get_valuel, <a class="indexterm" href="goffice-0.10-Cubic-splines.html#go-cspline-get-valuel">go_cspline_get_valuel ()</a>
</dt>
<dt id="ientry-idm44561">go_cspline_get_values, <a class="indexterm" href="goffice-0.10-Cubic-splines.html#go-cspline-get-values">go_cspline_get_values ()</a>
</dt>
<dt id="ientry-idm44607">go_cspline_get_valuesl, <a class="indexterm" href="goffice-0.10-Cubic-splines.html#go-cspline-get-valuesl">go_cspline_get_valuesl ()</a>
</dt>
<dt id="ientry-idm44623">go_cspline_init, <a class="indexterm" href="goffice-0.10-Cubic-splines.html#go-cspline-init">go_cspline_init ()</a>
</dt>
<dt id="ientry-idm44696">go_cspline_initl, <a class="indexterm" href="goffice-0.10-Cubic-splines.html#go-cspline-initl">go_cspline_initl ()</a>
</dt>
<dt id="ientry-idm40533">go_data_date_conv, <a class="indexterm" href="GOData.html#go-data-date-conv">go_data_date_conv ()</a>
</dt>
<dt id="ientry-idm40562">go_data_dup, <a class="indexterm" href="GOData.html#go-data-dup">go_data_dup ()</a>
</dt>
<dt id="ientry-idm40595">go_data_emit_changed, <a class="indexterm" href="GOData.html#go-data-emit-changed">go_data_emit_changed ()</a>
</dt>
<dt id="ientry-idm40622">go_data_eq, <a class="indexterm" href="GOData.html#go-data-eq">go_data_eq ()</a>
</dt>
<dt id="ientry-idm40664">go_data_get_bounds, <a class="indexterm" href="GOData.html#go-data-get-bounds">go_data_get_bounds ()</a>
</dt>
<dt id="ientry-idm40680">go_data_get_matrix_markup, <a class="indexterm" href="GOData.html#go-data-get-matrix-markup">go_data_get_matrix_markup ()</a>
</dt>
<dt id="ientry-idm40696">go_data_get_matrix_size, <a class="indexterm" href="GOData.html#go-data-get-matrix-size">go_data_get_matrix_size ()</a>
</dt>
<dt id="ientry-idm40712">go_data_get_matrix_string, <a class="indexterm" href="GOData.html#go-data-get-matrix-string">go_data_get_matrix_string ()</a>
</dt>
<dt id="ientry-idm40728">go_data_get_matrix_value, <a class="indexterm" href="GOData.html#go-data-get-matrix-value">go_data_get_matrix_value ()</a>
</dt>
<dt id="ientry-idm40744">go_data_get_n_dimensions, <a class="indexterm" href="GOData.html#go-data-get-n-dimensions">go_data_get_n_dimensions ()</a>
</dt>
<dt id="ientry-idm40754">go_data_get_n_values, <a class="indexterm" href="GOData.html#go-data-get-n-values">go_data_get_n_values ()</a>
</dt>
<dt id="ientry-idm40764">go_data_get_scalar_markup, <a class="indexterm" href="GOData.html#go-data-get-scalar-markup">go_data_get_scalar_markup ()</a>
</dt>
<dt id="ientry-idm40774">go_data_get_scalar_string, <a class="indexterm" href="GOData.html#go-data-get-scalar-string">go_data_get_scalar_string ()</a>
</dt>
<dt id="ientry-idm40784">go_data_get_scalar_value, <a class="indexterm" href="GOData.html#go-data-get-scalar-value">go_data_get_scalar_value ()</a>
</dt>
<dt id="ientry-idm40794">go_data_get_values, <a class="indexterm" href="GOData.html#go-data-get-values">go_data_get_values ()</a>
</dt>
<dt id="ientry-idm40804">go_data_get_vector_markup, <a class="indexterm" href="GOData.html#go-data-get-vector-markup">go_data_get_vector_markup ()</a>
</dt>
<dt id="ientry-idm40817">go_data_get_vector_size, <a class="indexterm" href="GOData.html#go-data-get-vector-size">go_data_get_vector_size ()</a>
</dt>
<dt id="ientry-idm40827">go_data_get_vector_string, <a class="indexterm" href="GOData.html#go-data-get-vector-string">go_data_get_vector_string ()</a>
</dt>
<dt id="ientry-idm40840">go_data_get_vector_value, <a class="indexterm" href="GOData.html#go-data-get-vector-value">go_data_get_vector_value ()</a>
</dt>
<dt id="ientry-idm40853">go_data_has_value, <a class="indexterm" href="GOData.html#go-data-has-value">go_data_has_value ()</a>
</dt>
<dt id="ientry-idm40863">go_data_is_decreasing, <a class="indexterm" href="GOData.html#go-data-is-decreasing">go_data_is_decreasing ()</a>
</dt>
<dt id="ientry-idm40873">go_data_is_increasing, <a class="indexterm" href="GOData.html#go-data-is-increasing">go_data_is_increasing ()</a>
</dt>
<dt id="ientry-idm40883">go_data_is_valid, <a class="indexterm" href="GOData.html#go-data-is-valid">go_data_is_valid ()</a>
</dt>
<dt id="ientry-idm40893">go_data_is_varying_uniformly, <a class="indexterm" href="GOData.html#go-data-is-varying-uniformly">go_data_is_varying_uniformly ()</a>
</dt>
<dt id="ientry-idm41456">go_data_matrix_get_columns, <a class="indexterm" href="GODataMatrix.html#go-data-matrix-get-columns">go_data_matrix_get_columns ()</a>
</dt>
<dt id="ientry-idm41466">go_data_matrix_get_markup, <a class="indexterm" href="GODataMatrix.html#go-data-matrix-get-markup">go_data_matrix_get_markup ()</a>
</dt>
<dt id="ientry-idm41482">go_data_matrix_get_minmax, <a class="indexterm" href="GODataMatrix.html#go-data-matrix-get-minmax">go_data_matrix_get_minmax ()</a>
</dt>
<dt id="ientry-idm41498">go_data_matrix_get_rows, <a class="indexterm" href="GODataMatrix.html#go-data-matrix-get-rows">go_data_matrix_get_rows ()</a>
</dt>
<dt id="ientry-idm41508">go_data_matrix_get_size, <a class="indexterm" href="GODataMatrix.html#go-data-matrix-get-size">go_data_matrix_get_size ()</a>
</dt>
<dt id="ientry-idm41540">go_data_matrix_get_str, <a class="indexterm" href="GODataMatrix.html#go-data-matrix-get-str">go_data_matrix_get_str ()</a>
</dt>
<dt id="ientry-idm41556">go_data_matrix_get_value, <a class="indexterm" href="GODataMatrix.html#go-data-matrix-get-value">go_data_matrix_get_value ()</a>
</dt>
<dt id="ientry-idm41572">go_data_matrix_get_values, <a class="indexterm" href="GODataMatrix.html#go-data-matrix-get-values">go_data_matrix_get_values ()</a>
</dt>
<dt id="ientry-idm41737">go_data_matrix_val_new, <a class="indexterm" href="goffice-0.10-Simple-data.html#go-data-matrix-val-new">go_data_matrix_val_new ()</a>
</dt>
<dt id="ientry-idm40903">go_data_preferred_fmt, <a class="indexterm" href="GOData.html#go-data-preferred-fmt">go_data_preferred_fmt ()</a>
</dt>
<dt id="ientry-idm41107">go_data_scalar_get_markup, <a class="indexterm" href="GODataScalar.html#go-data-scalar-get-markup">go_data_scalar_get_markup ()</a>
</dt>
<dt id="ientry-idm41117">go_data_scalar_get_str, <a class="indexterm" href="GODataScalar.html#go-data-scalar-get-str">go_data_scalar_get_str ()</a>
</dt>
<dt id="ientry-idm41127">go_data_scalar_get_value, <a class="indexterm" href="GODataScalar.html#go-data-scalar-get-value">go_data_scalar_get_value ()</a>
</dt>
<dt id="ientry-idm41756">go_data_scalar_str_new, <a class="indexterm" href="goffice-0.10-Simple-data.html#go-data-scalar-str-new">go_data_scalar_str_new ()</a>
</dt>
<dt id="ientry-idm41800">go_data_scalar_str_new_copy, <a class="indexterm" href="goffice-0.10-Simple-data.html#go-data-scalar-str-new-copy">go_data_scalar_str_new_copy ()</a>
</dt>
<dt id="ientry-idm41838">go_data_scalar_str_set_str, <a class="indexterm" href="goffice-0.10-Simple-data.html#go-data-scalar-str-set-str">go_data_scalar_str_set_str ()</a>
</dt>
<dt id="ientry-idm41854">go_data_scalar_val_new, <a class="indexterm" href="goffice-0.10-Simple-data.html#go-data-scalar-val-new">go_data_scalar_val_new ()</a>
</dt>
<dt id="ientry-idm40933">go_data_serialize, <a class="indexterm" href="GOData.html#go-data-serialize">go_data_serialize ()</a>
</dt>
<dt id="ientry-idm40972">go_data_unserialize, <a class="indexterm" href="GOData.html#go-data-unserialize">go_data_unserialize ()</a>
</dt>
<dt id="ientry-idm41249">go_data_vector_decreasing, <a class="indexterm" href="goffice-0.10-GODataCVector.html#go-data-vector-decreasing">go_data_vector_decreasing ()</a>
</dt>
<dt id="ientry-idm41259">go_data_vector_get_len, <a class="indexterm" href="goffice-0.10-GODataCVector.html#go-data-vector-get-len">go_data_vector_get_len ()</a>
</dt>
<dt id="ientry-idm41269">go_data_vector_get_markup, <a class="indexterm" href="goffice-0.10-GODataCVector.html#go-data-vector-get-markup">go_data_vector_get_markup ()</a>
</dt>
<dt id="ientry-idm41282">go_data_vector_get_minmax, <a class="indexterm" href="goffice-0.10-GODataCVector.html#go-data-vector-get-minmax">go_data_vector_get_minmax ()</a>
</dt>
<dt id="ientry-idm41298">go_data_vector_get_str, <a class="indexterm" href="goffice-0.10-GODataCVector.html#go-data-vector-get-str">go_data_vector_get_str ()</a>
</dt>
<dt id="ientry-idm41311">go_data_vector_get_value, <a class="indexterm" href="goffice-0.10-GODataCVector.html#go-data-vector-get-value">go_data_vector_get_value ()</a>
</dt>
<dt id="ientry-idm41324">go_data_vector_get_values, <a class="indexterm" href="goffice-0.10-GODataCVector.html#go-data-vector-get-values">go_data_vector_get_values ()</a>
</dt>
<dt id="ientry-idm41334">go_data_vector_increasing, <a class="indexterm" href="goffice-0.10-GODataCVector.html#go-data-vector-increasing">go_data_vector_increasing ()</a>
</dt>
<dt id="ientry-idm41864">go_data_vector_str_new, <a class="indexterm" href="goffice-0.10-Simple-data.html#go-data-vector-str-new">go_data_vector_str_new ()</a>
</dt>
<dt id="ientry-idm41922">go_data_vector_str_new_copy, <a class="indexterm" href="goffice-0.10-Simple-data.html#go-data-vector-str-new-copy">go_data_vector_str_new_copy ()</a>
</dt>
<dt id="ientry-idm41969">go_data_vector_str_set_translate_func, <a class="indexterm" href="goffice-0.10-Simple-data.html#go-data-vector-str-set-translate-func">go_data_vector_str_set_translate_func ()</a>
</dt>
<dt id="ientry-idm42031">go_data_vector_str_set_translation_domain, <a class="indexterm" href="goffice-0.10-Simple-data.html#go-data-vector-str-set-translation-domain">go_data_vector_str_set_translation_domain ()</a>
</dt>
<dt id="ientry-idm42081">go_data_vector_val_new, <a class="indexterm" href="goffice-0.10-Simple-data.html#go-data-vector-val-new">go_data_vector_val_new ()</a>
</dt>
<dt id="ientry-idm42134">go_data_vector_val_new_copy, <a class="indexterm" href="goffice-0.10-Simple-data.html#go-data-vector-val-new-copy">go_data_vector_val_new_copy ()</a>
</dt>
<dt id="ientry-idm41344">go_data_vector_vary_uniformly, <a class="indexterm" href="goffice-0.10-GODataCVector.html#go-data-vector-vary-uniformly">go_data_vector_vary_uniformly ()</a>
</dt>
<dt id="ientry-idm61431">go_date_convention_base, <a class="indexterm" href="GODateConventions.html#go-date-convention-base">go_date_convention_base ()</a>
</dt>
<dt id="ientry-idm61392">go_date_conv_equal, <a class="indexterm" href="GODateConventions.html#go-date-conv-equal">go_date_conv_equal ()</a>
</dt>
<dt id="ientry-idm61405">go_date_conv_from_str, <a class="indexterm" href="GODateConventions.html#go-date-conv-from-str">go_date_conv_from_str ()</a>
</dt>
<dt id="ientry-idm61415">go_date_conv_translate, <a class="indexterm" href="GODateConventions.html#go-date-conv-translate">go_date_conv_translate ()</a>
</dt>
<dt id="ientry-idm61441">go_date_days_between_basis, <a class="indexterm" href="GODateConventions.html#go-date-days-between-basis">go_date_days_between_basis ()</a>
</dt>
<dt id="ientry-idm61457">go_date_g_months_between, <a class="indexterm" href="GODateConventions.html#go-date-g-months-between">go_date_g_months_between ()</a>
</dt>
<dt id="ientry-idm61470">go_date_g_to_serial, <a class="indexterm" href="GODateConventions.html#go-date-g-to-serial">go_date_g_to_serial ()</a>
</dt>
<dt id="ientry-idm61483">go_date_g_years_between, <a class="indexterm" href="GODateConventions.html#go-date-g-years-between">go_date_g_years_between ()</a>
</dt>
<dt id="ientry-idm61496">go_date_month_name, <a class="indexterm" href="GODateConventions.html#go-date-month-name">go_date_month_name ()</a>
</dt>
<dt id="ientry-idm61509">go_date_serial_raw_to_seconds, <a class="indexterm" href="GODateConventions.html#go-date-serial-raw-to-seconds">go_date_serial_raw_to_seconds ()</a>
</dt>
<dt id="ientry-idm61519">go_date_serial_raw_to_serial, <a class="indexterm" href="GODateConventions.html#go-date-serial-raw-to-serial">go_date_serial_raw_to_serial ()</a>
</dt>
<dt id="ientry-idm61529">go_date_serial_to_g, <a class="indexterm" href="GODateConventions.html#go-date-serial-to-g">go_date_serial_to_g ()</a>
</dt>
<dt id="ientry-idm61545">go_date_serial_to_timet, <a class="indexterm" href="GODateConventions.html#go-date-serial-to-timet">go_date_serial_to_timet ()</a>
</dt>
<dt id="ientry-idm61558">go_date_timet_to_seconds, <a class="indexterm" href="GODateConventions.html#go-date-timet-to-seconds">go_date_timet_to_seconds ()</a>
</dt>
<dt id="ientry-idm61568">go_date_timet_to_serial, <a class="indexterm" href="GODateConventions.html#go-date-timet-to-serial">go_date_timet_to_serial ()</a>
</dt>
<dt id="ientry-idm61581">go_date_timet_to_serial_raw, <a class="indexterm" href="GODateConventions.html#go-date-timet-to-serial-raw">go_date_timet_to_serial_raw ()</a>
</dt>
<dt id="ientry-idm61594">go_date_weekday_name, <a class="indexterm" href="GODateConventions.html#go-date-weekday-name">go_date_weekday_name ()</a>
</dt>
<dt id="ientry-idm61607">go_date_weeknum, <a class="indexterm" href="GODateConventions.html#go-date-weeknum">go_date_weeknum ()</a>
</dt>
<dt id="ientry-idm65750">go_debug_check_finalized, <a class="indexterm" href="goffice-0.10-GLib-extras.html#go-debug-check-finalized">go_debug_check_finalized ()</a>
</dt>
<dt id="ientry-idm65763">go_debug_flag, <a class="indexterm" href="goffice-0.10-GLib-extras.html#go-debug-flag">go_debug_flag ()</a>
</dt>
<dt id="ientry-idm65773">go_destroy_password, <a class="indexterm" href="goffice-0.10-GLib-extras.html#go-destroy-password">go_destroy_password ()</a>
</dt>
<dt id="ientry-idm37918">go_direction_get_name, <a class="indexterm" href="goffice-0.10-Geometry-helpers.html#go-direction-get-name">go_direction_get_name ()</a>
</dt>
<dt id="ientry-idm37928">go_direction_is_forward, <a class="indexterm" href="goffice-0.10-Geometry-helpers.html#go-direction-is-forward">go_direction_is_forward ()</a>
</dt>
<dt id="ientry-idm37957">go_direction_is_horizontal, <a class="indexterm" href="goffice-0.10-Geometry-helpers.html#go-direction-is-horizontal">go_direction_is_horizontal ()</a>
</dt>
<dt id="ientry-idm51704">go_dirname_from_uri, <a class="indexterm" href="goffice-0.10-File-utilities.html#go-dirname-from-uri">go_dirname_from_uri ()</a>
</dt>
<dt id="ientry-idm44964">go_distribution_get_cumulative, <a class="indexterm" href="GODistribution.html#go-distribution-get-cumulative">go_distribution_get_cumulative ()</a>
</dt>
<dt id="ientry-idm45003">go_distribution_get_cumulativel, <a class="indexterm" href="GODistribution.html#go-distribution-get-cumulativel">go_distribution_get_cumulativel ()</a>
</dt>
<dt id="ientry-idm44977">go_distribution_get_cumulative_hazard, <a class="indexterm" href="GODistribution.html#go-distribution-get-cumulative-hazard">go_distribution_get_cumulative_hazard ()</a>
</dt>
<dt id="ientry-idm44990">go_distribution_get_cumulative_hazardl, <a class="indexterm" href="GODistribution.html#go-distribution-get-cumulative-hazardl">go_distribution_get_cumulative_hazardl ()</a>
</dt>
<dt id="ientry-idm45016">go_distribution_get_density, <a class="indexterm" href="GODistribution.html#go-distribution-get-density">go_distribution_get_density ()</a>
</dt>
<dt id="ientry-idm45029">go_distribution_get_densityl, <a class="indexterm" href="GODistribution.html#go-distribution-get-densityl">go_distribution_get_densityl ()</a>
</dt>
<dt id="ientry-idm45042">go_distribution_get_distribution_name, <a class="indexterm" href="GODistribution.html#go-distribution-get-distribution-name">go_distribution_get_distribution_name ()</a>
</dt>
<dt id="ientry-idm45052">go_distribution_get_distribution_type, <a class="indexterm" href="GODistribution.html#go-distribution-get-distribution-type">go_distribution_get_distribution_type ()</a>
</dt>
<dt id="ientry-idm45062">go_distribution_get_hazard, <a class="indexterm" href="GODistribution.html#go-distribution-get-hazard">go_distribution_get_hazard ()</a>
</dt>
<dt id="ientry-idm45075">go_distribution_get_hazardl, <a class="indexterm" href="GODistribution.html#go-distribution-get-hazardl">go_distribution_get_hazardl ()</a>
</dt>
<dt id="ientry-idm45088">go_distribution_get_inverse_survival, <a class="indexterm" href="GODistribution.html#go-distribution-get-inverse-survival">go_distribution_get_inverse_survival ()</a>
</dt>
<dt id="ientry-idm45101">go_distribution_get_inverse_survivall, <a class="indexterm" href="GODistribution.html#go-distribution-get-inverse-survivall">go_distribution_get_inverse_survivall ()</a>
</dt>
<dt id="ientry-idm45114">go_distribution_get_ppf, <a class="indexterm" href="GODistribution.html#go-distribution-get-ppf">go_distribution_get_ppf ()</a>
</dt>
<dt id="ientry-idm45127">go_distribution_get_ppfl, <a class="indexterm" href="GODistribution.html#go-distribution-get-ppfl">go_distribution_get_ppfl ()</a>
</dt>
<dt id="ientry-idm45140">go_distribution_get_survival, <a class="indexterm" href="GODistribution.html#go-distribution-get-survival">go_distribution_get_survival ()</a>
</dt>
<dt id="ientry-idm45153">go_distribution_get_survivall, <a class="indexterm" href="GODistribution.html#go-distribution-get-survivall">go_distribution_get_survivall ()</a>
</dt>
<dt id="ientry-idm45166">go_distribution_new, <a class="indexterm" href="GODistribution.html#go-distribution-new">go_distribution_new ()</a>
</dt>
<dt id="ientry-idm45176">go_distribution_scale, <a class="indexterm" href="GODistribution.html#go-distribution-scale">go_distribution_scale ()</a>
</dt>
<dt id="ientry-idm45192">go_distribution_type_from_string, <a class="indexterm" href="GODistribution.html#go-distribution-type-from-string">go_distribution_type_from_string ()</a>
</dt>
<dt id="ientry-idm45202">go_distribution_type_to_string, <a class="indexterm" href="GODistribution.html#go-distribution-type-to-string">go_distribution_type_to_string ()</a>
</dt>
<dt id="ientry-idm55411">go_doc_add_image, <a class="indexterm" href="GODoc.html#go-doc-add-image">go_doc_add_image ()</a>
</dt>
<dt id="ientry-idm55070">go_doc_control_get_doc, <a class="indexterm" href="GODocControl.html#go-doc-control-get-doc">go_doc_control_get_doc ()</a>
</dt>
<dt id="ientry-idm55105">go_doc_control_set_doc, <a class="indexterm" href="GODocControl.html#go-doc-control-set-doc">go_doc_control_set_doc ()</a>
</dt>
<dt id="ientry-idm55467">go_doc_end_read, <a class="indexterm" href="GODoc.html#go-doc-end-read">go_doc_end_read ()</a>
</dt>
<dt id="ientry-idm55477">go_doc_get_dirty_time, <a class="indexterm" href="GODoc.html#go-doc-get-dirty-time">go_doc_get_dirty_time ()</a>
</dt>
<dt id="ientry-idm55508">go_doc_get_image, <a class="indexterm" href="GODoc.html#go-doc-get-image">go_doc_get_image ()</a>
</dt>
<dt id="ientry-idm55552">go_doc_get_images, <a class="indexterm" href="GODoc.html#go-doc-get-images">go_doc_get_images ()</a>
</dt>
<dt id="ientry-idm55584">go_doc_get_meta_data, <a class="indexterm" href="GODoc.html#go-doc-get-meta-data">go_doc_get_meta_data ()</a>
</dt>
<dt id="ientry-idm55617">go_doc_get_uri, <a class="indexterm" href="GODoc.html#go-doc-get-uri">go_doc_get_uri ()</a>
</dt>
<dt id="ientry-idm55627">go_doc_image_fetch, <a class="indexterm" href="GODoc.html#go-doc-image-fetch">go_doc_image_fetch ()</a>
</dt>
<dt id="ientry-idm55689">go_doc_init_read, <a class="indexterm" href="GODoc.html#go-doc-init-read">go_doc_init_read ()</a>
</dt>
<dt id="ientry-idm55702">go_doc_init_write, <a class="indexterm" href="GODoc.html#go-doc-init-write">go_doc_init_write ()</a>
</dt>
<dt id="ientry-idm55715">go_doc_is_dirty, <a class="indexterm" href="GODoc.html#go-doc-is-dirty">go_doc_is_dirty ()</a>
</dt>
<dt id="ientry-idm55745">go_doc_is_pristine, <a class="indexterm" href="GODoc.html#go-doc-is-pristine">go_doc_is_pristine ()</a>
</dt>
<dt id="ientry-idm55777">go_doc_read, <a class="indexterm" href="GODoc.html#go-doc-read">go_doc_read ()</a>
</dt>
<dt id="ientry-idm55793">go_doc_save_image, <a class="indexterm" href="GODoc.html#go-doc-save-image">go_doc_save_image ()</a>
</dt>
<dt id="ientry-idm55831">go_doc_save_resource, <a class="indexterm" href="GODoc.html#go-doc-save-resource">go_doc_save_resource ()</a>
</dt>
<dt id="ientry-idm55869">go_doc_set_dirty, <a class="indexterm" href="GODoc.html#go-doc-set-dirty">go_doc_set_dirty ()</a>
</dt>
<dt id="ientry-idm55907">go_doc_set_dirty_time, <a class="indexterm" href="GODoc.html#go-doc-set-dirty-time">go_doc_set_dirty_time ()</a>
</dt>
<dt id="ientry-idm55943">go_doc_set_meta_data, <a class="indexterm" href="GODoc.html#go-doc-set-meta-data">go_doc_set_meta_data ()</a>
</dt>
<dt id="ientry-idm55982">go_doc_set_pristine, <a class="indexterm" href="GODoc.html#go-doc-set-pristine">go_doc_set_pristine ()</a>
</dt>
<dt id="ientry-idm56018">go_doc_set_uri, <a class="indexterm" href="GODoc.html#go-doc-set-uri">go_doc_set_uri ()</a>
</dt>
<dt id="ientry-idm56054">go_doc_update_meta_data, <a class="indexterm" href="GODoc.html#go-doc-update-meta-data">go_doc_update_meta_data ()</a>
</dt>
<dt id="ientry-idm56082">go_doc_write, <a class="indexterm" href="GODoc.html#go-doc-write">go_doc_write ()</a>
</dt>
<dt id="ientry-idm42784">go_dtoa, <a class="indexterm" href="goffice-0.10-Mathematics.html#go-dtoa">go_dtoa ()</a>
</dt>
<dt id="ientry-idm31617">go_editor_add_page, <a class="indexterm" href="GOEditor.html#go-editor-add-page">go_editor_add_page ()</a>
</dt>
<dt id="ientry-idm31663">go_editor_free, <a class="indexterm" href="GOEditor.html#go-editor-free">go_editor_free ()</a>
</dt>
<dt id="ientry-idm31690">go_editor_get_notebook, <a class="indexterm" href="GOEditor.html#go-editor-get-notebook">go_editor_get_notebook ()</a>
</dt>
<dt id="ientry-idm31723">go_editor_get_page, <a class="indexterm" href="GOEditor.html#go-editor-get-page">go_editor_get_page ()</a>
</dt>
<dt id="ientry-idm31765">go_editor_get_registered_widget, <a class="indexterm" href="GOEditor.html#go-editor-get-registered-widget">go_editor_get_registered_widget ()</a>
</dt>
<dt id="ientry-idm31807">go_editor_new, <a class="indexterm" href="GOEditor.html#go-editor-new">go_editor_new ()</a>
</dt>
<dt id="ientry-idm31823">go_editor_register_widget, <a class="indexterm" href="GOEditor.html#go-editor-register-widget">go_editor_register_widget ()</a>
</dt>
<dt id="ientry-idm31898">go_editor_set_store_page, <a class="indexterm" href="GOEditor.html#go-editor-set-store-page">go_editor_set_store_page ()</a>
</dt>
<dt id="ientry-idm31862">go_editor_set_use_scrolled_window, <a class="indexterm" href="GOEditor.html#go-editor-set-use-scrolled-window">go_editor_set_use_scrolled_window ()</a>
</dt>
<dt id="ientry-idm40129">go_emf_get_canvas, <a class="indexterm" href="goffice-0.10-Windows-Metafiles-support.html#go-emf-get-canvas">go_emf_get_canvas ()</a>
</dt>
<dt id="ientry-idm40161">go_emf_new_from_data, <a class="indexterm" href="goffice-0.10-Windows-Metafiles-support.html#go-emf-new-from-data">go_emf_new_from_data ()</a>
</dt>
<dt id="ientry-idm40177">go_emf_new_from_file, <a class="indexterm" href="goffice-0.10-Windows-Metafiles-support.html#go-emf-new-from-file">go_emf_new_from_file ()</a>
</dt>
<dt id="ientry-idm48401">GO_EMU_PER_IN, <a class="indexterm" href="goffice-0.10-Units.html#GO-EMU-PER-IN:CAPS">GO_EMU_PER_IN</a>
</dt>
<dt id="ientry-idm48229">GO_EMU_TO_CM, <a class="indexterm" href="goffice-0.10-Units.html#GO-EMU-TO-CM:CAPS">GO_EMU_TO_CM()</a>
</dt>
<dt id="ientry-idm48234">GO_EMU_TO_IN, <a class="indexterm" href="goffice-0.10-Units.html#GO-EMU-TO-IN:CAPS">GO_EMU_TO_IN()</a>
</dt>
<dt id="ientry-idm48239">GO_EMU_TO_PT, <a class="indexterm" href="goffice-0.10-Units.html#GO-EMU-TO-PT:CAPS">GO_EMU_TO_PT()</a>
</dt>
<dt id="ientry-idm48244">GO_EMU_TO_UN, <a class="indexterm" href="goffice-0.10-Units.html#GO-EMU-TO-UN:CAPS">GO_EMU_TO_UN()</a>
</dt>
<dt id="ientry-idm54979">go_error_export, <a class="indexterm" href="GOCmdContext.html#go-error-export">go_error_export ()</a>
</dt>
<dt id="ientry-idm54988">go_error_import, <a class="indexterm" href="GOCmdContext.html#go-error-import">go_error_import ()</a>
</dt>
<dt id="ientry-idm56335">go_error_info_add_details, <a class="indexterm" href="GOErrorInfo.html#go-error-info-add-details">go_error_info_add_details ()</a>
</dt>
<dt id="ientry-idm56376">go_error_info_add_details_list, <a class="indexterm" href="GOErrorInfo.html#go-error-info-add-details-list">go_error_info_add_details_list ()</a>
</dt>
<dt id="ientry-idm56419">go_error_info_free, <a class="indexterm" href="GOErrorInfo.html#go-error-info-free">go_error_info_free ()</a>
</dt>
<dt id="ientry-idm56429">go_error_info_new_from_errno, <a class="indexterm" href="GOErrorInfo.html#go-error-info-new-from-errno">go_error_info_new_from_errno ()</a>
</dt>
<dt id="ientry-idm56438">go_error_info_new_from_error_list, <a class="indexterm" href="GOErrorInfo.html#go-error-info-new-from-error-list">go_error_info_new_from_error_list ()</a>
</dt>
<dt id="ientry-idm56479">go_error_info_new_printf, <a class="indexterm" href="GOErrorInfo.html#go-error-info-new-printf">go_error_info_new_printf ()</a>
</dt>
<dt id="ientry-idm56490">go_error_info_new_str, <a class="indexterm" href="GOErrorInfo.html#go-error-info-new-str">go_error_info_new_str ()</a>
</dt>
<dt id="ientry-idm56500">go_error_info_new_str_with_details, <a class="indexterm" href="GOErrorInfo.html#go-error-info-new-str-with-details">go_error_info_new_str_with_details ()</a>
</dt>
<dt id="ientry-idm56549">go_error_info_new_str_with_details_list, <a class="indexterm" href="GOErrorInfo.html#go-error-info-new-str-with-details-list">go_error_info_new_str_with_details_list ()</a>
</dt>
<dt id="ientry-idm56600">go_error_info_new_vprintf, <a class="indexterm" href="GOErrorInfo.html#go-error-info-new-vprintf">go_error_info_new_vprintf ()</a>
</dt>
<dt id="ientry-idm56616">go_error_info_peek_details, <a class="indexterm" href="GOErrorInfo.html#go-error-info-peek-details">go_error_info_peek_details ()</a>
</dt>
<dt id="ientry-idm56648">go_error_info_peek_message, <a class="indexterm" href="GOErrorInfo.html#go-error-info-peek-message">go_error_info_peek_message ()</a>
</dt>
<dt id="ientry-idm56658">go_error_info_peek_severity, <a class="indexterm" href="GOErrorInfo.html#go-error-info-peek-severity">go_error_info_peek_severity ()</a>
</dt>
<dt id="ientry-idm56668">go_error_info_print, <a class="indexterm" href="GOErrorInfo.html#go-error-info-print">go_error_info_print ()</a>
</dt>
<dt id="ientry-idm54997">go_error_invalid, <a class="indexterm" href="GOCmdContext.html#go-error-invalid">go_error_invalid ()</a>
</dt>
<dt id="ientry-idm55006">go_error_system, <a class="indexterm" href="GOCmdContext.html#go-error-system">go_error_system ()</a>
</dt>
<dt id="ientry-idm46548">go_exponential_regression, <a class="indexterm" href="goffice-0.10-GORegression.html#go-exponential-regression">go_exponential_regression ()</a>
</dt>
<dt id="ientry-idm46748">go_exponential_regressionl, <a class="indexterm" href="goffice-0.10-GORegression.html#go-exponential-regressionl">go_exponential_regressionl ()</a>
</dt>
<dt id="ientry-idm46634">go_exponential_regression_as_log, <a class="indexterm" href="goffice-0.10-GORegression.html#go-exponential-regression-as-log">go_exponential_regression_as_log ()</a>
</dt>
<dt id="ientry-idm46720">go_exponential_regression_as_logl, <a class="indexterm" href="goffice-0.10-GORegression.html#go-exponential-regression-as-logl">go_exponential_regression_as_logl ()</a>
</dt>
<dt id="ientry-idm42798">go_fake_ceil, <a class="indexterm" href="goffice-0.10-Mathematics.html#go-fake-ceil">go_fake_ceil ()</a>
</dt>
<dt id="ientry-idm42808">go_fake_ceill, <a class="indexterm" href="goffice-0.10-Mathematics.html#go-fake-ceill">go_fake_ceill ()</a>
</dt>
<dt id="ientry-idm42818">go_fake_floor, <a class="indexterm" href="goffice-0.10-Mathematics.html#go-fake-floor">go_fake_floor ()</a>
</dt>
<dt id="ientry-idm42828">go_fake_floorl, <a class="indexterm" href="goffice-0.10-Mathematics.html#go-fake-floorl">go_fake_floorl ()</a>
</dt>
<dt id="ientry-idm42838">go_fake_round, <a class="indexterm" href="goffice-0.10-Mathematics.html#go-fake-round">go_fake_round ()</a>
</dt>
<dt id="ientry-idm42848">go_fake_roundl, <a class="indexterm" href="goffice-0.10-Mathematics.html#go-fake-roundl">go_fake_roundl ()</a>
</dt>
<dt id="ientry-idm42858">go_fake_trunc, <a class="indexterm" href="goffice-0.10-Mathematics.html#go-fake-trunc">go_fake_trunc ()</a>
</dt>
<dt id="ientry-idm42868">go_fake_truncl, <a class="indexterm" href="goffice-0.10-Mathematics.html#go-fake-truncl">go_fake_truncl ()</a>
</dt>
<dt id="ientry-idm51924">go_filename_from_uri, <a class="indexterm" href="goffice-0.10-File-utilities.html#go-filename-from-uri">go_filename_from_uri ()</a>
</dt>
<dt id="ientry-idm51934">go_filename_simplify, <a class="indexterm" href="goffice-0.10-File-utilities.html#go-filename-simplify">go_filename_simplify ()</a>
</dt>
<dt id="ientry-idm51950">go_filename_to_uri, <a class="indexterm" href="goffice-0.10-File-utilities.html#go-filename-to-uri">go_filename_to_uri ()</a>
</dt>
<dt id="ientry-idm51741">go_file_access, <a class="indexterm" href="goffice-0.10-File-utilities.html#go-file-access">go_file_access ()</a>
</dt>
<dt id="ientry-idm51754">go_file_create, <a class="indexterm" href="goffice-0.10-File-utilities.html#go-file-create">go_file_create ()</a>
</dt>
<dt id="ientry-idm51798">go_file_get_date_accessed, <a class="indexterm" href="goffice-0.10-File-utilities.html#go-file-get-date-accessed">go_file_get_date_accessed ()</a>
</dt>
<dt id="ientry-idm51808">go_file_get_date_changed, <a class="indexterm" href="goffice-0.10-File-utilities.html#go-file-get-date-changed">go_file_get_date_changed ()</a>
</dt>
<dt id="ientry-idm51818">go_file_get_date_modified, <a class="indexterm" href="goffice-0.10-File-utilities.html#go-file-get-date-modified">go_file_get_date_modified ()</a>
</dt>
<dt id="ientry-idm51828">go_file_get_group_name, <a class="indexterm" href="goffice-0.10-File-utilities.html#go-file-get-group-name">go_file_get_group_name ()</a>
</dt>
<dt id="ientry-idm51838">go_file_get_owner_name, <a class="indexterm" href="goffice-0.10-File-utilities.html#go-file-get-owner-name">go_file_get_owner_name ()</a>
</dt>
<dt id="ientry-idm51848">go_file_open, <a class="indexterm" href="goffice-0.10-File-utilities.html#go-file-open">go_file_open ()</a>
</dt>
<dt id="ientry-idm52753">go_file_opener_can_probe, <a class="indexterm" href="goffice-0.10-GOFileOpeners.html#go-file-opener-can-probe">go_file_opener_can_probe ()</a>
</dt>
<dt id="ientry-idm52794">go_file_opener_for_id, <a class="indexterm" href="goffice-0.10-GOFileOpeners.html#go-file-opener-for-id">go_file_opener_for_id ()</a>
</dt>
<dt id="ientry-idm52829">go_file_opener_get_description, <a class="indexterm" href="goffice-0.10-GOFileOpeners.html#go-file-opener-get-description">go_file_opener_get_description ()</a>
</dt>
<dt id="ientry-idm52862">go_file_opener_get_id, <a class="indexterm" href="goffice-0.10-GOFileOpeners.html#go-file-opener-get-id">go_file_opener_get_id ()</a>
</dt>
<dt id="ientry-idm52896">go_file_opener_get_mimes, <a class="indexterm" href="goffice-0.10-GOFileOpeners.html#go-file-opener-get-mimes">go_file_opener_get_mimes ()</a>
</dt>
<dt id="ientry-idm52929">go_file_opener_get_suffixes, <a class="indexterm" href="goffice-0.10-GOFileOpeners.html#go-file-opener-get-suffixes">go_file_opener_get_suffixes ()</a>
</dt>
<dt id="ientry-idm52962">go_file_opener_is_encoding_dependent, <a class="indexterm" href="goffice-0.10-GOFileOpeners.html#go-file-opener-is-encoding-dependent">go_file_opener_is_encoding_dependent ()</a>
</dt>
<dt id="ientry-idm52994">go_file_opener_new, <a class="indexterm" href="goffice-0.10-GOFileOpeners.html#go-file-opener-new">go_file_opener_new ()</a>
</dt>
<dt id="ientry-idm53084">go_file_opener_new_with_enc, <a class="indexterm" href="goffice-0.10-GOFileOpeners.html#go-file-opener-new-with-enc">go_file_opener_new_with_enc ()</a>
</dt>
<dt id="ientry-idm53178">go_file_opener_open, <a class="indexterm" href="goffice-0.10-GOFileOpeners.html#go-file-opener-open">go_file_opener_open ()</a>
</dt>
<dt id="ientry-idm53247">go_file_opener_probe, <a class="indexterm" href="goffice-0.10-GOFileOpeners.html#go-file-opener-probe">go_file_opener_probe ()</a>
</dt>
<dt id="ientry-idm53303">go_file_opener_register, <a class="indexterm" href="goffice-0.10-GOFileOpeners.html#go-file-opener-register">go_file_opener_register ()</a>
</dt>
<dt id="ientry-idm53340">go_file_opener_unregister, <a class="indexterm" href="goffice-0.10-GOFileOpeners.html#go-file-opener-unregister">go_file_opener_unregister ()</a>
</dt>
<dt id="ientry-idm53729">go_file_saver_for_file_name, <a class="indexterm" href="GOFileSaver.html#go-file-saver-for-file-name">go_file_saver_for_file_name ()</a>
</dt>
<dt id="ientry-idm53765">go_file_saver_for_id, <a class="indexterm" href="GOFileSaver.html#go-file-saver-for-id">go_file_saver_for_id ()</a>
</dt>
<dt id="ientry-idm53800">go_file_saver_for_mime_type, <a class="indexterm" href="GOFileSaver.html#go-file-saver-for-mime-type">go_file_saver_for_mime_type ()</a>
</dt>
<dt id="ientry-idm53834">go_file_saver_get_default, <a class="indexterm" href="GOFileSaver.html#go-file-saver-get-default">go_file_saver_get_default ()</a>
</dt>
<dt id="ientry-idm53853">go_file_saver_get_description, <a class="indexterm" href="GOFileSaver.html#go-file-saver-get-description">go_file_saver_get_description ()</a>
</dt>
<dt id="ientry-idm53886">go_file_saver_get_extension, <a class="indexterm" href="GOFileSaver.html#go-file-saver-get-extension">go_file_saver_get_extension ()</a>
</dt>
<dt id="ientry-idm53920">go_file_saver_get_format_level, <a class="indexterm" href="GOFileSaver.html#go-file-saver-get-format-level">go_file_saver_get_format_level ()</a>
</dt>
<dt id="ientry-idm53950">go_file_saver_get_id, <a class="indexterm" href="GOFileSaver.html#go-file-saver-get-id">go_file_saver_get_id ()</a>
</dt>
<dt id="ientry-idm53984">go_file_saver_get_mime_type, <a class="indexterm" href="GOFileSaver.html#go-file-saver-get-mime-type">go_file_saver_get_mime_type ()</a>
</dt>
<dt id="ientry-idm54018">go_file_saver_get_save_scope, <a class="indexterm" href="GOFileSaver.html#go-file-saver-get-save-scope">go_file_saver_get_save_scope ()</a>
</dt>
<dt id="ientry-idm54048">go_file_saver_new, <a class="indexterm" href="GOFileSaver.html#go-file-saver-new">go_file_saver_new ()</a>
</dt>
<dt id="ientry-idm54123">go_file_saver_register, <a class="indexterm" href="GOFileSaver.html#go-file-saver-register">go_file_saver_register ()</a>
</dt>
<dt id="ientry-idm54151">go_file_saver_register_as_default, <a class="indexterm" href="GOFileSaver.html#go-file-saver-register-as-default">go_file_saver_register_as_default ()</a>
</dt>
<dt id="ientry-idm54187">go_file_saver_save, <a class="indexterm" href="GOFileSaver.html#go-file-saver-save">go_file_saver_save ()</a>
</dt>
<dt id="ientry-idm54245">go_file_saver_set_export_options, <a class="indexterm" href="GOFileSaver.html#go-file-saver-set-export-options">go_file_saver_set_export_options ()</a>
</dt>
<dt id="ientry-idm54264">go_file_saver_set_overwrite_files, <a class="indexterm" href="GOFileSaver.html#go-file-saver-set-overwrite-files">go_file_saver_set_overwrite_files ()</a>
</dt>
<dt id="ientry-idm54301">go_file_saver_set_save_scope, <a class="indexterm" href="GOFileSaver.html#go-file-saver-set-save-scope">go_file_saver_set_save_scope ()</a>
</dt>
<dt id="ientry-idm54314">go_file_saver_unregister, <a class="indexterm" href="GOFileSaver.html#go-file-saver-unregister">go_file_saver_unregister ()</a>
</dt>
<dt id="ientry-idm51892">go_file_split_urls, <a class="indexterm" href="goffice-0.10-File-utilities.html#go-file-split-urls">go_file_split_urls ()</a>
</dt>
<dt id="ientry-idm42878">go_finite, <a class="indexterm" href="goffice-0.10-Mathematics.html#go-finite">go_finite ()</a>
</dt>
<dt id="ientry-idm42888">go_finitel, <a class="indexterm" href="goffice-0.10-Mathematics.html#go-finitel">go_finitel ()</a>
</dt>
<dt id="ientry-idm32199">go_fonts_list_families, <a class="indexterm" href="GOFont.html#go-fonts-list-families">go_fonts_list_families ()</a>
</dt>
<dt id="ientry-idm32232">go_fonts_list_sizes, <a class="indexterm" href="GOFont.html#go-fonts-list-sizes">go_fonts_list_sizes ()</a>
</dt>
<dt id="ientry-idm32059">go_font_as_str, <a class="indexterm" href="GOFont.html#go-font-as-str">go_font_as_str ()</a>
</dt>
<dt id="ientry-idm32069">go_font_cache_register, <a class="indexterm" href="GOFont.html#go-font-cache-register">go_font_cache_register ()</a>
</dt>
<dt id="ientry-idm32079">go_font_cache_unregister, <a class="indexterm" href="GOFont.html#go-font-cache-unregister">go_font_cache_unregister ()</a>
</dt>
<dt id="ientry-idm32089">go_font_eq, <a class="indexterm" href="GOFont.html#go-font-eq">go_font_eq ()</a>
</dt>
<dt id="ientry-idm32102">go_font_metrics_free, <a class="indexterm" href="GOFont.html#go-font-metrics-free">go_font_metrics_free ()</a>
</dt>
<dt id="ientry-idm32112">go_font_metrics_new, <a class="indexterm" href="GOFont.html#go-font-metrics-new">go_font_metrics_new ()</a>
</dt>
<dt id="ientry-idm32125">go_font_new_by_desc, <a class="indexterm" href="GOFont.html#go-font-new-by-desc">go_font_new_by_desc ()</a>
</dt>
<dt id="ientry-idm32159">go_font_new_by_index, <a class="indexterm" href="GOFont.html#go-font-new-by-index">go_font_new_by_index ()</a>
</dt>
<dt id="ientry-idm32169">go_font_new_by_name, <a class="indexterm" href="GOFont.html#go-font-new-by-name">go_font_new_by_name ()</a>
</dt>
<dt id="ientry-idm32179">go_font_ref, <a class="indexterm" href="GOFont.html#go-font-ref">go_font_ref ()</a>
</dt>
<dt id="ientry-idm29493">go_font_sel_editable_enters, <a class="indexterm" href="GOFontSel.html#go-font-sel-editable-enters">go_font_sel_editable_enters ()</a>
</dt>
<dt id="ientry-idm29506">go_font_sel_get_color, <a class="indexterm" href="GOFontSel.html#go-font-sel-get-color">go_font_sel_get_color ()</a>
</dt>
<dt id="ientry-idm29516">go_font_sel_get_font, <a class="indexterm" href="GOFontSel.html#go-font-sel-get-font">go_font_sel_get_font ()</a>
</dt>
<dt id="ientry-idm29526">go_font_sel_new, <a class="indexterm" href="GOFontSel.html#go-font-sel-new">go_font_sel_new ()</a>
</dt>
<dt id="ientry-idm29561">go_font_sel_set_color, <a class="indexterm" href="GOFontSel.html#go-font-sel-set-color">go_font_sel_set_color ()</a>
</dt>
<dt id="ientry-idm29535">go_font_sel_set_font, <a class="indexterm" href="GOFontSel.html#go-font-sel-set-font">go_font_sel_set_font ()</a>
</dt>
<dt id="ientry-idm29548">go_font_sel_set_sample_text, <a class="indexterm" href="GOFontSel.html#go-font-sel-set-sample-text">go_font_sel_set_sample_text ()</a>
</dt>
<dt id="ientry-idm29577">go_font_sel_set_script, <a class="indexterm" href="GOFontSel.html#go-font-sel-set-script">go_font_sel_set_script ()</a>
</dt>
<dt id="ientry-idm32189">go_font_unref, <a class="indexterm" href="GOFont.html#go-font-unref">go_font_unref ()</a>
</dt>
<dt id="ientry-idm62923">go_format_allow_ee_markup, <a class="indexterm" href="GOFormat.html#go-format-allow-ee-markup">go_format_allow_ee_markup ()</a>
</dt>
<dt id="ientry-idm62932">go_format_allow_pi_slash, <a class="indexterm" href="GOFormat.html#go-format-allow-pi-slash">go_format_allow_pi_slash ()</a>
</dt>
<dt id="ientry-idm62941">go_format_allow_si, <a class="indexterm" href="GOFormat.html#go-format-allow-si">go_format_allow_si ()</a>
</dt>
<dt id="ientry-idm62950">go_format_as_XL, <a class="indexterm" href="GOFormat.html#go-format-as-XL">go_format_as_XL ()</a>
</dt>
<dt id="ientry-idm62979">go_format_dec_precision, <a class="indexterm" href="GOFormat.html#go-format-dec-precision">go_format_dec_precision ()</a>
</dt>
<dt id="ientry-idm63010">go_format_default_accounting, <a class="indexterm" href="GOFormat.html#go-format-default-accounting">go_format_default_accounting ()</a>
</dt>
<dt id="ientry-idm63025">go_format_default_date, <a class="indexterm" href="GOFormat.html#go-format-default-date">go_format_default_date ()</a>
</dt>
<dt id="ientry-idm63040">go_format_default_date_time, <a class="indexterm" href="GOFormat.html#go-format-default-date-time">go_format_default_date_time ()</a>
</dt>
<dt id="ientry-idm63055">go_format_default_money, <a class="indexterm" href="GOFormat.html#go-format-default-money">go_format_default_money ()</a>
</dt>
<dt id="ientry-idm63070">go_format_default_percentage, <a class="indexterm" href="GOFormat.html#go-format-default-percentage">go_format_default_percentage ()</a>
</dt>
<dt id="ientry-idm63085">go_format_default_time, <a class="indexterm" href="GOFormat.html#go-format-default-time">go_format_default_time ()</a>
</dt>
<dt id="ientry-idm63100">go_format_details_finalize, <a class="indexterm" href="GOFormat.html#go-format-details-finalize">go_format_details_finalize ()</a>
</dt>
<dt id="ientry-idm63110">go_format_details_free, <a class="indexterm" href="GOFormat.html#go-format-details-free">go_format_details_free ()</a>
</dt>
<dt id="ientry-idm63120">go_format_details_init, <a class="indexterm" href="GOFormat.html#go-format-details-init">go_format_details_init ()</a>
</dt>
<dt id="ientry-idm63133">go_format_details_new, <a class="indexterm" href="GOFormat.html#go-format-details-new">go_format_details_new ()</a>
</dt>
<dt id="ientry-idm63143">go_format_empty, <a class="indexterm" href="GOFormat.html#go-format-empty">go_format_empty ()</a>
</dt>
<dt id="ientry-idm63158">go_format_eq, <a class="indexterm" href="GOFormat.html#go-format-eq">go_format_eq ()</a>
</dt>
<dt id="ientry-idm63171">go_format_foreach, <a class="indexterm" href="GOFormat.html#go-format-foreach">go_format_foreach ()</a>
</dt>
<dt id="ientry-idm63211">go_format_general, <a class="indexterm" href="GOFormat.html#go-format-general">go_format_general ()</a>
</dt>
<dt id="ientry-idm63226">go_format_generate_number_str, <a class="indexterm" href="GOFormat.html#go-format-generate-number-str">go_format_generate_number_str ()</a>
</dt>
<dt id="ientry-idm63315">go_format_generate_str, <a class="indexterm" href="GOFormat.html#go-format-generate-str">go_format_generate_str ()</a>
</dt>
<dt id="ientry-idm63328">go_format_get_details, <a class="indexterm" href="GOFormat.html#go-format-get-details">go_format_get_details ()</a>
</dt>
<dt id="ientry-idm63379">go_format_get_family, <a class="indexterm" href="GOFormat.html#go-format-get-family">go_format_get_family ()</a>
</dt>
<dt id="ientry-idm63389">go_format_get_magic, <a class="indexterm" href="GOFormat.html#go-format-get-magic">go_format_get_magic ()</a>
</dt>
<dt id="ientry-idm63416">go_format_get_markup, <a class="indexterm" href="GOFormat.html#go-format-get-markup">go_format_get_markup ()</a>
</dt>
<dt id="ientry-idm63426">go_format_has_hour, <a class="indexterm" href="GOFormat.html#go-format-has-hour">go_format_has_hour ()</a>
</dt>
<dt id="ientry-idm63453">go_format_has_minute, <a class="indexterm" href="GOFormat.html#go-format-has-minute">go_format_has_minute ()</a>
</dt>
<dt id="ientry-idm63480">go_format_inc_precision, <a class="indexterm" href="GOFormat.html#go-format-inc-precision">go_format_inc_precision ()</a>
</dt>
<dt id="ientry-idm63511">go_format_is_date, <a class="indexterm" href="GOFormat.html#go-format-is-date">go_format_is_date ()</a>
</dt>
<dt id="ientry-idm63538">go_format_is_general, <a class="indexterm" href="GOFormat.html#go-format-is-general">go_format_is_general ()</a>
</dt>
<dt id="ientry-idm63569">go_format_is_invalid, <a class="indexterm" href="GOFormat.html#go-format-is-invalid">go_format_is_invalid ()</a>
</dt>
<dt id="ientry-idm63596">go_format_is_markup, <a class="indexterm" href="GOFormat.html#go-format-is-markup">go_format_is_markup ()</a>
</dt>
<dt id="ientry-idm63627">go_format_is_simple, <a class="indexterm" href="GOFormat.html#go-format-is-simple">go_format_is_simple ()</a>
</dt>
<dt id="ientry-idm63637">go_format_is_text, <a class="indexterm" href="GOFormat.html#go-format-is-text">go_format_is_text ()</a>
</dt>
<dt id="ientry-idm63668">go_format_is_time, <a class="indexterm" href="GOFormat.html#go-format-is-time">go_format_is_time ()</a>
</dt>
<dt id="ientry-idm63695">go_format_is_var_width, <a class="indexterm" href="GOFormat.html#go-format-is-var-width">go_format_is_var_width ()</a>
</dt>
<dt id="ientry-idm63724">go_format_locale_currency, <a class="indexterm" href="GOFormat.html#go-format-locale-currency">go_format_locale_currency ()</a>
</dt>
<dt id="ientry-idm63741">go_format_measure_pango, <a class="indexterm" href="GOFormat.html#go-format-measure-pango">go_format_measure_pango ()</a>
</dt>
<dt id="ientry-idm63754">go_format_measure_strlen, <a class="indexterm" href="GOFormat.html#go-format-measure-strlen">go_format_measure_strlen ()</a>
</dt>
<dt id="ientry-idm63767">go_format_measure_zero, <a class="indexterm" href="GOFormat.html#go-format-measure-zero">go_format_measure_zero ()</a>
</dt>
<dt id="ientry-idm63780">go_format_month_before_day, <a class="indexterm" href="GOFormat.html#go-format-month-before-day">go_format_month_before_day ()</a>
</dt>
<dt id="ientry-idm63807">go_format_new_from_XL, <a class="indexterm" href="GOFormat.html#go-format-new-from-XL">go_format_new_from_XL ()</a>
</dt>
<dt id="ientry-idm63834">go_format_new_magic, <a class="indexterm" href="GOFormat.html#go-format-new-magic">go_format_new_magic ()</a>
</dt>
<dt id="ientry-idm63844">go_format_new_markup, <a class="indexterm" href="GOFormat.html#go-format-new-markup">go_format_new_markup ()</a>
</dt>
<dt id="ientry-idm63885">go_format_odf_style_map, <a class="indexterm" href="GOFormat.html#go-format-odf-style-map">go_format_odf_style_map ()</a>
</dt>
<dt id="ientry-idm63898">go_format_output_to_odf, <a class="indexterm" href="GOFormat.html#go-format-output-to-odf">go_format_output_to_odf ()</a>
</dt>
<dt id="ientry-idm63920">go_format_palette_color_of_index, <a class="indexterm" href="GOFormat.html#go-format-palette-color-of-index">go_format_palette_color_of_index ()</a>
</dt>
<dt id="ientry-idm63930">go_format_palette_index_from_color, <a class="indexterm" href="GOFormat.html#go-format-palette-index-from-color">go_format_palette_index_from_color ()</a>
</dt>
<dt id="ientry-idm63957">go_format_palette_name_of_index, <a class="indexterm" href="GOFormat.html#go-format-palette-name-of-index">go_format_palette_name_of_index ()</a>
</dt>
<dt id="ientry-idm63967">go_format_ref, <a class="indexterm" href="GOFormat.html#go-format-ref">go_format_ref ()</a>
</dt>
<dt id="ientry-idm29871">go_format_sel_editable_enters, <a class="indexterm" href="GOFormatSel.html#go-format-sel-editable-enters">go_format_sel_editable_enters ()</a>
</dt>
<dt id="ientry-idm29884">go_format_sel_format_classification, <a class="indexterm" href="GOFormatSel.html#go-format-sel-format-classification">go_format_sel_format_classification ()</a>
</dt>
<dt id="ientry-idm29894">go_format_sel_get_dateconv, <a class="indexterm" href="GOFormatSel.html#go-format-sel-get-dateconv">go_format_sel_get_dateconv ()</a>
</dt>
<dt id="ientry-idm29928">go_format_sel_get_fmt, <a class="indexterm" href="GOFormatSel.html#go-format-sel-get-fmt">go_format_sel_get_fmt ()</a>
</dt>
<dt id="ientry-idm29962">go_format_sel_hide_preview, <a class="indexterm" href="GOFormatSel.html#go-format-sel-hide-preview">go_format_sel_hide_preview ()</a>
</dt>
<dt id="ientry-idm29972">go_format_sel_new, <a class="indexterm" href="GOFormatSel.html#go-format-sel-new">go_format_sel_new ()</a>
</dt>
<dt id="ientry-idm29986">go_format_sel_new_full, <a class="indexterm" href="GOFormatSel.html#go-format-sel-new-full">go_format_sel_new_full ()</a>
</dt>
<dt id="ientry-idm30017">go_format_sel_set_dateconv, <a class="indexterm" href="GOFormatSel.html#go-format-sel-set-dateconv">go_format_sel_set_dateconv ()</a>
</dt>
<dt id="ientry-idm30030">go_format_sel_set_focus, <a class="indexterm" href="GOFormatSel.html#go-format-sel-set-focus">go_format_sel_set_focus ()</a>
</dt>
<dt id="ientry-idm30040">go_format_sel_set_locale, <a class="indexterm" href="GOFormatSel.html#go-format-sel-set-locale">go_format_sel_set_locale ()</a>
</dt>
<dt id="ientry-idm30053">go_format_sel_set_style_format, <a class="indexterm" href="GOFormatSel.html#go-format-sel-set-style-format">go_format_sel_set_style_format ()</a>
</dt>
<dt id="ientry-idm30066">go_format_sel_show_preview, <a class="indexterm" href="GOFormatSel.html#go-format-sel-show-preview">go_format_sel_show_preview ()</a>
</dt>
<dt id="ientry-idm63998">go_format_specialize, <a class="indexterm" href="GOFormat.html#go-format-specialize">go_format_specialize ()</a>
</dt>
<dt id="ientry-idm64062">go_format_specializel, <a class="indexterm" href="GOFormat.html#go-format-specializel">go_format_specializel ()</a>
</dt>
<dt id="ientry-idm64126">go_format_str_delocalize, <a class="indexterm" href="GOFormat.html#go-format-str-delocalize">go_format_str_delocalize ()</a>
</dt>
<dt id="ientry-idm64154">go_format_str_localize, <a class="indexterm" href="GOFormat.html#go-format-str-localize">go_format_str_localize ()</a>
</dt>
<dt id="ientry-idm64182">go_format_toggle_1000sep, <a class="indexterm" href="GOFormat.html#go-format-toggle-1000sep">go_format_toggle_1000sep ()</a>
</dt>
<dt id="ientry-idm64192">go_format_unref, <a class="indexterm" href="GOFormat.html#go-format-unref">go_format_unref ()</a>
</dt>
<dt id="ientry-idm64223">go_format_value, <a class="indexterm" href="GOFormat.html#go-format-value">go_format_value ()</a>
</dt>
<dt id="ientry-idm64544">go_format_valuel, <a class="indexterm" href="GOFormat.html#go-format-valuel">go_format_valuel ()</a>
</dt>
<dt id="ientry-idm64264">go_format_value_gstring, <a class="indexterm" href="GOFormat.html#go-format-value-gstring">go_format_value_gstring ()</a>
</dt>
<dt id="ientry-idm64404">go_format_value_gstringl, <a class="indexterm" href="GOFormat.html#go-format-value-gstringl">go_format_value_gstringl ()</a>
</dt>
<dt id="ientry-idm45335">go_fourier_fft, <a class="indexterm" href="goffice-0.10-Fast-Fourier-transform.html#go-fourier-fft">go_fourier_fft ()</a>
</dt>
<dt id="ientry-idm45357">go_fourier_fftl, <a class="indexterm" href="goffice-0.10-Fast-Fourier-transform.html#go-fourier-fftl">go_fourier_fftl ()</a>
</dt>
<dt id="ientry-idm52140">GO_F_OK, <a class="indexterm" href="goffice-0.10-File-utilities.html#GO-F-OK:CAPS">GO_F_OK</a>
</dt>
<dt id="ientry-idm37986">go_geometry_AABR_add, <a class="indexterm" href="goffice-0.10-Geometry-helpers.html#go-geometry-AABR-add">go_geometry_AABR_add ()</a>
</dt>
<dt id="ientry-idm38524">GO_GEOMETRY_ANGLE_TOLERANCE, <a class="indexterm" href="goffice-0.10-Geometry-helpers.html#GO-GEOMETRY-ANGLE-TOLERANCE:CAPS">GO_GEOMETRY_ANGLE_TOLERANCE</a>
</dt>
<dt id="ientry-idm38064">go_geometry_calc_label_anchor, <a class="indexterm" href="goffice-0.10-Geometry-helpers.html#go-geometry-calc-label-anchor">go_geometry_calc_label_anchor ()</a>
</dt>
<dt id="ientry-idm38100">go_geometry_calc_label_position, <a class="indexterm" href="goffice-0.10-Geometry-helpers.html#go-geometry-calc-label-position">go_geometry_calc_label_position ()</a>
</dt>
<dt id="ientry-idm38166">go_geometry_cartesian_to_polar, <a class="indexterm" href="goffice-0.10-Geometry-helpers.html#go-geometry-cartesian-to-polar">go_geometry_cartesian_to_polar ()</a>
</dt>
<dt id="ientry-idm38218">go_geometry_get_rotation_type, <a class="indexterm" href="goffice-0.10-Geometry-helpers.html#go-geometry-get-rotation-type">go_geometry_get_rotation_type ()</a>
</dt>
<dt id="ientry-idm38024">go_geometry_OBR_to_AABR, <a class="indexterm" href="goffice-0.10-Geometry-helpers.html#go-geometry-OBR-to-AABR">go_geometry_OBR_to_AABR ()</a>
</dt>
<dt id="ientry-idm38248">go_geometry_point_to_segment, <a class="indexterm" href="goffice-0.10-Geometry-helpers.html#go-geometry-point-to-segment">go_geometry_point_to_segment ()</a>
</dt>
<dt id="ientry-idm38320">go_geometry_test_OBR_overlap, <a class="indexterm" href="goffice-0.10-Geometry-helpers.html#go-geometry-test-OBR-overlap">go_geometry_test_OBR_overlap ()</a>
</dt>
<dt id="ientry-idm52342">go_get_file_openers, <a class="indexterm" href="goffice-0.10-Files.html#go-get-file-openers">go_get_file_openers ()</a>
</dt>
<dt id="ientry-idm51960">go_get_file_permissions, <a class="indexterm" href="goffice-0.10-File-utilities.html#go-get-file-permissions">go_get_file_permissions ()</a>
</dt>
<dt id="ientry-idm52360">go_get_file_savers, <a class="indexterm" href="goffice-0.10-Files.html#go-get-file-savers">go_get_file_savers ()</a>
</dt>
<dt id="ientry-idm51970">go_get_mime_type, <a class="indexterm" href="goffice-0.10-File-utilities.html#go-get-mime-type">go_get_mime_type ()</a>
</dt>
<dt id="ientry-idm51999">go_get_mime_type_for_data, <a class="indexterm" href="goffice-0.10-File-utilities.html#go-get-mime-type-for-data">go_get_mime_type_for_data ()</a>
</dt>
<dt id="ientry-idm65799">go_get_real_name, <a class="indexterm" href="goffice-0.10-GLib-extras.html#go-get-real-name">go_get_real_name ()</a>
</dt>
<dt id="ientry-idm32294">go_gradient_dir_as_str, <a class="indexterm" href="goffice-0.10-Gradient.html#go-gradient-dir-as-str">go_gradient_dir_as_str ()</a>
</dt>
<dt id="ientry-idm32304">go_gradient_dir_from_str, <a class="indexterm" href="goffice-0.10-Gradient.html#go-gradient-dir-from-str">go_gradient_dir_from_str ()</a>
</dt>
<dt id="ientry-idm25703">go_graph_widget_get_chart, <a class="indexterm" href="GOGraphWidget.html#go-graph-widget-get-chart">go_graph_widget_get_chart ()</a>
</dt>
<dt id="ientry-idm25739">go_graph_widget_get_graph, <a class="indexterm" href="GOGraphWidget.html#go-graph-widget-get-graph">go_graph_widget_get_graph ()</a>
</dt>
<dt id="ientry-idm25773">go_graph_widget_get_renderer, <a class="indexterm" href="GOGraphWidget.html#go-graph-widget-get-renderer">go_graph_widget_get_renderer ()</a>
</dt>
<dt id="ientry-idm25807">go_graph_widget_new, <a class="indexterm" href="GOGraphWidget.html#go-graph-widget-new">go_graph_widget_new ()</a>
</dt>
<dt id="ientry-idm25845">go_graph_widget_set_size_mode, <a class="indexterm" href="GOGraphWidget.html#go-graph-widget-set-size-mode">go_graph_widget_set_size_mode ()</a>
</dt>
<dt id="ientry-idm65814">go_guess_encoding, <a class="indexterm" href="goffice-0.10-GLib-extras.html#go-guess-encoding">go_guess_encoding ()</a>
</dt>
<dt id="ientry-idm65836">go_hash_keys, <a class="indexterm" href="goffice-0.10-GLib-extras.html#go-hash-keys">go_hash_keys ()</a>
</dt>
<dt id="ientry-idm39102">go_image_differ, <a class="indexterm" href="GOImage.html#go-image-differ">go_image_differ ()</a>
</dt>
<dt id="ientry-idm39115">go_image_draw, <a class="indexterm" href="GOImage.html#go-image-draw">go_image_draw ()</a>
</dt>
<dt id="ientry-idm39128">go_image_format_info_get_type, <a class="indexterm" href="GOImage.html#go-image-format-info-get-type">go_image_format_info_get_type ()</a>
</dt>
<dt id="ientry-idm39137">go_image_format_to_mime, <a class="indexterm" href="GOImage.html#go-image-format-to-mime">go_image_format_to_mime ()</a>
</dt>
<dt id="ientry-idm39164">go_image_get_data, <a class="indexterm" href="GOImage.html#go-image-get-data">go_image_get_data ()</a>
</dt>
<dt id="ientry-idm39177">go_image_get_default_dpi, <a class="indexterm" href="GOImage.html#go-image-get-default-dpi">go_image_get_default_dpi ()</a>
</dt>
<dt id="ientry-idm39252">go_image_get_formats_with_pixbuf_saver, <a class="indexterm" href="GOImage.html#go-image-get-formats-with-pixbuf-saver">go_image_get_formats_with_pixbuf_saver ()</a>
</dt>
<dt id="ientry-idm39190">go_image_get_format_from_name, <a class="indexterm" href="GOImage.html#go-image-get-format-from-name">go_image_get_format_from_name ()</a>
</dt>
<dt id="ientry-idm39219">go_image_get_format_info, <a class="indexterm" href="GOImage.html#go-image-get-format-info">go_image_get_format_info ()</a>
</dt>
<dt id="ientry-idm39270">go_image_get_height, <a class="indexterm" href="GOImage.html#go-image-get-height">go_image_get_height ()</a>
</dt>
<dt id="ientry-idm39280">go_image_get_info, <a class="indexterm" href="GOImage.html#go-image-get-info">go_image_get_info ()</a>
</dt>
<dt id="ientry-idm39290">go_image_get_name, <a class="indexterm" href="GOImage.html#go-image-get-name">go_image_get_name ()</a>
</dt>
<dt id="ientry-idm39300">go_image_get_pixbuf, <a class="indexterm" href="GOImage.html#go-image-get-pixbuf">go_image_get_pixbuf ()</a>
</dt>
<dt id="ientry-idm39334">go_image_get_scaled_pixbuf, <a class="indexterm" href="GOImage.html#go-image-get-scaled-pixbuf">go_image_get_scaled_pixbuf ()</a>
</dt>
<dt id="ientry-idm39388">go_image_get_thumbnail, <a class="indexterm" href="GOImage.html#go-image-get-thumbnail">go_image_get_thumbnail ()</a>
</dt>
<dt id="ientry-idm39423">go_image_get_width, <a class="indexterm" href="GOImage.html#go-image-get-width">go_image_get_width ()</a>
</dt>
<dt id="ientry-idm39433">go_image_load_attrs, <a class="indexterm" href="GOImage.html#go-image-load-attrs">go_image_load_attrs ()</a>
</dt>
<dt id="ientry-idm39449">go_image_load_data, <a class="indexterm" href="GOImage.html#go-image-load-data">go_image_load_data ()</a>
</dt>
<dt id="ientry-idm39462">go_image_new_for_format, <a class="indexterm" href="GOImage.html#go-image-new-for-format">go_image_new_for_format ()</a>
</dt>
<dt id="ientry-idm39472">go_image_new_from_data, <a class="indexterm" href="GOImage.html#go-image-new-from-data">go_image_new_from_data ()</a>
</dt>
<dt id="ientry-idm39494">go_image_new_from_file, <a class="indexterm" href="GOImage.html#go-image-new-from-file">go_image_new_from_file ()</a>
</dt>
<dt id="ientry-idm39507">go_image_save, <a class="indexterm" href="GOImage.html#go-image-save">go_image_save ()</a>
</dt>
<dt id="ientry-idm39520">go_image_set_default_dpi, <a class="indexterm" href="GOImage.html#go-image-set-default-dpi">go_image_set_default_dpi ()</a>
</dt>
<dt id="ientry-idm39533">go_image_set_name, <a class="indexterm" href="GOImage.html#go-image-set-name">go_image_set_name ()</a>
</dt>
<dt id="ientry-idm39546">go_image_type_for_format, <a class="indexterm" href="GOImage.html#go-image-type-for-format">go_image_type_for_format ()</a>
</dt>
<dt id="ientry-idm56330">GO_INIT_RET_ERROR_INFO, <a class="indexterm" href="GOErrorInfo.html#GO-INIT-RET-ERROR-INFO:CAPS">GO_INIT_RET_ERROR_INFO()</a>
</dt>
<dt id="ientry-idm48249">GO_IN_TO_CM, <a class="indexterm" href="goffice-0.10-Units.html#GO-IN-TO-CM:CAPS">GO_IN_TO_CM()</a>
</dt>
<dt id="ientry-idm48254">GO_IN_TO_EMU, <a class="indexterm" href="goffice-0.10-Units.html#GO-IN-TO-EMU:CAPS">GO_IN_TO_EMU()</a>
</dt>
<dt id="ientry-idm48259">GO_IN_TO_PT, <a class="indexterm" href="goffice-0.10-Units.html#GO-IN-TO-PT:CAPS">GO_IN_TO_PT()</a>
</dt>
<dt id="ientry-idm48264">GO_IN_TO_UN, <a class="indexterm" href="goffice-0.10-Units.html#GO-IN-TO-UN:CAPS">GO_IN_TO_UN()</a>
</dt>
<dt id="ientry-idm56914">go_io_context_new, <a class="indexterm" href="GOIOContext.html#go-io-context-new">go_io_context_new ()</a>
</dt>
<dt id="ientry-idm56924">go_io_context_processing_file, <a class="indexterm" href="GOIOContext.html#go-io-context-processing-file">go_io_context_processing_file ()</a>
</dt>
<dt id="ientry-idm56959">go_io_context_set_num_files, <a class="indexterm" href="GOIOContext.html#go-io-context-set-num-files">go_io_context_set_num_files ()</a>
</dt>
<dt id="ientry-idm56972">go_io_count_progress_set, <a class="indexterm" href="GOIOContext.html#go-io-count-progress-set">go_io_count_progress_set ()</a>
</dt>
<dt id="ientry-idm56988">go_io_count_progress_update, <a class="indexterm" href="GOIOContext.html#go-io-count-progress-update">go_io_count_progress_update ()</a>
</dt>
<dt id="ientry-idm57001">go_io_error_clear, <a class="indexterm" href="GOIOContext.html#go-io-error-clear">go_io_error_clear ()</a>
</dt>
<dt id="ientry-idm57011">go_io_error_display, <a class="indexterm" href="GOIOContext.html#go-io-error-display">go_io_error_display ()</a>
</dt>
<dt id="ientry-idm57021">go_io_error_info_set, <a class="indexterm" href="GOIOContext.html#go-io-error-info-set">go_io_error_info_set ()</a>
</dt>
<dt id="ientry-idm57034">go_io_error_occurred, <a class="indexterm" href="GOIOContext.html#go-io-error-occurred">go_io_error_occurred ()</a>
</dt>
<dt id="ientry-idm57044">go_io_error_push, <a class="indexterm" href="GOIOContext.html#go-io-error-push">go_io_error_push ()</a>
</dt>
<dt id="ientry-idm57057">go_io_error_string, <a class="indexterm" href="GOIOContext.html#go-io-error-string">go_io_error_string ()</a>
</dt>
<dt id="ientry-idm57070">go_io_error_unknown, <a class="indexterm" href="GOIOContext.html#go-io-error-unknown">go_io_error_unknown ()</a>
</dt>
<dt id="ientry-idm57080">go_io_progress_message, <a class="indexterm" href="GOIOContext.html#go-io-progress-message">go_io_progress_message ()</a>
</dt>
<dt id="ientry-idm57093">go_io_progress_range_pop, <a class="indexterm" href="GOIOContext.html#go-io-progress-range-pop">go_io_progress_range_pop ()</a>
</dt>
<dt id="ientry-idm57103">go_io_progress_range_push, <a class="indexterm" href="GOIOContext.html#go-io-progress-range-push">go_io_progress_range_push ()</a>
</dt>
<dt id="ientry-idm57119">go_io_progress_unset, <a class="indexterm" href="GOIOContext.html#go-io-progress-unset">go_io_progress_unset ()</a>
</dt>
<dt id="ientry-idm57129">go_io_progress_update, <a class="indexterm" href="GOIOContext.html#go-io-progress-update">go_io_progress_update ()</a>
</dt>
<dt id="ientry-idm57142">go_io_value_progress_set, <a class="indexterm" href="GOIOContext.html#go-io-value-progress-set">go_io_value_progress_set ()</a>
</dt>
<dt id="ientry-idm57158">go_io_value_progress_update, <a class="indexterm" href="GOIOContext.html#go-io-value-progress-update">go_io_value_progress_update ()</a>
</dt>
<dt id="ientry-idm57171">go_io_warning, <a class="indexterm" href="GOIOContext.html#go-io-warning">go_io_warning ()</a>
</dt>
<dt id="ientry-idm57185">go_io_warning_occurred, <a class="indexterm" href="GOIOContext.html#go-io-warning-occurred">go_io_warning_occurred ()</a>
</dt>
<dt id="ientry-idm57195">go_io_warning_unknown_font, <a class="indexterm" href="GOIOContext.html#go-io-warning-unknown-font">go_io_warning_unknown_font ()</a>
</dt>
<dt id="ientry-idm57208">go_io_warning_unknown_function, <a class="indexterm" href="GOIOContext.html#go-io-warning-unknown-function">go_io_warning_unknown_function ()</a>
</dt>
<dt id="ientry-idm57221">go_io_warning_unsupported_feature, <a class="indexterm" href="GOIOContext.html#go-io-warning-unsupported-feature">go_io_warning_unsupported_feature ()</a>
</dt>
<dt id="ientry-idm57234">go_io_warning_varargs, <a class="indexterm" href="GOIOContext.html#go-io-warning-varargs">go_io_warning_varargs ()</a>
</dt>
<dt id="ientry-idm46776">go_linear_regression, <a class="indexterm" href="goffice-0.10-GORegression.html#go-linear-regression">go_linear_regression ()</a>
</dt>
<dt id="ientry-idm46864">go_linear_regressionl, <a class="indexterm" href="goffice-0.10-GORegression.html#go-linear-regressionl">go_linear_regressionl ()</a>
</dt>
<dt id="ientry-idm46892">go_linear_regression_leverage, <a class="indexterm" href="goffice-0.10-GORegression.html#go-linear-regression-leverage">go_linear_regression_leverage ()</a>
</dt>
<dt id="ientry-idm46911">go_linear_regression_leveragel, <a class="indexterm" href="goffice-0.10-GORegression.html#go-linear-regression-leveragel">go_linear_regression_leveragel ()</a>
</dt>
<dt id="ientry-idm46968">go_linear_solve, <a class="indexterm" href="goffice-0.10-GORegression.html#go-linear-solve">go_linear_solve ()</a>
</dt>
<dt id="ientry-idm46987">go_linear_solvel, <a class="indexterm" href="goffice-0.10-GORegression.html#go-linear-solvel">go_linear_solvel ()</a>
</dt>
<dt id="ientry-idm46930">go_linear_solve_multiple, <a class="indexterm" href="goffice-0.10-GORegression.html#go-linear-solve-multiple">go_linear_solve_multiple ()</a>
</dt>
<dt id="ientry-idm46949">go_linear_solve_multiplel, <a class="indexterm" href="goffice-0.10-GORegression.html#go-linear-solve-multiplel">go_linear_solve_multiplel ()</a>
</dt>
<dt id="ientry-idm32543">go_line_dash_as_label, <a class="indexterm" href="goffice-0.10-Line.html#go-line-dash-as-label">go_line_dash_as_label ()</a>
</dt>
<dt id="ientry-idm32574">go_line_dash_as_str, <a class="indexterm" href="goffice-0.10-Line.html#go-line-dash-as-str">go_line_dash_as_str ()</a>
</dt>
<dt id="ientry-idm32603">go_line_dash_from_str, <a class="indexterm" href="goffice-0.10-Line.html#go-line-dash-from-str">go_line_dash_from_str ()</a>
</dt>
<dt id="ientry-idm32634">go_line_dash_get_length, <a class="indexterm" href="goffice-0.10-Line.html#go-line-dash-get-length">go_line_dash_get_length ()</a>
</dt>
<dt id="ientry-idm32663">go_line_dash_get_sequence, <a class="indexterm" href="goffice-0.10-Line.html#go-line-dash-get-sequence">go_line_dash_get_sequence ()</a>
</dt>
<dt id="ientry-idm32707">go_line_dash_sequence_free, <a class="indexterm" href="goffice-0.10-Line.html#go-line-dash-sequence-free">go_line_dash_sequence_free ()</a>
</dt>
<dt id="ientry-idm32734">go_line_interpolation_as_label, <a class="indexterm" href="goffice-0.10-Line.html#go-line-interpolation-as-label">go_line_interpolation_as_label ()</a>
</dt>
<dt id="ientry-idm32764">go_line_interpolation_as_str, <a class="indexterm" href="goffice-0.10-Line.html#go-line-interpolation-as-str">go_line_interpolation_as_str ()</a>
</dt>
<dt id="ientry-idm32792">go_line_interpolation_auto_skip, <a class="indexterm" href="goffice-0.10-Line.html#go-line-interpolation-auto-skip">go_line_interpolation_auto_skip ()</a>
</dt>
<dt id="ientry-idm32819">go_line_interpolation_from_str, <a class="indexterm" href="goffice-0.10-Line.html#go-line-interpolation-from-str">go_line_interpolation_from_str ()</a>
</dt>
<dt id="ientry-idm32851">go_line_interpolation_supports_radial, <a class="indexterm" href="goffice-0.10-Line.html#go-line-interpolation-supports-radial">go_line_interpolation_supports_radial ()</a>
</dt>
<dt id="ientry-idm65657">GO_LIST_APPEND, <a class="indexterm" href="goffice-0.10-GLib-extras.html#GO-LIST-APPEND:CAPS">GO_LIST_APPEND()</a>
</dt>
<dt id="ientry-idm65662">GO_LIST_CONCAT, <a class="indexterm" href="goffice-0.10-GLib-extras.html#GO-LIST-CONCAT:CAPS">GO_LIST_CONCAT()</a>
</dt>
<dt id="ientry-idm65667">GO_LIST_FOREACH, <a class="indexterm" href="goffice-0.10-GLib-extras.html#GO-LIST-FOREACH:CAPS">GO_LIST_FOREACH()</a>
</dt>
<dt id="ientry-idm65872">go_list_index_custom, <a class="indexterm" href="goffice-0.10-GLib-extras.html#go-list-index-custom">go_list_index_custom ()</a>
</dt>
<dt id="ientry-idm65672">GO_LIST_PREPEND, <a class="indexterm" href="goffice-0.10-GLib-extras.html#GO-LIST-PREPEND:CAPS">GO_LIST_PREPEND()</a>
</dt>
<dt id="ientry-idm65677">GO_LIST_REMOVE, <a class="indexterm" href="goffice-0.10-GLib-extras.html#GO-LIST-REMOVE:CAPS">GO_LIST_REMOVE()</a>
</dt>
<dt id="ientry-idm65682">GO_LIST_REVERSE, <a class="indexterm" href="goffice-0.10-GLib-extras.html#GO-LIST-REVERSE:CAPS">GO_LIST_REVERSE()</a>
</dt>
<dt id="ientry-idm65687">GO_LIST_SORT, <a class="indexterm" href="goffice-0.10-GLib-extras.html#GO-LIST-SORT:CAPS">GO_LIST_SORT()</a>
</dt>
<dt id="ientry-idm30217">go_locale_sel_get_locale, <a class="indexterm" href="GOLocaleSel.html#go-locale-sel-get-locale">go_locale_sel_get_locale ()</a>
</dt>
<dt id="ientry-idm30227">go_locale_sel_get_locale_name, <a class="indexterm" href="GOLocaleSel.html#go-locale-sel-get-locale-name">go_locale_sel_get_locale_name ()</a>
</dt>
<dt id="ientry-idm30240">go_locale_sel_new, <a class="indexterm" href="GOLocaleSel.html#go-locale-sel-new">go_locale_sel_new ()</a>
</dt>
<dt id="ientry-idm30249">go_locale_sel_set_locale, <a class="indexterm" href="GOLocaleSel.html#go-locale-sel-set-locale">go_locale_sel_set_locale ()</a>
</dt>
<dt id="ientry-idm30262">go_locale_sel_set_sensitive, <a class="indexterm" href="GOLocaleSel.html#go-locale-sel-set-sensitive">go_locale_sel_set_sensitive ()</a>
</dt>
<dt id="ientry-idm47006">go_logarithmic_fit, <a class="indexterm" href="goffice-0.10-GORegression.html#go-logarithmic-fit">go_logarithmic_fit ()</a>
</dt>
<dt id="ientry-idm47066">go_logarithmic_fitl, <a class="indexterm" href="goffice-0.10-GORegression.html#go-logarithmic-fitl">go_logarithmic_fitl ()</a>
</dt>
<dt id="ientry-idm47085">go_logarithmic_regression, <a class="indexterm" href="goffice-0.10-GORegression.html#go-logarithmic-regression">go_logarithmic_regression ()</a>
</dt>
<dt id="ientry-idm47172">go_logarithmic_regressionl, <a class="indexterm" href="goffice-0.10-GORegression.html#go-logarithmic-regressionl">go_logarithmic_regressionl ()</a>
</dt>
<dt id="ientry-idm47720">GO_LOGFIT_C_ACCURACY, <a class="indexterm" href="goffice-0.10-GORegression.html#GO-LOGFIT-C-ACCURACY:CAPS">GO_LOGFIT_C_ACCURACY</a>
</dt>
<dt id="ientry-idm47725">GO_LOGFIT_C_RANGE_FACTOR, <a class="indexterm" href="goffice-0.10-GORegression.html#GO-LOGFIT-C-RANGE-FACTOR:CAPS">GO_LOGFIT_C_RANGE_FACTOR</a>
</dt>
<dt id="ientry-idm47730">GO_LOGFIT_C_STEP_FACTOR, <a class="indexterm" href="goffice-0.10-GORegression.html#GO-LOGFIT-C-STEP-FACTOR:CAPS">GO_LOGFIT_C_STEP_FACTOR</a>
</dt>
<dt id="ientry-idm33080">go_marker_assign, <a class="indexterm" href="GOMarker.html#go-marker-assign">go_marker_assign ()</a>
</dt>
<dt id="ientry-idm33093">go_marker_create_cairo_surface, <a class="indexterm" href="GOMarker.html#go-marker-create-cairo-surface">go_marker_create_cairo_surface ()</a>
</dt>
<dt id="ientry-idm33164">go_marker_dup, <a class="indexterm" href="GOMarker.html#go-marker-dup">go_marker_dup ()</a>
</dt>
<dt id="ientry-idm33198">go_marker_get_fill_color, <a class="indexterm" href="GOMarker.html#go-marker-get-fill-color">go_marker_get_fill_color ()</a>
</dt>
<dt id="ientry-idm33208">go_marker_get_outline_color, <a class="indexterm" href="GOMarker.html#go-marker-get-outline-color">go_marker_get_outline_color ()</a>
</dt>
<dt id="ientry-idm33218">go_marker_get_outline_width, <a class="indexterm" href="GOMarker.html#go-marker-get-outline-width">go_marker_get_outline_width ()</a>
</dt>
<dt id="ientry-idm33228">go_marker_get_shape, <a class="indexterm" href="GOMarker.html#go-marker-get-shape">go_marker_get_shape ()</a>
</dt>
<dt id="ientry-idm33238">go_marker_get_size, <a class="indexterm" href="GOMarker.html#go-marker-get-size">go_marker_get_size ()</a>
</dt>
<dt id="ientry-idm33248">go_marker_is_closed_shape, <a class="indexterm" href="GOMarker.html#go-marker-is-closed-shape">go_marker_is_closed_shape ()</a>
</dt>
<dt id="ientry-idm33258">go_marker_new, <a class="indexterm" href="GOMarker.html#go-marker-new">go_marker_new ()</a>
</dt>
<dt id="ientry-idm33267">go_marker_render, <a class="indexterm" href="GOMarker.html#go-marker-render">go_marker_render ()</a>
</dt>
<dt id="ientry-idm33334">go_marker_set_fill_color, <a class="indexterm" href="GOMarker.html#go-marker-set-fill-color">go_marker_set_fill_color ()</a>
</dt>
<dt id="ientry-idm33347">go_marker_set_outline_color, <a class="indexterm" href="GOMarker.html#go-marker-set-outline-color">go_marker_set_outline_color ()</a>
</dt>
<dt id="ientry-idm33360">go_marker_set_shape, <a class="indexterm" href="GOMarker.html#go-marker-set-shape">go_marker_set_shape ()</a>
</dt>
<dt id="ientry-idm33373">go_marker_set_size, <a class="indexterm" href="GOMarker.html#go-marker-set-size">go_marker_set_size ()</a>
</dt>
<dt id="ientry-idm33386">go_marker_shape_as_str, <a class="indexterm" href="GOMarker.html#go-marker-shape-as-str">go_marker_shape_as_str ()</a>
</dt>
<dt id="ientry-idm33396">go_marker_shape_from_str, <a class="indexterm" href="GOMarker.html#go-marker-shape-from-str">go_marker_shape_from_str ()</a>
</dt>
<dt id="ientry-idm47200">go_matrix_determinant, <a class="indexterm" href="goffice-0.10-GORegression.html#go-matrix-determinant">go_matrix_determinant ()</a>
</dt>
<dt id="ientry-idm47213">go_matrix_determinantl, <a class="indexterm" href="goffice-0.10-GORegression.html#go-matrix-determinantl">go_matrix_determinantl ()</a>
</dt>
<dt id="ientry-idm47226">go_matrix_invert, <a class="indexterm" href="goffice-0.10-GORegression.html#go-matrix-invert">go_matrix_invert ()</a>
</dt>
<dt id="ientry-idm47239">go_matrix_invertl, <a class="indexterm" href="goffice-0.10-GORegression.html#go-matrix-invertl">go_matrix_invertl ()</a>
</dt>
<dt id="ientry-idm47252">go_matrix_pseudo_inverse, <a class="indexterm" href="goffice-0.10-GORegression.html#go-matrix-pseudo-inverse">go_matrix_pseudo_inverse ()</a>
</dt>
<dt id="ientry-idm47274">go_matrix_pseudo_inversel, <a class="indexterm" href="goffice-0.10-GORegression.html#go-matrix-pseudo-inversel">go_matrix_pseudo_inversel ()</a>
</dt>
<dt id="ientry-idm65928">go_mem_chunk_alloc, <a class="indexterm" href="goffice-0.10-GLib-extras.html#go-mem-chunk-alloc">go_mem_chunk_alloc ()</a>
</dt>
<dt id="ientry-idm65960">go_mem_chunk_alloc0, <a class="indexterm" href="goffice-0.10-GLib-extras.html#go-mem-chunk-alloc0">go_mem_chunk_alloc0 ()</a>
</dt>
<dt id="ientry-idm65992">go_mem_chunk_destroy, <a class="indexterm" href="goffice-0.10-GLib-extras.html#go-mem-chunk-destroy">go_mem_chunk_destroy ()</a>
</dt>
<dt id="ientry-idm66005">go_mem_chunk_foreach_leak, <a class="indexterm" href="goffice-0.10-GLib-extras.html#go-mem-chunk-foreach-leak">go_mem_chunk_foreach_leak ()</a>
</dt>
<dt id="ientry-idm66053">go_mem_chunk_free, <a class="indexterm" href="goffice-0.10-GLib-extras.html#go-mem-chunk-free">go_mem_chunk_free ()</a>
</dt>
<dt id="ientry-idm66091">go_mem_chunk_new, <a class="indexterm" href="goffice-0.10-GLib-extras.html#go-mem-chunk-new">go_mem_chunk_new ()</a>
</dt>
<dt id="ientry-idm26791">go_menu_pixmaps_add_element, <a class="indexterm" href="GOComboPixmaps.html#go-menu-pixmaps-add-element">go_menu_pixmaps_add_element ()</a>
</dt>
<dt id="ientry-idm26810">go_menu_pixmaps_new, <a class="indexterm" href="GOComboPixmaps.html#go-menu-pixmaps-new">go_menu_pixmaps_new ()</a>
</dt>
<dt id="ientry-idm39556">go_mime_to_image_format, <a class="indexterm" href="GOImage.html#go-mime-to-image-format">go_mime_to_image_format ()</a>
</dt>
<dt id="ientry-idm52037">go_mime_type_get_description, <a class="indexterm" href="goffice-0.10-File-utilities.html#go-mime-type-get-description">go_mime_type_get_description ()</a>
</dt>
<dt id="ientry-idm47296">go_non_linear_regression, <a class="indexterm" href="goffice-0.10-GORegression.html#go-non-linear-regression">go_non_linear_regression ()</a>
</dt>
<dt id="ientry-idm47399">go_non_linear_regressionl, <a class="indexterm" href="goffice-0.10-GORegression.html#go-non-linear-regressionl">go_non_linear_regressionl ()</a>
</dt>
<dt id="ientry-idm66107">go_object_properties_apply, <a class="indexterm" href="goffice-0.10-GLib-extras.html#go-object-properties-apply">go_object_properties_apply ()</a>
</dt>
<dt id="ientry-idm66161">go_object_properties_collect, <a class="indexterm" href="goffice-0.10-GLib-extras.html#go-object-properties-collect">go_object_properties_collect ()</a>
</dt>
<dt id="ientry-idm66199">go_object_properties_free, <a class="indexterm" href="goffice-0.10-GLib-extras.html#go-object-properties-free">go_object_properties_free ()</a>
</dt>
<dt id="ientry-idm66230">go_object_set_property, <a class="indexterm" href="goffice-0.10-GLib-extras.html#go-object-set-property">go_object_set_property ()</a>
</dt>
<dt id="ientry-idm66255">go_object_toggle, <a class="indexterm" href="goffice-0.10-GLib-extras.html#go-object-toggle">go_object_toggle ()</a>
</dt>
<dt id="ientry-idm27040">go_option_menu_build, <a class="indexterm" href="GOOptionMenu.html#go-option-menu-build">go_option_menu_build ()</a>
</dt>
<dt id="ientry-idm26998">go_option_menu_get_history, <a class="indexterm" href="GOOptionMenu.html#go-option-menu-get-history">go_option_menu_get_history ()</a>
</dt>
<dt id="ientry-idm27148">go_option_menu_get_menu, <a class="indexterm" href="GOOptionMenu.html#go-option-menu-get-menu">go_option_menu_get_menu ()</a>
</dt>
<dt id="ientry-idm27031">go_option_menu_new, <a class="indexterm" href="GOOptionMenu.html#go-option-menu-new">go_option_menu_new ()</a>
</dt>
<dt id="ientry-idm27084">go_option_menu_select_item, <a class="indexterm" href="GOOptionMenu.html#go-option-menu-select-item">go_option_menu_select_item ()</a>
</dt>
<dt id="ientry-idm27097">go_option_menu_set_history, <a class="indexterm" href="GOOptionMenu.html#go-option-menu-set-history">go_option_menu_set_history ()</a>
</dt>
<dt id="ientry-idm27135">go_option_menu_set_menu, <a class="indexterm" href="GOOptionMenu.html#go-option-menu-set-menu">go_option_menu_set_menu ()</a>
</dt>
<dt id="ientry-idm27393">go_palette_get_n_swatches, <a class="indexterm" href="GOPalette.html#go-palette-get-n-swatches">go_palette_get_n_swatches ()</a>
</dt>
<dt id="ientry-idm27423">go_palette_get_user_data, <a class="indexterm" href="GOPalette.html#go-palette-get-user-data">go_palette_get_user_data ()</a>
</dt>
<dt id="ientry-idm27455">go_palette_new, <a class="indexterm" href="GOPalette.html#go-palette-new">go_palette_new ()</a>
</dt>
<dt id="ientry-idm27544">go_palette_show_automatic, <a class="indexterm" href="GOPalette.html#go-palette-show-automatic">go_palette_show_automatic ()</a>
</dt>
<dt id="ientry-idm27590">go_palette_show_custom, <a class="indexterm" href="GOPalette.html#go-palette-show-custom">go_palette_show_custom ()</a>
</dt>
<dt id="ientry-idm27627">go_palette_swatch_new, <a class="indexterm" href="GOPalette.html#go-palette-swatch-new">go_palette_swatch_new ()</a>
</dt>
<dt id="ientry-idm67520">GO_PARAM_PERSISTENT, <a class="indexterm" href="GOPersist.html#GO-PARAM-PERSISTENT:CAPS">GO_PARAM_PERSISTENT</a>
</dt>
<dt id="ientry-idm66291">go_parse_key_value, <a class="indexterm" href="goffice-0.10-GLib-extras.html#go-parse-key-value">go_parse_key_value ()</a>
</dt>
<dt id="ientry-idm36808">go_path_append, <a class="indexterm" href="GOPath.html#go-path-append">go_path_append ()</a>
</dt>
<dt id="ientry-idm36852">go_path_arc, <a class="indexterm" href="GOPath.html#go-path-arc">go_path_arc ()</a>
</dt>
<dt id="ientry-idm36880">go_path_arc_to, <a class="indexterm" href="GOPath.html#go-path-arc-to">go_path_arc_to ()</a>
</dt>
<dt id="ientry-idm36908">go_path_clear, <a class="indexterm" href="GOPath.html#go-path-clear">go_path_clear ()</a>
</dt>
<dt id="ientry-idm36918">go_path_close, <a class="indexterm" href="GOPath.html#go-path-close">go_path_close ()</a>
</dt>
<dt id="ientry-idm36928">go_path_copy, <a class="indexterm" href="GOPath.html#go-path-copy">go_path_copy ()</a>
</dt>
<dt id="ientry-idm36960">go_path_copy_restricted, <a class="indexterm" href="GOPath.html#go-path-copy-restricted">go_path_copy_restricted ()</a>
</dt>
<dt id="ientry-idm37014">go_path_curve_to, <a class="indexterm" href="GOPath.html#go-path-curve-to">go_path_curve_to ()</a>
</dt>
<dt id="ientry-idm37042">go_path_free, <a class="indexterm" href="GOPath.html#go-path-free">go_path_free ()</a>
</dt>
<dt id="ientry-idm37070">go_path_get_options, <a class="indexterm" href="GOPath.html#go-path-get-options">go_path_get_options ()</a>
</dt>
<dt id="ientry-idm37080">go_path_interpret, <a class="indexterm" href="GOPath.html#go-path-interpret">go_path_interpret ()</a>
</dt>
<dt id="ientry-idm37173">go_path_interpret_full, <a class="indexterm" href="GOPath.html#go-path-interpret-full">go_path_interpret_full ()</a>
</dt>
<dt id="ientry-idm37284">go_path_line_to, <a class="indexterm" href="GOPath.html#go-path-line-to">go_path_line_to ()</a>
</dt>
<dt id="ientry-idm37300">go_path_move_to, <a class="indexterm" href="GOPath.html#go-path-move-to">go_path_move_to ()</a>
</dt>
<dt id="ientry-idm37316">go_path_new, <a class="indexterm" href="GOPath.html#go-path-new">go_path_new ()</a>
</dt>
<dt id="ientry-idm37325">go_path_new_from_odf_enhanced_path, <a class="indexterm" href="GOPath.html#go-path-new-from-odf-enhanced-path">go_path_new_from_odf_enhanced_path ()</a>
</dt>
<dt id="ientry-idm37368">go_path_new_from_svg, <a class="indexterm" href="GOPath.html#go-path-new-from-svg">go_path_new_from_svg ()</a>
</dt>
<dt id="ientry-idm37400">go_path_pie_wedge, <a class="indexterm" href="GOPath.html#go-path-pie-wedge">go_path_pie_wedge ()</a>
</dt>
<dt id="ientry-idm37428">go_path_rectangle, <a class="indexterm" href="GOPath.html#go-path-rectangle">go_path_rectangle ()</a>
</dt>
<dt id="ientry-idm37450">go_path_ref, <a class="indexterm" href="GOPath.html#go-path-ref">go_path_ref ()</a>
</dt>
<dt id="ientry-idm37481">go_path_ring_wedge, <a class="indexterm" href="GOPath.html#go-path-ring-wedge">go_path_ring_wedge ()</a>
</dt>
<dt id="ientry-idm37643">go_path_scale, <a class="indexterm" href="GOPath.html#go-path-scale">go_path_scale ()</a>
</dt>
<dt id="ientry-idm37515">go_path_set_options, <a class="indexterm" href="GOPath.html#go-path-set-options">go_path_set_options ()</a>
</dt>
<dt id="ientry-idm37560">go_path_to_cairo, <a class="indexterm" href="GOPath.html#go-path-to-cairo">go_path_to_cairo ()</a>
</dt>
<dt id="ientry-idm37609">go_path_to_svg, <a class="indexterm" href="GOPath.html#go-path-to-svg">go_path_to_svg ()</a>
</dt>
<dt id="ientry-idm33610">go_pattern_as_str, <a class="indexterm" href="goffice-0.10-GOPattern.html#go-pattern-as-str">go_pattern_as_str ()</a>
</dt>
<dt id="ientry-idm33620">go_pattern_create_cairo_pattern, <a class="indexterm" href="goffice-0.10-GOPattern.html#go-pattern-create-cairo-pattern">go_pattern_create_cairo_pattern ()</a>
</dt>
<dt id="ientry-idm33662">go_pattern_from_str, <a class="indexterm" href="goffice-0.10-GOPattern.html#go-pattern-from-str">go_pattern_from_str ()</a>
</dt>
<dt id="ientry-idm33672">go_pattern_get_pattern, <a class="indexterm" href="goffice-0.10-GOPattern.html#go-pattern-get-pattern">go_pattern_get_pattern ()</a>
</dt>
<dt id="ientry-idm33685">go_pattern_get_svg_path, <a class="indexterm" href="goffice-0.10-GOPattern.html#go-pattern-get-svg-path">go_pattern_get_svg_path ()</a>
</dt>
<dt id="ientry-idm33745">go_pattern_is_solid, <a class="indexterm" href="goffice-0.10-GOPattern.html#go-pattern-is-solid">go_pattern_is_solid ()</a>
</dt>
<dt id="ientry-idm33789">go_pattern_set_solid, <a class="indexterm" href="goffice-0.10-GOPattern.html#go-pattern-set-solid">go_pattern_set_solid ()</a>
</dt>
<dt id="ientry-idm67444">go_persist_prep_sax, <a class="indexterm" href="GOPersist.html#go-persist-prep-sax">go_persist_prep_sax ()</a>
</dt>
<dt id="ientry-idm67460">go_persist_sax_save, <a class="indexterm" href="GOPersist.html#go-persist-sax-save">go_persist_sax_save ()</a>
</dt>
<dt id="ientry-idm39913">go_pixbuf_get_rowstride, <a class="indexterm" href="GOPixbuf.html#go-pixbuf-get-rowstride">go_pixbuf_get_rowstride ()</a>
</dt>
<dt id="ientry-idm39923">go_pixbuf_new_from_data, <a class="indexterm" href="GOPixbuf.html#go-pixbuf-new-from-data">go_pixbuf_new_from_data ()</a>
</dt>
<dt id="ientry-idm39942">go_pixbuf_new_from_pixbuf, <a class="indexterm" href="GOPixbuf.html#go-pixbuf-new-from-pixbuf">go_pixbuf_new_from_pixbuf ()</a>
</dt>
<dt id="ientry-idm58261">go_plugins_get_active_plugins, <a class="indexterm" href="GOPlugin.html#go-plugins-get-active-plugins">go_plugins_get_active_plugins ()</a>
</dt>
<dt id="ientry-idm58277">go_plugins_get_available_plugins, <a class="indexterm" href="GOPlugin.html#go-plugins-get-available-plugins">go_plugins_get_available_plugins ()</a>
</dt>
<dt id="ientry-idm58293">go_plugins_get_plugin_by_id, <a class="indexterm" href="GOPlugin.html#go-plugins-get-plugin-by-id">go_plugins_get_plugin_by_id ()</a>
</dt>
<dt id="ientry-idm58324">go_plugins_get_plugin_dir, <a class="indexterm" href="GOPlugin.html#go-plugins-get-plugin-dir">go_plugins_get_plugin_dir ()</a>
</dt>
<dt id="ientry-idm58333">go_plugins_init, <a class="indexterm" href="GOPlugin.html#go-plugins-init">go_plugins_init ()</a>
</dt>
<dt id="ientry-idm58416">go_plugins_register_loader, <a class="indexterm" href="GOPlugin.html#go-plugins-register-loader">go_plugins_register_loader ()</a>
</dt>
<dt id="ientry-idm58453">go_plugins_rescan, <a class="indexterm" href="GOPlugin.html#go-plugins-rescan">go_plugins_rescan ()</a>
</dt>
<dt id="ientry-idm58488">go_plugins_shutdown, <a class="indexterm" href="GOPlugin.html#go-plugins-shutdown">go_plugins_shutdown ()</a>
</dt>
<dt id="ientry-idm58505">go_plugins_unregister_loader, <a class="indexterm" href="GOPlugin.html#go-plugins-unregister-loader">go_plugins_unregister_loader ()</a>
</dt>
<dt id="ientry-idm57536">go_plugin_activate, <a class="indexterm" href="GOPlugin.html#go-plugin-activate">go_plugin_activate ()</a>
</dt>
<dt id="ientry-idm57574">go_plugin_can_deactivate, <a class="indexterm" href="GOPlugin.html#go-plugin-can-deactivate">go_plugin_can_deactivate ()</a>
</dt>
<dt id="ientry-idm57605">go_plugin_db_activate_plugin_list, <a class="indexterm" href="GOPlugin.html#go-plugin-db-activate-plugin-list">go_plugin_db_activate_plugin_list ()</a>
</dt>
<dt id="ientry-idm57644">go_plugin_db_deactivate_plugin_list, <a class="indexterm" href="GOPlugin.html#go-plugin-db-deactivate-plugin-list">go_plugin_db_deactivate_plugin_list ()</a>
</dt>
<dt id="ientry-idm57681">go_plugin_db_is_plugin_marked_for_deactivation, <a class="indexterm" href="GOPlugin.html#go-plugin-db-is-plugin-marked-for-deactivation">go_plugin_db_is_plugin_marked_for_deactivation ()</a>
</dt>
<dt id="ientry-idm57707">go_plugin_db_mark_plugin_for_deactivation, <a class="indexterm" href="GOPlugin.html#go-plugin-db-mark-plugin-for-deactivation">go_plugin_db_mark_plugin_for_deactivation ()</a>
</dt>
<dt id="ientry-idm57736">go_plugin_deactivate, <a class="indexterm" href="GOPlugin.html#go-plugin-deactivate">go_plugin_deactivate ()</a>
</dt>
<dt id="ientry-idm57774">go_plugin_get_dependencies_ids, <a class="indexterm" href="GOPlugin.html#go-plugin-get-dependencies-ids">go_plugin_get_dependencies_ids ()</a>
</dt>
<dt id="ientry-idm57809">go_plugin_get_description, <a class="indexterm" href="GOPlugin.html#go-plugin-get-description">go_plugin_get_description ()</a>
</dt>
<dt id="ientry-idm57840">go_plugin_get_dir_name, <a class="indexterm" href="GOPlugin.html#go-plugin-get-dir-name">go_plugin_get_dir_name ()</a>
</dt>
<dt id="ientry-idm57871">go_plugin_get_id, <a class="indexterm" href="GOPlugin.html#go-plugin-get-id">go_plugin_get_id ()</a>
</dt>
<dt id="ientry-idm57902">go_plugin_get_loader, <a class="indexterm" href="GOPlugin.html#go-plugin-get-loader">go_plugin_get_loader ()</a>
</dt>
<dt id="ientry-idm57934">go_plugin_get_name, <a class="indexterm" href="GOPlugin.html#go-plugin-get-name">go_plugin_get_name ()</a>
</dt>
<dt id="ientry-idm57965">go_plugin_get_services, <a class="indexterm" href="GOPlugin.html#go-plugin-get-services">go_plugin_get_services ()</a>
</dt>
<dt id="ientry-idm57998">go_plugin_get_textdomain, <a class="indexterm" href="GOPlugin.html#go-plugin-get-textdomain">go_plugin_get_textdomain ()</a>
</dt>
<dt id="ientry-idm58027">go_plugin_get_type_module, <a class="indexterm" href="GOPlugin.html#go-plugin-get-type-module">go_plugin_get_type_module ()</a>
</dt>
<dt id="ientry-idm58059">go_plugin_is_active, <a class="indexterm" href="GOPlugin.html#go-plugin-is-active">go_plugin_is_active ()</a>
</dt>
<dt id="ientry-idm58089">go_plugin_is_loaded, <a class="indexterm" href="GOPlugin.html#go-plugin-is-loaded">go_plugin_is_loaded ()</a>
</dt>
<dt id="ientry-idm58625">go_plugin_loader_get_plugin, <a class="indexterm" href="GOPluginLoader.html#go-plugin-loader-get-plugin">go_plugin_loader_get_plugin ()</a>
</dt>
<dt id="ientry-idm58657">go_plugin_loader_is_base_loaded, <a class="indexterm" href="GOPluginLoader.html#go-plugin-loader-is-base-loaded">go_plugin_loader_is_base_loaded ()</a>
</dt>
<dt id="ientry-idm58667">go_plugin_loader_load_base, <a class="indexterm" href="GOPluginLoader.html#go-plugin-loader-load-base">go_plugin_loader_load_base ()</a>
</dt>
<dt id="ientry-idm58680">go_plugin_loader_load_service, <a class="indexterm" href="GOPluginLoader.html#go-plugin-loader-load-service">go_plugin_loader_load_service ()</a>
</dt>
<dt id="ientry-idm58905">go_plugin_loader_module_register_version, <a class="indexterm" href="GOPluginLoaderModule.html#go-plugin-loader-module-register-version">go_plugin_loader_module_register_version ()</a>
</dt>
<dt id="ientry-idm58696">go_plugin_loader_set_attributes, <a class="indexterm" href="GOPluginLoader.html#go-plugin-loader-set-attributes">go_plugin_loader_set_attributes ()</a>
</dt>
<dt id="ientry-idm58712">go_plugin_loader_set_plugin, <a class="indexterm" href="GOPluginLoader.html#go-plugin-loader-set-plugin">go_plugin_loader_set_plugin ()</a>
</dt>
<dt id="ientry-idm58725">go_plugin_loader_unload_base, <a class="indexterm" href="GOPluginLoader.html#go-plugin-loader-unload-base">go_plugin_loader_unload_base ()</a>
</dt>
<dt id="ientry-idm58738">go_plugin_loader_unload_service, <a class="indexterm" href="GOPluginLoader.html#go-plugin-loader-unload-service">go_plugin_loader_unload_service ()</a>
</dt>
<dt id="ientry-idm58119">go_plugin_load_service, <a class="indexterm" href="GOPlugin.html#go-plugin-load-service">go_plugin_load_service ()</a>
</dt>
<dt id="ientry-idm59339">go_plugin_services_shutdown, <a class="indexterm" href="GOPluginService.html#go-plugin-services-shutdown">go_plugin_services_shutdown ()</a>
</dt>
<dt id="ientry-idm59135">go_plugin_service_activate, <a class="indexterm" href="GOPluginService.html#go-plugin-service-activate">go_plugin_service_activate ()</a>
</dt>
<dt id="ientry-idm59148">go_plugin_service_deactivate, <a class="indexterm" href="GOPluginService.html#go-plugin-service-deactivate">go_plugin_service_deactivate ()</a>
</dt>
<dt id="ientry-idm59161">go_plugin_service_define, <a class="indexterm" href="GOPluginService.html#go-plugin-service-define">go_plugin_service_define ()</a>
</dt>
<dt id="ientry-idm59199">go_plugin_service_get_cbs, <a class="indexterm" href="GOPluginService.html#go-plugin-service-get-cbs">go_plugin_service_get_cbs ()</a>
</dt>
<dt id="ientry-idm59231">go_plugin_service_get_description, <a class="indexterm" href="GOPluginService.html#go-plugin-service-get-description">go_plugin_service_get_description ()</a>
</dt>
<dt id="ientry-idm59241">go_plugin_service_get_id, <a class="indexterm" href="GOPluginService.html#go-plugin-service-get-id">go_plugin_service_get_id ()</a>
</dt>
<dt id="ientry-idm59251">go_plugin_service_get_plugin, <a class="indexterm" href="GOPluginService.html#go-plugin-service-get-plugin">go_plugin_service_get_plugin ()</a>
</dt>
<dt id="ientry-idm59284">go_plugin_service_load, <a class="indexterm" href="GOPluginService.html#go-plugin-service-load">go_plugin_service_load ()</a>
</dt>
<dt id="ientry-idm59297">go_plugin_service_new, <a class="indexterm" href="GOPluginService.html#go-plugin-service-new">go_plugin_service_new ()</a>
</dt>
<dt id="ientry-idm59313">go_plugin_service_plugin_loader_generate_type, <a class="indexterm" href="GOPluginService.html#go-plugin-service-plugin-loader-generate-type">go_plugin_service_plugin_loader_generate_type ()</a>
</dt>
<dt id="ientry-idm59326">go_plugin_service_unload, <a class="indexterm" href="GOPluginService.html#go-plugin-service-unload">go_plugin_service_unload ()</a>
</dt>
<dt id="ientry-idm58164">go_plugin_unload_service, <a class="indexterm" href="GOPlugin.html#go-plugin-unload-service">go_plugin_unload_service ()</a>
</dt>
<dt id="ientry-idm58209">go_plugin_use_ref, <a class="indexterm" href="GOPlugin.html#go-plugin-use-ref">go_plugin_use_ref ()</a>
</dt>
<dt id="ientry-idm58235">go_plugin_use_unref, <a class="indexterm" href="GOPlugin.html#go-plugin-use-unref">go_plugin_use_unref ()</a>
</dt>
<dt id="ientry-idm42898">go_pow10, <a class="indexterm" href="goffice-0.10-Mathematics.html#go-pow10">go_pow10 ()</a>
</dt>
<dt id="ientry-idm42908">go_pow10l, <a class="indexterm" href="goffice-0.10-Mathematics.html#go-pow10l">go_pow10l ()</a>
</dt>
<dt id="ientry-idm42918">go_pow2, <a class="indexterm" href="goffice-0.10-Mathematics.html#go-pow2">go_pow2 ()</a>
</dt>
<dt id="ientry-idm42928">go_pow2l, <a class="indexterm" href="goffice-0.10-Mathematics.html#go-pow2l">go_pow2l ()</a>
</dt>
<dt id="ientry-idm47502">go_power_regression, <a class="indexterm" href="goffice-0.10-GORegression.html#go-power-regression">go_power_regression ()</a>
</dt>
<dt id="ientry-idm47588">go_power_regressionl, <a class="indexterm" href="goffice-0.10-GORegression.html#go-power-regressionl">go_power_regressionl ()</a>
</dt>
<dt id="ientry-idm66344">go_ptr_array_insert, <a class="indexterm" href="goffice-0.10-GLib-extras.html#go-ptr-array-insert">go_ptr_array_insert ()</a>
</dt>
<dt id="ientry-idm48406">GO_PT_PER_IN, <a class="indexterm" href="goffice-0.10-Units.html#GO-PT-PER-IN:CAPS">GO_PT_PER_IN</a>
</dt>
<dt id="ientry-idm48269">GO_PT_TO_CM, <a class="indexterm" href="goffice-0.10-Units.html#GO-PT-TO-CM:CAPS">GO_PT_TO_CM()</a>
</dt>
<dt id="ientry-idm48274">GO_PT_TO_EMU, <a class="indexterm" href="goffice-0.10-Units.html#GO-PT-TO-EMU:CAPS">GO_PT_TO_EMU()</a>
</dt>
<dt id="ientry-idm48279">GO_PT_TO_IN, <a class="indexterm" href="goffice-0.10-Units.html#GO-PT-TO-IN:CAPS">GO_PT_TO_IN()</a>
</dt>
<dt id="ientry-idm48284">GO_PT_TO_UN, <a class="indexterm" href="goffice-0.10-Units.html#GO-PT-TO-UN:CAPS">GO_PT_TO_UN()</a>
</dt>
<dt id="ientry-idm49708">go_quad_acos, <a class="indexterm" href="goffice-0.10-GOQuad.html#go-quad-acos">go_quad_acos ()</a>
</dt>
<dt id="ientry-idm49746">go_quad_acosl, <a class="indexterm" href="goffice-0.10-GOQuad.html#go-quad-acosl">go_quad_acosl ()</a>
</dt>
<dt id="ientry-idm48856">go_quad_add, <a class="indexterm" href="goffice-0.10-GOQuad.html#go-quad-add">go_quad_add ()</a>
</dt>
<dt id="ientry-idm48904">go_quad_addl, <a class="indexterm" href="goffice-0.10-GOQuad.html#go-quad-addl">go_quad_addl ()</a>
</dt>
<dt id="ientry-idm49784">go_quad_asin, <a class="indexterm" href="goffice-0.10-GOQuad.html#go-quad-asin">go_quad_asin ()</a>
</dt>
<dt id="ientry-idm49822">go_quad_asinl, <a class="indexterm" href="goffice-0.10-GOQuad.html#go-quad-asinl">go_quad_asinl ()</a>
</dt>
<dt id="ientry-idm49860">go_quad_atan2, <a class="indexterm" href="goffice-0.10-GOQuad.html#go-quad-atan2">go_quad_atan2 ()</a>
</dt>
<dt id="ientry-idm49908">go_quad_atan2l, <a class="indexterm" href="goffice-0.10-GOQuad.html#go-quad-atan2l">go_quad_atan2l ()</a>
</dt>
<dt id="ientry-idm49956">go_quad_atan2pi, <a class="indexterm" href="goffice-0.10-GOQuad.html#go-quad-atan2pi">go_quad_atan2pi ()</a>
</dt>
<dt id="ientry-idm50004">go_quad_atan2pil, <a class="indexterm" href="goffice-0.10-GOQuad.html#go-quad-atan2pil">go_quad_atan2pil ()</a>
</dt>
<dt id="ientry-idm50052">go_quad_constant8, <a class="indexterm" href="goffice-0.10-GOQuad.html#go-quad-constant8">go_quad_constant8 ()</a>
</dt>
<dt id="ientry-idm50077">go_quad_constant8l, <a class="indexterm" href="goffice-0.10-GOQuad.html#go-quad-constant8l">go_quad_constant8l ()</a>
</dt>
<dt id="ientry-idm50102">go_quad_cos, <a class="indexterm" href="goffice-0.10-GOQuad.html#go-quad-cos">go_quad_cos ()</a>
</dt>
<dt id="ientry-idm50140">go_quad_cosl, <a class="indexterm" href="goffice-0.10-GOQuad.html#go-quad-cosl">go_quad_cosl ()</a>
</dt>
<dt id="ientry-idm50178">go_quad_cospi, <a class="indexterm" href="goffice-0.10-GOQuad.html#go-quad-cospi">go_quad_cospi ()</a>
</dt>
<dt id="ientry-idm50216">go_quad_cospil, <a class="indexterm" href="goffice-0.10-GOQuad.html#go-quad-cospil">go_quad_cospil ()</a>
</dt>
<dt id="ientry-idm48952">go_quad_div, <a class="indexterm" href="goffice-0.10-GOQuad.html#go-quad-div">go_quad_div ()</a>
</dt>
<dt id="ientry-idm49000">go_quad_divl, <a class="indexterm" href="goffice-0.10-GOQuad.html#go-quad-divl">go_quad_divl ()</a>
</dt>
<dt id="ientry-idm49048">go_quad_dot_product, <a class="indexterm" href="goffice-0.10-GOQuad.html#go-quad-dot-product">go_quad_dot_product ()</a>
</dt>
<dt id="ientry-idm49070">go_quad_dot_productl, <a class="indexterm" href="goffice-0.10-GOQuad.html#go-quad-dot-productl">go_quad_dot_productl ()</a>
</dt>
<dt id="ientry-idm49092">go_quad_end, <a class="indexterm" href="goffice-0.10-GOQuad.html#go-quad-end">go_quad_end ()</a>
</dt>
<dt id="ientry-idm49117">go_quad_endl, <a class="indexterm" href="goffice-0.10-GOQuad.html#go-quad-endl">go_quad_endl ()</a>
</dt>
<dt id="ientry-idm50254">go_quad_exp, <a class="indexterm" href="goffice-0.10-GOQuad.html#go-quad-exp">go_quad_exp ()</a>
</dt>
<dt id="ientry-idm50304">go_quad_expl, <a class="indexterm" href="goffice-0.10-GOQuad.html#go-quad-expl">go_quad_expl ()</a>
</dt>
<dt id="ientry-idm50354">go_quad_expm1, <a class="indexterm" href="goffice-0.10-GOQuad.html#go-quad-expm1">go_quad_expm1 ()</a>
</dt>
<dt id="ientry-idm50392">go_quad_expm1l, <a class="indexterm" href="goffice-0.10-GOQuad.html#go-quad-expm1l">go_quad_expm1l ()</a>
</dt>
<dt id="ientry-idm50430">go_quad_floor, <a class="indexterm" href="goffice-0.10-GOQuad.html#go-quad-floor">go_quad_floor ()</a>
</dt>
<dt id="ientry-idm50468">go_quad_floorl, <a class="indexterm" href="goffice-0.10-GOQuad.html#go-quad-floorl">go_quad_floorl ()</a>
</dt>
<dt id="ientry-idm49142">go_quad_functional, <a class="indexterm" href="goffice-0.10-GOQuad.html#go-quad-functional">go_quad_functional ()</a>
</dt>
<dt id="ientry-idm49151">go_quad_functionall, <a class="indexterm" href="goffice-0.10-GOQuad.html#go-quad-functionall">go_quad_functionall ()</a>
</dt>
<dt id="ientry-idm50506">go_quad_hypot, <a class="indexterm" href="goffice-0.10-GOQuad.html#go-quad-hypot">go_quad_hypot ()</a>
</dt>
<dt id="ientry-idm50554">go_quad_hypotl, <a class="indexterm" href="goffice-0.10-GOQuad.html#go-quad-hypotl">go_quad_hypotl ()</a>
</dt>
<dt id="ientry-idm49160">go_quad_init, <a class="indexterm" href="goffice-0.10-GOQuad.html#go-quad-init">go_quad_init ()</a>
</dt>
<dt id="ientry-idm49198">go_quad_initl, <a class="indexterm" href="goffice-0.10-GOQuad.html#go-quad-initl">go_quad_initl ()</a>
</dt>
<dt id="ientry-idm50602">go_quad_log, <a class="indexterm" href="goffice-0.10-GOQuad.html#go-quad-log">go_quad_log ()</a>
</dt>
<dt id="ientry-idm50640">go_quad_logl, <a class="indexterm" href="goffice-0.10-GOQuad.html#go-quad-logl">go_quad_logl ()</a>
</dt>
<dt id="ientry-idm49236">go_quad_mul, <a class="indexterm" href="goffice-0.10-GOQuad.html#go-quad-mul">go_quad_mul ()</a>
</dt>
<dt id="ientry-idm49284">go_quad_mul12, <a class="indexterm" href="goffice-0.10-GOQuad.html#go-quad-mul12">go_quad_mul12 ()</a>
</dt>
<dt id="ientry-idm49332">go_quad_mul12l, <a class="indexterm" href="goffice-0.10-GOQuad.html#go-quad-mul12l">go_quad_mul12l ()</a>
</dt>
<dt id="ientry-idm49380">go_quad_mull, <a class="indexterm" href="goffice-0.10-GOQuad.html#go-quad-mull">go_quad_mull ()</a>
</dt>
<dt id="ientry-idm50678">go_quad_pow, <a class="indexterm" href="goffice-0.10-GOQuad.html#go-quad-pow">go_quad_pow ()</a>
</dt>
<dt id="ientry-idm50738">go_quad_powl, <a class="indexterm" href="goffice-0.10-GOQuad.html#go-quad-powl">go_quad_powl ()</a>
</dt>
<dt id="ientry-idm50798">go_quad_sin, <a class="indexterm" href="goffice-0.10-GOQuad.html#go-quad-sin">go_quad_sin ()</a>
</dt>
<dt id="ientry-idm50836">go_quad_sinl, <a class="indexterm" href="goffice-0.10-GOQuad.html#go-quad-sinl">go_quad_sinl ()</a>
</dt>
<dt id="ientry-idm50874">go_quad_sinpi, <a class="indexterm" href="goffice-0.10-GOQuad.html#go-quad-sinpi">go_quad_sinpi ()</a>
</dt>
<dt id="ientry-idm50912">go_quad_sinpil, <a class="indexterm" href="goffice-0.10-GOQuad.html#go-quad-sinpil">go_quad_sinpil ()</a>
</dt>
<dt id="ientry-idm49428">go_quad_sqrt, <a class="indexterm" href="goffice-0.10-GOQuad.html#go-quad-sqrt">go_quad_sqrt ()</a>
</dt>
<dt id="ientry-idm49466">go_quad_sqrtl, <a class="indexterm" href="goffice-0.10-GOQuad.html#go-quad-sqrtl">go_quad_sqrtl ()</a>
</dt>
<dt id="ientry-idm49504">go_quad_start, <a class="indexterm" href="goffice-0.10-GOQuad.html#go-quad-start">go_quad_start ()</a>
</dt>
<dt id="ientry-idm49530">go_quad_startl, <a class="indexterm" href="goffice-0.10-GOQuad.html#go-quad-startl">go_quad_startl ()</a>
</dt>
<dt id="ientry-idm49556">go_quad_sub, <a class="indexterm" href="goffice-0.10-GOQuad.html#go-quad-sub">go_quad_sub ()</a>
</dt>
<dt id="ientry-idm49604">go_quad_subl, <a class="indexterm" href="goffice-0.10-GOQuad.html#go-quad-subl">go_quad_subl ()</a>
</dt>
<dt id="ientry-idm49652">go_quad_value, <a class="indexterm" href="goffice-0.10-GOQuad.html#go-quad-value">go_quad_value ()</a>
</dt>
<dt id="ientry-idm49680">go_quad_valuel, <a class="indexterm" href="goffice-0.10-GOQuad.html#go-quad-valuel">go_quad_valuel ()</a>
</dt>
<dt id="ientry-idm45652">go_range_average, <a class="indexterm" href="goffice-0.10-GORange.html#go-range-average">go_range_average ()</a>
</dt>
<dt id="ientry-idm45668">go_range_averagel, <a class="indexterm" href="goffice-0.10-GORange.html#go-range-averagel">go_range_averagel ()</a>
</dt>
<dt id="ientry-idm45684">go_range_constant, <a class="indexterm" href="goffice-0.10-GORange.html#go-range-constant">go_range_constant ()</a>
</dt>
<dt id="ientry-idm45697">go_range_constantl, <a class="indexterm" href="goffice-0.10-GORange.html#go-range-constantl">go_range_constantl ()</a>
</dt>
<dt id="ientry-idm45710">go_range_decreasing, <a class="indexterm" href="goffice-0.10-GORange.html#go-range-decreasing">go_range_decreasing ()</a>
</dt>
<dt id="ientry-idm45723">go_range_decreasingl, <a class="indexterm" href="goffice-0.10-GORange.html#go-range-decreasingl">go_range_decreasingl ()</a>
</dt>
<dt id="ientry-idm45736">go_range_devsq, <a class="indexterm" href="goffice-0.10-GORange.html#go-range-devsq">go_range_devsq ()</a>
</dt>
<dt id="ientry-idm45752">go_range_devsql, <a class="indexterm" href="goffice-0.10-GORange.html#go-range-devsql">go_range_devsql ()</a>
</dt>
<dt id="ientry-idm45768">go_range_fractile_inter, <a class="indexterm" href="goffice-0.10-GORange.html#go-range-fractile-inter">go_range_fractile_inter ()</a>
</dt>
<dt id="ientry-idm45863">go_range_fractile_interl, <a class="indexterm" href="goffice-0.10-GORange.html#go-range-fractile-interl">go_range_fractile_interl ()</a>
</dt>
<dt id="ientry-idm45787">go_range_fractile_inter_nonconst, <a class="indexterm" href="goffice-0.10-GORange.html#go-range-fractile-inter-nonconst">go_range_fractile_inter_nonconst ()</a>
</dt>
<dt id="ientry-idm45806">go_range_fractile_inter_nonconstl, <a class="indexterm" href="goffice-0.10-GORange.html#go-range-fractile-inter-nonconstl">go_range_fractile_inter_nonconstl ()</a>
</dt>
<dt id="ientry-idm45825">go_range_fractile_inter_sorted, <a class="indexterm" href="goffice-0.10-GORange.html#go-range-fractile-inter-sorted">go_range_fractile_inter_sorted ()</a>
</dt>
<dt id="ientry-idm45844">go_range_fractile_inter_sortedl, <a class="indexterm" href="goffice-0.10-GORange.html#go-range-fractile-inter-sortedl">go_range_fractile_inter_sortedl ()</a>
</dt>
<dt id="ientry-idm45882">go_range_increasing, <a class="indexterm" href="goffice-0.10-GORange.html#go-range-increasing">go_range_increasing ()</a>
</dt>
<dt id="ientry-idm45895">go_range_increasingl, <a class="indexterm" href="goffice-0.10-GORange.html#go-range-increasingl">go_range_increasingl ()</a>
</dt>
<dt id="ientry-idm45908">go_range_max, <a class="indexterm" href="goffice-0.10-GORange.html#go-range-max">go_range_max ()</a>
</dt>
<dt id="ientry-idm45924">go_range_maxabs, <a class="indexterm" href="goffice-0.10-GORange.html#go-range-maxabs">go_range_maxabs ()</a>
</dt>
<dt id="ientry-idm45940">go_range_maxabsl, <a class="indexterm" href="goffice-0.10-GORange.html#go-range-maxabsl">go_range_maxabsl ()</a>
</dt>
<dt id="ientry-idm45956">go_range_maxl, <a class="indexterm" href="goffice-0.10-GORange.html#go-range-maxl">go_range_maxl ()</a>
</dt>
<dt id="ientry-idm45972">go_range_median_inter, <a class="indexterm" href="goffice-0.10-GORange.html#go-range-median-inter">go_range_median_inter ()</a>
</dt>
<dt id="ientry-idm46052">go_range_median_interl, <a class="indexterm" href="goffice-0.10-GORange.html#go-range-median-interl">go_range_median_interl ()</a>
</dt>
<dt id="ientry-idm45988">go_range_median_inter_nonconst, <a class="indexterm" href="goffice-0.10-GORange.html#go-range-median-inter-nonconst">go_range_median_inter_nonconst ()</a>
</dt>
<dt id="ientry-idm46004">go_range_median_inter_nonconstl, <a class="indexterm" href="goffice-0.10-GORange.html#go-range-median-inter-nonconstl">go_range_median_inter_nonconstl ()</a>
</dt>
<dt id="ientry-idm46020">go_range_median_inter_sorted, <a class="indexterm" href="goffice-0.10-GORange.html#go-range-median-inter-sorted">go_range_median_inter_sorted ()</a>
</dt>
<dt id="ientry-idm46036">go_range_median_inter_sortedl, <a class="indexterm" href="goffice-0.10-GORange.html#go-range-median-inter-sortedl">go_range_median_inter_sortedl ()</a>
</dt>
<dt id="ientry-idm46068">go_range_min, <a class="indexterm" href="goffice-0.10-GORange.html#go-range-min">go_range_min ()</a>
</dt>
<dt id="ientry-idm46084">go_range_minl, <a class="indexterm" href="goffice-0.10-GORange.html#go-range-minl">go_range_minl ()</a>
</dt>
<dt id="ientry-idm46100">go_range_sort, <a class="indexterm" href="goffice-0.10-GORange.html#go-range-sort">go_range_sort ()</a>
</dt>
<dt id="ientry-idm46113">go_range_sortl, <a class="indexterm" href="goffice-0.10-GORange.html#go-range-sortl">go_range_sortl ()</a>
</dt>
<dt id="ientry-idm46126">go_range_sum, <a class="indexterm" href="goffice-0.10-GORange.html#go-range-sum">go_range_sum ()</a>
</dt>
<dt id="ientry-idm46142">go_range_suml, <a class="indexterm" href="goffice-0.10-GORange.html#go-range-suml">go_range_suml ()</a>
</dt>
<dt id="ientry-idm46158">go_range_sumsq, <a class="indexterm" href="goffice-0.10-GORange.html#go-range-sumsq">go_range_sumsq ()</a>
</dt>
<dt id="ientry-idm46174">go_range_sumsql, <a class="indexterm" href="goffice-0.10-GORange.html#go-range-sumsql">go_range_sumsql ()</a>
</dt>
<dt id="ientry-idm46190">go_range_vary_uniformly, <a class="indexterm" href="goffice-0.10-GORange.html#go-range-vary-uniformly">go_range_vary_uniformly ()</a>
</dt>
<dt id="ientry-idm46203">go_range_vary_uniformlyl, <a class="indexterm" href="goffice-0.10-GORange.html#go-range-vary-uniformlyl">go_range_vary_uniformlyl ()</a>
</dt>
<dt id="ientry-idm61858">go_regcomp, <a class="indexterm" href="goffice-0.10-GORegexp.html#go-regcomp">go_regcomp ()</a>
</dt>
<dt id="ientry-idm61874">go_regerror, <a class="indexterm" href="goffice-0.10-GORegexp.html#go-regerror">go_regerror ()</a>
</dt>
<dt id="ientry-idm61893">go_regexec, <a class="indexterm" href="goffice-0.10-GORegexp.html#go-regexec">go_regexec ()</a>
</dt>
<dt id="ientry-idm61915">go_regexp_quote, <a class="indexterm" href="goffice-0.10-GORegexp.html#go-regexp-quote">go_regexp_quote ()</a>
</dt>
<dt id="ientry-idm61928">go_regexp_quote1, <a class="indexterm" href="goffice-0.10-GORegexp.html#go-regexp-quote1">go_regexp_quote1 ()</a>
</dt>
<dt id="ientry-idm61941">go_regfree, <a class="indexterm" href="goffice-0.10-GORegexp.html#go-regfree">go_regfree ()</a>
</dt>
<dt id="ientry-idm47616">go_regression_stat_destroy, <a class="indexterm" href="goffice-0.10-GORegression.html#go-regression-stat-destroy">go_regression_stat_destroy ()</a>
</dt>
<dt id="ientry-idm47626">go_regression_stat_destroyl, <a class="indexterm" href="goffice-0.10-GORegression.html#go-regression-stat-destroyl">go_regression_stat_destroyl ()</a>
</dt>
<dt id="ientry-idm47636">go_regression_stat_new, <a class="indexterm" href="goffice-0.10-GORegression.html#go-regression-stat-new">go_regression_stat_new ()</a>
</dt>
<dt id="ientry-idm47645">go_regression_stat_newl, <a class="indexterm" href="goffice-0.10-GORegression.html#go-regression-stat-newl">go_regression_stat_newl ()</a>
</dt>
<dt id="ientry-idm47735">go_regression_stat_t, <a class="indexterm" href="goffice-0.10-GORegression.html#go-regression-stat-t-struct">go_regression_stat_t</a>
</dt>
<dt id="ientry-idm47889">go_regression_stat_tl, <a class="indexterm" href="goffice-0.10-GORegression.html#go-regression-stat-tl-struct">go_regression_stat_tl</a>
</dt>
<dt id="ientry-idm62011">GO_REG_OK, <a class="indexterm" href="goffice-0.10-GORegexp.html#GO-REG-OK:CAPS">GO_REG_OK</a>
</dt>
<dt id="ientry-idm64557">go_render_general, <a class="indexterm" href="GOFormat.html#go-render-general">go_render_general ()</a>
</dt>
<dt id="ientry-idm64663">go_render_generall, <a class="indexterm" href="GOFormat.html#go-render-generall">go_render_generall ()</a>
</dt>
<dt id="ientry-idm42938">go_rint, <a class="indexterm" href="goffice-0.10-Mathematics.html#go-rint">go_rint ()</a>
</dt>
<dt id="ientry-idm30393">go_rotation_sel_get_rotation, <a class="indexterm" href="GORotationSel.html#go-rotation-sel-get-rotation">go_rotation_sel_get_rotation ()</a>
</dt>
<dt id="ientry-idm30403">go_rotation_sel_new, <a class="indexterm" href="GORotationSel.html#go-rotation-sel-new">go_rotation_sel_new ()</a>
</dt>
<dt id="ientry-idm30412">go_rotation_sel_new_full, <a class="indexterm" href="GORotationSel.html#go-rotation-sel-new-full">go_rotation_sel_new_full ()</a>
</dt>
<dt id="ientry-idm30421">go_rotation_sel_set_rotation, <a class="indexterm" href="GORotationSel.html#go-rotation-sel-set-rotation">go_rotation_sel_set_rotation ()</a>
</dt>
<dt id="ientry-idm52269">GO_R_OK, <a class="indexterm" href="goffice-0.10-File-utilities.html#GO-R-OK:CAPS">GO_R_OK</a>
</dt>
<dt id="ientry-idm62129">go_search_match_string, <a class="indexterm" href="GOSearchReplace.html#go-search-match-string">go_search_match_string ()</a>
</dt>
<dt id="ientry-idm62142">go_search_replace_error_quark, <a class="indexterm" href="GOSearchReplace.html#go-search-replace-error-quark">go_search_replace_error_quark ()</a>
</dt>
<dt id="ientry-idm62151">go_search_replace_string, <a class="indexterm" href="GOSearchReplace.html#go-search-replace-string">go_search_replace_string ()</a>
</dt>
<dt id="ientry-idm62195">go_search_replace_verify, <a class="indexterm" href="GOSearchReplace.html#go-search-replace-verify">go_search_replace_verify ()</a>
</dt>
<dt id="ientry-idm27910">go_selector_activate, <a class="indexterm" href="GOSelector.html#go-selector-activate">go_selector_activate ()</a>
</dt>
<dt id="ientry-idm27937">go_selector_get_active, <a class="indexterm" href="GOSelector.html#go-selector-get-active">go_selector_get_active ()</a>
</dt>
<dt id="ientry-idm27977">go_selector_get_user_data, <a class="indexterm" href="GOSelector.html#go-selector-get-user-data">go_selector_get_user_data ()</a>
</dt>
<dt id="ientry-idm28011">go_selector_new, <a class="indexterm" href="GOSelector.html#go-selector-new">go_selector_new ()</a>
</dt>
<dt id="ientry-idm28084">go_selector_setup_dnd, <a class="indexterm" href="GOSelector.html#go-selector-setup-dnd">go_selector_setup_dnd ()</a>
</dt>
<dt id="ientry-idm28045">go_selector_set_active, <a class="indexterm" href="GOSelector.html#go-selector-set-active">go_selector_set_active ()</a>
</dt>
<dt id="ientry-idm28163">go_selector_update_swatch, <a class="indexterm" href="GOSelector.html#go-selector-update-swatch">go_selector_update_swatch ()</a>
</dt>
<dt id="ientry-idm52066">go_set_file_permissions, <a class="indexterm" href="goffice-0.10-File-utilities.html#go-set-file-permissions">go_set_file_permissions ()</a>
</dt>
<dt id="ientry-idm52089">go_shell_argv_to_glib_encoding, <a class="indexterm" href="goffice-0.10-File-utilities.html#go-shell-argv-to-glib-encoding">go_shell_argv_to_glib_encoding ()</a>
</dt>
<dt id="ientry-idm52129">go_shell_argv_to_glib_encoding_free, <a class="indexterm" href="goffice-0.10-File-utilities.html#go-shell-argv-to-glib-encoding-free">go_shell_argv_to_glib_encoding_free ()</a>
</dt>
<dt id="ientry-idm52079">go_shell_arg_to_uri, <a class="indexterm" href="goffice-0.10-File-utilities.html#go-shell-arg-to-uri">go_shell_arg_to_uri ()</a>
</dt>
<dt id="ientry-idm50950">go_sinpi, <a class="indexterm" href="goffice-0.10-GOQuad.html#go-sinpi">go_sinpi ()</a>
</dt>
<dt id="ientry-idm50978">go_sinpil, <a class="indexterm" href="goffice-0.10-GOQuad.html#go-sinpil">go_sinpil ()</a>
</dt>
<dt id="ientry-idm65692">GO_SLIST_APPEND, <a class="indexterm" href="goffice-0.10-GLib-extras.html#GO-SLIST-APPEND:CAPS">GO_SLIST_APPEND()</a>
</dt>
<dt id="ientry-idm65697">GO_SLIST_CONCAT, <a class="indexterm" href="goffice-0.10-GLib-extras.html#GO-SLIST-CONCAT:CAPS">GO_SLIST_CONCAT()</a>
</dt>
<dt id="ientry-idm66396">go_slist_create, <a class="indexterm" href="goffice-0.10-GLib-extras.html#go-slist-create">go_slist_create ()</a>
</dt>
<dt id="ientry-idm65702">GO_SLIST_FOREACH, <a class="indexterm" href="goffice-0.10-GLib-extras.html#GO-SLIST-FOREACH:CAPS">GO_SLIST_FOREACH()</a>
</dt>
<dt id="ientry-idm66442">go_slist_map, <a class="indexterm" href="goffice-0.10-GLib-extras.html#go-slist-map">go_slist_map ()</a>
</dt>
<dt id="ientry-idm65707">GO_SLIST_PREPEND, <a class="indexterm" href="goffice-0.10-GLib-extras.html#GO-SLIST-PREPEND:CAPS">GO_SLIST_PREPEND()</a>
</dt>
<dt id="ientry-idm65712">GO_SLIST_REMOVE, <a class="indexterm" href="goffice-0.10-GLib-extras.html#GO-SLIST-REMOVE:CAPS">GO_SLIST_REMOVE()</a>
</dt>
<dt id="ientry-idm65717">GO_SLIST_REVERSE, <a class="indexterm" href="goffice-0.10-GLib-extras.html#GO-SLIST-REVERSE:CAPS">GO_SLIST_REVERSE()</a>
</dt>
<dt id="ientry-idm65722">GO_SLIST_SORT, <a class="indexterm" href="goffice-0.10-GLib-extras.html#GO-SLIST-SORT:CAPS">GO_SLIST_SORT()</a>
</dt>
<dt id="ientry-idm40249">go_spectre_new_from_data, <a class="indexterm" href="goffice-0.10-Encapsulated-Postscript-support.html#go-spectre-new-from-data">go_spectre_new_from_data ()</a>
</dt>
<dt id="ientry-idm40265">go_spectre_new_from_file, <a class="indexterm" href="goffice-0.10-Encapsulated-Postscript-support.html#go-spectre-new-from-file">go_spectre_new_from_file ()</a>
</dt>
<dt id="ientry-idm42948">go_stern_brocot, <a class="indexterm" href="goffice-0.10-Mathematics.html#go-stern-brocot">go_stern_brocot ()</a>
</dt>
<dt id="ientry-idm66504">go_strescape, <a class="indexterm" href="goffice-0.10-GLib-extras.html#go-strescape">go_strescape ()</a>
</dt>
<dt id="ientry-idm66517">go_string_append_c_n, <a class="indexterm" href="goffice-0.10-GLib-extras.html#go-string-append-c-n">go_string_append_c_n ()</a>
</dt>
<dt id="ientry-idm66533">go_string_append_gstring, <a class="indexterm" href="goffice-0.10-GLib-extras.html#go-string-append-gstring">go_string_append_gstring ()</a>
</dt>
<dt id="ientry-idm68323">go_string_cmp, <a class="indexterm" href="GOString.html#go-string-cmp">go_string_cmp ()</a>
</dt>
<dt id="ientry-idm68336">go_string_cmp_ignorecase, <a class="indexterm" href="GOString.html#go-string-cmp-ignorecase">go_string_cmp_ignorecase ()</a>
</dt>
<dt id="ientry-idm68349">go_string_equal, <a class="indexterm" href="GOString.html#go-string-equal">go_string_equal ()</a>
</dt>
<dt id="ientry-idm68362">go_string_equal_ignorecase, <a class="indexterm" href="GOString.html#go-string-equal-ignorecase">go_string_equal_ignorecase ()</a>
</dt>
<dt id="ientry-idm68398">go_string_equal_rich, <a class="indexterm" href="GOString.html#go-string-equal-rich">go_string_equal_rich ()</a>
</dt>
<dt id="ientry-idm68310">go_string_ERROR, <a class="indexterm" href="GOString.html#go-string-ERROR">go_string_ERROR ()</a>
</dt>
<dt id="ientry-idm68431">go_string_foreach_base, <a class="indexterm" href="GOString.html#go-string-foreach-base">go_string_foreach_base ()</a>
</dt>
<dt id="ientry-idm68468">go_string_get_casefold, <a class="indexterm" href="GOString.html#go-string-get-casefold">go_string_get_casefold ()</a>
</dt>
<dt id="ientry-idm68478">go_string_get_casefolded_collate, <a class="indexterm" href="GOString.html#go-string-get-casefolded-collate">go_string_get_casefolded_collate ()</a>
</dt>
<dt id="ientry-idm68488">go_string_get_collation, <a class="indexterm" href="GOString.html#go-string-get-collation">go_string_get_collation ()</a>
</dt>
<dt id="ientry-idm68498">go_string_get_len, <a class="indexterm" href="GOString.html#go-string-get-len">go_string_get_len ()</a>
</dt>
<dt id="ientry-idm68522">go_string_get_markup, <a class="indexterm" href="GOString.html#go-string-get-markup">go_string_get_markup ()</a>
</dt>
<dt id="ientry-idm68546">go_string_get_phonetic, <a class="indexterm" href="GOString.html#go-string-get-phonetic">go_string_get_phonetic ()</a>
</dt>
<dt id="ientry-idm68582">go_string_get_ref_count, <a class="indexterm" href="GOString.html#go-string-get-ref-count">go_string_get_ref_count ()</a>
</dt>
<dt id="ientry-idm68592">go_string_hash, <a class="indexterm" href="GOString.html#go-string-hash">go_string_hash ()</a>
</dt>
<dt id="ientry-idm68602">go_string_new, <a class="indexterm" href="GOString.html#go-string-new">go_string_new ()</a>
</dt>
<dt id="ientry-idm68639">go_string_new_len, <a class="indexterm" href="GOString.html#go-string-new-len">go_string_new_len ()</a>
</dt>
<dt id="ientry-idm68685">go_string_new_nocopy, <a class="indexterm" href="GOString.html#go-string-new-nocopy">go_string_new_nocopy ()</a>
</dt>
<dt id="ientry-idm68717">go_string_new_nocopy_len, <a class="indexterm" href="GOString.html#go-string-new-nocopy-len">go_string_new_nocopy_len ()</a>
</dt>
<dt id="ientry-idm68760">go_string_new_rich, <a class="indexterm" href="GOString.html#go-string-new-rich">go_string_new_rich ()</a>
</dt>
<dt id="ientry-idm68818">go_string_new_rich_nocopy, <a class="indexterm" href="GOString.html#go-string-new-rich-nocopy">go_string_new_rich_nocopy ()</a>
</dt>
<dt id="ientry-idm68876">go_string_ref, <a class="indexterm" href="GOString.html#go-string-ref">go_string_ref ()</a>
</dt>
<dt id="ientry-idm66546">go_string_replace, <a class="indexterm" href="goffice-0.10-GLib-extras.html#go-string-replace">go_string_replace ()</a>
</dt>
<dt id="ientry-idm66568">go_string_slist_copy, <a class="indexterm" href="goffice-0.10-GLib-extras.html#go-string-slist-copy">go_string_slist_copy()</a>
</dt>
<dt id="ientry-idm68886">go_string_trim, <a class="indexterm" href="GOString.html#go-string-trim">go_string_trim ()</a>
</dt>
<dt id="ientry-idm68923">go_string_unref, <a class="indexterm" href="GOString.html#go-string-unref">go_string_unref ()</a>
</dt>
<dt id="ientry-idm66573">go_strsplit_to_slist, <a class="indexterm" href="goffice-0.10-GLib-extras.html#go-strsplit-to-slist">go_strsplit_to_slist ()</a>
</dt>
<dt id="ientry-idm42967">go_strtod, <a class="indexterm" href="goffice-0.10-Mathematics.html#go-strtod">go_strtod ()</a>
</dt>
<dt id="ientry-idm42980">go_strtold, <a class="indexterm" href="goffice-0.10-Mathematics.html#go-strtold">go_strtold ()</a>
</dt>
<dt id="ientry-idm66616">go_strunescape, <a class="indexterm" href="goffice-0.10-GLib-extras.html#go-strunescape">go_strunescape ()</a>
</dt>
<dt id="ientry-idm66491">go_str_compare, <a class="indexterm" href="goffice-0.10-GLib-extras.html#go-str-compare">go_str_compare ()</a>
</dt>
<dt id="ientry-idm35248">go_styled_object_apply_theme, <a class="indexterm" href="GOStyledObject.html#go-styled-object-apply-theme">go_styled_object_apply_theme ()</a>
</dt>
<dt id="ientry-idm35289">go_styled_object_fill, <a class="indexterm" href="GOStyledObject.html#go-styled-object-fill">go_styled_object_fill ()</a>
</dt>
<dt id="ientry-idm35336">go_styled_object_get_auto_style, <a class="indexterm" href="GOStyledObject.html#go-styled-object-get-auto-style">go_styled_object_get_auto_style ()</a>
</dt>
<dt id="ientry-idm35372">go_styled_object_get_document, <a class="indexterm" href="GOStyledObject.html#go-styled-object-get-document">go_styled_object_get_document ()</a>
</dt>
<dt id="ientry-idm35409">go_styled_object_get_style, <a class="indexterm" href="GOStyledObject.html#go-styled-object-get-style">go_styled_object_get_style ()</a>
</dt>
<dt id="ientry-idm35445">go_styled_object_set_cairo_line, <a class="indexterm" href="GOStyledObject.html#go-styled-object-set-cairo-line">go_styled_object_set_cairo_line ()</a>
</dt>
<dt id="ientry-idm35489">go_styled_object_set_style, <a class="indexterm" href="GOStyledObject.html#go-styled-object-set-style">go_styled_object_set_style ()</a>
</dt>
<dt id="ientry-idm35548">go_styled_object_style_changed, <a class="indexterm" href="GOStyledObject.html#go-styled-object-style-changed">go_styled_object_style_changed ()</a>
</dt>
<dt id="ientry-idm34242">go_style_apply_theme, <a class="indexterm" href="GOStyle.html#go-style-apply-theme">go_style_apply_theme ()</a>
</dt>
<dt id="ientry-idm34291">go_style_assign, <a class="indexterm" href="GOStyle.html#go-style-assign">go_style_assign ()</a>
</dt>
<dt id="ientry-idm34386">go_style_clear_auto, <a class="indexterm" href="GOStyle.html#go-style-clear-auto">go_style_clear_auto ()</a>
</dt>
<dt id="ientry-idm34304">go_style_dup, <a class="indexterm" href="GOStyle.html#go-style-dup">go_style_dup ()</a>
</dt>
<dt id="ientry-idm34340">go_style_fill, <a class="indexterm" href="GOStyle.html#go-style-fill">go_style_fill ()</a>
</dt>
<dt id="ientry-idm34356">go_style_force_auto, <a class="indexterm" href="GOStyle.html#go-style-force-auto">go_style_force_auto ()</a>
</dt>
<dt id="ientry-idm34416">go_style_get_editor, <a class="indexterm" href="GOStyle.html#go-style-get-editor">go_style_get_editor ()</a>
</dt>
<dt id="ientry-idm34478">go_style_get_marker, <a class="indexterm" href="GOStyle.html#go-style-get-marker">go_style_get_marker ()</a>
</dt>
<dt id="ientry-idm34514">go_style_is_auto, <a class="indexterm" href="GOStyle.html#go-style-is-auto">go_style_is_auto ()</a>
</dt>
<dt id="ientry-idm34524">go_style_is_different_size, <a class="indexterm" href="GOStyle.html#go-style-is-different-size">go_style_is_different_size ()</a>
</dt>
<dt id="ientry-idm34537">go_style_is_fill_visible, <a class="indexterm" href="GOStyle.html#go-style-is-fill-visible">go_style_is_fill_visible ()</a>
</dt>
<dt id="ientry-idm34547">go_style_is_line_visible, <a class="indexterm" href="GOStyle.html#go-style-is-line-visible">go_style_is_line_visible ()</a>
</dt>
<dt id="ientry-idm34557">go_style_is_marker_visible, <a class="indexterm" href="GOStyle.html#go-style-is-marker-visible">go_style_is_marker_visible ()</a>
</dt>
<dt id="ientry-idm34567">go_style_is_outline_visible, <a class="indexterm" href="GOStyle.html#go-style-is-outline-visible">go_style_is_outline_visible ()</a>
</dt>
<dt id="ientry-idm34577">go_style_new, <a class="indexterm" href="GOStyle.html#go-style-new">go_style_new ()</a>
</dt>
<dt id="ientry-idm34586">go_style_populate_editor, <a class="indexterm" href="GOStyle.html#go-style-populate-editor">go_style_populate_editor ()</a>
</dt>
<dt id="ientry-idm34611">go_style_set_cairo_line, <a class="indexterm" href="GOStyle.html#go-style-set-cairo-line">go_style_set_cairo_line ()</a>
</dt>
<dt id="ientry-idm34624">go_style_set_fill_brightness, <a class="indexterm" href="GOStyle.html#go-style-set-fill-brightness">go_style_set_fill_brightness ()</a>
</dt>
<dt id="ientry-idm34637">go_style_set_font, <a class="indexterm" href="GOStyle.html#go-style-set-font">go_style_set_font ()</a>
</dt>
<dt id="ientry-idm34675">go_style_set_font_desc, <a class="indexterm" href="GOStyle.html#go-style-set-font-desc">go_style_set_font_desc ()</a>
</dt>
<dt id="ientry-idm34713">go_style_set_marker, <a class="indexterm" href="GOStyle.html#go-style-set-marker">go_style_set_marker ()</a>
</dt>
<dt id="ientry-idm34755">go_style_set_text_angle, <a class="indexterm" href="GOStyle.html#go-style-set-text-angle">go_style_set_text_angle ()</a>
</dt>
<dt id="ientry-idm64771">GO_SUBSCRIPT_RISE, <a class="indexterm" href="GOFormat.html#GO-SUBSCRIPT-RISE:CAPS">GO_SUBSCRIPT_RISE</a>
</dt>
<dt id="ientry-idm64776">GO_SUBSCRIPT_SCALE, <a class="indexterm" href="GOFormat.html#GO-SUBSCRIPT-SCALE:CAPS">GO_SUBSCRIPT_SCALE</a>
</dt>
<dt id="ientry-idm42993">go_sub_epsilon, <a class="indexterm" href="goffice-0.10-Mathematics.html#go-sub-epsilon">go_sub_epsilon ()</a>
</dt>
<dt id="ientry-idm43003">go_sub_epsilonl, <a class="indexterm" href="goffice-0.10-Mathematics.html#go-sub-epsilonl">go_sub_epsilonl ()</a>
</dt>
<dt id="ientry-idm64781">GO_SUPERSCRIPT_RISE, <a class="indexterm" href="GOFormat.html#GO-SUPERSCRIPT-RISE:CAPS">GO_SUPERSCRIPT_RISE</a>
</dt>
<dt id="ientry-idm64786">GO_SUPERSCRIPT_SCALE, <a class="indexterm" href="GOFormat.html#GO-SUPERSCRIPT-SCALE:CAPS">GO_SUPERSCRIPT_SCALE</a>
</dt>
<dt id="ientry-idm40034">go_svg_new_from_data, <a class="indexterm" href="goffice-0.10-Scalable-Vector-Graphics-support.html#go-svg-new-from-data">go_svg_new_from_data ()</a>
</dt>
<dt id="ientry-idm40050">go_svg_new_from_file, <a class="indexterm" href="goffice-0.10-Scalable-Vector-Graphics-support.html#go-svg-new-from-file">go_svg_new_from_file ()</a>
</dt>
<dt id="ientry-idm51006">go_tanpi, <a class="indexterm" href="goffice-0.10-GOQuad.html#go-tanpi">go_tanpi ()</a>
</dt>
<dt id="ientry-idm51034">go_tanpil, <a class="indexterm" href="goffice-0.10-GOQuad.html#go-tanpil">go_tanpil ()</a>
</dt>
<dt id="ientry-idm67694">go_undo_binary_new, <a class="indexterm" href="GOUndoUnary.html#go-undo-binary-new">go_undo_binary_new ()</a>
</dt>
<dt id="ientry-idm67771">go_undo_combine, <a class="indexterm" href="GOUndoUnary.html#go-undo-combine">go_undo_combine ()</a>
</dt>
<dt id="ientry-idm67820">go_undo_group_add, <a class="indexterm" href="GOUndoUnary.html#go-undo-group-add">go_undo_group_add ()</a>
</dt>
<dt id="ientry-idm67858">go_undo_group_new, <a class="indexterm" href="GOUndoUnary.html#go-undo-group-new">go_undo_group_new ()</a>
</dt>
<dt id="ientry-idm67871">go_undo_unary_new, <a class="indexterm" href="GOUndoUnary.html#go-undo-unary-new">go_undo_unary_new ()</a>
</dt>
<dt id="ientry-idm67926">go_undo_undo, <a class="indexterm" href="GOUndoUnary.html#go-undo-undo">go_undo_undo ()</a>
</dt>
<dt id="ientry-idm67951">go_undo_undo_with_data, <a class="indexterm" href="GOUndoUnary.html#go-undo-undo-with-data">go_undo_undo_with_data ()</a>
</dt>
<dt id="ientry-idm66629">go_unichar_issign, <a class="indexterm" href="goffice-0.10-GLib-extras.html#go-unichar-issign">go_unichar_issign ()</a>
</dt>
<dt id="ientry-idm48411">GO_UN_PER_CM, <a class="indexterm" href="goffice-0.10-Units.html#GO-UN-PER-CM:CAPS">GO_UN_PER_CM</a>
</dt>
<dt id="ientry-idm48416">GO_UN_PER_EMU, <a class="indexterm" href="goffice-0.10-Units.html#GO-UN-PER-EMU:CAPS">GO_UN_PER_EMU</a>
</dt>
<dt id="ientry-idm48421">GO_UN_PER_IN, <a class="indexterm" href="goffice-0.10-Units.html#GO-UN-PER-IN:CAPS">GO_UN_PER_IN</a>
</dt>
<dt id="ientry-idm48426">GO_UN_PER_PT, <a class="indexterm" href="goffice-0.10-Units.html#GO-UN-PER-PT:CAPS">GO_UN_PER_PT</a>
</dt>
<dt id="ientry-idm48289">GO_UN_TO_CM, <a class="indexterm" href="goffice-0.10-Units.html#GO-UN-TO-CM:CAPS">GO_UN_TO_CM()</a>
</dt>
<dt id="ientry-idm48294">GO_UN_TO_EMU, <a class="indexterm" href="goffice-0.10-Units.html#GO-UN-TO-EMU:CAPS">GO_UN_TO_EMU()</a>
</dt>
<dt id="ientry-idm48299">GO_UN_TO_IN, <a class="indexterm" href="goffice-0.10-Units.html#GO-UN-TO-IN:CAPS">GO_UN_TO_IN()</a>
</dt>
<dt id="ientry-idm48304">GO_UN_TO_PT, <a class="indexterm" href="goffice-0.10-Units.html#GO-UN-TO-PT:CAPS">GO_UN_TO_PT()</a>
</dt>
<dt id="ientry-idm54554">go_url_check_extension, <a class="indexterm" href="goffice-0.10-URL-utilities.html#go-url-check-extension">go_url_check_extension ()</a>
</dt>
<dt id="ientry-idm54607">go_url_encode, <a class="indexterm" href="goffice-0.10-URL-utilities.html#go-url-encode">go_url_encode ()</a>
</dt>
<dt id="ientry-idm54644">go_url_make_relative, <a class="indexterm" href="goffice-0.10-URL-utilities.html#go-url-make-relative">go_url_make_relative ()</a>
</dt>
<dt id="ientry-idm54657">go_url_resolve_relative, <a class="indexterm" href="goffice-0.10-URL-utilities.html#go-url-resolve-relative">go_url_resolve_relative ()</a>
</dt>
<dt id="ientry-idm54670">go_url_simplify, <a class="indexterm" href="goffice-0.10-URL-utilities.html#go-url-simplify">go_url_simplify ()</a>
</dt>
<dt id="ientry-idm66639">go_utf8_collate_casefold, <a class="indexterm" href="goffice-0.10-GLib-extras.html#go-utf8-collate-casefold">go_utf8_collate_casefold ()</a>
</dt>
<dt id="ientry-idm66652">go_utf8_strcapital, <a class="indexterm" href="goffice-0.10-GLib-extras.html#go-utf8-strcapital">go_utf8_strcapital ()</a>
</dt>
<dt id="ientry-idm97">GO_VAR_DECL, <a class="indexterm" href="goffice-0.10-Gettings-Started-with-GOffice.html#GO-VAR-DECL:CAPS">GO_VAR_DECL</a>
</dt>
<dt id="ientry-idm52274">GO_W_OK, <a class="indexterm" href="goffice-0.10-File-utilities.html#GO-W-OK:CAPS">GO_W_OK</a>
</dt>
<dt id="ientry-idm66855">go_xml_get_child_by_name, <a class="indexterm" href="goffice-0.10-LibXML-extras.html#go-xml-get-child-by-name">go_xml_get_child_by_name ()</a>
</dt>
<dt id="ientry-idm66900">go_xml_get_child_by_name_by_lang, <a class="indexterm" href="goffice-0.10-LibXML-extras.html#go-xml-get-child-by-name-by-lang">go_xml_get_child_by_name_by_lang ()</a>
</dt>
<dt id="ientry-idm66945">go_xml_get_child_by_name_no_lang, <a class="indexterm" href="goffice-0.10-LibXML-extras.html#go-xml-get-child-by-name-no-lang">go_xml_get_child_by_name_no_lang ()</a>
</dt>
<dt id="ientry-idm66990">go_xml_in_doc_dispose_on_exit, <a class="indexterm" href="goffice-0.10-LibXML-extras.html#go-xml-in-doc-dispose-on-exit">go_xml_in_doc_dispose_on_exit ()</a>
</dt>
<dt id="ientry-idm67000">go_xml_node_get_bool, <a class="indexterm" href="goffice-0.10-LibXML-extras.html#go-xml-node-get-bool">go_xml_node_get_bool ()</a>
</dt>
<dt id="ientry-idm67016">go_xml_node_get_cstr, <a class="indexterm" href="goffice-0.10-LibXML-extras.html#go-xml-node-get-cstr">go_xml_node_get_cstr ()</a>
</dt>
<dt id="ientry-idm67060">go_xml_node_get_double, <a class="indexterm" href="goffice-0.10-LibXML-extras.html#go-xml-node-get-double">go_xml_node_get_double ()</a>
</dt>
<dt id="ientry-idm67076">go_xml_node_get_enum, <a class="indexterm" href="goffice-0.10-LibXML-extras.html#go-xml-node-get-enum">go_xml_node_get_enum ()</a>
</dt>
<dt id="ientry-idm67095">go_xml_node_get_gocolor, <a class="indexterm" href="goffice-0.10-LibXML-extras.html#go-xml-node-get-gocolor">go_xml_node_get_gocolor ()</a>
</dt>
<dt id="ientry-idm67111">go_xml_node_get_int, <a class="indexterm" href="goffice-0.10-LibXML-extras.html#go-xml-node-get-int">go_xml_node_get_int ()</a>
</dt>
<dt id="ientry-idm67127">go_xml_node_set_bool, <a class="indexterm" href="goffice-0.10-LibXML-extras.html#go-xml-node-set-bool">go_xml_node_set_bool ()</a>
</dt>
<dt id="ientry-idm67143">go_xml_node_set_cstr, <a class="indexterm" href="goffice-0.10-LibXML-extras.html#go-xml-node-set-cstr">go_xml_node_set_cstr ()</a>
</dt>
<dt id="ientry-idm67159">go_xml_node_set_double, <a class="indexterm" href="goffice-0.10-LibXML-extras.html#go-xml-node-set-double">go_xml_node_set_double ()</a>
</dt>
<dt id="ientry-idm67178">go_xml_node_set_enum, <a class="indexterm" href="goffice-0.10-LibXML-extras.html#go-xml-node-set-enum">go_xml_node_set_enum ()</a>
</dt>
<dt id="ientry-idm67197">go_xml_node_set_gocolor, <a class="indexterm" href="goffice-0.10-LibXML-extras.html#go-xml-node-set-gocolor">go_xml_node_set_gocolor ()</a>
</dt>
<dt id="ientry-idm67213">go_xml_node_set_int, <a class="indexterm" href="goffice-0.10-LibXML-extras.html#go-xml-node-set-int">go_xml_node_set_int ()</a>
</dt>
<dt id="ientry-idm67229">go_xml_out_add_color, <a class="indexterm" href="goffice-0.10-LibXML-extras.html#go-xml-out-add-color">go_xml_out_add_color ()</a>
</dt>
<dt id="ientry-idm67245">go_xml_out_add_double, <a class="indexterm" href="goffice-0.10-LibXML-extras.html#go-xml-out-add-double">go_xml_out_add_double ()</a>
</dt>
<dt id="ientry-idm67291">go_xml_out_add_long_double, <a class="indexterm" href="goffice-0.10-LibXML-extras.html#go-xml-out-add-long-double">go_xml_out_add_long_double ()</a>
</dt>
<dt id="ientry-idm67337">go_xml_parse_file, <a class="indexterm" href="goffice-0.10-LibXML-extras.html#go-xml-parse-file">go_xml_parse_file ()</a>
</dt>
<dt id="ientry-idm52279">GO_X_OK, <a class="indexterm" href="goffice-0.10-File-utilities.html#GO-X-OK:CAPS">GO_X_OK</a>
</dt>
</dl>
</div>
<div class="indexdiv">
<h3>I</h3>
<dl><dt id="ientry-idm43069">isnan, <a class="indexterm" href="goffice-0.10-Mathematics.html#isnan">isnan</a>
</dt></dl>
</div>
<div class="indexdiv">
<h3>L</h3>
<dl>
<dt id="ientry-idm43013">ldexpl, <a class="indexterm" href="goffice-0.10-Mathematics.html#ldexpl">ldexpl ()</a>
</dt>
<dt id="ientry-idm70">libgoffice_init, <a class="indexterm" href="goffice-0.10-Gettings-Started-with-GOffice.html#libgoffice-init">libgoffice_init ()</a>
</dt>
<dt id="ientry-idm83">libgoffice_shutdown, <a class="indexterm" href="goffice-0.10-Gettings-Started-with-GOffice.html#libgoffice-shutdown">libgoffice_shutdown ()</a>
</dt>
<dt id="ientry-idm43026">log1p, <a class="indexterm" href="goffice-0.10-Mathematics.html#log1p">log1p ()</a>
</dt>
</dl>
</div>
<div class="indexdiv">
<h3>M</h3>
<dl>
<dt id="ientry-idm43036">modfl, <a class="indexterm" href="goffice-0.10-Mathematics.html#modfl">modfl ()</a>
</dt>
<dt id="ientry-idm43064">M_PI, <a class="indexterm" href="goffice-0.10-Mathematics.html#M-PI:CAPS">M_PI</a>
</dt>
</dl>
</div>
<div class="indexdiv">
<h3>S</h3>
<dl><dt id="ientry-idm43049">strtold, <a class="indexterm" href="goffice-0.10-Mathematics.html#strtold">strtold ()</a>
</dt></dl>
</div>
</div>
</div>
<div class="footer">
<hr>Generated by GTK-Doc V1.27</div>
</body>
</html>
|