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
|
<?xml version="1.0" encoding="ascii"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>Identifier Index</title>
<link rel="stylesheet" href="epydoc.css" type="text/css" />
<script type="text/javascript" src="epydoc.js"></script>
</head>
<body bgcolor="white" text="black" link="blue" vlink="#204080"
alink="#204080">
<!-- ==================== NAVIGATION BAR ==================== -->
<table class="navbar" border="0" width="100%" cellpadding="0"
bgcolor="#a0c0ff" cellspacing="0">
<tr valign="middle">
<!-- Home link -->
<th> <a
href="Gnumed-module.html">Home</a> </th>
<!-- Tree link -->
<th> <a
href="module-tree.html">Trees</a> </th>
<!-- Index link -->
<th bgcolor="#70b0f0" class="navbar-select"
> Indices </th>
<!-- Help link -->
<th> <a
href="help.html">Help</a> </th>
<!-- Project homepage -->
<th class="navbar" align="right" width="100%">
<table border="0" cellpadding="0" cellspacing="0">
<tr><th class="navbar" align="center"
><a class="navbar" target="_top" href="http://www.gnumed.org">GNUmed Never Sleeps</a></th>
</tr></table></th>
</tr>
</table>
<table width="100%" cellpadding="0" cellspacing="0">
<tr valign="top">
<td width="100%"> </td>
<td>
<table cellpadding="0" cellspacing="0">
<!-- hide/show private -->
<tr><td align="right"><span class="options"
>[<a href="frames.html" target="_top">frames</a
>] | <a href="identifier-index-G.html"
target="_top">no frames</a>]</span></td></tr>
</table>
</td>
</tr>
</table>
<table border="0" width="100%">
<tr valign="bottom"><td>
<h1 class="epydoc">Identifier Index</h1>
</td><td>
[
<a href="identifier-index-A.html">A</a>
<a href="identifier-index-B.html">B</a>
<a href="identifier-index-C.html">C</a>
<a href="identifier-index-D.html">D</a>
<a href="identifier-index-E.html">E</a>
<a href="identifier-index-F.html">F</a>
<a href="identifier-index-G.html">G</a>
<a href="identifier-index-H.html">H</a>
<a href="identifier-index-I.html">I</a>
<a href="identifier-index-J.html">J</a>
<a href="identifier-index-K.html">K</a>
<a href="identifier-index-L.html">L</a>
<a href="identifier-index-M.html">M</a>
<a href="identifier-index-N.html">N</a>
<a href="identifier-index-O.html">O</a>
<a href="identifier-index-P.html">P</a>
<a href="identifier-index-Q.html">Q</a>
<a href="identifier-index-R.html">R</a>
<a href="identifier-index-S.html">S</a>
<a href="identifier-index-T.html">T</a>
<a href="identifier-index-U.html">U</a>
<a href="identifier-index-V.html">V</a>
<a href="identifier-index-W.html">W</a>
<a href="identifier-index-X.html">X</a>
Y
<a href="identifier-index-Z.html">Z</a>
<a href="identifier-index-_.html">_</a>
]
</td></table>
<table border="0" width="100%">
<tr valign="top"><td valign="top" width="1%"><h2 class="epydoc"><a name="G">G</a></h2></td>
<td valign="top">
<table class="link-index" width="100%" border="1">
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmSnellen.cSnellenChart-class.html#G">G()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmSnellen.cSnellenChart-class.html">cSnellenChart</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html#getdoctorImage">getdoctorImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html">Gnumed.wxpython.images_contacts_toolbar16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html#getToolbar_ContentsImage">getToolbar_ContentsImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html">Gnumed.wxpython.images_gnuMedGP_Toolbar</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmSnellen.cSnellenChart-class.html#gamma">gamma()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmSnellen.cSnellenChart-class.html">cSnellenChart</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getdoctorImage">getdoctorImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html#getToolbar_EmailBitmap">getToolbar_EmailBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html">Gnumed.wxpython.images_gnuMedGP_Toolbar</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmPerson.cIdentity-class.html#gender_string">gender_string</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmPerson.cIdentity-class.html">cIdentity</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html#getdrbagBitmap">getdrbagBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html">Gnumed.wxpython.images_contacts_toolbar16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html#getToolbar_EmailData">getToolbar_EmailData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html">Gnumed.wxpython.images_gnuMedGP_Toolbar</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmPerson.cIdentity-class.html#gender_symbol">gender_symbol</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmPerson.cIdentity-class.html">cIdentity</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getdrbagBitmap">getdrbagBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html#getToolbar_EmailImage">getToolbar_EmailImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html">Gnumed.wxpython.images_gnuMedGP_Toolbar</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmForms.cAbiWordForm-class.html#generate_output">generate_output()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmForms.cAbiWordForm-class.html">cAbiWordForm</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html#getdrbagData">getdrbagData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html">Gnumed.wxpython.images_contacts_toolbar16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html#getToolbar_FamilyHistoryBitmap">getToolbar_FamilyHistoryBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html">Gnumed.wxpython.images_gnuMedGP_Toolbar</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmForms.cFormEngine-class.html#generate_output">generate_output()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmForms.cFormEngine-class.html">cFormEngine</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getdrbagData">getdrbagData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html#getToolbar_FamilyHistoryData">getToolbar_FamilyHistoryData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html">Gnumed.wxpython.images_gnuMedGP_Toolbar</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmForms.cGnuplotForm-class.html#generate_output">generate_output()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmForms.cGnuplotForm-class.html">cGnuplotForm</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html#getdrbagImage">getdrbagImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html">Gnumed.wxpython.images_contacts_toolbar16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html#getToolbar_FamilyHistoryImage">getToolbar_FamilyHistoryImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html">Gnumed.wxpython.images_gnuMedGP_Toolbar</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmForms.cLaTeXForm-class.html#generate_output">generate_output()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmForms.cLaTeXForm-class.html">cLaTeXForm</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getdrbagImage">getdrbagImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html#getToolbar_FindPatientBitmap">getToolbar_FindPatientBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html">Gnumed.wxpython.images_gnuMedGP_Toolbar</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmForms.cPDFForm-class.html#generate_output">generate_output()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmForms.cPDFForm-class.html">cPDFForm</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmDrugDisplay.DrugDisplay-class.html#GetDrugIssue">GetDrugIssue()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gui.gmDrugDisplay.DrugDisplay-class.html">DrugDisplay</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html#getToolbar_FindPatientData">getToolbar_FindPatientData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html">Gnumed.wxpython.images_gnuMedGP_Toolbar</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmClinNarrative.cNarrative-class.html#generic_codes">generic_codes</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmClinNarrative.cNarrative-class.html">cNarrative</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html#getearthBitmap">getearthBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html">Gnumed.wxpython.images_contacts_toolbar16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html#getToolbar_FindPatientImage">getToolbar_FindPatientImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html">Gnumed.wxpython.images_gnuMedGP_Toolbar</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmEMRStructItems.cEpisode-class.html#generic_codes">generic_codes</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmEMRStructItems.cEpisode-class.html">cEpisode</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getearthBitmap">getearthBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html#getToolbar_HomeBitmap">getToolbar_HomeBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html">Gnumed.wxpython.images_gnuMedGP_Toolbar</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmEMRStructItems.cHealthIssue-class.html#generic_codes">generic_codes</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmEMRStructItems.cHealthIssue-class.html">cHealthIssue</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html#getearthData">getearthData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html">Gnumed.wxpython.images_contacts_toolbar16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html#getToolbar_HomeData">getToolbar_HomeData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html">Gnumed.wxpython.images_gnuMedGP_Toolbar</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmEMRStructItems.cPerformedProcedure-class.html#generic_codes">generic_codes</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmEMRStructItems.cPerformedProcedure-class.html">cPerformedProcedure</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getearthData">getearthData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html#getToolbar_HomeImage">getToolbar_HomeImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html">Gnumed.wxpython.images_gnuMedGP_Toolbar</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmEMRStructItems.cProblem-class.html#generic_codes">generic_codes</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmEMRStructItems.cProblem-class.html">cProblem</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html#getearthImage">getearthImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html">Gnumed.wxpython.images_contacts_toolbar16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html#getToolbar_ImmunisationBitmap">getToolbar_ImmunisationBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html">Gnumed.wxpython.images_gnuMedGP_Toolbar</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmFamilyHistory.cFamilyHistory-class.html#generic_codes">generic_codes</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmFamilyHistory.cFamilyHistory-class.html">cFamilyHistory</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getearthImage">getearthImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html#getToolbar_ImmunisationImage">getToolbar_ImmunisationImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html">Gnumed.wxpython.images_gnuMedGP_Toolbar</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmEMRStructItems.cEncounter-class.html#generic_codes_aoe">generic_codes_aoe</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmEMRStructItems.cEncounter-class.html">cEncounter</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#geteditBitmap">geteditBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html#getToolbar_ImmunisationsData">getToolbar_ImmunisationsData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html">Gnumed.wxpython.images_gnuMedGP_Toolbar</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmEMRStructItems.cEncounter-class.html#generic_codes_rfe">generic_codes_rfe</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmEMRStructItems.cEncounter-class.html">cEncounter</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html#geteditBitmap">geteditBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html">Gnumed.wxpython.images_for_gnumed_browser16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html#getToolbar_ManBitmap">getToolbar_ManBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html">Gnumed.wxpython.images_gnuMedGP_Toolbar</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmCodingWidgets.cGenericCodesPhraseWheel-class.html#generic_linked_codes2item_dict">generic_linked_codes2item_dict()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmCodingWidgets.cGenericCodesPhraseWheel-class.html">cGenericCodesPhraseWheel</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#geteditcopyBitmap">geteditcopyBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getToolbar_ManBitmap">getToolbar_ManBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmPregWidgets-module.html#GESTATION">GESTATION</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmPregWidgets-module.html">Gnumed.wxpython.gmPregWidgets</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html#geteditcopyBitmap">geteditcopyBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html">Gnumed.wxpython.images_for_gnumed_browser16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html#getToolbar_ManData">getToolbar_ManData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html">Gnumed.wxpython.images_gnuMedGP_Toolbar</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmCfg.cCfgSQL-class.html#get">get()</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmCfg.cCfgSQL-class.html">cCfgSQL</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#geteditcopyData">geteditcopyData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getToolbar_ManData">getToolbar_ManData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmCfg2.gmCfgData-class.html#get">get()</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmCfg2.gmCfgData-class.html">gmCfgData</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html#geteditcopyData">geteditcopyData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html">Gnumed.wxpython.images_for_gnumed_browser16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html#getToolbar_ManImage">getToolbar_ManImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html">Gnumed.wxpython.images_gnuMedGP_Toolbar</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#get1leftarrowBitmap">get1leftarrowBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#geteditcopyImage">geteditcopyImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getToolbar_ManImage">getToolbar_ManImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html#get1leftarrowBitmap">get1leftarrowBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html">Gnumed.wxpython.images_for_gnumed_browser16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html#geteditcopyImage">geteditcopyImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html">Gnumed.wxpython.images_for_gnumed_browser16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html#getToolbar_MeasurementsBitmap">getToolbar_MeasurementsBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html">Gnumed.wxpython.images_gnuMedGP_Toolbar</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#get1leftarrowData">get1leftarrowData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#geteditcutBitmap">geteditcutBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getToolbar_MeasurementsBitmap">getToolbar_MeasurementsBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html#get1leftarrowData">get1leftarrowData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html">Gnumed.wxpython.images_for_gnumed_browser16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html#geteditcutBitmap">geteditcutBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html">Gnumed.wxpython.images_for_gnumed_browser16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html#getToolbar_MeasurementsData">getToolbar_MeasurementsData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html">Gnumed.wxpython.images_gnuMedGP_Toolbar</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#get1leftarrowImage">get1leftarrowImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#geteditcutData">geteditcutData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getToolbar_MeasurementsData">getToolbar_MeasurementsData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html#get1leftarrowImage">get1leftarrowImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html">Gnumed.wxpython.images_for_gnumed_browser16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html#geteditcutData">geteditcutData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html">Gnumed.wxpython.images_for_gnumed_browser16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html#getToolbar_MeasurementsImage">getToolbar_MeasurementsImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html">Gnumed.wxpython.images_gnuMedGP_Toolbar</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#get1rightarrowBitmap">get1rightarrowBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#geteditcutImage">geteditcutImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getToolbar_MeasurementsImage">getToolbar_MeasurementsImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html#get1rightarrowBitmap">get1rightarrowBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html">Gnumed.wxpython.images_for_gnumed_browser16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html#geteditcutImage">geteditcutImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html">Gnumed.wxpython.images_for_gnumed_browser16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html#getToolbar_PastHistoryBitmap">getToolbar_PastHistoryBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html">Gnumed.wxpython.images_gnuMedGP_Toolbar</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#get1rightarrowData">get1rightarrowData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#geteditData">geteditData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getToolbar_PastHistoryBitmap">getToolbar_PastHistoryBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html#get1rightarrowData">get1rightarrowData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html">Gnumed.wxpython.images_for_gnumed_browser16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html#geteditData">geteditData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html">Gnumed.wxpython.images_for_gnumed_browser16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html#getToolbar_PastHistoryData">getToolbar_PastHistoryData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html">Gnumed.wxpython.images_gnuMedGP_Toolbar</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#get1rightarrowImage">get1rightarrowImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#geteditdeleteBitmap">geteditdeleteBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getToolbar_PastHistoryData">getToolbar_PastHistoryData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html#get1rightarrowImage">get1rightarrowImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html">Gnumed.wxpython.images_for_gnumed_browser16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html#geteditdeleteBitmap">geteditdeleteBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html">Gnumed.wxpython.images_for_gnumed_browser16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html#getToolbar_PastHistoryImage">getToolbar_PastHistoryImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html">Gnumed.wxpython.images_gnuMedGP_Toolbar</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmCfg.cCfgSQL-class.html#get2">get2()</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmCfg.cCfgSQL-class.html">cCfgSQL</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#geteditdeleteData">geteditdeleteData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getToolbar_PastHistoryImage">getToolbar_PastHistoryImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images-module.html#get_01c_Bitmap">get_01c_Bitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images-module.html">Gnumed.wxpython.images</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html#geteditdeleteData">geteditdeleteData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html">Gnumed.wxpython.images_for_gnumed_browser16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html#getToolbar_PregcalcBitmap">getToolbar_PregcalcBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html">Gnumed.wxpython.images_gnuMedGP_Toolbar</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images-module.html#get_01c_Data">get_01c_Data()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images-module.html">Gnumed.wxpython.images</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#geteditdeleteImage">geteditdeleteImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getToolbar_PregcalcBitmap">getToolbar_PregcalcBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images-module.html#get_01c_Image">get_01c_Image()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images-module.html">Gnumed.wxpython.images</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html#geteditdeleteImage">geteditdeleteImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html">Gnumed.wxpython.images_for_gnumed_browser16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html#getToolbar_PregcalcData">getToolbar_PregcalcData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html">Gnumed.wxpython.images_gnuMedGP_Toolbar</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images-module.html#get_10s_Bitmap">get_10s_Bitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images-module.html">Gnumed.wxpython.images</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#geteditImage">geteditImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getToolbar_PregcalcData">getToolbar_PregcalcData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images-module.html#get_10s_Data">get_10s_Data()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images-module.html">Gnumed.wxpython.images</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html#geteditImage">geteditImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html">Gnumed.wxpython.images_for_gnumed_browser16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html#getToolbar_PregcalcImage">getToolbar_PregcalcImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html">Gnumed.wxpython.images_gnuMedGP_Toolbar</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images-module.html#get_10s_Image">get_10s_Image()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images-module.html">Gnumed.wxpython.images</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html#getemployeesBitmap">getemployeesBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html">Gnumed.wxpython.images_contacts_toolbar16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getToolbar_PregcalcImage">getToolbar_PregcalcImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images-module.html#get_12h_Bitmap">get_12h_Bitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images-module.html">Gnumed.wxpython.images</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getemployeesBitmap">getemployeesBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html#getToolbar_PrinterBitmap">getToolbar_PrinterBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html">Gnumed.wxpython.images_gnuMedGP_Toolbar</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images-module.html#get_12h_Data">get_12h_Data()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images-module.html">Gnumed.wxpython.images</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html#getemployeesData">getemployeesData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html">Gnumed.wxpython.images_contacts_toolbar16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getToolbar_PrinterBitmap">getToolbar_PrinterBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images-module.html#get_12h_Image">get_12h_Image()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images-module.html">Gnumed.wxpython.images</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getemployeesData">getemployeesData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html#getToolbar_PrinterData">getToolbar_PrinterData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html">Gnumed.wxpython.images_gnuMedGP_Toolbar</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images-module.html#get_13d_Bitmap">get_13d_Bitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images-module.html">Gnumed.wxpython.images</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html#getemployeesImage">getemployeesImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html">Gnumed.wxpython.images_contacts_toolbar16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getToolbar_PrinterData">getToolbar_PrinterData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images-module.html#get_13d_Data">get_13d_Data()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images-module.html">Gnumed.wxpython.images</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getemployeesImage">getemployeesImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html#getToolbar_PrinterImage">getToolbar_PrinterImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html">Gnumed.wxpython.images_gnuMedGP_Toolbar</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images-module.html#get_13d_Image">get_13d_Image()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images-module.html">Gnumed.wxpython.images</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#getencryptedBitmap">getencryptedBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getToolbar_PrinterImage">getToolbar_PrinterImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmEMRStructItems.cEpisode-class.html#get_access_range">get_access_range()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmEMRStructItems.cEpisode-class.html">cEpisode</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html#getencryptedBitmap">getencryptedBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html">Gnumed.wxpython.images_for_gnumed_browser16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html#getToolbar_ProgressNotesBitmap">getToolbar_ProgressNotesBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html">Gnumed.wxpython.images_gnuMedGP_Toolbar</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmPerson.cIdentity-class.html#get_active_name">get_active_name()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmPerson.cIdentity-class.html">cIdentity</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#getencryptedData">getencryptedData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getToolbar_ProgressNotesBitmap">getToolbar_ProgressNotesBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmOrganization-module.html#get_address_data_for_org_ids">get_address_data_for_org_ids()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmOrganization-module.html">Gnumed.business.gmOrganization</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html#getencryptedData">getencryptedData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html">Gnumed.wxpython.images_for_gnumed_browser16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html#getToolbar_ProgressNotesData">getToolbar_ProgressNotesData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html">Gnumed.wxpython.images_gnuMedGP_Toolbar</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmDemographicRecord-module.html#get_address_from_patient_address_pk">get_address_from_patient_address_pk()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmDemographicRecord-module.html">Gnumed.business.gmDemographicRecord</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#getencryptedImage">getencryptedImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getToolbar_ProgressNotesData">getToolbar_ProgressNotesData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmDemographicRecord-module.html#get_address_types">get_address_types()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmDemographicRecord-module.html">Gnumed.business.gmDemographicRecord</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html#getencryptedImage">getencryptedImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html">Gnumed.wxpython.images_for_gnumed_browser16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html#getToolbar_ProgressNotesImage">getToolbar_ProgressNotesImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html">Gnumed.wxpython.images_gnuMedGP_Toolbar</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmContacts.cContactsPanel-class.html#get_address_values">get_address_values()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gui.gmContacts.cContactsPanel-class.html">cContactsPanel</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnumedGP-module.html#getFamily_HistoryBitmap">getFamily_HistoryBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnumedGP-module.html">Gnumed.wxpython.images_gnumedGP</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getToolbar_ProgressNotesImage">getToolbar_ProgressNotesImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmDemographicRecord-module.html#get_addresses">get_addresses()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmDemographicRecord-module.html">Gnumed.business.gmDemographicRecord</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnumedGP-module.html#getFamily_HistoryData">getFamily_HistoryData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnumedGP-module.html">Gnumed.wxpython.images_gnumedGP</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html#getToolbar_RecallsBitmap">getToolbar_RecallsBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html">Gnumed.wxpython.images_gnuMedGP_Toolbar</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmPerson.cIdentity-class.html#get_addresses">get_addresses()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmPerson.cIdentity-class.html">cIdentity</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnumedGP-module.html#getFamily_HistoryImage">getFamily_HistoryImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnumedGP-module.html">Gnumed.wxpython.images_gnumedGP</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getToolbar_RecallsBitmap">getToolbar_RecallsBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmCfg-module.html#get_all_options">get_all_options()</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmCfg-module.html">Gnumed.pycommon.gmCfg</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images-module.html#getFile1Bitmap">getFile1Bitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images-module.html">Gnumed.wxpython.images</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html#getToolbar_RecallsData">getToolbar_RecallsData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html">Gnumed.wxpython.images_gnuMedGP_Toolbar</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmClinicalRecord.cClinicalRecord-class.html#get_allergies">get_allergies()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmClinicalRecord.cClinicalRecord-class.html">cClinicalRecord</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images-module.html#getFile1Data">getFile1Data()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images-module.html">Gnumed.wxpython.images</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getToolbar_RecallsData">getToolbar_RecallsData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.exporters.gmPatientExporter.cEmrExport-class.html#get_allergy_output">get_allergy_output()</a><br />
<span class="index-where">(in <a href="Gnumed.exporters.gmPatientExporter.cEmrExport-class.html">cEmrExport</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images-module.html#getFile1Image">getFile1Image()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images-module.html">Gnumed.wxpython.images</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html#getToolbar_RecallsImage">getToolbar_RecallsImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html">Gnumed.wxpython.images_gnuMedGP_Toolbar</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.exporters.gmPatientExporter.cEmrExport-class.html#get_allergy_summary">get_allergy_summary()</a><br />
<span class="index-where">(in <a href="Gnumed.exporters.gmPatientExporter.cEmrExport-class.html">cEmrExport</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images-module.html#getFile2Bitmap">getFile2Bitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images-module.html">Gnumed.wxpython.images</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getToolbar_RecallsImage">getToolbar_RecallsImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmEMRStructItems.cProblem-class.html#get_as_episode">get_as_episode()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmEMRStructItems.cProblem-class.html">cProblem</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images-module.html#getFile2Data">getFile2Data()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images-module.html">Gnumed.wxpython.images</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html#getToolbar_ReferralsBitmap">getToolbar_ReferralsBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html">Gnumed.wxpython.images_gnuMedGP_Toolbar</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmEMRStructItems.cProblem-class.html#get_as_health_issue">get_as_health_issue()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmEMRStructItems.cProblem-class.html">cProblem</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images-module.html#getFile2Image">getFile2Image()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images-module.html">Gnumed.wxpython.images</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getToolbar_ReferralsBitmap">getToolbar_ReferralsBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmClinNarrative-module.html#get_as_journal">get_as_journal()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmClinNarrative-module.html">Gnumed.business.gmClinNarrative</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#getfilefindBitmap">getfilefindBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html#getToolbar_ReferralsData">getToolbar_ReferralsData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html">Gnumed.wxpython.images_gnuMedGP_Toolbar</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmClinicalRecord.cClinicalRecord-class.html#get_as_journal">get_as_journal()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmClinicalRecord.cClinicalRecord-class.html">cClinicalRecord</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html#getfilefindBitmap">getfilefindBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html">Gnumed.wxpython.images_for_gnumed_browser16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getToolbar_ReferralsData">getToolbar_ReferralsData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmKVK-module.html#get_available_cards_as_dtos">get_available_cards_as_dtos()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmKVK-module.html">Gnumed.business.gmKVK</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#getfilefindData">getfilefindData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html#getToolbar_ReferralsImage">getToolbar_ReferralsImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html">Gnumed.wxpython.images_gnuMedGP_Toolbar</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmKVK-module.html#get_available_egks_as_dtos">get_available_egks_as_dtos()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmKVK-module.html">Gnumed.business.gmKVK</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html#getfilefindData">getfilefindData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html">Gnumed.wxpython.images_for_gnumed_browser16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getToolbar_ReferralsImage">getToolbar_ReferralsImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmKVK-module.html#get_available_kvks_as_dtos">get_available_kvks_as_dtos()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmKVK-module.html">Gnumed.business.gmKVK</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#getfilefindImage">getfilefindImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html#getToolbar_RequestsBitmap">getToolbar_RequestsBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html">Gnumed.wxpython.images_gnuMedGP_Toolbar</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmAU_VaccV01.cAU_VaccV01Panel-class.html#get_batchno_for_vacc">get_batchno_for_vacc()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmAU_VaccV01.cAU_VaccV01Panel-class.html">cAU_VaccV01Panel</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html#getfilefindImage">getfilefindImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html">Gnumed.wxpython.images_for_gnumed_browser16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getToolbar_RequestsBitmap">getToolbar_RequestsBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmBilling-module.html#get_bill_items">get_bill_items()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmBilling-module.html">Gnumed.business.gmBilling</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#getfileopenBitmap">getfileopenBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html#getToolbar_RequestsData">getToolbar_RequestsData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html">Gnumed.wxpython.images_gnuMedGP_Toolbar</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmBilling-module.html#get_bill_receiver">get_bill_receiver()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmBilling-module.html">Gnumed.business.gmBilling</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html#getfileopenBitmap">getfileopenBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html">Gnumed.wxpython.images_for_gnumed_browser16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getToolbar_RequestsData">getToolbar_RequestsData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmBilling-module.html#get_billables">get_billables()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmBilling-module.html">Gnumed.business.gmBilling</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#getfileopenData">getfileopenData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html#getToolbar_RequestsImage">getToolbar_RequestsImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html">Gnumed.wxpython.images_gnuMedGP_Toolbar</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmBilling-module.html#get_bills">get_bills()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmBilling-module.html">Gnumed.business.gmBilling</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html#getfileopenData">getfileopenData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html">Gnumed.wxpython.images_for_gnumed_browser16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getToolbar_RequestsImage">getToolbar_RequestsImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmClinicalRecord.cClinicalRecord-class.html#get_bmi">get_bmi()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmClinicalRecord.cClinicalRecord-class.html">cClinicalRecord</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#getfileopenImage">getfileopenImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html#getToolbar_SaveBitmap">getToolbar_SaveBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html">Gnumed.wxpython.images_gnuMedGP_Toolbar</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmMedication-module.html#get_branded_drugs">get_branded_drugs()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmMedication-module.html">Gnumed.business.gmMedication</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html#getfileopenImage">getfileopenImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html">Gnumed.wxpython.images_for_gnumed_browser16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getToolbar_SaveBitmap">getToolbar_SaveBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmKVK.cDTO_KVK-class.html#get_candidate_identities">get_candidate_identities()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmKVK.cDTO_KVK-class.html">cDTO_KVK</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html#getfind_globalBitmap">getfind_globalBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html">Gnumed.wxpython.images_contacts_toolbar16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html#getToolbar_SaveData">getToolbar_SaveData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html">Gnumed.wxpython.images_gnuMedGP_Toolbar</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmKVK.cDTO_eGK-class.html#get_candidate_identities">get_candidate_identities()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmKVK.cDTO_eGK-class.html">cDTO_eGK</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getfind_globalBitmap">getfind_globalBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getToolbar_SaveData">getToolbar_SaveData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmPerson.cDTO_person-class.html#get_candidate_identities">get_candidate_identities()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmPerson.cDTO_person-class.html">cDTO_person</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html#getfind_globalData">getfind_globalData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html">Gnumed.wxpython.images_contacts_toolbar16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html#getToolbar_SaveImage">getToolbar_SaveImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html">Gnumed.wxpython.images_gnuMedGP_Toolbar</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmMeasurementWidgets.cMeasurementsGrid-class.html#get_cell_tooltip">get_cell_tooltip()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmMeasurementWidgets.cMeasurementsGrid-class.html">cMeasurementsGrid</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getfind_globalData">getfind_globalData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getToolbar_SaveImage">getToolbar_SaveImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmPG2-module.html#get_child_tables">get_child_tables()</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmPG2-module.html">Gnumed.pycommon.gmPG2</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html#getfind_globalImage">getfind_globalImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html">Gnumed.wxpython.images_contacts_toolbar16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html#getToolbar_ScriptBitmap">getToolbar_ScriptBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html">Gnumed.wxpython.images_gnuMedGP_Toolbar</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmListWidgets-module.html#get_choices_from_list">get_choices_from_list()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmListWidgets-module.html">Gnumed.wxpython.gmListWidgets</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getfind_globalImage">getfind_globalImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getToolbar_ScriptBitmap">getToolbar_ScriptBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmClinicalRecord.cClinicalRecord-class.html#get_clin_narrative">get_clin_narrative()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmClinicalRecord.cClinicalRecord-class.html">cClinicalRecord</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html#getfind_specificBitmap">getfind_specificBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html">Gnumed.wxpython.images_contacts_toolbar16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html#getToolbar_ScriptData">getToolbar_ScriptData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html">Gnumed.wxpython.images_gnuMedGP_Toolbar</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmCoding-module.html#get_coded_terms">get_coded_terms()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmCoding-module.html">Gnumed.business.gmCoding</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getfind_specificBitmap">getfind_specificBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getToolbar_ScriptData">getToolbar_ScriptData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmPG2-module.html#get_col_defs">get_col_defs()</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmPG2-module.html">Gnumed.pycommon.gmPG2</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html#getfind_specificData">getfind_specificData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html">Gnumed.wxpython.images_contacts_toolbar16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html#getToolbar_ScriptImage">getToolbar_ScriptImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html">Gnumed.wxpython.images_gnuMedGP_Toolbar</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmPG-module.html#get_col_indices">get_col_indices()</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmPG-module.html">Gnumed.pycommon.gmPG</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getfind_specificData">getfind_specificData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getToolbar_ScriptImage">getToolbar_ScriptImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmPG2-module.html#get_col_indices">get_col_indices()</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmPG2-module.html">Gnumed.pycommon.gmPG2</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html#getfind_specificImage">getfind_specificImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html">Gnumed.wxpython.images_contacts_toolbar16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html#getToolbar_SingleManBitmap">getToolbar_SingleManBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html">Gnumed.wxpython.images_gnuMedGP_Toolbar</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmPG2-module.html#get_col_names">get_col_names()</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmPG2-module.html">Gnumed.pycommon.gmPG2</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getfind_specificImage">getfind_specificImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getToolbar_SingleManBitmap">getToolbar_SingleManBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmListWidgets.cReportListCtrl-class.html#get_column_labels">get_column_labels()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmListWidgets.cReportListCtrl-class.html">cReportListCtrl</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#getfindBitmap">getfindBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html#getToolbar_SingleManData">getToolbar_SingleManData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html">Gnumed.wxpython.images_gnuMedGP_Toolbar</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmDemographicRecord-module.html#get_comm_channel_types">get_comm_channel_types()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmDemographicRecord-module.html">Gnumed.business.gmDemographicRecord</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html#getfindBitmap">getfindBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html">Gnumed.wxpython.images_for_gnumed_browser16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getToolbar_SingleManData">getToolbar_SingleManData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmOrganization.cOrgUnit-class.html#get_comm_channels">get_comm_channels()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmOrganization.cOrgUnit-class.html">cOrgUnit</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#getfindData">getfindData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html#getToolbar_SingleManImage">getToolbar_SingleManImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html">Gnumed.wxpython.images_gnuMedGP_Toolbar</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmPerson.cIdentity-class.html#get_comm_channels">get_comm_channels()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmPerson.cIdentity-class.html">cIdentity</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html#getfindData">getfindData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html">Gnumed.wxpython.images_for_gnumed_browser16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getToolbar_SingleManImage">getToolbar_SingleManImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmOrganization-module.html#get_comm_channels_data_for_org_ids">get_comm_channels_data_for_org_ids()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmOrganization-module.html">Gnumed.business.gmOrganization</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#getfindImage">getfindImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html#getToolbar_SnapshotBitmap">getToolbar_SnapshotBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html">Gnumed.wxpython.images_gnuMedGP_Toolbar</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmPG2-module.html#get_connection">get_connection()</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmPG2-module.html">Gnumed.pycommon.gmPG2</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html#getfindImage">getfindImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html">Gnumed.wxpython.images_for_gnumed_browser16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getToolbar_SnapshotBitmap">getToolbar_SnapshotBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmPG.ConnectionPool-class.html#get_connection_for_user">get_connection_for_user()</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmPG.ConnectionPool-class.html">ConnectionPool</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images-module.html#getFolder1Bitmap">getFolder1Bitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images-module.html">Gnumed.wxpython.images</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html#getToolbar_SnapshotData">getToolbar_SnapshotData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html">Gnumed.wxpython.images_gnuMedGP_Toolbar</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.exporters.gmPatientExporter.cEmrExport-class.html#get_constraints">get_constraints()</a><br />
<span class="index-where">(in <a href="Gnumed.exporters.gmPatientExporter.cEmrExport-class.html">cEmrExport</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images-module.html#getFolder1Data">getFolder1Data()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images-module.html">Gnumed.wxpython.images</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getToolbar_SnapshotData">getToolbar_SnapshotData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmMedication-module.html#get_consumable_substances">get_consumable_substances()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmMedication-module.html">Gnumed.business.gmMedication</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images-module.html#getFolder1Image">getFolder1Image()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images-module.html">Gnumed.wxpython.images</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html#getToolbar_SnapshotImage">getToolbar_SnapshotImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html">Gnumed.wxpython.images_gnuMedGP_Toolbar</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmDocuments.cDocumentPart-class.html#get_containing_document">get_containing_document()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmDocuments.cDocumentPart-class.html">cDocumentPart</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images-module.html#getFolder2Bitmap">getFolder2Bitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images-module.html">Gnumed.wxpython.images</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getToolbar_SnapshotImage">getToolbar_SnapshotImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmMultiSash.cMultiSashLeaf-class.html#get_content">get_content()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmMultiSash.cMultiSashLeaf-class.html">cMultiSashLeaf</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images-module.html#getFolder2Data">getFolder2Data()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images-module.html">Gnumed.wxpython.images</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html#getToolbar_VerticalSeparatorBitmap">getToolbar_VerticalSeparatorBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html">Gnumed.wxpython.images_gnuMedGP_Toolbar</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmDemographicRecord-module.html#get_countries">get_countries()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmDemographicRecord-module.html">Gnumed.business.gmDemographicRecord</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images-module.html#getFolder2Image">getFolder2Image()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images-module.html">Gnumed.wxpython.images</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getToolbar_VerticalSeparatorBitmap">getToolbar_VerticalSeparatorBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmDemographicRecord-module.html#get_country_for_region">get_country_for_region()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmDemographicRecord-module.html">Gnumed.business.gmDemographicRecord</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images-module.html#getFolder3Bitmap">getFolder3Bitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images-module.html">Gnumed.wxpython.images</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html#getToolbar_VerticalSeparatorData">getToolbar_VerticalSeparatorData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html">Gnumed.wxpython.images_gnuMedGP_Toolbar</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmNarrativeWidgets.cSoapNoteInputNotebook-class.html#get_current_problem">get_current_problem()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmNarrativeWidgets.cSoapNoteInputNotebook-class.html">cSoapNoteInputNotebook</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images-module.html#getFolder3Data">getFolder3Data()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images-module.html">Gnumed.wxpython.images</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getToolbar_VerticalSeparatorData">getToolbar_VerticalSeparatorData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmClinicalRecord.cClinicalRecord-class.html#get_current_substance_intake">get_current_substance_intake()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmClinicalRecord.cClinicalRecord-class.html">cClinicalRecord</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images-module.html#getFolder3Image">getFolder3Image()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images-module.html">Gnumed.wxpython.images</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html#getToolbar_VerticalSeparatorImage">getToolbar_VerticalSeparatorImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html">Gnumed.wxpython.images_gnuMedGP_Toolbar</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmPG2-module.html#get_current_user">get_current_user()</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmPG2-module.html">Gnumed.pycommon.gmPG2</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#getfolderBitmap">getfolderBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getToolbar_VerticalSeparatorImage">getToolbar_VerticalSeparatorImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmPG2-module.html#get_current_user_language">get_current_user_language()</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmPG2-module.html">Gnumed.pycommon.gmPG2</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin1-module.html#getfolderBitmap">getfolderBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin1-module.html">Gnumed.wxpython.images_Archive_plugin1</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html#getToolbar_WebBitmap">getToolbar_WebBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html">Gnumed.wxpython.images_gnuMedGP_Toolbar</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmMedication.cDrugDataSourceInterface-class.html#get_data_source_version">get_data_source_version()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmMedication.cDrugDataSourceInterface-class.html">cDrugDataSourceInterface</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#getfolderData">getfolderData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getToolbar_WebBitmap">getToolbar_WebBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmMedication.cFreeDiamsInterface-class.html#get_data_source_version">get_data_source_version()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmMedication.cFreeDiamsInterface-class.html">cFreeDiamsInterface</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin1-module.html#getfolderData">getfolderData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin1-module.html">Gnumed.wxpython.images_Archive_plugin1</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html#getToolbar_WebData">getToolbar_WebData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html">Gnumed.wxpython.images_gnuMedGP_Toolbar</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmMedication.cGelbeListeWindowsInterface-class.html#get_data_source_version">get_data_source_version()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmMedication.cGelbeListeWindowsInterface-class.html">cGelbeListeWindowsInterface</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#getfolderImage">getfolderImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getToolbar_WebData">getToolbar_WebData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmCoding-module.html#get_data_sources">get_data_sources()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmCoding-module.html">Gnumed.business.gmCoding</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin1-module.html#getfolderImage">getfolderImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin1-module.html">Gnumed.wxpython.images_Archive_plugin1</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html#getToolbar_WebImage">getToolbar_WebImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html">Gnumed.wxpython.images_gnuMedGP_Toolbar</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmPG2-module.html#get_database_translations">get_database_translations()</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmPG2-module.html">Gnumed.pycommon.gmPG2</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin1-module.html#getfoldersearchBitmap">getfoldersearchBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin1-module.html">Gnumed.wxpython.images_Archive_plugin1</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getToolbar_WebImage">getToolbar_WebImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmClinicalRecord.cClinicalRecord-class.html#get_dates_for_results">get_dates_for_results()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmClinicalRecord.cClinicalRecord-class.html">cClinicalRecord</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin1-module.html#getfoldersearchData">getfoldersearchData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin1-module.html">Gnumed.wxpython.images_Archive_plugin1</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.patient.gmGP_AnteNatal_3.CustomDataTable-class.html#GetTypeName">GetTypeName()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.patient.gmGP_AnteNatal_3.CustomDataTable-class.html">CustomDataTable</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmAuthWidgets-module.html#get_dbowner_connection">get_dbowner_connection()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmAuthWidgets-module.html">Gnumed.wxpython.gmAuthWidgets</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin1-module.html#getfoldersearchImage">getfoldersearchImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin1-module.html">Gnumed.wxpython.images_Archive_plugin1</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.business.gmDemographicRecord-module.html#getUrb">getUrb()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmDemographicRecord-module.html">Gnumed.business.gmDemographicRecord</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmPG2-module.html#get_default_dsn">get_default_dsn()</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmPG2-module.html">Gnumed.pycommon.gmPG2</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmConfigCommon.ConfigDataFile-class.html#GetFullPath">GetFullPath()</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmConfigCommon.ConfigDataFile-class.html">ConfigDataFile</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmLoginInfo.LoginInfo-class.html#GetUser">GetUser()</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmLoginInfo.LoginInfo-class.html">LoginInfo</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmPG2-module.html#get_default_login">get_default_login()</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmPG2-module.html">Gnumed.pycommon.gmPG2</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmConfigCommon.ConfigSourceFile-class.html#GetFullPath">GetFullPath()</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmConfigCommon.ConfigSourceFile-class.html">ConfigSourceFile</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmGP_SocialHistory.SocialHistory-class.html#GetValue">GetValue()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmGP_SocialHistory.SocialHistory-class.html">SocialHistory</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmPerson.cIdentity-class.html#get_description">get_description()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmPerson.cIdentity-class.html">cIdentity</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html#getgeneralpracticesBitmap">getgeneralpracticesBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html">Gnumed.wxpython.images_contacts_toolbar16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmResizingWidgets.cResizingWindow-class.html#GetValue">GetValue()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmResizingWidgets.cResizingWindow-class.html">cResizingWindow</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmPerson.cIdentity-class.html#get_description_gender">get_description_gender()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmPerson.cIdentity-class.html">cIdentity</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getgeneralpracticesBitmap">getgeneralpracticesBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.patient.gmGP_AnteNatal_3.CustomDataTable-class.html#GetValue">GetValue()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.patient.gmGP_AnteNatal_3.CustomDataTable-class.html">CustomDataTable</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmDocuments.cDocument-class.html#get_descriptions">get_descriptions()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmDocuments.cDocument-class.html">cDocument</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html#getgeneralpracticesData">getgeneralpracticesData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html">Gnumed.wxpython.images_contacts_toolbar16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmFormPrinter.gmCalibrationDialog-class.html#GetValues">GetValues()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmFormPrinter.gmCalibrationDialog-class.html">gmCalibrationDialog</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmDocumentWidgets.cScanIdxDocsPnl-class.html#get_device_to_use">get_device_to_use()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmDocumentWidgets.cScanIdxDocsPnl-class.html">cScanIdxDocsPnl</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getgeneralpracticesData">getgeneralpracticesData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#getvertical_separator_thinBitmap">getvertical_separator_thinBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmScanBackend-module.html#get_devices">get_devices()</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmScanBackend-module.html">Gnumed.pycommon.gmScanBackend</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html#getgeneralpracticesImage">getgeneralpracticesImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html">Gnumed.wxpython.images_contacts_toolbar16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html#getvertical_separator_thinBitmap">getvertical_separator_thinBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html">Gnumed.wxpython.images_contacts_toolbar16_16</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmEMRStructItems.cProblem-class.html#get_diagnostic_certainty_description">get_diagnostic_certainty_description()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmEMRStructItems.cProblem-class.html">cProblem</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getgeneralpracticesImage">getgeneralpracticesImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getvertical_separator_thinBitmap">getvertical_separator_thinBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmPerson.cIdentity-class.html#get_dirname">get_dirname()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmPerson.cIdentity-class.html">cIdentity</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#getgohomeBitmap">getgohomeBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#getvertical_separator_thinData">getvertical_separator_thinData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmMultiSash.cMultiSash-class.html#get_displayed_leafs">get_displayed_leafs()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmMultiSash.cMultiSash-class.html">cMultiSash</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html#getgohomeBitmap">getgohomeBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html">Gnumed.wxpython.images_for_gnumed_browser16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html#getvertical_separator_thinData">getvertical_separator_thinData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html">Gnumed.wxpython.images_contacts_toolbar16_16</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmDocuments.cDocumentFolder-class.html#get_doc_list">get_doc_list()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmDocuments.cDocumentFolder-class.html">cDocumentFolder</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#getgohomeData">getgohomeData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getvertical_separator_thinData">getvertical_separator_thinData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.CherryPy.gmGuiWeb.gmApp-class.html#get_doc_types">get_doc_types()</a><br />
<span class="index-where">(in <a href="Gnumed.CherryPy.gmGuiWeb.gmApp-class.html">gmApp</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html#getgohomeData">getgohomeData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html">Gnumed.wxpython.images_for_gnumed_browser16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#getvertical_separator_thinImage">getvertical_separator_thinImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.proxiedpyjamas.gmWebGuiServer.HTTPServer-class.html#get_doc_types">get_doc_types()</a><br />
<span class="index-where">(in <a href="Gnumed.proxiedpyjamas.gmWebGuiServer.HTTPServer-class.html">HTTPServer</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#getgohomeImage">getgohomeImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html#getvertical_separator_thinImage">getvertical_separator_thinImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html">Gnumed.wxpython.images_contacts_toolbar16_16</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmPerson.cPatient-class.html#get_document_folder">get_document_folder()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmPerson.cPatient-class.html">cPatient</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html#getgohomeImage">getgohomeImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html">Gnumed.wxpython.images_for_gnumed_browser16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getvertical_separator_thinImage">getvertical_separator_thinImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmDocuments-module.html#get_document_type_pk">get_document_type_pk()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmDocuments-module.html">Gnumed.business.gmDocuments</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#getgotoBitmap">getgotoBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#getvertical_separatorBitmap">getvertical_separatorBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmDocuments-module.html#get_document_types">get_document_types()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmDocuments-module.html">Gnumed.business.gmDocuments</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html#getgotoBitmap">getgotoBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html">Gnumed.wxpython.images_for_gnumed_browser16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html#getvertical_separatorBitmap">getvertical_separatorBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html">Gnumed.wxpython.images_contacts_toolbar16_16</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmDocuments.cDocumentFolder-class.html#get_documents">get_documents()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmDocuments.cDocumentFolder-class.html">cDocumentFolder</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#getgotoData">getgotoData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getvertical_separatorBitmap">getvertical_separatorBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.proxiedpyjamas.gmWebGuiServer.HTTPServer-class.html#get_documents">get_documents()</a><br />
<span class="index-where">(in <a href="Gnumed.proxiedpyjamas.gmWebGuiServer.HTTPServer-class.html">HTTPServer</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html#getgotoData">getgotoData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html">Gnumed.wxpython.images_for_gnumed_browser16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#getvertical_separatorData">getvertical_separatorData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmMedication-module.html#get_drug_by_brand">get_drug_by_brand()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmMedication-module.html">Gnumed.business.gmMedication</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#getgotoImage">getgotoImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html#getvertical_separatorData">getvertical_separatorData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html">Gnumed.wxpython.images_contacts_toolbar16_16</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmMedication-module.html#get_drug_components">get_drug_components()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmMedication-module.html">Gnumed.business.gmMedication</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html#getgotoImage">getgotoImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html">Gnumed.wxpython.images_for_gnumed_browser16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getvertical_separatorData">getvertical_separatorData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmMedicationWidgets-module.html#get_drug_database">get_drug_database()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmMedicationWidgets-module.html">Gnumed.wxpython.gmMedicationWidgets</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images-module.html#getGridBGBitmap">getGridBGBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images-module.html">Gnumed.wxpython.images</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#getvertical_separatorImage">getvertical_separatorImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmProviderInbox-module.html#get_due_messages">get_due_messages()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmProviderInbox-module.html">Gnumed.business.gmProviderInbox</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images-module.html#getGridBGData">getGridBGData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images-module.html">Gnumed.wxpython.images</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html#getvertical_separatorImage">getvertical_separatorImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html">Gnumed.wxpython.images_contacts_toolbar16_16</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmEMRStructItems-module.html#get_dummy_health_issue">get_dummy_health_issue()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmEMRStructItems-module.html">Gnumed.business.gmEMRStructItems</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images-module.html#getGridBGImage">getGridBGImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images-module.html">Gnumed.wxpython.images</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getvertical_separatorImage">getvertical_separatorImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmProviderInbox-module.html#get_dynamic_hints">get_dynamic_hints()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmProviderInbox-module.html">Gnumed.business.gmProviderInbox</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#gethelpBitmap">gethelpBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#getviewmagBitmap">getviewmagBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmSOAPWidgets.cResizingSoapPanel-class.html#get_editor">get_editor()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmSOAPWidgets.cResizingSoapPanel-class.html">cResizingSoapPanel</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html#gethelpBitmap">gethelpBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html">Gnumed.wxpython.images_contacts_toolbar16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html#getviewmagBitmap">getviewmagBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html">Gnumed.wxpython.images_for_gnumed_browser16_16</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmMimeLib-module.html#get_editor_cmd">get_editor_cmd()</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmMimeLib-module.html">Gnumed.pycommon.gmMimeLib</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html#gethelpBitmap">gethelpBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html">Gnumed.wxpython.images_for_gnumed_browser16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#getviewmagData">getviewmagData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmPerson.cPatient-class.html#get_emr">get_emr()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmPerson.cPatient-class.html">cPatient</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#gethelpBitmap">gethelpBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html#getviewmagData">getviewmagData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html">Gnumed.wxpython.images_for_gnumed_browser16_16</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmI18N-module.html#get_encoding">get_encoding()</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmI18N-module.html">Gnumed.pycommon.gmI18N</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#gethelpData">gethelpData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#getviewmagImage">getviewmagImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.exporters.gmPatientExporter.cEmrExport-class.html#get_encounter_info">get_encounter_info()</a><br />
<span class="index-where">(in <a href="Gnumed.exporters.gmPatientExporter.cEmrExport-class.html">cEmrExport</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html#gethelpData">gethelpData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html">Gnumed.wxpython.images_contacts_toolbar16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html#getviewmagImage">getviewmagImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html">Gnumed.wxpython.images_for_gnumed_browser16_16</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmClinicalRecord.cClinicalRecord-class.html#get_encounter_stats_by_type">get_encounter_stats_by_type()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmClinicalRecord.cClinicalRecord-class.html">cClinicalRecord</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html#gethelpData">gethelpData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html">Gnumed.wxpython.images_for_gnumed_browser16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#getviewsourceBitmap">getviewsourceBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmEMRStructItems-module.html#get_encounter_type">get_encounter_type()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmEMRStructItems-module.html">Gnumed.business.gmEMRStructItems</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#gethelpData">gethelpData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html#getviewsourceBitmap">getviewsourceBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html">Gnumed.wxpython.images_for_gnumed_browser16_16</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmEMRStructItems-module.html#get_encounter_types">get_encounter_types()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmEMRStructItems-module.html">Gnumed.business.gmEMRStructItems</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#gethelpImage">gethelpImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#getviewsourceData">getviewsourceData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmClinicalRecord.cClinicalRecord-class.html#get_encounters">get_encounters()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmClinicalRecord.cClinicalRecord-class.html">cClinicalRecord</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html#gethelpImage">gethelpImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html">Gnumed.wxpython.images_contacts_toolbar16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html#getviewsourceData">getviewsourceData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html">Gnumed.wxpython.images_for_gnumed_browser16_16</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.exporters.gmPatientExporter.cEmrExport-class.html#get_episode_summary">get_episode_summary()</a><br />
<span class="index-where">(in <a href="Gnumed.exporters.gmPatientExporter.cEmrExport-class.html">cEmrExport</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html#gethelpImage">gethelpImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html">Gnumed.wxpython.images_for_gnumed_browser16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#getviewsourceImage">getviewsourceImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmClinicalRecord.cClinicalRecord-class.html#get_episodes">get_episodes()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmClinicalRecord.cClinicalRecord-class.html">cClinicalRecord</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#gethelpImage">gethelpImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html#getviewsourceImage">getviewsourceImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html">Gnumed.wxpython.images_for_gnumed_browser16_16</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmEMRStructItems.cEncounter-class.html#get_episodes">get_episodes()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmEMRStructItems.cEncounter-class.html">cEncounter</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#gethistoryBitmap">gethistoryBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmPlugin_Patient.BasePlugin-class.html#GetWidget">GetWidget()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmPlugin_Patient.BasePlugin-class.html">BasePlugin</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmEMRStructItems.cHealthIssue-class.html#get_episodes">get_episodes()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmEMRStructItems.cHealthIssue-class.html">cHealthIssue</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html#gethistoryBitmap">gethistoryBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html">Gnumed.wxpython.images_for_gnumed_browser16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmAU_VaccV01Plugin.gmAU_VaccV01Plugin-class.html#GetWidget">GetWidget()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gui.gmAU_VaccV01Plugin.gmAU_VaccV01Plugin-class.html">gmAU_VaccV01Plugin</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmClinicalRecord.cClinicalRecord-class.html#get_episodes_by_encounter">get_episodes_by_encounter()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmClinicalRecord.cClinicalRecord-class.html">cClinicalRecord</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#gethistoryData">gethistoryData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmAllergiesPlugin.gmAllergiesPlugin-class.html#GetWidget">GetWidget()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gui.gmAllergiesPlugin.gmAllergiesPlugin-class.html">gmAllergiesPlugin</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmDocuments-module.html#get_ext_ref">get_ext_ref()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmDocuments-module.html">Gnumed.business.gmDocuments</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html#gethistoryData">gethistoryData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html">Gnumed.wxpython.images_for_gnumed_browser16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmBillingPlugin.gmBillingPlugin-class.html#GetWidget">GetWidget()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gui.gmBillingPlugin.gmBillingPlugin-class.html">gmBillingPlugin</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmPerson.cIdentity-class.html#get_external_ids">get_external_ids()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmPerson.cIdentity-class.html">cIdentity</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#gethistoryImage">gethistoryImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmCardiacDevicePlugin.gmCardiacDevicePlugin-class.html#GetWidget">GetWidget()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gui.gmCardiacDevicePlugin.gmCardiacDevicePlugin-class.html">gmCardiacDevicePlugin</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmClinicalRecord.cClinicalRecord-class.html#get_family_history">get_family_history()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmClinicalRecord.cClinicalRecord-class.html">cClinicalRecord</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html#gethistoryImage">gethistoryImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html">Gnumed.wxpython.images_for_gnumed_browser16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmConfigRegistry.gmConfigRegistry-class.html#GetWidget">GetWidget()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gui.gmConfigRegistry.gmConfigRegistry-class.html">gmConfigRegistry</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmFamilyHistory-module.html#get_family_history">get_family_history()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmFamilyHistory-module.html">Gnumed.business.gmFamilyHistory</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmLoginInfo.LoginInfo-class.html#GetHost">GetHost()</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmLoginInfo.LoginInfo-class.html">LoginInfo</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmContacts.gmContacts-class.html#GetWidget">GetWidget()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gui.gmContacts.gmContacts-class.html">gmContacts</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmBusinessDBObject.cBusinessDBObject-class.html#get_fields">get_fields()</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmBusinessDBObject.cBusinessDBObject-class.html">cBusinessDBObject</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmPlugin_Patient.BasePlugin-class.html#GetIcon">GetIcon()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmPlugin_Patient.BasePlugin-class.html">BasePlugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmCurrentSubstancesPlugin.gmCurrentSubstancesPlugin-class.html#GetWidget">GetWidget()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gui.gmCurrentSubstancesPlugin.gmCurrentSubstancesPlugin-class.html">gmCurrentSubstancesPlugin</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmClinicalRecord.cClinicalRecord-class.html#get_first_encounter">get_first_encounter()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmClinicalRecord.cClinicalRecord-class.html">cClinicalRecord</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmPlugin_Patient.BasePlugin-class.html#GetIconData">GetIconData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmPlugin_Patient.BasePlugin-class.html">BasePlugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmDataMiningPlugin.gmDataMiningPlugin-class.html#GetWidget">GetWidget()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gui.gmDataMiningPlugin.gmDataMiningPlugin-class.html">gmDataMiningPlugin</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmPG-module.html#get_fkey_defs">get_fkey_defs()</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmPG-module.html">Gnumed.pycommon.gmPG</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.patient.gmGP_Allergies.gmGP_Allergies-class.html#GetIconData">GetIconData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.patient.gmGP_Allergies.gmGP_Allergies-class.html">gmGP_Allergies</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmDrugDisplay.gmDrugDisplay-class.html#GetWidget">GetWidget()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gui.gmDrugDisplay.gmDrugDisplay-class.html">gmDrugDisplay</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmMultiSash.cMultiSash-class.html#get_focussed_leaf">get_focussed_leaf()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmMultiSash.cMultiSash-class.html">cMultiSash</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.patient.gmGP_AnteNatal_3.gmGP_AnteNatal_3-class.html#GetIconData">GetIconData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.patient.gmGP_AnteNatal_3.gmGP_AnteNatal_3-class.html">gmGP_AnteNatal_3</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmEMRBrowserPlugin.gmEMRBrowserPlugin-class.html#GetWidget">GetWidget()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gui.gmEMRBrowserPlugin.gmEMRBrowserPlugin-class.html">gmEMRBrowserPlugin</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmPG2-module.html#get_foreign_keys2column">get_foreign_keys2column()</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmPG2-module.html">Gnumed.pycommon.gmPG2</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.patient.gmGP_ClinicalSummary.gmGP_ClinicalSummary-class.html#GetIconData">GetIconData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.patient.gmGP_ClinicalSummary.gmGP_ClinicalSummary-class.html">gmGP_ClinicalSummary</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmEMRJournalPlugin.gmEMRJournalPlugin-class.html#GetWidget">GetWidget()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gui.gmEMRJournalPlugin.gmEMRJournalPlugin-class.html">gmEMRJournalPlugin</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmForms-module.html#get_form">get_form()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmForms-module.html">Gnumed.business.gmForms</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.patient.gmGP_FamilyHistory.gmGP_FamilyHistory-class.html#GetIconData">GetIconData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.patient.gmGP_FamilyHistory.gmGP_FamilyHistory-class.html">gmGP_FamilyHistory</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmExamplePlugin.gmExamplePlugin-class.html#GetWidget">GetWidget()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gui.gmExamplePlugin.gmExamplePlugin-class.html">gmExamplePlugin</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmForms-module.html#get_form_template">get_form_template()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmForms-module.html">Gnumed.business.gmForms</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.patient.gmGP_Immunisation.gmGP_Immunisation-class.html#GetIconData">GetIconData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.patient.gmGP_Immunisation.gmGP_Immunisation-class.html">gmGP_Immunisation</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmKOrganizerPlugin.gmKOrganizerPlugin-class.html#GetWidget">GetWidget()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gui.gmKOrganizerPlugin.gmKOrganizerPlugin-class.html">gmKOrganizerPlugin</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmForms-module.html#get_form_templates">get_form_templates()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmForms-module.html">Gnumed.business.gmForms</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.patient.gmGP_Measurements.gmGP_Measurements-class.html#GetIconData">GetIconData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.patient.gmGP_Measurements.gmGP_Measurements-class.html">gmGP_Measurements</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmLabJournal.gmLabJournal-class.html#GetWidget">GetWidget()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gui.gmLabJournal.gmLabJournal-class.html">gmLabJournal</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmPerson.cIdentity-class.html#get_formatted_dob">get_formatted_dob()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmPerson.cIdentity-class.html">cIdentity</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.patient.gmGP_PastHistory.gmGP_PastHistory-class.html#GetIconData">GetIconData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.patient.gmGP_PastHistory.gmGP_PastHistory-class.html">gmGP_PastHistory</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmManual.gmManual-class.html#GetWidget">GetWidget()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gui.gmManual.gmManual-class.html">gmManual</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmPerson-module.html#get_gender_list">get_gender_list()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmPerson-module.html">Gnumed.business.gmPerson</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.patient.gmGP_Prescriptions.gmGP_Prescriptions-class.html#GetIconData">GetIconData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.patient.gmGP_Prescriptions.gmGP_Prescriptions-class.html">gmGP_Prescriptions</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmMeasurementsGridPlugin.gmMeasurementsGridPlugin-class.html#GetWidget">GetWidget()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gui.gmMeasurementsGridPlugin.gmMeasurementsGridPlugin-class.html">gmMeasurementsGridPlugin</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmCoding-module.html#get_generic_codes">get_generic_codes()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmCoding-module.html">Gnumed.business.gmCoding</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.patient.gmGP_Recalls.gmGP_Recalls-class.html#GetIconData">GetIconData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.patient.gmGP_Recalls.gmGP_Recalls-class.html">gmGP_Recalls</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmMultiSashedProgressNoteInputPlugin.gmMultiSashedProgressNoteInputPlugin-class.html#GetWidget">GetWidget()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gui.gmMultiSashedProgressNoteInputPlugin.gmMultiSashedProgressNoteInputPlugin-class.html">gmMultiSashedProgressNoteInputPlugin</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmCoding-module.html#get_generic_linked_codes">get_generic_linked_codes()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmCoding-module.html">Gnumed.business.gmCoding</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.patient.gmGP_Referrals.gmGP_Referrals-class.html#GetIconData">GetIconData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.patient.gmGP_Referrals.gmGP_Referrals-class.html">gmGP_Referrals</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmNotebookedPatientEditionPlugin.gmNotebookedPatientEditionPlugin-class.html#GetWidget">GetWidget()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gui.gmNotebookedPatientEditionPlugin.gmNotebookedPatientEditionPlugin-class.html">gmNotebookedPatientEditionPlugin</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmClinicalRecord.cClinicalRecord-class.html#get_health_issues">get_health_issues()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmClinicalRecord.cClinicalRecord-class.html">cClinicalRecord</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.patient.gmGP_Requests.gmGP_Requests-class.html#GetIconData">GetIconData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.patient.gmGP_Requests.gmGP_Requests-class.html">gmGP_Requests</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmNotebookedProgressNoteInputPlugin.gmNotebookedProgressNoteInputPlugin-class.html#GetWidget">GetWidget()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gui.gmNotebookedProgressNoteInputPlugin.gmNotebookedProgressNoteInputPlugin-class.html">gmNotebookedProgressNoteInputPlugin</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmProviderInbox-module.html#get_hints_for_patient">get_hints_for_patient()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmProviderInbox-module.html">Gnumed.business.gmProviderInbox</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.business.gmDemographicRecord.cOrg-class.html#getId">getId()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmDemographicRecord.cOrg-class.html">cOrg</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmPatientOverviewPlugin.gmPatientOverviewPlugin-class.html#GetWidget">GetWidget()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gui.gmPatientOverviewPlugin.gmPatientOverviewPlugin-class.html">gmPatientOverviewPlugin</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.exporters.gmPatientExporter.cEmrExport-class.html#get_historical_tree">get_historical_tree()</a><br />
<span class="index-where">(in <a href="Gnumed.exporters.gmPatientExporter.cEmrExport-class.html">cEmrExport</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmCfg.cCfgSQL-class.html#getID">getID()</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmCfg.cCfgSQL-class.html">cCfgSQL</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmProviderInboxPlugin.gmProviderInboxPlugin-class.html#GetWidget">GetWidget()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gui.gmProviderInboxPlugin.gmProviderInboxPlugin-class.html">gmProviderInboxPlugin</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmClinicalRecord.cClinicalRecord-class.html#get_hospital_stay_stats_by_hospital">get_hospital_stay_stats_by_hospital()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmClinicalRecord.cClinicalRecord-class.html">cClinicalRecord</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmCryptoText.gmCryptoText-class.html#GetIdentTag">GetIdentTag()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmCryptoText.gmCryptoText-class.html">gmCryptoText</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmRequest.gmRequest-class.html#GetWidget">GetWidget()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gui.gmRequest.gmRequest-class.html">gmRequest</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmClinicalRecord.cClinicalRecord-class.html#get_hospital_stays">get_hospital_stays()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmClinicalRecord.cClinicalRecord-class.html">cClinicalRecord</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.artwork.checkboxOff-module.html#getImage">getImage()</a><br />
<span class="index-where">(in <a href="Gnumed.artwork.checkboxOff-module.html">Gnumed.artwork.checkboxOff</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmScanIdxMedDocsPlugin.gmScanIdxMedDocsPlugin-class.html#GetWidget">GetWidget()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gui.gmScanIdxMedDocsPlugin.gmScanIdxMedDocsPlugin-class.html">gmScanIdxMedDocsPlugin</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmTools-module.html#get_icon">get_icon()</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmTools-module.html">Gnumed.pycommon.gmTools</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.artwork.checkboxOn-module.html#getImage">getImage()</a><br />
<span class="index-where">(in <a href="Gnumed.artwork.checkboxOn-module.html">Gnumed.artwork.checkboxOn</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmShowMedDocs.gmShowMedDocs-class.html#GetWidget">GetWidget()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gui.gmShowMedDocs.gmShowMedDocs-class.html">gmShowMedDocs</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmDemographicRecord.cPatientAddress-class.html#get_identities">get_identities()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmDemographicRecord.cPatientAddress-class.html">cPatientAddress</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnumedGP-module.html#getImmunisationsBitmap">getImmunisationsBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnumedGP-module.html">Gnumed.wxpython.images_gnumedGP</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmSimpleSoapPlugin.gmSimpleSoapPlugin-class.html#GetWidget">GetWidget()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gui.gmSimpleSoapPlugin.gmSimpleSoapPlugin-class.html">gmSimpleSoapPlugin</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmPersonSearch.cPatientSearcher_SQL-class.html#get_identities">get_identities()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmPersonSearch.cPatientSearcher_SQL-class.html">cPatientSearcher_SQL</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnumedGP-module.html#getImmunisationsData">getImmunisationsData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnumedGP-module.html">Gnumed.wxpython.images_gnumedGP</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmSoapPlugin.gmSoapPlugin-class.html#GetWidget">GetWidget()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gui.gmSoapPlugin.gmSoapPlugin-class.html">gmSoapPlugin</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmProviderInbox-module.html#get_inbox_messages">get_inbox_messages()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmProviderInbox-module.html">Gnumed.business.gmProviderInbox</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnumedGP-module.html#getImmunisationsImage">getImmunisationsImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnumedGP-module.html">Gnumed.wxpython.images_gnumedGP</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmVaccinationsPlugin.gmVaccinationsPlugin-class.html#GetWidget">GetWidget()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gui.gmVaccinationsPlugin.gmVaccinationsPlugin-class.html">gmVaccinationsPlugin</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmVaccination.cVaccine-class.html#get_indications">get_indications()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmVaccination.cVaccine-class.html">cVaccine</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images-module.html#getIncBitmap">getIncBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images-module.html">Gnumed.wxpython.images</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmWaitingListPlugin.gmWaitingListPlugin-class.html#GetWidget">GetWidget()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gui.gmWaitingListPlugin.gmWaitingListPlugin-class.html">gmWaitingListPlugin</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmVaccination-module.html#get_indications">get_indications()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmVaccination-module.html">Gnumed.business.gmVaccination</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images-module.html#getIncData">getIncData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images-module.html">Gnumed.wxpython.images</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmXdtViewer.gmXdtViewer-class.html#GetWidget">GetWidget()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gui.gmXdtViewer.gmXdtViewer-class.html">gmXdtViewer</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmVaccination-module.html#get_indications_from_vaccinations">get_indications_from_vaccinations()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmVaccination-module.html">Gnumed.business.gmVaccination</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images-module.html#getIncImage">getIncImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images-module.html">Gnumed.wxpython.images</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.patient.gmGP_Allergies.gmGP_Allergies-class.html#GetWidget">GetWidget()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.patient.gmGP_Allergies.gmGP_Allergies-class.html">gmGP_Allergies</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmPlugin-module.html#get_installed_plugins">get_installed_plugins()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmPlugin-module.html">Gnumed.wxpython.gmPlugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmLoginInfo.LoginInfo-class.html#GetInfo">GetInfo()</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmLoginInfo.LoginInfo-class.html">LoginInfo</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.patient.gmGP_AnteNatal_3.gmGP_AnteNatal_3-class.html#GetWidget">GetWidget()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.patient.gmGP_AnteNatal_3.gmGP_AnteNatal_3-class.html">gmGP_AnteNatal_3</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmBilling-module.html#get_invoice_id">get_invoice_id()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmBilling-module.html">Gnumed.business.gmBilling</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmLoginInfo.LoginInfo-class.html#GetInfoStr">GetInfoStr()</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmLoginInfo.LoginInfo-class.html">LoginInfo</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.patient.gmGP_ClinicalSummary.gmGP_ClinicalSummary-class.html#GetWidget">GetWidget()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.patient.gmGP_ClinicalSummary.gmGP_ClinicalSummary-class.html">gmGP_ClinicalSummary</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmBillingWidgets-module.html#get_invoice_template">get_invoice_template()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmBillingWidgets-module.html">Gnumed.wxpython.gmBillingWidgets</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmEditArea.gmEditArea-class.html#getInputFieldValues">getInputFieldValues()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmEditArea.gmEditArea-class.html">gmEditArea</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.patient.gmGP_FamilyHistory.gmGP_FamilyHistory-class.html#GetWidget">GetWidget()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.patient.gmGP_FamilyHistory.gmGP_FamilyHistory-class.html">gmGP_FamilyHistory</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmListWidgets.cReportListCtrl-class.html#get_item">get_item()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmListWidgets.cReportListCtrl-class.html">cReportListCtrl</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmContacts.cContactsPanel-class.html#getLastSelected">getLastSelected()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gui.gmContacts.cContactsPanel-class.html">cContactsPanel</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.patient.gmGP_Immunisation.gmGP_Immunisation-class.html#GetWidget">GetWidget()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.patient.gmGP_Immunisation.gmGP_Immunisation-class.html">gmGP_Immunisation</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmListWidgets.cReportListCtrl-class.html#get_item_data">get_item_data()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmListWidgets.cReportListCtrl-class.html">cReportListCtrl</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html#getlighteningBitmap">getlighteningBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html">Gnumed.wxpython.images_contacts_toolbar16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.patient.gmGP_Measurements.gmGP_Measurements-class.html#GetWidget">GetWidget()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.patient.gmGP_Measurements.gmGP_Measurements-class.html">gmGP_Measurements</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.exporters.gmPatientExporter.cEmrExport-class.html#get_item_output">get_item_output()</a><br />
<span class="index-where">(in <a href="Gnumed.exporters.gmPatientExporter.cEmrExport-class.html">cEmrExport</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getlighteningBitmap">getlighteningBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.patient.gmGP_PastHistory.gmGP_PastHistory-class.html#GetWidget">GetWidget()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.patient.gmGP_PastHistory.gmGP_PastHistory-class.html">gmGP_PastHistory</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.exporters.gmPatientExporter.cEmrExport-class.html#get_item_summary">get_item_summary()</a><br />
<span class="index-where">(in <a href="Gnumed.exporters.gmPatientExporter.cEmrExport-class.html">cEmrExport</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html#getlighteningData">getlighteningData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html">Gnumed.wxpython.images_contacts_toolbar16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.patient.gmGP_Prescriptions.gmGP_Prescriptions-class.html#GetWidget">GetWidget()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.patient.gmGP_Prescriptions.gmGP_Prescriptions-class.html">gmGP_Prescriptions</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmListWidgets.cReportListCtrl-class.html#get_items">get_items()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmListWidgets.cReportListCtrl-class.html">cReportListCtrl</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getlighteningData">getlighteningData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.patient.gmGP_Recalls.gmGP_Recalls-class.html#GetWidget">GetWidget()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.patient.gmGP_Recalls.gmGP_Recalls-class.html">gmGP_Recalls</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmPG2-module.html#get_keyword_expansion_candidates">get_keyword_expansion_candidates()</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmPG2-module.html">Gnumed.pycommon.gmPG2</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html#getlighteningImage">getlighteningImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html">Gnumed.wxpython.images_contacts_toolbar16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.patient.gmGP_Referrals.gmGP_Referrals-class.html#GetWidget">GetWidget()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.patient.gmGP_Referrals.gmGP_Referrals-class.html">gmGP_Referrals</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmClinicalRecord.cClinicalRecord-class.html#get_lab_request">get_lab_request()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmClinicalRecord.cClinicalRecord-class.html">cClinicalRecord</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getlighteningImage">getlighteningImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.patient.gmGP_Requests.gmGP_Requests-class.html#GetWidget">GetWidget()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.patient.gmGP_Requests.gmGP_Requests-class.html">gmGP_Requests</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.exporters.gmPatientExporter.cEmrExport-class.html#get_lab_result_output">get_lab_result_output()</a><br />
<span class="index-where">(in <a href="Gnumed.exporters.gmPatientExporter.cEmrExport-class.html">cEmrExport</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.CherryPy.gmGuiWeb-module.html#GetLoginInfo">GetLoginInfo()</a><br />
<span class="index-where">(in <a href="Gnumed.CherryPy.gmGuiWeb-module.html">Gnumed.CherryPy.gmGuiWeb</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#getwindow_newBitmap">getwindow_newBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.exporters.gmPatientExporter.cEmrExport-class.html#get_lab_result_summary">get_lab_result_summary()</a><br />
<span class="index-where">(in <a href="Gnumed.exporters.gmPatientExporter.cEmrExport-class.html">cEmrExport</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.proxiedpyjamas.gmWebGuiServer-module.html#GetLoginInfo">GetLoginInfo()</a><br />
<span class="index-where">(in <a href="Gnumed.proxiedpyjamas.gmWebGuiServer-module.html">Gnumed.proxiedpyjamas.gmWebGuiServer</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html#getwindow_newBitmap">getwindow_newBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html">Gnumed.wxpython.images_for_gnumed_browser16_16</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmClinicalRecord.cClinicalRecord-class.html#get_lab_results">get_lab_results()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmClinicalRecord.cClinicalRecord-class.html">cClinicalRecord</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmAuthWidgets.cLoginPanel-class.html#GetLoginInfo">GetLoginInfo()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmAuthWidgets.cLoginPanel-class.html">cLoginPanel</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#getwindow_newData">getwindow_newData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmClinicalRecord.cClinicalRecord-class.html#get_last_but_one_encounter">get_last_but_one_encounter()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmClinicalRecord.cClinicalRecord-class.html">cClinicalRecord</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmPG.ConnectionPool-class.html#GetLoginInfoFor">GetLoginInfoFor()</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmPG.ConnectionPool-class.html">ConnectionPool</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html#getwindow_newData">getwindow_newData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html">Gnumed.wxpython.images_for_gnumed_browser16_16</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmClinicalRecord.cClinicalRecord-class.html#get_last_encounter">get_last_encounter()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmClinicalRecord.cClinicalRecord-class.html">cClinicalRecord</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#getmail_genericBitmap">getmail_genericBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#getwindow_newImage">getwindow_newImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmPerson.cIdentity-class.html#get_last_encounter">get_last_encounter()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmPerson.cIdentity-class.html">cIdentity</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html#getmail_genericBitmap">getmail_genericBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html">Gnumed.wxpython.images_for_gnumed_browser16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html#getwindow_newImage">getwindow_newImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html">Gnumed.wxpython.images_for_gnumed_browser16_16</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmDocuments.cDocumentFolder-class.html#get_latest_freediams_prescription">get_latest_freediams_prescription()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmDocuments.cDocumentFolder-class.html">cDocumentFolder</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#getmail_genericData">getmail_genericData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.CherryPy.gmGuiHelpersWeb-module.html#gm_show_error">gm_show_error()</a><br />
<span class="index-where">(in <a href="Gnumed.CherryPy.gmGuiHelpersWeb-module.html">Gnumed.CherryPy.gmGuiHelpersWeb</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmClinicalRecord.cClinicalRecord-class.html#get_latest_hospital_stay">get_latest_hospital_stay()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmClinicalRecord.cClinicalRecord-class.html">cClinicalRecord</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html#getmail_genericData">getmail_genericData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html">Gnumed.wxpython.images_for_gnumed_browser16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmGuiHelpers-module.html#gm_show_error">gm_show_error()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmGuiHelpers-module.html">Gnumed.wxpython.gmGuiHelpers</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmDocuments.cDocumentFolder-class.html#get_latest_mugshot">get_latest_mugshot()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmDocuments.cDocumentFolder-class.html">cDocumentFolder</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#getmail_genericImage">getmail_genericImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.CherryPy.gmGuiHelpersWeb-module.html#gm_show_info">gm_show_info()</a><br />
<span class="index-where">(in <a href="Gnumed.CherryPy.gmGuiHelpersWeb-module.html">Gnumed.CherryPy.gmGuiHelpersWeb</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmEMRStructItems-module.html#get_latest_patient_hospital_stay">get_latest_patient_hospital_stay()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmEMRStructItems-module.html">Gnumed.business.gmEMRStructItems</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html#getmail_genericImage">getmail_genericImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html">Gnumed.wxpython.images_for_gnumed_browser16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmGuiHelpers-module.html#gm_show_info">gm_show_info()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmGuiHelpers-module.html">Gnumed.wxpython.gmGuiHelpers</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmClinicalRecord.cClinicalRecord-class.html#get_latest_performed_procedure">get_latest_performed_procedure()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmClinicalRecord.cClinicalRecord-class.html">cClinicalRecord</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#getmail_replyallBitmap">getmail_replyallBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.CherryPy.gmGuiHelpersWeb-module.html#gm_show_question">gm_show_question()</a><br />
<span class="index-where">(in <a href="Gnumed.CherryPy.gmGuiHelpersWeb-module.html">Gnumed.CherryPy.gmGuiHelpersWeb</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmEMRStructItems-module.html#get_latest_performed_procedure">get_latest_performed_procedure()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmEMRStructItems-module.html">Gnumed.business.gmEMRStructItems</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html#getmail_replyallBitmap">getmail_replyallBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html">Gnumed.wxpython.images_for_gnumed_browser16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmGuiHelpers-module.html#gm_show_question">gm_show_question()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmGuiHelpers-module.html">Gnumed.wxpython.gmGuiHelpers</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmEMRStructItems.cEncounter-class.html#get_latest_soap">get_latest_soap()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmEMRStructItems.cEncounter-class.html">cEncounter</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#getmail_replyallData">getmail_replyallData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.CherryPy.gmGuiHelpersWeb-module.html#gm_show_warning">gm_show_warning()</a><br />
<span class="index-where">(in <a href="Gnumed.CherryPy.gmGuiHelpersWeb-module.html">Gnumed.CherryPy.gmGuiHelpersWeb</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmClinicalRecord.cClinicalRecord-class.html#get_latest_vaccinations">get_latest_vaccinations()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmClinicalRecord.cClinicalRecord-class.html">cClinicalRecord</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html#getmail_replyallData">getmail_replyallData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html">Gnumed.wxpython.images_for_gnumed_browser16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmGuiHelpers-module.html#gm_show_warning">gm_show_warning()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmGuiHelpers-module.html">Gnumed.wxpython.gmGuiHelpers</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmMacro.cMacroPrimitives-class.html#get_loaded_plugins">get_loaded_plugins()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmMacro.cMacroPrimitives-class.html">cMacroPrimitives</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#getmail_replyallImage">getmail_replyallImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmAbout-module.html">gmAbout</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython-module.html">Gnumed.wxpython</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmEditArea.cEditArea2-class.html#get_long_error">get_long_error()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmEditArea.cEditArea2-class.html">cEditArea2</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html#getmail_replyallImage">getmail_replyallImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html">Gnumed.wxpython.images_for_gnumed_browser16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmAddressWidgets-module.html">gmAddressWidgets</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython-module.html">Gnumed.wxpython</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmMatchProvider.cMatchProvider-class.html#get_match_by_data">get_match_by_data()</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmMatchProvider.cMatchProvider-class.html">cMatchProvider</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#getmail_replyBitmap">getmail_replyBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmAllergiesPlugin-module.html">gmAllergiesPlugin</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gui-module.html">Gnumed.wxpython.gui</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmMatchProvider.cMatchProvider_SQL2-class.html#get_match_by_data">get_match_by_data()</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmMatchProvider.cMatchProvider_SQL2-class.html">cMatchProvider_SQL2</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html#getmail_replyBitmap">getmail_replyBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html">Gnumed.wxpython.images_for_gnumed_browser16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmAllergiesPlugin.gmAllergiesPlugin-class.html">gmAllergiesPlugin</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gui.gmAllergiesPlugin-module.html">Gnumed.wxpython.gui.gmAllergiesPlugin</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmVaccination-module.html#get_matching_vaccines_for_indications">get_matching_vaccines_for_indications()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmVaccination-module.html">Gnumed.business.gmVaccination</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#getmail_replyData">getmail_replyData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.business.gmAllergy-module.html">gmAllergy</a><br />
<span class="index-where">(in <a href="Gnumed.business-module.html">Gnumed.business</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmPathLab-module.html#get_measurement_types">get_measurement_types()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmPathLab-module.html">Gnumed.business.gmPathLab</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html#getmail_replyData">getmail_replyData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html">Gnumed.wxpython.images_for_gnumed_browser16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmAllergyWidgets-module.html">gmAllergyWidgets</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython-module.html">Gnumed.wxpython</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmPerson.cIdentity-class.html#get_medical_age">get_medical_age()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmPerson.cIdentity-class.html">cIdentity</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#getmail_replyImage">getmail_replyImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.CherryPy.gmGuiWeb.gmApp-class.html">gmApp</a><br />
<span class="index-where">(in <a href="Gnumed.CherryPy.gmGuiWeb-module.html">Gnumed.CherryPy.gmGuiWeb</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmDemographicRecord.cOrg-class.html#get_members">get_members()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmDemographicRecord.cOrg-class.html">cOrg</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html#getmail_replyImage">getmail_replyImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html">Gnumed.wxpython.images_for_gnumed_browser16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmGuiMain.gmApp-class.html">gmApp</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmGuiMain-module.html">Gnumed.wxpython.gmGuiMain</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmPathLab-module.html#get_meta_test_types">get_meta_test_types()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmPathLab-module.html">Gnumed.business.gmPathLab</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#getmail_sendBitmap">getmail_sendBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.business.gmArriba-module.html">gmArriba</a><br />
<span class="index-where">(in <a href="Gnumed.business-module.html">Gnumed.business</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmClinicalRecord.cClinicalRecord-class.html#get_missing_vaccinations">get_missing_vaccinations()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmClinicalRecord.cClinicalRecord-class.html">cClinicalRecord</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html#getmail_sendBitmap">getmail_sendBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html">Gnumed.wxpython.images_for_gnumed_browser16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.business.gmATC-module.html">gmATC</a><br />
<span class="index-where">(in <a href="Gnumed.business-module.html">Gnumed.business</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmVaccination-module.html#get_missing_vaccinations_ordered_min_due">get_missing_vaccinations_ordered_min_due()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmVaccination-module.html">Gnumed.business.gmVaccination</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#getmail_sendData">getmail_sendData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmAU_VaccV01-module.html">gmAU_VaccV01</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython-module.html">Gnumed.wxpython</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmClinicalRecord.cClinicalRecord-class.html#get_most_recent_episode">get_most_recent_episode()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmClinicalRecord.cClinicalRecord-class.html">cClinicalRecord</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html#getmail_sendData">getmail_sendData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html">Gnumed.wxpython.images_for_gnumed_browser16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmAU_VaccV01Plugin-module.html">gmAU_VaccV01Plugin</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gui-module.html">Gnumed.wxpython.gui</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmClinicalRecord.cClinicalRecord-class.html#get_most_recent_result">get_most_recent_result()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmClinicalRecord.cClinicalRecord-class.html">cClinicalRecord</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#getmail_sendImage">getmail_sendImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmAU_VaccV01Plugin.gmAU_VaccV01Plugin-class.html">gmAU_VaccV01Plugin</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gui.gmAU_VaccV01Plugin-module.html">Gnumed.wxpython.gui.gmAU_VaccV01Plugin</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmPathLab.cUnifiedTestType-class.html#get_most_recent_result">get_most_recent_result()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmPathLab.cUnifiedTestType-class.html">cUnifiedTestType</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html#getmail_sendImage">getmail_sendImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html">Gnumed.wxpython.images_for_gnumed_browser16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmAuthWidgets-module.html">gmAuthWidgets</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython-module.html">Gnumed.wxpython</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmDocuments.cDocumentFolder-class.html#get_mugshot_list">get_mugshot_list()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmDocuments.cDocumentFolder-class.html">cDocumentFolder</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.business.gmDemographicRecord-module.html#getMaritalStatusTypes">getMaritalStatusTypes()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmDemographicRecord-module.html">Gnumed.business.gmDemographicRecord</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmBackendListener-module.html">gmBackendListener</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon-module.html">Gnumed.pycommon</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmDateTime.cFuzzyTimestamp-class.html#get_mxdt">get_mxdt()</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmDateTime.cFuzzyTimestamp-class.html">cFuzzyTimestamp</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmMatchProvider.cMatchProvider-class.html#getMatches">getMatches()</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmMatchProvider.cMatchProvider-class.html">cMatchProvider</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmBackendListener.gmBackendListener-class.html">gmBackendListener</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmBackendListener-module.html">Gnumed.pycommon.gmBackendListener</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmPerson.cIdentity-class.html#get_names">get_names()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmPerson.cIdentity-class.html">cIdentity</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.business.gmMedication.cDrugComponentMatchProvider-class.html#getMatchesByPhrase">getMatchesByPhrase()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmMedication.cDrugComponentMatchProvider-class.html">cDrugComponentMatchProvider</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.business.gmBilling-module.html">gmBilling</a><br />
<span class="index-where">(in <a href="Gnumed.business-module.html">Gnumed.business</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmClinNarrative-module.html#get_narrative">get_narrative()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmClinNarrative-module.html">Gnumed.business.gmClinNarrative</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.business.gmMedication.cSubstanceMatchProvider-class.html#getMatchesByPhrase">getMatchesByPhrase()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmMedication.cSubstanceMatchProvider-class.html">cSubstanceMatchProvider</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmBillingPlugin-module.html">gmBillingPlugin</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gui-module.html">Gnumed.wxpython.gui</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmEMRStructItems.cEpisode-class.html#get_narrative">get_narrative()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmEMRStructItems.cEpisode-class.html">cEpisode</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmMatchProvider.cMatchProvider-class.html#getMatchesByPhrase">getMatchesByPhrase()</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmMatchProvider.cMatchProvider-class.html">cMatchProvider</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmBillingPlugin.gmBillingPlugin-class.html">gmBillingPlugin</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gui.gmBillingPlugin-module.html">Gnumed.wxpython.gui.gmBillingPlugin</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmPathLab-module.html#get_next_request_ID">get_next_request_ID()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmPathLab-module.html">Gnumed.business.gmPathLab</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmMatchProvider.cMatchProvider_FixedList-class.html#getMatchesByPhrase">getMatchesByPhrase()</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmMatchProvider.cMatchProvider_FixedList-class.html">cMatchProvider_FixedList</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmBillingWidgets-module.html">gmBillingWidgets</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython-module.html">Gnumed.wxpython</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmDemographicRecord-module.html#get_occupations">get_occupations()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmDemographicRecord-module.html">Gnumed.business.gmDemographicRecord</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmMatchProvider.cMatchProvider_Func-class.html#getMatchesByPhrase">getMatchesByPhrase()</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmMatchProvider.cMatchProvider_Func-class.html">cMatchProvider_Func</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmBMIWidgets-module.html">gmBMIWidgets</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython-module.html">Gnumed.wxpython</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmPerson.cIdentity-class.html#get_occupations">get_occupations()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmPerson.cIdentity-class.html">cIdentity</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmMatchProvider.cMatchProvider_SQL2-class.html#getMatchesByPhrase">getMatchesByPhrase()</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmMatchProvider.cMatchProvider_SQL2-class.html">cMatchProvider_SQL2</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmBorg-module.html">gmBorg</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon-module.html">Gnumed.pycommon</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmEMRStructItems.cHealthIssue-class.html#get_open_episode">get_open_episode()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmEMRStructItems.cHealthIssue-class.html">cHealthIssue</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmDateTimeInput.cDateMatchProvider-class.html#getMatchesByPhrase">getMatchesByPhrase()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmDateTimeInput.cDateMatchProvider-class.html">cDateMatchProvider</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmBusinessDBObject-module.html">gmBusinessDBObject</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon-module.html">Gnumed.pycommon</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmOrganization-module.html#get_org_data_for_org_ids">get_org_data_for_org_ids()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmOrganization-module.html">Gnumed.business.gmOrganization</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmDateTimeInput.cMatchProvider_FuzzyTimestamp-class.html#getMatchesByPhrase">getMatchesByPhrase()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmDateTimeInput.cMatchProvider_FuzzyTimestamp-class.html">cMatchProvider_FuzzyTimestamp</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.business.gmCA_MSVA-module.html">gmCA_MSVA</a><br />
<span class="index-where">(in <a href="Gnumed.business-module.html">Gnumed.business</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmOrganization-module.html#get_org_units">get_org_units()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmOrganization-module.html">Gnumed.business.gmOrganization</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.business.gmMedication.cDrugComponentMatchProvider-class.html#getMatchesBySubstr">getMatchesBySubstr()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmMedication.cDrugComponentMatchProvider-class.html">cDrugComponentMatchProvider</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmFormPrinter.gmCalibrationDialog-class.html">gmCalibrationDialog</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmFormPrinter-module.html">Gnumed.wxpython.gmFormPrinter</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmContacts.cContactsPanel-class.html#get_org_values">get_org_values()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gui.gmContacts.cContactsPanel-class.html">cContactsPanel</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.business.gmMedication.cSubstanceMatchProvider-class.html#getMatchesBySubstr">getMatchesBySubstr()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmMedication.cSubstanceMatchProvider-class.html">cSubstanceMatchProvider</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmCardiacDevicePlugin-module.html">gmCardiacDevicePlugin</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gui-module.html">Gnumed.wxpython.gui</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmOrganization-module.html#get_orgs">get_orgs()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmOrganization-module.html">Gnumed.business.gmOrganization</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmMatchProvider.cMatchProvider-class.html#getMatchesBySubstr">getMatchesBySubstr()</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmMatchProvider.cMatchProvider-class.html">cMatchProvider</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmCardiacDevicePlugin.gmCardiacDevicePlugin-class.html">gmCardiacDevicePlugin</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gui.gmCardiacDevicePlugin-module.html">Gnumed.wxpython.gui.gmCardiacDevicePlugin</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmXdtObjects-module.html#get_pat_files">get_pat_files()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmXdtObjects-module.html">Gnumed.business.gmXdtObjects</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmMatchProvider.cMatchProvider_FixedList-class.html#getMatchesBySubstr">getMatchesBySubstr()</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmMatchProvider.cMatchProvider_FixedList-class.html">cMatchProvider_FixedList</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmCfg-module.html">gmCfg</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon-module.html">Gnumed.pycommon</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmEMRStructItems.cEpisode-class.html#get_patient">get_patient()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmEMRStructItems.cEpisode-class.html">cEpisode</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmMatchProvider.cMatchProvider_Func-class.html#getMatchesBySubstr">getMatchesBySubstr()</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmMatchProvider.cMatchProvider_Func-class.html">cMatchProvider_Func</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmCfg2-module.html">gmCfg2</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon-module.html">Gnumed.pycommon</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmPathLab.cLabRequest-class.html#get_patient">get_patient()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmPathLab.cLabRequest-class.html">cLabRequest</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmMatchProvider.cMatchProvider_SQL2-class.html#getMatchesBySubstr">getMatchesBySubstr()</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmMatchProvider.cMatchProvider_SQL2-class.html">cMatchProvider_SQL2</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmCfg2.gmCfgData-class.html">gmCfgData</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmCfg2-module.html">Gnumed.pycommon.gmCfg2</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmPathLab.cLabResult-class.html#get_patient">get_patient()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmPathLab.cLabResult-class.html">cLabResult</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmDateTimeInput.cDateMatchProvider-class.html#getMatchesBySubstr">getMatchesBySubstr()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmDateTimeInput.cDateMatchProvider-class.html">cDateMatchProvider</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmCfgWidgets-module.html">gmCfgWidgets</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython-module.html">Gnumed.wxpython</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.exporters.gmPatientExporter.cEmrExport-class.html#get_patient">get_patient()</a><br />
<span class="index-where">(in <a href="Gnumed.exporters.gmPatientExporter.cEmrExport-class.html">cEmrExport</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmDateTimeInput.cMatchProvider_FuzzyTimestamp-class.html#getMatchesBySubstr">getMatchesBySubstr()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmDateTimeInput.cMatchProvider_FuzzyTimestamp-class.html">cMatchProvider_FuzzyTimestamp</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.business.gmClinicalRecord-module.html">gmClinicalRecord</a><br />
<span class="index-where">(in <a href="Gnumed.business-module.html">Gnumed.business</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmBusinessDBObject.cBusinessDBObject-class.html#get_patient">get_patient()</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmBusinessDBObject.cBusinessDBObject-class.html">cBusinessDBObject</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.business.gmMedication.cDrugComponentMatchProvider-class.html#getMatchesByWord">getMatchesByWord()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmMedication.cDrugComponentMatchProvider-class.html">cDrugComponentMatchProvider</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.business.gmClinNarrative-module.html">gmClinNarrative</a><br />
<span class="index-where">(in <a href="Gnumed.business-module.html">Gnumed.business</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmDemographicRecord-module.html#get_patient_address">get_patient_address()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmDemographicRecord-module.html">Gnumed.business.gmDemographicRecord</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.business.gmMedication.cSubstanceMatchProvider-class.html#getMatchesByWord">getMatchesByWord()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmMedication.cSubstanceMatchProvider-class.html">cSubstanceMatchProvider</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.business.gmCoding-module.html">gmCoding</a><br />
<span class="index-where">(in <a href="Gnumed.business-module.html">Gnumed.business</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmDemographicRecord-module.html#get_patient_address_by_type">get_patient_address_by_type()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmDemographicRecord-module.html">Gnumed.business.gmDemographicRecord</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmMatchProvider.cMatchProvider-class.html#getMatchesByWord">getMatchesByWord()</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmMatchProvider.cMatchProvider-class.html">cMatchProvider</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmCodingWidgets-module.html">gmCodingWidgets</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython-module.html">Gnumed.wxpython</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmEMRStructItems-module.html#get_patient_hospital_stays">get_patient_hospital_stays()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmEMRStructItems-module.html">Gnumed.business.gmEMRStructItems</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmMatchProvider.cMatchProvider_FixedList-class.html#getMatchesByWord">getMatchesByWord()</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmMatchProvider.cMatchProvider_FixedList-class.html">cMatchProvider_FixedList</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmConfigCommon-module.html">gmConfigCommon</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon-module.html">Gnumed.pycommon</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmClinicalRecord.cClinicalRecord-class.html#get_patient_ID">get_patient_ID()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmClinicalRecord.cClinicalRecord-class.html">cClinicalRecord</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmMatchProvider.cMatchProvider_Func-class.html#getMatchesByWord">getMatchesByWord()</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmMatchProvider.cMatchProvider_Func-class.html">cMatchProvider_Func</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmConfigRegistry.gmConfigEditorPanel-class.html">gmConfigEditorPanel</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gui.gmConfigRegistry-module.html">Gnumed.wxpython.gui.gmConfigRegistry</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.proxiedpyjamas.gmWebGuiServer.HTTPServer-class.html#get_patient_messages">get_patient_messages()</a><br />
<span class="index-where">(in <a href="Gnumed.proxiedpyjamas.gmWebGuiServer.HTTPServer-class.html">HTTPServer</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmMatchProvider.cMatchProvider_SQL2-class.html#getMatchesByWord">getMatchesByWord()</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmMatchProvider.cMatchProvider_SQL2-class.html">cMatchProvider_SQL2</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmConfigRegistry-module.html">gmConfigRegistry</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gui-module.html">Gnumed.wxpython.gui</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmPersonSearch.cPatientSearcher_SQL-class.html#get_patients">get_patients()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmPersonSearch.cPatientSearcher_SQL-class.html">cPatientSearcher_SQL</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmDateTimeInput.cDateMatchProvider-class.html#getMatchesByWord">getMatchesByWord()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmDateTimeInput.cDateMatchProvider-class.html">cDateMatchProvider</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmConfigRegistry.gmConfigRegistry-class.html">gmConfigRegistry</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gui.gmConfigRegistry-module.html">Gnumed.wxpython.gui.gmConfigRegistry</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmPathLab-module.html#get_pending_requests">get_pending_requests()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmPathLab-module.html">Gnumed.business.gmPathLab</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmDateTimeInput.cMatchProvider_FuzzyTimestamp-class.html#getMatchesByWord">getMatchesByWord()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmDateTimeInput.cMatchProvider_FuzzyTimestamp-class.html">cMatchProvider_FuzzyTimestamp</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmContacts-module.html">gmContacts</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gui-module.html">Gnumed.wxpython.gui</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmClinicalRecord.cClinicalRecord-class.html#get_performed_procedures">get_performed_procedures()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmClinicalRecord.cClinicalRecord-class.html">cClinicalRecord</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnumedGP-module.html#getMeasurementsBitmap">getMeasurementsBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnumedGP-module.html">Gnumed.wxpython.images_gnumedGP</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmContacts.gmContacts-class.html">gmContacts</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gui.gmContacts-module.html">Gnumed.wxpython.gui.gmContacts</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmEMRStructItems-module.html#get_performed_procedures">get_performed_procedures()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmEMRStructItems-module.html">Gnumed.business.gmEMRStructItems</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnumedGP-module.html#getMeasurementsData">getMeasurementsData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnumedGP-module.html">Gnumed.wxpython.images_gnumedGP</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmContactWidgets-module.html">gmContactWidgets</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython-module.html">Gnumed.wxpython</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmPatSearchWidgets-module.html#get_person_from_external_sources">get_person_from_external_sources()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmPatSearchWidgets-module.html">Gnumed.wxpython.gmPatSearchWidgets</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnumedGP-module.html#getMeasurementsImage">getMeasurementsImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnumedGP-module.html">Gnumed.wxpython.images_gnumedGP</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmCryptoText-module.html">gmCryptoText</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython-module.html">Gnumed.wxpython</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmPerson-module.html#get_person_from_xdt">get_person_from_xdt()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmPerson-module.html">Gnumed.business.gmPerson</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images-module.html#getMondrianBitmap">getMondrianBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images-module.html">Gnumed.wxpython.images</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmCryptoText.gmCryptoText-class.html">gmCryptoText</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmCryptoText-module.html">Gnumed.wxpython.gmCryptoText</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmPerson-module.html#get_persons_from_pks">get_persons_from_pks()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmPerson-module.html">Gnumed.business.gmPerson</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images-module.html#getMondrianData">getMondrianData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images-module.html">Gnumed.wxpython.images</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmDateTime-module.html#gmCurrentLocalTimezone">gmCurrentLocalTimezone</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmDateTime-module.html">Gnumed.pycommon.gmDateTime</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmPerson-module.html#get_persons_from_pracsoft_file">get_persons_from_pracsoft_file()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmPerson-module.html">Gnumed.business.gmPerson</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images-module.html#getMondrianImage">getMondrianImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images-module.html">Gnumed.wxpython.images</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.business.gmPerson.gmCurrentPatient-class.html">gmCurrentPatient</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmPerson-module.html">Gnumed.business.gmPerson</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmListWidgets.cItemPickerDlg-class.html#get_picks">get_picks()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmListWidgets.cItemPickerDlg-class.html">cItemPickerDlg</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images-module.html#getNewBitmap">getNewBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images-module.html">Gnumed.wxpython.images</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.business.gmSurgery.gmCurrentPractice-class.html">gmCurrentPractice</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmSurgery-module.html">Gnumed.business.gmSurgery</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmPG-module.html#get_pkey_name">get_pkey_name()</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmPG-module.html">Gnumed.pycommon.gmPG</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images-module.html#getNewData">getNewData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images-module.html">Gnumed.wxpython.images</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.business.gmStaff.gmCurrentProvider-class.html">gmCurrentProvider</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmStaff-module.html">Gnumed.business.gmStaff</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmSOAPWidgets.cResizingSoapPanel-class.html#get_problem">get_problem()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmSOAPWidgets.cResizingSoapPanel-class.html">cResizingSoapPanel</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images-module.html#getNewImage">getNewImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images-module.html">Gnumed.wxpython.images</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmCurrentSubstancesPlugin-module.html">gmCurrentSubstancesPlugin</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gui-module.html">Gnumed.wxpython.gui</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmSOAPWidgets.cResizingSoapWin-class.html#get_problem">get_problem()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmSOAPWidgets.cResizingSoapWin-class.html">cResizingSoapWin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.patient.gmGP_AnteNatal_3.CustomDataTable-class.html#GetNumberCols">GetNumberCols()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.patient.gmGP_AnteNatal_3.CustomDataTable-class.html">CustomDataTable</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmCurrentSubstancesPlugin.gmCurrentSubstancesPlugin-class.html">gmCurrentSubstancesPlugin</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gui.gmCurrentSubstancesPlugin-module.html">Gnumed.wxpython.gui.gmCurrentSubstancesPlugin</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmClinicalRecord.cClinicalRecord-class.html#get_problems">get_problems()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmClinicalRecord.cClinicalRecord-class.html">cClinicalRecord</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.patient.gmGP_AnteNatal_3.CustomDataTable-class.html#GetNumberRows">GetNumberRows()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.patient.gmGP_AnteNatal_3.CustomDataTable-class.html">CustomDataTable</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.business.gmDataMining-module.html">gmDataMining</a><br />
<span class="index-where">(in <a href="Gnumed.business-module.html">Gnumed.business</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.proxiedpyjamas.gmWebGuiServer.HTTPServer-class.html#get_provider_inbox_data">get_provider_inbox_data()</a><br />
<span class="index-where">(in <a href="Gnumed.proxiedpyjamas.gmWebGuiServer.HTTPServer-class.html">HTTPServer</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmGuiBroker.GuiBroker-class.html#getobject">getobject()</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmGuiBroker.GuiBroker-class.html">GuiBroker</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmDataMiningPlugin-module.html">gmDataMiningPlugin</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gui-module.html">Gnumed.wxpython.gui</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmDemographicRecord-module.html#get_provinces">get_provinces()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmDemographicRecord-module.html">Gnumed.business.gmDemographicRecord</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images-module.html#getOpenBitmap">getOpenBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images-module.html">Gnumed.wxpython.images</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmDataMiningPlugin.gmDataMiningPlugin-class.html">gmDataMiningPlugin</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gui.gmDataMiningPlugin-module.html">Gnumed.wxpython.gui.gmDataMiningPlugin</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmLoginInfo.LoginInfo-class.html#get_psycopg2_dsn">get_psycopg2_dsn()</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmLoginInfo.LoginInfo-class.html">LoginInfo</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images-module.html#getOpenData">getOpenData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images-module.html">Gnumed.wxpython.images</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmDataMiningWidgets-module.html">gmDataMiningWidgets</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython-module.html">Gnumed.wxpython</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmDateTime.cFuzzyTimestamp-class.html#get_pydt">get_pydt()</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmDateTime.cFuzzyTimestamp-class.html">cFuzzyTimestamp</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images-module.html#getOpenImage">getOpenImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images-module.html">Gnumed.wxpython.images</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmDataPackWidgets-module.html">gmDataPackWidgets</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython-module.html">Gnumed.wxpython</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmXdtObjects-module.html#get_rand_fname">get_rand_fname()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmXdtObjects-module.html">Gnumed.business.gmXdtObjects</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html#getorganisation_addBitmap">getorganisation_addBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html">Gnumed.wxpython.images_contacts_toolbar16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmDateTime-module.html">gmDateTime</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon-module.html">Gnumed.pycommon</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmPG2-module.html#get_raw_connection">get_raw_connection()</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmPG2-module.html">Gnumed.pycommon.gmPG2</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getorganisation_addBitmap">getorganisation_addBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmDateTimeInput-module.html">gmDateTimeInput</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython-module.html">Gnumed.wxpython</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmATC-module.html#get_reference_atcs">get_reference_atcs()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmATC-module.html">Gnumed.business.gmATC</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html#getorganisation_addData">getorganisation_addData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html">Gnumed.wxpython.images_contacts_toolbar16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmdbf-module.html">gmdbf</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon-module.html">Gnumed.pycommon</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmPerson.cIdentity-class.html#get_relatives">get_relatives()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmPerson.cIdentity-class.html">cIdentity</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getorganisation_addData">getorganisation_addData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.business.gmDemographicRecord-module.html">gmDemographicRecord</a><br />
<span class="index-where">(in <a href="Gnumed.business-module.html">Gnumed.business</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmDocuments.cDocumentPart-class.html#get_reviews">get_reviews()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmDocuments.cDocumentPart-class.html">cDocumentPart</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html#getorganisation_addImage">getorganisation_addImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html">Gnumed.wxpython.images_contacts_toolbar16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.patient.gmDemographics-module.html">gmDemographics</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.patient-module.html">Gnumed.wxpython.patient</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmMeasurementWidgets.cMeasurementsGrid-class.html#get_row_tooltip">get_row_tooltip()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmMeasurementWidgets.cMeasurementsGrid-class.html">cMeasurementsGrid</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getorganisation_addImage">getorganisation_addImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmDemographicsWidgets-module.html">gmDemographicsWidgets</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython-module.html">Gnumed.wxpython</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmMedicationWidgets.cCurrentSubstancesGrid-class.html#get_row_tooltip">get_row_tooltip()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmMedicationWidgets.cCurrentSubstancesGrid-class.html">cCurrentSubstancesGrid</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html#getorganisationBitmap">getorganisationBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html">Gnumed.wxpython.images_contacts_toolbar16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmDermTool-module.html">gmDermTool</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython-module.html">Gnumed.wxpython</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmClinicalRecord.cClinicalRecord-class.html#get_scheduled_vaccination_regimes">get_scheduled_vaccination_regimes()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmClinicalRecord.cClinicalRecord-class.html">cClinicalRecord</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getorganisationBitmap">getorganisationBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.business.gmDevices-module.html">gmDevices</a><br />
<span class="index-where">(in <a href="Gnumed.business-module.html">Gnumed.business</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmClinicalRecord.cClinicalRecord-class.html#get_scheduled_vaccinations">get_scheduled_vaccinations()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmClinicalRecord.cClinicalRecord-class.html">cClinicalRecord</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html#getorganisationData">getorganisationData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html">Gnumed.wxpython.images_contacts_toolbar16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmDeviceWidgets-module.html">gmDeviceWidgets</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython-module.html">Gnumed.wxpython</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmPG2-module.html#get_schema_hash">get_schema_hash()</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmPG2-module.html">Gnumed.pycommon.gmPG2</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getorganisationData">getorganisationData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmDispatcher-module.html">gmDispatcher</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon-module.html">Gnumed.pycommon</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmPG2-module.html#get_schema_revision_history">get_schema_revision_history()</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmPG2-module.html">Gnumed.pycommon.gmPG2</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html#getorganisationImage">getorganisationImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html">Gnumed.wxpython.images_contacts_toolbar16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.business.gmDocuments-module.html">gmDocuments</a><br />
<span class="index-where">(in <a href="Gnumed.business-module.html">Gnumed.business</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmPG2-module.html#get_schema_structure">get_schema_structure()</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmPG2-module.html">Gnumed.pycommon.gmPG2</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getorganisationImage">getorganisationImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmDocumentWidgets-module.html">gmDocumentWidgets</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython-module.html">Gnumed.wxpython</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.CherryPy.gmGuiWeb.gmApp-class.html#get_schema_version">get_schema_version()</a><br />
<span class="index-where">(in <a href="Gnumed.CherryPy.gmGuiWeb.gmApp-class.html">gmApp</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmContacts.cContactsPanel-class.html#getOrgHelper">getOrgHelper()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gui.gmContacts.cContactsPanel-class.html">cContactsPanel</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmDrugDisplay-module.html">gmDrugDisplay</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gui-module.html">Gnumed.wxpython.gui</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.proxiedpyjamas.gmWebGuiServer.HTTPServer-class.html#get_schema_version">get_schema_version()</a><br />
<span class="index-where">(in <a href="Gnumed.proxiedpyjamas.gmWebGuiServer.HTTPServer-class.html">HTTPServer</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmContacts.cContactsPanel-class.html#getOrgKeyData">getOrgKeyData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gui.gmContacts.cContactsPanel-class.html">cContactsPanel</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmDrugDisplay.gmDrugDisplay-class.html">gmDrugDisplay</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gui.gmDrugDisplay-module.html">Gnumed.wxpython.gui.gmDrugDisplay</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmPG2-module.html#get_schema_version">get_schema_version()</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmPG2-module.html">Gnumed.pycommon.gmPG2</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html#getpadlock_closedBitmap">getpadlock_closedBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html">Gnumed.wxpython.images_contacts_toolbar16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmDrugObject-module.html">gmDrugObject</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon-module.html">Gnumed.pycommon</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmMeasurementWidgets.cMeasurementsGrid-class.html#get_selected_cells">get_selected_cells()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmMeasurementWidgets.cMeasurementsGrid-class.html">cMeasurementsGrid</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html#getpadlock_closedBitmap">getpadlock_closedBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html">Gnumed.wxpython.images_gnuMedGP_Toolbar</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmDrugView-module.html">gmDrugView</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon-module.html">Gnumed.pycommon</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmMedicationWidgets.cCurrentSubstancesGrid-class.html#get_selected_cells">get_selected_cells()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmMedicationWidgets.cCurrentSubstancesGrid-class.html">cCurrentSubstancesGrid</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getpadlock_closedBitmap">getpadlock_closedBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmEditArea-module.html">gmEditArea</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython-module.html">Gnumed.wxpython</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmMedicationWidgets.cCurrentSubstancesGrid-class.html#get_selected_data">get_selected_data()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmMedicationWidgets.cCurrentSubstancesGrid-class.html">cCurrentSubstancesGrid</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html#getpadlock_closedData">getpadlock_closedData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html">Gnumed.wxpython.images_contacts_toolbar16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmEditArea.gmEditArea-class.html">gmEditArea</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmEditArea-module.html">Gnumed.wxpython.gmEditArea</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmPatSearchWidgets.cSelectPersonDTOFromListDlg-class.html#get_selected_dto">get_selected_dto()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmPatSearchWidgets.cSelectPersonDTOFromListDlg-class.html">cSelectPersonDTOFromListDlg</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html#getpadlock_closedData">getpadlock_closedData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html">Gnumed.wxpython.images_gnuMedGP_Toolbar</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmEMRBrowser-module.html">gmEMRBrowser</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython-module.html">Gnumed.wxpython</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmPhraseWheel.cPhraseWheelListCtrl-class.html#get_selected_item">get_selected_item()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmPhraseWheel.cPhraseWheelListCtrl-class.html">cPhraseWheelListCtrl</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getpadlock_closedData">getpadlock_closedData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmEMRBrowserPlugin-module.html">gmEMRBrowserPlugin</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gui-module.html">Gnumed.wxpython.gui</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmListWidgets.cGenericListManagerPnl-class.html#get_selected_item_data">get_selected_item_data()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmListWidgets.cGenericListManagerPnl-class.html">cGenericListManagerPnl</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html#getpadlock_closedImage">getpadlock_closedImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html">Gnumed.wxpython.images_contacts_toolbar16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmEMRBrowserPlugin.gmEMRBrowserPlugin-class.html">gmEMRBrowserPlugin</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gui.gmEMRBrowserPlugin-module.html">Gnumed.wxpython.gui.gmEMRBrowserPlugin</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmListWidgets.cGenericListSelectorDlg-class.html#get_selected_item_data">get_selected_item_data()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmListWidgets.cGenericListSelectorDlg-class.html">cGenericListSelectorDlg</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html#getpadlock_closedImage">getpadlock_closedImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html">Gnumed.wxpython.images_gnuMedGP_Toolbar</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmEMRTextDump.gmEMRDumpPanel-class.html">gmEMRDumpPanel</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmEMRTextDump-module.html">Gnumed.wxpython.gmEMRTextDump</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmListWidgets.cReportListCtrl-class.html#get_selected_item_data">get_selected_item_data()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmListWidgets.cReportListCtrl-class.html">cReportListCtrl</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getpadlock_closedImage">getpadlock_closedImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmEMRJournalPlugin-module.html">gmEMRJournalPlugin</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gui-module.html">Gnumed.wxpython.gui</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmPhraseWheel.cPhraseWheelListCtrl-class.html#get_selected_item_label">get_selected_item_label()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmPhraseWheel.cPhraseWheelListCtrl-class.html">cPhraseWheelListCtrl</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html#getpadlock_unlockedBitmap">getpadlock_unlockedBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html">Gnumed.wxpython.images_contacts_toolbar16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmEMRJournalPlugin.gmEMRJournalPlugin-class.html">gmEMRJournalPlugin</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gui.gmEMRJournalPlugin-module.html">Gnumed.wxpython.gui.gmEMRJournalPlugin</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmListWidgets.cReportListCtrl-class.html#get_selected_items">get_selected_items()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmListWidgets.cReportListCtrl-class.html">cReportListCtrl</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html#getpadlock_unlockedBitmap">getpadlock_unlockedBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html">Gnumed.wxpython.images_gnuMedGP_Toolbar</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.business.gmEMRStructItems-module.html">gmEMRStructItems</a><br />
<span class="index-where">(in <a href="Gnumed.business-module.html">Gnumed.business</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmPatSearchWidgets.cSelectPersonFromListDlg-class.html#get_selected_person">get_selected_person()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmPatSearchWidgets.cSelectPersonFromListDlg-class.html">cSelectPersonFromListDlg</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getpadlock_unlockedBitmap">getpadlock_unlockedBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmEMRStructWidgets-module.html">gmEMRStructWidgets</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython-module.html">Gnumed.wxpython</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmMedicationWidgets.cCurrentSubstancesGrid-class.html#get_selected_rows">get_selected_rows()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmMedicationWidgets.cCurrentSubstancesGrid-class.html">cCurrentSubstancesGrid</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html#getpadlock_unlockedData">getpadlock_unlockedData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html">Gnumed.wxpython.images_contacts_toolbar16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmEMRTextDump-module.html">gmEMRTextDump</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython-module.html">Gnumed.wxpython</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmListWidgets.cReportListCtrl-class.html#get_selected_string_items">get_selected_string_items()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmListWidgets.cReportListCtrl-class.html">cReportListCtrl</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html#getpadlock_unlockedData">getpadlock_unlockedData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html">Gnumed.wxpython.images_gnuMedGP_Toolbar</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmExamplePlugin-module.html">gmExamplePlugin</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gui-module.html">Gnumed.wxpython.gui</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmEditArea.cEditArea2-class.html#get_short_error">get_short_error()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmEditArea.cEditArea2-class.html">cEditArea2</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getpadlock_unlockedData">getpadlock_unlockedData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmExamplePlugin.gmExamplePlugin-class.html">gmExamplePlugin</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gui.gmExamplePlugin-module.html">Gnumed.wxpython.gui.gmExamplePlugin</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmStaff.gmCurrentProvider-class.html#get_staff">get_staff()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmStaff.gmCurrentProvider-class.html">gmCurrentProvider</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html#getpadlock_unlockedImage">getpadlock_unlockedImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html">Gnumed.wxpython.images_contacts_toolbar16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmExamplePluginWidgets-module.html">gmExamplePluginWidgets</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython-module.html">Gnumed.wxpython</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmStaff-module.html#get_staff_list">get_staff_list()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmStaff-module.html">Gnumed.business.gmStaff</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html#getpadlock_unlockedImage">getpadlock_unlockedImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html">Gnumed.wxpython.images_gnuMedGP_Toolbar</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmExceptionHandlingWidgets-module.html">gmExceptionHandlingWidgets</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython-module.html">Gnumed.wxpython</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmClinicalRecord.cClinicalRecord-class.html#get_statistics">get_statistics()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmClinicalRecord.cClinicalRecord-class.html">cClinicalRecord</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getpadlock_unlockedImage">getpadlock_unlockedImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmExceptions-module.html">gmExceptions</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon-module.html">Gnumed.pycommon</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmListWidgets.cReportListCtrl-class.html#get_string_items">get_string_items()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmListWidgets.cReportListCtrl-class.html">cReportListCtrl</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmConfigCommon.ConfigData-class.html#getParamDescription">getParamDescription()</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmConfigCommon.ConfigData-class.html">ConfigData</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.business.gmFamilyHistory-module.html">gmFamilyHistory</a><br />
<span class="index-where">(in <a href="Gnumed.business-module.html">Gnumed.business</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmEditArea.cEditArea2-class.html#get_summary">get_summary()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmEditArea.cEditArea2-class.html">cEditArea2</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmConfigCommon.ConfigDefinition-class.html#getParamDescription">getParamDescription()</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmConfigCommon.ConfigDefinition-class.html">ConfigDefinition</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmFamilyHistoryWidgets-module.html">gmFamilyHistoryWidgets</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython-module.html">Gnumed.wxpython</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmEditArea.cEditAreaPopup-class.html#get_summary">get_summary()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmEditArea.cEditAreaPopup-class.html">cEditAreaPopup</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmConfigCommon.ConfigData-class.html#getParamType">getParamType()</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmConfigCommon.ConfigData-class.html">ConfigData</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmFormPrinter-module.html">gmFormPrinter</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython-module.html">Gnumed.wxpython</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.exporters.gmPatientExporter.cEmrExport-class.html#get_summary_info">get_summary_info()</a><br />
<span class="index-where">(in <a href="Gnumed.exporters.gmPatientExporter.cEmrExport-class.html">cEmrExport</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmConfigCommon.ConfigDefinition-class.html#getParamType">getParamType()</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmConfigCommon.ConfigDefinition-class.html">ConfigDefinition</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.business.gmForms-module.html">gmForms</a><br />
<span class="index-where">(in <a href="Gnumed.business-module.html">Gnumed.business</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmDemographicRecord-module.html#get_tag_images">get_tag_images()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmDemographicRecord-module.html">Gnumed.business.gmDemographicRecord</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmConfigCommon.ConfigSource-class.html#getParamType">getParamType()</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmConfigCommon.ConfigSource-class.html">ConfigSource</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmFormWidgets-module.html">gmFormWidgets</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython-module.html">Gnumed.wxpython</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmPerson.cIdentity-class.html#get_tags">get_tags()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmPerson.cIdentity-class.html">cIdentity</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnumedGP-module.html#getPast_HistoryBitmap">getPast_HistoryBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnumedGP-module.html">Gnumed.wxpython.images_gnumedGP</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.patient.gmGP_Allergies-module.html">gmGP_Allergies</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.patient-module.html">Gnumed.wxpython.patient</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmPathLab-module.html#get_test_orgs">get_test_orgs()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmPathLab-module.html">Gnumed.business.gmPathLab</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnumedGP-module.html#getPast_HistoryData">getPast_HistoryData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnumedGP-module.html">Gnumed.wxpython.images_gnumedGP</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.patient.gmGP_Allergies.gmGP_Allergies-class.html">gmGP_Allergies</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.patient.gmGP_Allergies-module.html">Gnumed.wxpython.patient.gmGP_Allergies</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmClinicalRecord.cClinicalRecord-class.html#get_test_results_by_date">get_test_results_by_date()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmClinicalRecord.cClinicalRecord-class.html">cClinicalRecord</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnumedGP-module.html#getPast_HistoryImage">getPast_HistoryImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnumedGP-module.html">Gnumed.wxpython.images_gnumedGP</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.patient.gmGP_AnteNatal_3-module.html">gmGP_AnteNatal_3</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.patient-module.html">Gnumed.wxpython.patient</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmClinicalRecord.cClinicalRecord-class.html#get_test_types_details">get_test_types_details()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmClinicalRecord.cClinicalRecord-class.html">cClinicalRecord</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images-module.html#getPasteBitmap">getPasteBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images-module.html">Gnumed.wxpython.images</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.patient.gmGP_AnteNatal_3.gmGP_AnteNatal_3-class.html">gmGP_AnteNatal_3</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.patient.gmGP_AnteNatal_3-module.html">Gnumed.wxpython.patient.gmGP_AnteNatal_3</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmClinicalRecord.cClinicalRecord-class.html#get_test_types_for_results">get_test_types_for_results()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmClinicalRecord.cClinicalRecord-class.html">cClinicalRecord</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images-module.html#getPasteData">getPasteData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images-module.html">Gnumed.wxpython.images</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.patient.gmGP_ClinicalSummary-module.html">gmGP_ClinicalSummary</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.patient-module.html">Gnumed.wxpython.patient</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmClinicalRecord.cClinicalRecord-class.html#get_text_dump">get_text_dump()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmClinicalRecord.cClinicalRecord-class.html">cClinicalRecord</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images-module.html#getPasteImage">getPasteImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images-module.html">Gnumed.wxpython.images</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.patient.gmGP_ClinicalSummary.gmGP_ClinicalSummary-class.html">gmGP_ClinicalSummary</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.patient.gmGP_ClinicalSummary-module.html">Gnumed.wxpython.patient.gmGP_ClinicalSummary</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmClinicalRecord.cClinicalRecord-class.html#get_text_dump_old">get_text_dump_old()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmClinicalRecord.cClinicalRecord-class.html">cClinicalRecord</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html#getperson_addBitmap">getperson_addBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html">Gnumed.wxpython.images_contacts_toolbar16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.patient.gmGP_FamilyHistory-module.html">gmGP_FamilyHistory</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.patient-module.html">Gnumed.wxpython.patient</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmPG2-module.html#get_text_expansion_keywords">get_text_expansion_keywords()</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmPG2-module.html">Gnumed.pycommon.gmPG2</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getperson_addBitmap">getperson_addBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.patient.gmGP_FamilyHistory.gmGP_FamilyHistory-class.html">gmGP_FamilyHistory</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.patient.gmGP_FamilyHistory-module.html">Gnumed.wxpython.patient.gmGP_FamilyHistory</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmDemographicRecord-module.html#get_time_tuple">get_time_tuple()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmDemographicRecord-module.html">Gnumed.business.gmDemographicRecord</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html#getperson_addData">getperson_addData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html">Gnumed.wxpython.images_contacts_toolbar16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmGP_HabitsRiskFactors-module.html">gmGP_HabitsRiskFactors</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython-module.html">Gnumed.wxpython</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmDemographicRecord-module.html#get_town_data">get_town_data()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmDemographicRecord-module.html">Gnumed.business.gmDemographicRecord</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getperson_addData">getperson_addData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.patient.gmGP_Immunisation-module.html">gmGP_Immunisation</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.patient-module.html">Gnumed.wxpython.patient</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmPG2-module.html#get_translation_languages">get_translation_languages()</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmPG2-module.html">Gnumed.pycommon.gmPG2</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html#getperson_addImage">getperson_addImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html">Gnumed.wxpython.images_contacts_toolbar16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.patient.gmGP_Immunisation.gmGP_Immunisation-class.html">gmGP_Immunisation</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.patient.gmGP_Immunisation-module.html">Gnumed.wxpython.patient.gmGP_Immunisation</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmTools-module.html#get_unique_filename">get_unique_filename()</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmTools-module.html">Gnumed.pycommon.gmTools</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getperson_addImage">getperson_addImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmGP_Inbox-module.html">gmGP_Inbox</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython-module.html">Gnumed.wxpython</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmPathLab-module.html#get_unreviewed_results">get_unreviewed_results()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmPathLab-module.html">Gnumed.business.gmPathLab</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html#getpersonBitmap">getpersonBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html">Gnumed.wxpython.images_contacts_toolbar16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.patient.gmGP_Measurements-module.html">gmGP_Measurements</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.patient-module.html">Gnumed.wxpython.patient</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmDocuments.cDocumentFolder-class.html#get_unsigned_documents">get_unsigned_documents()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmDocuments.cDocumentFolder-class.html">cDocumentFolder</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getpersonBitmap">getpersonBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.patient.gmGP_Measurements.gmGP_Measurements-class.html">gmGP_Measurements</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.patient.gmGP_Measurements-module.html">Gnumed.wxpython.patient.gmGP_Measurements</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmClinicalRecord.cClinicalRecord-class.html#get_unsigned_results">get_unsigned_results()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmClinicalRecord.cClinicalRecord-class.html">cClinicalRecord</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html#getpersonData">getpersonData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html">Gnumed.wxpython.images_contacts_toolbar16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.patient.gmGP_PastHistory-module.html">gmGP_PastHistory</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.patient-module.html">Gnumed.wxpython.patient</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmBusinessDBObject.cBusinessDBObject-class.html#get_updatable_fields">get_updatable_fields()</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmBusinessDBObject.cBusinessDBObject-class.html">cBusinessDBObject</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getpersonData">getpersonData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.patient.gmGP_PastHistory.gmGP_PastHistory-class.html">gmGP_PastHistory</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.patient.gmGP_PastHistory-module.html">Gnumed.wxpython.patient.gmGP_PastHistory</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmMacro.cMacroPrimitives-class.html#get_user_answer">get_user_answer()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmMacro.cMacroPrimitives-class.html">cMacroPrimitives</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html#getpersonImage">getpersonImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html">Gnumed.wxpython.images_contacts_toolbar16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.patient.gmGP_Prescriptions-module.html">gmGP_Prescriptions</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.patient-module.html">Gnumed.wxpython.patient</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmVaccination-module.html#get_vacc_courses">get_vacc_courses()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmVaccination-module.html">Gnumed.business.gmVaccination</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getpersonImage">getpersonImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.patient.gmGP_Prescriptions.gmGP_Prescriptions-class.html">gmGP_Prescriptions</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.patient.gmGP_Prescriptions-module.html">Gnumed.wxpython.patient.gmGP_Prescriptions</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmVaccination-module.html#get_vacc_regimes_by_recommender_ordered">get_vacc_regimes_by_recommender_ordered()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmVaccination-module.html">Gnumed.business.gmVaccination</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmLoginInfo.LoginInfo-class.html#GetPGDB_DSN">GetPGDB_DSN()</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmLoginInfo.LoginInfo-class.html">LoginInfo</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.patient.gmGP_Recalls-module.html">gmGP_Recalls</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.patient-module.html">Gnumed.wxpython.patient</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.exporters.gmPatientExporter.cEmrExport-class.html#get_vacc_table">get_vacc_table()</a><br />
<span class="index-where">(in <a href="Gnumed.exporters.gmPatientExporter.cEmrExport-class.html">cEmrExport</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmResizingWidgets.cResizingWindow-class.html#GetPickList">GetPickList()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmResizingWidgets.cResizingWindow-class.html">cResizingWindow</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.patient.gmGP_Recalls.gmGP_Recalls-class.html">gmGP_Recalls</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.patient.gmGP_Recalls-module.html">Gnumed.wxpython.patient.gmGP_Recalls</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.exporters.gmPatientExporter.cEmrExport-class.html#get_vaccination_output">get_vaccination_output()</a><br />
<span class="index-where">(in <a href="Gnumed.exporters.gmPatientExporter.cEmrExport-class.html">cEmrExport</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmPlugin-module.html#GetPluginLoadList">GetPluginLoadList()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmPlugin-module.html">Gnumed.wxpython.gmPlugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.patient.gmGP_Referrals-module.html">gmGP_Referrals</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.patient-module.html">Gnumed.wxpython.patient</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.exporters.gmPatientExporter.cEmrExport-class.html#get_vaccination_summary">get_vaccination_summary()</a><br />
<span class="index-where">(in <a href="Gnumed.exporters.gmPatientExporter.cEmrExport-class.html">cEmrExport</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmLoginInfo.LoginInfo-class.html#GetPort">GetPort()</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmLoginInfo.LoginInfo-class.html">LoginInfo</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.patient.gmGP_Referrals.gmGP_Referrals-class.html">gmGP_Referrals</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.patient.gmGP_Referrals-module.html">Gnumed.wxpython.patient.gmGP_Referrals</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmClinicalRecord.cClinicalRecord-class.html#get_vaccinations">get_vaccinations()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmClinicalRecord.cClinicalRecord-class.html">cClinicalRecord</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#getprinterBitmap">getprinterBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.patient.gmGP_Requests-module.html">gmGP_Requests</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.patient-module.html">Gnumed.wxpython.patient</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmClinicalRecord.cClinicalRecord-class.html#get_vaccinations_old">get_vaccinations_old()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmClinicalRecord.cClinicalRecord-class.html">cClinicalRecord</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html#getprinterBitmap">getprinterBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html">Gnumed.wxpython.images_contacts_toolbar16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.patient.gmGP_Requests.gmGP_Requests-class.html">gmGP_Requests</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.patient.gmGP_Requests-module.html">Gnumed.wxpython.patient.gmGP_Requests</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmVaccination-module.html#get_vaccines">get_vaccines()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmVaccination-module.html">Gnumed.business.gmVaccination</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html#getprinterBitmap">getprinterBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html">Gnumed.wxpython.images_for_gnumed_browser16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.patient.gmGP_ScratchPadRecalls-module.html">gmGP_ScratchPadRecalls</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.patient-module.html">Gnumed.wxpython.patient</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmLOINC-module.html#get_version">get_version()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmLOINC-module.html">Gnumed.business.gmLOINC</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getprinterBitmap">getprinterBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.patient.gmGP_ScratchPadRecalls.gmGP_ScratchPadRecalls-class.html">gmGP_ScratchPadRecalls</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.patient.gmGP_ScratchPadRecalls-module.html">Gnumed.wxpython.patient.gmGP_ScratchPadRecalls</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmMimeLib-module.html#get_viewer_cmd">get_viewer_cmd()</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmMimeLib-module.html">Gnumed.pycommon.gmMimeLib</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#getprinterData">getprinterData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmGP_SocialHistory-module.html">gmGP_SocialHistory</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython-module.html">Gnumed.wxpython</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmDocuments.cDocumentFolder-class.html#get_visual_progress_notes">get_visual_progress_notes()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmDocuments.cDocumentFolder-class.html">cDocumentFolder</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html#getprinterData">getprinterData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html">Gnumed.wxpython.images_contacts_toolbar16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.patient.gmGP_TabbedLists-module.html">gmGP_TabbedLists</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.patient-module.html">Gnumed.wxpython.patient</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmEMRStructItems.cProblem-class.html#get_visual_progress_notes">get_visual_progress_notes()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmEMRStructItems.cProblem-class.html">cProblem</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html#getprinterData">getprinterData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html">Gnumed.wxpython.images_for_gnumed_browser16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.patient.gmGP_TabbedLists.gmGP_TabbedLists-class.html">gmGP_TabbedLists</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.patient.gmGP_TabbedLists-module.html">Gnumed.wxpython.patient.gmGP_TabbedLists</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmPerson.cIdentity-class.html#get_waiting_list_entry">get_waiting_list_entry()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmPerson.cIdentity-class.html">cIdentity</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getprinterData">getprinterData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmGuiBroker-module.html">gmGuiBroker</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon-module.html">Gnumed.pycommon</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnumedGP-module.html#getAddBitmap">getAddBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnumedGP-module.html">Gnumed.wxpython.images_gnumedGP</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#getprinterImage">getprinterImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmGuiHelpers-module.html">gmGuiHelpers</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython-module.html">Gnumed.wxpython</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnumedGP-module.html#getAddData">getAddData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnumedGP-module.html">Gnumed.wxpython.images_gnumedGP</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html#getprinterImage">getprinterImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html">Gnumed.wxpython.images_contacts_toolbar16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.CherryPy.gmGuiHelpersWeb-module.html">gmGuiHelpersWeb</a><br />
<span class="index-where">(in <a href="Gnumed.CherryPy-module.html">Gnumed.CherryPy</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnumedGP-module.html#getAddImage">getAddImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnumedGP-module.html">Gnumed.wxpython.images_gnumedGP</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html#getprinterImage">getprinterImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html">Gnumed.wxpython.images_for_gnumed_browser16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmGuiMain-module.html">gmGuiMain</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython-module.html">Gnumed.wxpython</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmDemographicRecord-module.html#getAddressTypes">getAddressTypes()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmDemographicRecord-module.html">Gnumed.business.gmDemographicRecord</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getprinterImage">getprinterImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.CherryPy.gmGuiWeb-module.html">gmGuiWeb</a><br />
<span class="index-where">(in <a href="Gnumed.CherryPy-module.html">Gnumed.CherryPy</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmDrugObject.cDrug-class.html#GetAllData">GetAllData()</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmDrugObject.cDrug-class.html">cDrug</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmDrugView.DrugView-class.html#getProductInfo">getProductInfo()</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmDrugView.DrugView-class.html">DrugView</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmHooks-module.html">gmHooks</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon-module.html">Gnumed.pycommon</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnumedGP-module.html#getAllergiesBitmap">getAllergiesBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnumedGP-module.html">Gnumed.wxpython.images_gnumedGP</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmLoginInfo.LoginInfo-class.html#GetProfile">GetProfile()</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmLoginInfo.LoginInfo-class.html">LoginInfo</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmHorstSpace-module.html">gmHorstSpace</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython-module.html">Gnumed.wxpython</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnumedGP-module.html#getAllergiesData">getAllergiesData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnumedGP-module.html">Gnumed.wxpython.images_gnumedGP</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images-module.html#getPtBitmap">getPtBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images-module.html">Gnumed.wxpython.images</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmI18N-module.html">gmI18N</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon-module.html">Gnumed.pycommon</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnumedGP-module.html#getAllergiesImage">getAllergiesImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnumedGP-module.html">Gnumed.wxpython.images_gnumedGP</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images-module.html#getPtData">getPtData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images-module.html">Gnumed.wxpython.images</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmI18nWidgets-module.html">gmI18nWidgets</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython-module.html">Gnumed.wxpython</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmMatchProvider.cMatchProvider-class.html#getAllMatches">getAllMatches()</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmMatchProvider.cMatchProvider-class.html">cMatchProvider</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images-module.html#getPtImage">getPtImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images-module.html">Gnumed.wxpython.images</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmKOrganizerPlugin-module.html">gmKOrganizerPlugin</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gui-module.html">Gnumed.wxpython.gui</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmMatchProvider.cMatchProvider_FixedList-class.html#getAllMatches">getAllMatches()</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmMatchProvider.cMatchProvider_FixedList-class.html">cMatchProvider_FixedList</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmPG2.cAdapterPyDateTime-class.html#getquoted">getquoted()</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmPG2.cAdapterPyDateTime-class.html">cAdapterPyDateTime</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmKOrganizerPlugin.gmKOrganizerPlugin-class.html">gmKOrganizerPlugin</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gui.gmKOrganizerPlugin-module.html">Gnumed.wxpython.gui.gmKOrganizerPlugin</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmMatchProvider.cMatchProvider_Func-class.html#getAllMatches">getAllMatches()</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmMatchProvider.cMatchProvider_Func-class.html">cMatchProvider_Func</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmConfigCommon.ConfigData-class.html#getRawName">getRawName()</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmConfigCommon.ConfigData-class.html">ConfigData</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.business.gmKVK-module.html">gmKVK</a><br />
<span class="index-where">(in <a href="Gnumed.business-module.html">Gnumed.business</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmMatchProvider.cMatchProvider_SQL2-class.html#getAllMatches">getAllMatches()</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmMatchProvider.cMatchProvider_SQL2-class.html">cMatchProvider_SQL2</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmConfigCommon.ConfigDataDB-class.html#getRawName">getRawName()</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmConfigCommon.ConfigDataDB-class.html">ConfigDataDB</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmLabJournal-module.html">gmLabJournal</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gui-module.html">Gnumed.wxpython.gui</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmDateTimeInput.cDateMatchProvider-class.html#getAllMatches">getAllMatches()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmDateTimeInput.cDateMatchProvider-class.html">cDateMatchProvider</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmConfigCommon.ConfigDataFile-class.html#getRawName">getRawName()</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmConfigCommon.ConfigDataFile-class.html">ConfigDataFile</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmLabJournal.gmLabJournal-class.html">gmLabJournal</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gui.gmLabJournal-module.html">Gnumed.wxpython.gui.gmLabJournal</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmDateTimeInput.cMatchProvider_FuzzyTimestamp-class.html#getAllMatches">getAllMatches()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmDateTimeInput.cMatchProvider_FuzzyTimestamp-class.html">cMatchProvider_FuzzyTimestamp</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmConfigCommon.ConfigSource-class.html#getRawName">getRawName()</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmConfigCommon.ConfigSource-class.html">ConfigSource</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmLabWidgets-module.html">gmLabWidgets</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython-module.html">Gnumed.wxpython</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmConfigCommon.ConfigData-class.html#GetAllNames">GetAllNames()</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmConfigCommon.ConfigData-class.html">ConfigData</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.business.gmDemographicRecord-module.html#getRelationshipTypes">getRelationshipTypes()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmDemographicRecord-module.html">Gnumed.business.gmDemographicRecord</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmListWidgets-module.html">gmListWidgets</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython-module.html">Gnumed.wxpython</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmConfigCommon.ConfigDataDB-class.html#getAllNames">getAllNames()</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmConfigCommon.ConfigDataDB-class.html">ConfigDataDB</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#getreloadBitmap">getreloadBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmLog2-module.html">gmLog2</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon-module.html">Gnumed.pycommon</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmConfigCommon.ConfigDataFile-class.html#getAllNames">getAllNames()</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmConfigCommon.ConfigDataFile-class.html">ConfigDataFile</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html#getreloadBitmap">getreloadBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html">Gnumed.wxpython.images_contacts_toolbar16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmLoginInfo-module.html">gmLoginInfo</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon-module.html">Gnumed.pycommon</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmConfigCommon.ConfigSource-class.html#getAllParamNames">getAllParamNames()</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmConfigCommon.ConfigSource-class.html">ConfigSource</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html#getreloadBitmap">getreloadBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html">Gnumed.wxpython.images_for_gnumed_browser16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.business.gmLOINC-module.html">gmLOINC</a><br />
<span class="index-where">(in <a href="Gnumed.business-module.html">Gnumed.business</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmCfg.cCfgSQL-class.html#getAllParams">getAllParams()</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmCfg.cCfgSQL-class.html">cCfgSQL</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getreloadBitmap">getreloadBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmMacro-module.html">gmMacro</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython-module.html">Gnumed.wxpython</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmPG.ConnectionPool-class.html#GetAvailableServices">GetAvailableServices()</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmPG.ConnectionPool-class.html">ConnectionPool</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#getreloadData">getreloadData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmManual-module.html">gmManual</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gui-module.html">Gnumed.wxpython.gui</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#getbabelfishBitmap">getbabelfishBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html#getreloadData">getreloadData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html">Gnumed.wxpython.images_contacts_toolbar16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmManual.gmManual-class.html">gmManual</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gui.gmManual-module.html">Gnumed.wxpython.gui.gmManual</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html#getbabelfishBitmap">getbabelfishBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html">Gnumed.wxpython.images_for_gnumed_browser16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html#getreloadData">getreloadData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html">Gnumed.wxpython.images_for_gnumed_browser16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmMatchProvider-module.html">gmMatchProvider</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon-module.html">Gnumed.pycommon</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#getbabelfishData">getbabelfishData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getreloadData">getreloadData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmMeasurementsGridPlugin-module.html">gmMeasurementsGridPlugin</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gui-module.html">Gnumed.wxpython.gui</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html#getbabelfishData">getbabelfishData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html">Gnumed.wxpython.images_for_gnumed_browser16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#getreloadImage">getreloadImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmMeasurementsGridPlugin.gmMeasurementsGridPlugin-class.html">gmMeasurementsGridPlugin</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gui.gmMeasurementsGridPlugin-module.html">Gnumed.wxpython.gui.gmMeasurementsGridPlugin</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#getbabelfishImage">getbabelfishImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html#getreloadImage">getreloadImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html">Gnumed.wxpython.images_contacts_toolbar16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmMeasurementWidgets-module.html">gmMeasurementWidgets</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython-module.html">Gnumed.wxpython</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html#getbabelfishImage">getbabelfishImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html">Gnumed.wxpython.images_for_gnumed_browser16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html#getreloadImage">getreloadImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html">Gnumed.wxpython.images_for_gnumed_browser16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.business.gmMedication-module.html">gmMedication</a><br />
<span class="index-where">(in <a href="Gnumed.business-module.html">Gnumed.business</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images-module.html#getBackgroundBitmap">getBackgroundBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images-module.html">Gnumed.wxpython.images</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getreloadImage">getreloadImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmMedicationWidgets-module.html">gmMedicationWidgets</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython-module.html">Gnumed.wxpython</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images-module.html#getBackgroundData">getBackgroundData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images-module.html">Gnumed.wxpython.images</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#getreportsBitmap">getreportsBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmMimeLib-module.html">gmMimeLib</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon-module.html">Gnumed.pycommon</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images-module.html#getBackgroundImage">getBackgroundImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images-module.html">Gnumed.wxpython.images</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html#getreportsBitmap">getreportsBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html">Gnumed.wxpython.images_contacts_toolbar16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmMimeMagic-module.html">gmMimeMagic</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon-module.html">Gnumed.pycommon</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmLabWidgets.cLabDataGridCellRenderer-class.html#GetBestSize">GetBestSize()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmLabWidgets.cLabDataGridCellRenderer-class.html">cLabDataGridCellRenderer</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getreportsBitmap">getreportsBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmMultiColumnList-module.html">gmMultiColumnList</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython-module.html">Gnumed.wxpython</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.patient.gmGP_TabbedLists.TabbedLists-class.html#getBitmap">getBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.patient.gmGP_TabbedLists.TabbedLists-class.html">TabbedLists</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#getreportsData">getreportsData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmMultiSash-module.html">gmMultiSash</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython-module.html">Gnumed.wxpython</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnumedGP-module.html#getBlood_TubeBitmap">getBlood_TubeBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnumedGP-module.html">Gnumed.wxpython.images_gnumedGP</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html#getreportsData">getreportsData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html">Gnumed.wxpython.images_contacts_toolbar16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmMultiSashedProgressNoteInputPlugin-module.html">gmMultiSashedProgressNoteInputPlugin</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gui-module.html">Gnumed.wxpython.gui</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnumedGP-module.html#getBlood_TubeData">getBlood_TubeData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnumedGP-module.html">Gnumed.wxpython.images_gnumedGP</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getreportsData">getreportsData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmMultiSashedProgressNoteInputPlugin.gmMultiSashedProgressNoteInputPlugin-class.html">gmMultiSashedProgressNoteInputPlugin</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gui.gmMultiSashedProgressNoteInputPlugin-module.html">Gnumed.wxpython.gui.gmMultiSashedProgressNoteInputPlugin</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnumedGP-module.html#getBlood_TubeImage">getBlood_TubeImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnumedGP-module.html">Gnumed.wxpython.images_gnumedGP</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#getreportsImage">getreportsImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmNarrativeWidgets-module.html">gmNarrativeWidgets</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython-module.html">Gnumed.wxpython</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#getbookmark_addBitmap">getbookmark_addBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html#getreportsImage">getreportsImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html">Gnumed.wxpython.images_contacts_toolbar16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmNetworkTools-module.html">gmNetworkTools</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon-module.html">Gnumed.pycommon</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html#getbookmark_addBitmap">getbookmark_addBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html">Gnumed.wxpython.images_for_gnumed_browser16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getreportsImage">getreportsImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmNotebookedPatientEditionPlugin-module.html">gmNotebookedPatientEditionPlugin</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gui-module.html">Gnumed.wxpython.gui</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#getbookmark_addData">getbookmark_addData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#getsaveBitmap">getsaveBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmNotebookedPatientEditionPlugin.gmNotebookedPatientEditionPlugin-class.html">gmNotebookedPatientEditionPlugin</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gui.gmNotebookedPatientEditionPlugin-module.html">Gnumed.wxpython.gui.gmNotebookedPatientEditionPlugin</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html#getbookmark_addData">getbookmark_addData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html">Gnumed.wxpython.images_for_gnumed_browser16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html#getsaveBitmap">getsaveBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html">Gnumed.wxpython.images_contacts_toolbar16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmNotebookedProgressNoteInputPlugin-module.html">gmNotebookedProgressNoteInputPlugin</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gui-module.html">Gnumed.wxpython.gui</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#getbookmark_addImage">getbookmark_addImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getsaveBitmap">getsaveBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmNotebookedProgressNoteInputPlugin.gmNotebookedProgressNoteInputPlugin-class.html">gmNotebookedProgressNoteInputPlugin</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gui.gmNotebookedProgressNoteInputPlugin-module.html">Gnumed.wxpython.gui.gmNotebookedProgressNoteInputPlugin</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html#getbookmark_addImage">getbookmark_addImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html">Gnumed.wxpython.images_for_gnumed_browser16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#getsaveData">getsaveData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmNull-module.html">gmNull</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon-module.html">Gnumed.pycommon</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#getbookmarkBitmap">getbookmarkBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html#getsaveData">getsaveData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html">Gnumed.wxpython.images_contacts_toolbar16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.business.gmForms.gmOOoConnector-class.html">gmOOoConnector</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmForms-module.html">Gnumed.business.gmForms</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html#getbookmarkBitmap">getbookmarkBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html">Gnumed.wxpython.images_for_gnumed_browser16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getsaveData">getsaveData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.business.gmOrganization-module.html">gmOrganization</a><br />
<span class="index-where">(in <a href="Gnumed.business-module.html">Gnumed.business</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#getbookmarkData">getbookmarkData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#getsaveImage">getsaveImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmOrganizationWidgets-module.html">gmOrganizationWidgets</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython-module.html">Gnumed.wxpython</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html#getbookmarkData">getbookmarkData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html">Gnumed.wxpython.images_for_gnumed_browser16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html#getsaveImage">getsaveImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html">Gnumed.wxpython.images_contacts_toolbar16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmEditArea.gmPastHistoryEditArea-class.html">gmPastHistoryEditArea</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmEditArea-module.html">Gnumed.wxpython.gmEditArea</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#getbookmarkImage">getbookmarkImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getsaveImage">getsaveImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.business.gmPathLab-module.html">gmPathLab</a><br />
<span class="index-where">(in <a href="Gnumed.business-module.html">Gnumed.business</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html#getbookmarkImage">getbookmarkImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html">Gnumed.wxpython.images_for_gnumed_browser16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmPhraseWheel.cPhraseWheelListCtrl-class.html#GetSelectedItemData">GetSelectedItemData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmPhraseWheel.cPhraseWheelListCtrl-class.html">cPhraseWheelListCtrl</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmTools.gmPaths-class.html">gmPaths</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmTools-module.html">Gnumed.pycommon.gmTools</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html#getbranch_addBitmap">getbranch_addBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html">Gnumed.wxpython.images_contacts_toolbar16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html#getsendemailBitmap">getsendemailBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html">Gnumed.wxpython.images_contacts_toolbar16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.exporters.gmPatientExporter-module.html">gmPatientExporter</a><br />
<span class="index-where">(in <a href="Gnumed.exporters-module.html">Gnumed.exporters</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getbranch_addBitmap">getbranch_addBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getsendemailBitmap">getsendemailBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmPatientOverviewPlugin-module.html">gmPatientOverviewPlugin</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gui-module.html">Gnumed.wxpython.gui</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html#getbranch_addData">getbranch_addData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html">Gnumed.wxpython.images_contacts_toolbar16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html#getsendemailData">getsendemailData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html">Gnumed.wxpython.images_contacts_toolbar16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmPatientOverviewPlugin.gmPatientOverviewPlugin-class.html">gmPatientOverviewPlugin</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gui.gmPatientOverviewPlugin-module.html">Gnumed.wxpython.gui.gmPatientOverviewPlugin</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getbranch_addData">getbranch_addData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getsendemailData">getsendemailData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmPatOverviewWidgets-module.html">gmPatOverviewWidgets</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython-module.html">Gnumed.wxpython</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html#getbranch_addImage">getbranch_addImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html">Gnumed.wxpython.images_contacts_toolbar16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html#getsendemailImage">getsendemailImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html">Gnumed.wxpython.images_contacts_toolbar16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmPatPicWidgets-module.html">gmPatPicWidgets</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython-module.html">Gnumed.wxpython</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getbranch_addImage">getbranch_addImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getsendemailImage">getsendemailImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmPatSearchWidgets-module.html">gmPatSearchWidgets</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython-module.html">Gnumed.wxpython</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmDrugView.DrugView-class.html#getBrandsForGeneric">getBrandsForGeneric()</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmDrugView.DrugView-class.html">DrugView</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images-module.html#getSmallDnArrowBitmap">getSmallDnArrowBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images-module.html">Gnumed.wxpython.images</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.business.gmPerson-module.html">gmPerson</a><br />
<span class="index-where">(in <a href="Gnumed.business-module.html">Gnumed.business</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images-module.html#getBulb1Bitmap">getBulb1Bitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images-module.html">Gnumed.wxpython.images</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images-module.html#getSmallDnArrowData">getSmallDnArrowData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images-module.html">Gnumed.wxpython.images</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmPlugin_Patient-module.html#gmPerson">gmPerson</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmPlugin_Patient-module.html">Gnumed.wxpython.gmPlugin_Patient</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images-module.html#getBulb1Data">getBulb1Data()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images-module.html">Gnumed.wxpython.images</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images-module.html#getSmallDnArrowImage">getSmallDnArrowImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images-module.html">Gnumed.wxpython.images</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmPersonContactWidgets-module.html">gmPersonContactWidgets</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython-module.html">Gnumed.wxpython</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images-module.html#getBulb1Image">getBulb1Image()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images-module.html">Gnumed.wxpython.images</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images-module.html#getSmallUpArrowBitmap">getSmallUpArrowBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images-module.html">Gnumed.wxpython.images</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.business.gmPersonSearch-module.html">gmPersonSearch</a><br />
<span class="index-where">(in <a href="Gnumed.business-module.html">Gnumed.business</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images-module.html#getBulb2Bitmap">getBulb2Bitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images-module.html">Gnumed.wxpython.images</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images-module.html#getSmallUpArrowData">getSmallUpArrowData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images-module.html">Gnumed.wxpython.images</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmPG-module.html">gmPG</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon-module.html">Gnumed.pycommon</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images-module.html#getBulb2Data">getBulb2Data()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images-module.html">Gnumed.wxpython.images</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images-module.html#getSmallUpArrowImage">getSmallUpArrowImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images-module.html">Gnumed.wxpython.images</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmPG2-module.html">gmPG2</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon-module.html">Gnumed.pycommon</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images-module.html#getBulb2Image">getBulb2Image()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images-module.html">Gnumed.wxpython.images</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images-module.html#getSmilesBitmap">getSmilesBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images-module.html">Gnumed.wxpython.images</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmPhraseWheel-module.html">gmPhraseWheel</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython-module.html">Gnumed.wxpython</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnumedGP-module.html#getCalculatorBitmap">getCalculatorBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnumedGP-module.html">Gnumed.wxpython.images_gnumedGP</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images-module.html#getSmilesData">getSmilesData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images-module.html">Gnumed.wxpython.images</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmMacro.gmPlaceholderHandler-class.html">gmPlaceholderHandler</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmMacro-module.html">Gnumed.wxpython.gmMacro</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnumedGP-module.html#getCalculatorData">getCalculatorData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnumedGP-module.html">Gnumed.wxpython.images_gnumedGP</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images-module.html#getSmilesImage">getSmilesImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images-module.html">Gnumed.wxpython.images</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmPlugin-module.html">gmPlugin</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython-module.html">Gnumed.wxpython</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnumedGP-module.html#getCalculatorImage">getCalculatorImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnumedGP-module.html">Gnumed.wxpython.images_gnumedGP</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html#getsnapshotBitmap">getsnapshotBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html">Gnumed.wxpython.images_contacts_toolbar16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmPlugin_Patient-module.html">gmPlugin_Patient</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython-module.html">Gnumed.wxpython</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images-module.html#getCalendarBitmap">getCalendarBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images-module.html">Gnumed.wxpython.images</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getsnapshotBitmap">getsnapshotBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmEditArea.gmPnlEditAreaPrompts-class.html">gmPnlEditAreaPrompts</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmEditArea-module.html">Gnumed.wxpython.gmEditArea</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images-module.html#getCalendarData">getCalendarData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images-module.html">Gnumed.wxpython.images</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html#getsnapshotData">getsnapshotData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html">Gnumed.wxpython.images_contacts_toolbar16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.business.gmPracSoftAU-module.html">gmPracSoftAU</a><br />
<span class="index-where">(in <a href="Gnumed.business-module.html">Gnumed.business</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images-module.html#getCalendarImage">getCalendarImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images-module.html">Gnumed.wxpython.images</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getsnapshotData">getsnapshotData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmPregWidgets-module.html">gmPregWidgets</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython-module.html">Gnumed.wxpython</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.artwork.checkboxOff-module.html#getCheckboxOff">getCheckboxOff()</a><br />
<span class="index-where">(in <a href="Gnumed.artwork.checkboxOff-module.html">Gnumed.artwork.checkboxOff</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html#getsnapshotImage">getsnapshotImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html">Gnumed.wxpython.images_contacts_toolbar16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmEditArea.gmPrescriptionEditArea-class.html">gmPrescriptionEditArea</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmEditArea-module.html">Gnumed.wxpython.gmEditArea</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.artwork.checkboxOff-module.html#getCheckboxOffBitmap">getCheckboxOffBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.artwork.checkboxOff-module.html">Gnumed.artwork.checkboxOff</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getsnapshotImage">getsnapshotImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmFormPrinter.gmPrinterSetupDialog-class.html">gmPrinterSetupDialog</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmFormPrinter-module.html">Gnumed.wxpython.gmFormPrinter</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.artwork.checkboxOn-module.html#getCheckboxOn">getCheckboxOn()</a><br />
<span class="index-where">(in <a href="Gnumed.artwork.checkboxOn-module.html">Gnumed.artwork.checkboxOn</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#getsort_A_ZBitmap">getsort_A_ZBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmPrinting-module.html">gmPrinting</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon-module.html">Gnumed.pycommon</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.artwork.checkboxOn-module.html#getCheckboxOnBitmap">getCheckboxOnBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.artwork.checkboxOn-module.html">Gnumed.artwork.checkboxOn</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html#getsort_A_ZBitmap">getsort_A_ZBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html">Gnumed.wxpython.images_contacts_toolbar16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.business.gmProviderInbox-module.html">gmProviderInbox</a><br />
<span class="index-where">(in <a href="Gnumed.business-module.html">Gnumed.business</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.patient.gmGP_AnteNatal_3.CustomDataTable-class.html#GetColLabelValue">GetColLabelValue()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.patient.gmGP_AnteNatal_3.CustomDataTable-class.html">CustomDataTable</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getsort_A_ZBitmap">getsort_A_ZBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmProviderInboxPlugin-module.html">gmProviderInboxPlugin</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gui-module.html">Gnumed.wxpython.gui</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmXdtViewer.gmXdtViewerPanel-class.html#getColumnText">getColumnText()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gui.gmXdtViewer.gmXdtViewerPanel-class.html">gmXdtViewerPanel</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#getsort_A_ZData">getsort_A_ZData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmProviderInboxPlugin.gmProviderInboxPlugin-class.html">gmProviderInboxPlugin</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gui.gmProviderInboxPlugin-module.html">Gnumed.wxpython.gui.gmProviderInboxPlugin</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmConfigCommon.ConfigData-class.html#GetConfigData">GetConfigData()</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmConfigCommon.ConfigData-class.html">ConfigData</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html#getsort_A_ZData">getsort_A_ZData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html">Gnumed.wxpython.images_contacts_toolbar16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmProviderInboxWidgets-module.html">gmProviderInboxWidgets</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython-module.html">Gnumed.wxpython</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmConfigCommon.ConfigDataDB-class.html#GetConfigData">GetConfigData()</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmConfigCommon.ConfigDataDB-class.html">ConfigDataDB</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getsort_A_ZData">getsort_A_ZData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmPsql-module.html">gmPsql</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon-module.html">Gnumed.pycommon</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmConfigCommon.ConfigDataFile-class.html#GetConfigData">GetConfigData()</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmConfigCommon.ConfigDataFile-class.html">ConfigDataFile</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#getsort_A_ZImage">getsort_A_ZImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmEditArea.gmReferralEditArea-class.html">gmReferralEditArea</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmEditArea-module.html">Gnumed.wxpython.gmEditArea</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmConfigCommon.ConfigSource-class.html#getConfigData">getConfigData()</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmConfigCommon.ConfigSource-class.html">ConfigSource</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html#getsort_A_ZImage">getsort_A_ZImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html">Gnumed.wxpython.images_contacts_toolbar16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmRegetMixin-module.html">gmRegetMixin</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython-module.html">Gnumed.wxpython</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#getconfigureBitmap">getconfigureBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getsort_A_ZImage">getsort_A_ZImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmRequest-module.html">gmRequest</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gui-module.html">Gnumed.wxpython.gui</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html#getconfigureBitmap">getconfigureBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html">Gnumed.wxpython.images_for_gnumed_browser16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html#getsort_Z_ABitmap">getsort_Z_ABitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html">Gnumed.wxpython.images_contacts_toolbar16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmRequest.gmRequest-class.html">gmRequest</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gui.gmRequest-module.html">Gnumed.wxpython.gui.gmRequest</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#getconfigureData">getconfigureData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getsort_Z_ABitmap">getsort_Z_ABitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmResizingWidgets-module.html">gmResizingWidgets</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython-module.html">Gnumed.wxpython</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html#getconfigureData">getconfigureData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html">Gnumed.wxpython.images_for_gnumed_browser16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html#getsort_Z_AData">getsort_Z_AData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html">Gnumed.wxpython.images_contacts_toolbar16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmScanBackend-module.html">gmScanBackend</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon-module.html">Gnumed.pycommon</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#getconfigureImage">getconfigureImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getsort_Z_AData">getsort_Z_AData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmScanIdxMedDocsPlugin-module.html">gmScanIdxMedDocsPlugin</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gui-module.html">Gnumed.wxpython.gui</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html#getconfigureImage">getconfigureImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html">Gnumed.wxpython.images_for_gnumed_browser16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html#getsort_Z_AImage">getsort_Z_AImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html">Gnumed.wxpython.images_contacts_toolbar16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmScanIdxMedDocsPlugin.gmScanIdxMedDocsPlugin-class.html">gmScanIdxMedDocsPlugin</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gui.gmScanIdxMedDocsPlugin-module.html">Gnumed.wxpython.gui.gmScanIdxMedDocsPlugin</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmPG.ConnectionPool-class.html#GetConnection">GetConnection()</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmPG.ConnectionPool-class.html">ConnectionPool</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getsort_Z_AImage">getsort_Z_AImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmScriptingListener-module.html">gmScriptingListener</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon-module.html">Gnumed.pycommon</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#getcontentsBitmap">getcontentsBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#getspellcheckBitmap">getspellcheckBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmEMRTextDump.gmScrolledEMRTextDump-class.html">gmScrolledEMRTextDump</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmEMRTextDump-module.html">Gnumed.wxpython.gmEMRTextDump</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html#getcontentsBitmap">getcontentsBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html">Gnumed.wxpython.images_for_gnumed_browser16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html#getspellcheckBitmap">getspellcheckBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html">Gnumed.wxpython.images_for_gnumed_browser16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmEditArea-module.html#gmSECTION_CLINICALNOTES">gmSECTION_CLINICALNOTES</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmEditArea-module.html">Gnumed.wxpython.gmEditArea</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#getcontentsData">getcontentsData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#getspellcheckData">getspellcheckData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmEditArea-module.html#gmSECTION_DEMOGRAPHICS">gmSECTION_DEMOGRAPHICS</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmEditArea-module.html">Gnumed.wxpython.gmEditArea</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html#getcontentsData">getcontentsData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html">Gnumed.wxpython.images_for_gnumed_browser16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html#getspellcheckData">getspellcheckData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html">Gnumed.wxpython.images_for_gnumed_browser16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmEditArea-module.html#gmSECTION_FAMILYHISTORY">gmSECTION_FAMILYHISTORY</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmEditArea-module.html">Gnumed.wxpython.gmEditArea</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#getcontentsImage">getcontentsImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#getspellcheckImage">getspellcheckImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.patient.gmGP_FamilyHistory-module.html#gmSECTION_FAMILYHISTORY">gmSECTION_FAMILYHISTORY</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.patient.gmGP_FamilyHistory-module.html">Gnumed.wxpython.patient.gmGP_FamilyHistory</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html#getcontentsImage">getcontentsImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html">Gnumed.wxpython.images_for_gnumed_browser16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html#getspellcheckImage">getspellcheckImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html">Gnumed.wxpython.images_for_gnumed_browser16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.patient.gmGP_Measurements-module.html#gmSECTION_MEASUREMENTS">gmSECTION_MEASUREMENTS</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.patient.gmGP_Measurements-module.html">Gnumed.wxpython.patient.gmGP_Measurements</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images-module.html#getCopyBitmap">getCopyBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images-module.html">Gnumed.wxpython.images</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html#getsqlBitmap">getsqlBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html">Gnumed.wxpython.images_contacts_toolbar16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmEditArea-module.html#gmSECTION_PASTHISTORY">gmSECTION_PASTHISTORY</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmEditArea-module.html">Gnumed.wxpython.gmEditArea</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images-module.html#getCopyData">getCopyData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images-module.html">Gnumed.wxpython.images</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getsqlBitmap">getsqlBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.patient.gmGP_PastHistory-module.html#gmSECTION_PASTHISTORY">gmSECTION_PASTHISTORY</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.patient.gmGP_PastHistory-module.html">Gnumed.wxpython.patient.gmGP_PastHistory</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images-module.html#getCopyImage">getCopyImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images-module.html">Gnumed.wxpython.images</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html#getsqlData">getsqlData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html">Gnumed.wxpython.images_contacts_toolbar16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.patient.gmDemographics-module.html#gmSECTION_PATIENT">gmSECTION_PATIENT</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.patient.gmDemographics-module.html">Gnumed.wxpython.patient.gmDemographics</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmDemographicRecord-module.html#getCountry">getCountry()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmDemographicRecord-module.html">Gnumed.business.gmDemographicRecord</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getsqlData">getsqlData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmEditArea-module.html#gmSECTION_RECALLS">gmSECTION_RECALLS</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmEditArea-module.html">Gnumed.wxpython.gmEditArea</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmContacts.cContactsPanel-class.html#getCurrent">getCurrent()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gui.gmContacts.cContactsPanel-class.html">cContactsPanel</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html#getsqlImage">getsqlImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html">Gnumed.wxpython.images_contacts_toolbar16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.patient.gmGP_Recalls-module.html#gmSECTION_RECALLS">gmSECTION_RECALLS</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.patient.gmGP_Recalls-module.html">Gnumed.wxpython.patient.gmGP_Recalls</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html#getCustom_SeparatorBitmap">getCustom_SeparatorBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html">Gnumed.wxpython.images_gnuMedGP_Toolbar</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getsqlImage">getsqlImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmEditArea-module.html#gmSECTION_REFERRALS">gmSECTION_REFERRALS</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmEditArea-module.html">Gnumed.wxpython.gmEditArea</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getCustom_SeparatorBitmap">getCustom_SeparatorBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.business.gmDemographicRecord-module.html#getStreet">getStreet()</a><br />
<span class="index-where">(in <a href="Gnumed.business.gmDemographicRecord-module.html">Gnumed.business.gmDemographicRecord</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmEditArea-module.html#gmSECTION_REQUESTS">gmSECTION_REQUESTS</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmEditArea-module.html">Gnumed.wxpython.gmEditArea</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html#getCustom_SeparatorData">getCustom_SeparatorData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html">Gnumed.wxpython.images_gnuMedGP_Toolbar</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmResizingWidgets.cResizingWindow-class.html#GetSummary">GetSummary()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmResizingWidgets.cResizingWindow-class.html">cResizingWindow</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.patient.gmGP_Requests-module.html#gmSECTION_REQUESTS">gmSECTION_REQUESTS</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.patient.gmGP_Requests-module.html">Gnumed.wxpython.patient.gmGP_Requests</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getCustom_SeparatorData">getCustom_SeparatorData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnumedGP_notebook-module.html#getTab_Letters_ReceivedBitmap">getTab_Letters_ReceivedBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnumedGP_notebook-module.html">Gnumed.wxpython.images_gnumedGP_notebook</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmEditArea-module.html#gmSECTION_SCRIPT">gmSECTION_SCRIPT</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmEditArea-module.html">Gnumed.wxpython.gmEditArea</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html#getCustom_SeparatorImage">getCustom_SeparatorImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html">Gnumed.wxpython.images_gnuMedGP_Toolbar</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnumedGP_notebook-module.html#getTab_Letters_ReceivedData">getTab_Letters_ReceivedData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnumedGP_notebook-module.html">Gnumed.wxpython.images_gnumedGP_notebook</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.patient.gmGP_Prescriptions-module.html#gmSECTION_SCRIPT">gmSECTION_SCRIPT</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.patient.gmGP_Prescriptions-module.html">Gnumed.wxpython.patient.gmGP_Prescriptions</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getCustom_SeparatorImage">getCustom_SeparatorImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnumedGP_notebook-module.html#getTab_Letters_ReceivedImage">getTab_Letters_ReceivedImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnumedGP_notebook-module.html">Gnumed.wxpython.images_gnumedGP_notebook</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmEditArea-module.html#gmSECTION_SUMMARY">gmSECTION_SUMMARY</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmEditArea-module.html">Gnumed.wxpython.gmEditArea</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#getcustomseparatorBitmap">getcustomseparatorBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnumedGP_notebook-module.html#getTab_MeasurementsBitmap">getTab_MeasurementsBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnumedGP_notebook-module.html">Gnumed.wxpython.images_gnumedGP_notebook</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmSerialTools-module.html">gmSerialTools</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon-module.html">Gnumed.pycommon</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html#getcustomseparatorBitmap">getcustomseparatorBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html">Gnumed.wxpython.images_for_gnumed_browser16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnumedGP_notebook-module.html#getTab_MeasurementsData">getTab_MeasurementsData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnumedGP_notebook-module.html">Gnumed.wxpython.images_gnumedGP_notebook</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmShadow-module.html">gmShadow</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython-module.html">Gnumed.wxpython</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#getcustomseparatorData">getcustomseparatorData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnumedGP_notebook-module.html#getTab_MeasurementsImage">getTab_MeasurementsImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnumedGP_notebook-module.html">Gnumed.wxpython.images_gnumedGP_notebook</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmShellAPI-module.html">gmShellAPI</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon-module.html">Gnumed.pycommon</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html#getcustomseparatorData">getcustomseparatorData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html">Gnumed.wxpython.images_for_gnumed_browser16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnumedGP_notebook-module.html#getTab_RecallsBitmap">getTab_RecallsBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnumedGP_notebook-module.html">Gnumed.wxpython.images_gnumedGP_notebook</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmShowMedDocs-module.html">gmShowMedDocs</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gui-module.html">Gnumed.wxpython.gui</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#getcustomseparatorImage">getcustomseparatorImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnumedGP_notebook-module.html#getTab_RecallsData">getTab_RecallsData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnumedGP_notebook-module.html">Gnumed.wxpython.images_gnumedGP_notebook</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmShowMedDocs.gmShowMedDocs-class.html">gmShowMedDocs</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gui.gmShowMedDocs-module.html">Gnumed.wxpython.gui.gmShowMedDocs</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html#getcustomseparatorImage">getcustomseparatorImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html">Gnumed.wxpython.images_for_gnumed_browser16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnumedGP_notebook-module.html#getTab_RecallsImage">getTab_RecallsImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnumedGP_notebook-module.html">Gnumed.wxpython.images_gnumedGP_notebook</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmSimpleSoapPlugin-module.html">gmSimpleSoapPlugin</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gui-module.html">Gnumed.wxpython.gui</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html#getcutBitmap">getcutBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html">Gnumed.wxpython.images_contacts_toolbar16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnumedGP_notebook-module.html#getTab_ReferralsBitmap">getTab_ReferralsBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnumedGP_notebook-module.html">Gnumed.wxpython.images_gnumedGP_notebook</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmSimpleSoapPlugin.gmSimpleSoapPlugin-class.html">gmSimpleSoapPlugin</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gui.gmSimpleSoapPlugin-module.html">Gnumed.wxpython.gui.gmSimpleSoapPlugin</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getcutBitmap">getcutBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnumedGP_notebook-module.html#getTab_ReferralsData">getTab_ReferralsData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnumedGP_notebook-module.html">Gnumed.wxpython.images_gnumedGP_notebook</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmSnellen-module.html">gmSnellen</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython-module.html">Gnumed.wxpython</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html#getcutData">getcutData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html">Gnumed.wxpython.images_contacts_toolbar16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnumedGP_notebook-module.html#getTab_ReferralsImage">getTab_ReferralsImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnumedGP_notebook-module.html">Gnumed.wxpython.images_gnumedGP_notebook</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.business.gmSOAPimporter-module.html">gmSOAPimporter</a><br />
<span class="index-where">(in <a href="Gnumed.business-module.html">Gnumed.business</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getcutData">getcutData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnumedGP_notebook-module.html#getTab_RequestsBitmap">getTab_RequestsBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnumedGP_notebook-module.html">Gnumed.wxpython.images_gnumedGP_notebook</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmSoapPlugin-module.html">gmSoapPlugin</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gui-module.html">Gnumed.wxpython.gui</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html#getcutImage">getcutImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html">Gnumed.wxpython.images_contacts_toolbar16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnumedGP_notebook-module.html#getTab_RequestsData">getTab_RequestsData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnumedGP_notebook-module.html">Gnumed.wxpython.images_gnumedGP_notebook</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmSoapPlugin.gmSoapPlugin-class.html">gmSoapPlugin</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gui.gmSoapPlugin-module.html">Gnumed.wxpython.gui.gmSoapPlugin</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getcutImage">getcutImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnumedGP_notebook-module.html#getTab_RequestsImage">getTab_RequestsImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnumedGP_notebook-module.html">Gnumed.wxpython.images_gnumedGP_notebook</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmSOAPWidgets-module.html">gmSOAPWidgets</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython-module.html">Gnumed.wxpython</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmDrugObject.cDrug-class.html#GetData">GetData()</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmDrugObject.cDrug-class.html">cDrug</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnumedGP_notebook-module.html#getTab_ScriptBitmap">getTab_ScriptBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnumedGP_notebook-module.html">Gnumed.wxpython.images_gnumedGP_notebook</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.business.gmStaff-module.html">gmStaff</a><br />
<span class="index-where">(in <a href="Gnumed.business-module.html">Gnumed.business</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmDrugObject.cQueryGroupHandler-class.html#getData">getData()</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmDrugObject.cQueryGroupHandler-class.html">cQueryGroupHandler</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnumedGP_notebook-module.html#getTab_ScriptData">getTab_ScriptData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnumedGP_notebook-module.html">Gnumed.wxpython.images_gnumedGP_notebook</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmStaffWidgets-module.html">gmStaffWidgets</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython-module.html">Gnumed.wxpython</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmDateTimeInput.cDateInputPhraseWheel-class.html#GetData">GetData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmDateTimeInput.cDateInputPhraseWheel-class.html">cDateInputPhraseWheel</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnumedGP_notebook-module.html#getTab_ScriptImage">getTab_ScriptImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnumedGP_notebook-module.html">Gnumed.wxpython.images_gnumedGP_notebook</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.business.gmSurgery-module.html">gmSurgery</a><br />
<span class="index-where">(in <a href="Gnumed.business-module.html">Gnumed.business</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmDateTimeInput.cIntervalPhraseWheel-class.html#GetData">GetData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmDateTimeInput.cIntervalPhraseWheel-class.html">cIntervalPhraseWheel</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images-module.html#getTest2Bitmap">getTest2Bitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images-module.html">Gnumed.wxpython.images</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmTerryGuiParts-module.html">gmTerryGuiParts</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython-module.html">Gnumed.wxpython</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmEMRStructWidgets.cEpisodeSelectionPhraseWheel-class.html#GetData">GetData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmEMRStructWidgets.cEpisodeSelectionPhraseWheel-class.html">cEpisodeSelectionPhraseWheel</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images-module.html#getTest2Data">getTest2Data()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images-module.html">Gnumed.wxpython.images</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmCryptoText.gmTextctrlFileDropTarget-class.html">gmTextctrlFileDropTarget</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmCryptoText-module.html">Gnumed.wxpython.gmCryptoText</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmGP_HabitsRiskFactors.HabitsRiskFactors-class.html#GetData">GetData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmGP_HabitsRiskFactors.HabitsRiskFactors-class.html">HabitsRiskFactors</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images-module.html#getTest2Image">getTest2Image()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images-module.html">Gnumed.wxpython.images</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmTextExpansionWidgets-module.html">gmTextExpansionWidgets</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython-module.html">Gnumed.wxpython</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmGP_Inbox.Inbox-class.html#GetData">GetData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmGP_Inbox.Inbox-class.html">Inbox</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images-module.html#getTestMaskBitmap">getTestMaskBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images-module.html">Gnumed.wxpython.images</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmTimer-module.html">gmTimer</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython-module.html">Gnumed.wxpython</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmMultiColumnList.MultiColumnList-class.html#GetData">GetData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmMultiColumnList.MultiColumnList-class.html">MultiColumnList</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images-module.html#getTestMaskData">getTestMaskData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images-module.html">Gnumed.wxpython.images</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmTools-module.html">gmTools</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon-module.html">Gnumed.pycommon</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmPhraseWheel.cMultiPhraseWheel-class.html#GetData">GetData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmPhraseWheel.cMultiPhraseWheel-class.html">cMultiPhraseWheel</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images-module.html#getTestMaskImage">getTestMaskImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images-module.html">Gnumed.wxpython.images</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmGuiMain.gmTopLevelFrame-class.html">gmTopLevelFrame</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmGuiMain-module.html">Gnumed.wxpython.gmGuiMain</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmPhraseWheel.cPhraseWheel-class.html#GetData">GetData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmPhraseWheel.cPhraseWheel-class.html">cPhraseWheel</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images-module.html#getTestStar2Bitmap">getTestStar2Bitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images-module.html">Gnumed.wxpython.images</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmTopPanel-module.html">gmTopPanel</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython-module.html">Gnumed.wxpython</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmPhraseWheel.cPhraseWheelBase-class.html#GetData">GetData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmPhraseWheel.cPhraseWheelBase-class.html">cPhraseWheelBase</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images-module.html#getTestStar2Data">getTestStar2Data()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images-module.html">Gnumed.wxpython.images</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.business.gmVaccination-module.html">gmVaccination</a><br />
<span class="index-where">(in <a href="Gnumed.business-module.html">Gnumed.business</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmResizingWidgets.cResizingSTC-class.html#GetData">GetData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmResizingWidgets.cResizingSTC-class.html">cResizingSTC</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images-module.html#getTestStar2Image">getTestStar2Image()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images-module.html">Gnumed.wxpython.images</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmVaccinationsPlugin-module.html">gmVaccinationsPlugin</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gui-module.html">Gnumed.wxpython.gui</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmLoginInfo.LoginInfo-class.html#GetDatabase">GetDatabase()</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmLoginInfo.LoginInfo-class.html">LoginInfo</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images-module.html#getTestStarBitmap">getTestStarBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images-module.html">Gnumed.wxpython.images</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmVaccinationsPlugin.gmVaccinationsPlugin-class.html">gmVaccinationsPlugin</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gui.gmVaccinationsPlugin-module.html">Gnumed.wxpython.gui.gmVaccinationsPlugin</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmEditArea.gmEditArea-class.html#getDataId">getDataId()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmEditArea.gmEditArea-class.html">gmEditArea</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images-module.html#getTestStarData">getTestStarData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images-module.html">Gnumed.wxpython.images</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmVaccWidgets-module.html">gmVaccWidgets</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython-module.html">Gnumed.wxpython</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmLoginInfo.LoginInfo-class.html#GetDBAPI_DSN">GetDBAPI_DSN()</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmLoginInfo.LoginInfo-class.html">LoginInfo</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images-module.html#getTestStarImage">getTestStarImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images-module.html">Gnumed.wxpython.images</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmWaitingListPlugin-module.html">gmWaitingListPlugin</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gui-module.html">Gnumed.wxpython.gui</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images-module.html#getDbDecBitmap">getDbDecBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images-module.html">Gnumed.wxpython.images</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmGP_HabitsRiskFactors.HabitsRiskFactors-class.html#getTextCtrl">getTextCtrl()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmGP_HabitsRiskFactors.HabitsRiskFactors-class.html">HabitsRiskFactors</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmWaitingListPlugin.gmWaitingListPlugin-class.html">gmWaitingListPlugin</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gui.gmWaitingListPlugin-module.html">Gnumed.wxpython.gui.gmWaitingListPlugin</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images-module.html#getDbDecData">getDbDecData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images-module.html">Gnumed.wxpython.images</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images-module.html#getTog1Bitmap">getTog1Bitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images-module.html">Gnumed.wxpython.images</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmWaitingListWidgets-module.html">gmWaitingListWidgets</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython-module.html">Gnumed.wxpython</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images-module.html#getDbDecImage">getDbDecImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images-module.html">Gnumed.wxpython.images</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images-module.html#getTog1Data">getTog1Data()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images-module.html">Gnumed.wxpython.images</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.proxiedpyjamas.gmWebGuiServer-module.html">gmWebGuiServer</a><br />
<span class="index-where">(in <a href="Gnumed.proxiedpyjamas-module.html">Gnumed.proxiedpyjamas</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images-module.html#getDbIncBitmap">getDbIncBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images-module.html">Gnumed.wxpython.images</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images-module.html#getTog1Image">getTog1Image()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images-module.html">Gnumed.wxpython.images</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.business.gmXdtMappings-module.html">gmXdtMappings</a><br />
<span class="index-where">(in <a href="Gnumed.business-module.html">Gnumed.business</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images-module.html#getDbIncData">getDbIncData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images-module.html">Gnumed.wxpython.images</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images-module.html#getTog2Bitmap">getTog2Bitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images-module.html">Gnumed.wxpython.images</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.business.gmXdtObjects-module.html">gmXdtObjects</a><br />
<span class="index-where">(in <a href="Gnumed.business-module.html">Gnumed.business</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images-module.html#getDbIncImage">getDbIncImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images-module.html">Gnumed.wxpython.images</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images-module.html#getTog2Data">getTog2Data()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images-module.html">Gnumed.wxpython.images</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmXdtViewer-module.html">gmXdtViewer</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gui-module.html">Gnumed.wxpython.gui</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmCfg-module.html#getDBParam">getDBParam()</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmCfg-module.html">Gnumed.pycommon.gmCfg</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images-module.html#getTog2Image">getTog2Image()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images-module.html">Gnumed.wxpython.images</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmXdtViewer.gmXdtViewer-class.html">gmXdtViewer</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gui.gmXdtViewer-module.html">Gnumed.wxpython.gui.gmXdtViewer</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images-module.html#getDecBitmap">getDecBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images-module.html">Gnumed.wxpython.images</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html#getToolbar_AllergiesBitmap">getToolbar_AllergiesBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html">Gnumed.wxpython.images_gnuMedGP_Toolbar</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmXdtViewer.gmXdtViewerPanel-class.html">gmXdtViewerPanel</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gui.gmXdtViewer-module.html">Gnumed.wxpython.gui.gmXdtViewer</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images-module.html#getDecData">getDecData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images-module.html">Gnumed.wxpython.images</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html#getToolbar_AllergiesData">getToolbar_AllergiesData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html">Gnumed.wxpython.images_gnuMedGP_Toolbar</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.business.gmXmlDocDesc-module.html">gmXmlDocDesc</a><br />
<span class="index-where">(in <a href="Gnumed.business-module.html">Gnumed.business</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images-module.html#getDecImage">getDecImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images-module.html">Gnumed.wxpython.images</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html#getToolbar_AllergiesImage">getToolbar_AllergiesImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html">Gnumed.wxpython.images_gnuMedGP_Toolbar</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed-module.html">Gnumed</a></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#getdecryptedBitmap">getdecryptedBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html#getToolbar_BMICalcBitmap">getToolbar_BMICalcBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html">Gnumed.wxpython.images_gnuMedGP_Toolbar</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.gnumed-module.html">gnumed</a><br />
<span class="index-where">(in <a href="Gnumed-module.html">Gnumed</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html#getdecryptedBitmap">getdecryptedBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html">Gnumed.wxpython.images_for_gnumed_browser16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html#getToolbar_BMICalcData">getToolbar_BMICalcData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html">Gnumed.wxpython.images_gnuMedGP_Toolbar</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmSnellen.cSnellenChart-class.html#greek">greek</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmSnellen.cSnellenChart-class.html">cSnellenChart</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#getdecryptedData">getdecryptedData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html#getToolbar_BMICalcImage">getToolbar_BMICalcImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html">Gnumed.wxpython.images_gnuMedGP_Toolbar</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmDateTime-module.html#gregorian_month_length">gregorian_month_length</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmDateTime-module.html">Gnumed.pycommon.gmDateTime</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html#getdecryptedData">getdecryptedData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html">Gnumed.wxpython.images_for_gnumed_browser16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html#getToolbar_CalculatorBitmap">getToolbar_CalculatorBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html">Gnumed.wxpython.images_gnuMedGP_Toolbar</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmMedicationWidgets.cCurrentSubstancesGrid-class.html#grouping_mode">grouping_mode</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gmMedicationWidgets.cCurrentSubstancesGrid-class.html">cCurrentSubstancesGrid</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_Archive_plugin-module.html#getdecryptedImage">getdecryptedImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_Archive_plugin-module.html">Gnumed.wxpython.images_Archive_plugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html#getToolbar_CalculatorData">getToolbar_CalculatorData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html">Gnumed.wxpython.images_gnuMedGP_Toolbar</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmMimeLib-module.html#guess_ext_by_mimetype">guess_ext_by_mimetype()</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmMimeLib-module.html">Gnumed.pycommon.gmMimeLib</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html#getdecryptedImage">getdecryptedImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_for_gnumed_browser16_16-module.html">Gnumed.wxpython.images_for_gnumed_browser16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html#getToolbar_CalculatorImage">getToolbar_CalculatorImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html">Gnumed.wxpython.images_gnuMedGP_Toolbar</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmMimeLib-module.html#guess_ext_for_file">guess_ext_for_file()</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmMimeLib-module.html">Gnumed.pycommon.gmMimeLib</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmConfigCommon.ConfigSource-class.html#getDescription">getDescription()</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmConfigCommon.ConfigSource-class.html">ConfigSource</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html#getToolbar_CalendarBitmap">getToolbar_CalendarBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html">Gnumed.wxpython.images_gnuMedGP_Toolbar</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmMimeLib-module.html#guess_mimetype">guess_mimetype()</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmMimeLib-module.html">Gnumed.pycommon.gmMimeLib</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html#getdoctorBitmap">getdoctorBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html">Gnumed.wxpython.images_contacts_toolbar16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html#getToolbar_CalendarData">getToolbar_CalendarData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html">Gnumed.wxpython.images_gnuMedGP_Toolbar</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui-module.html">gui</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython-module.html">Gnumed.wxpython</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getdoctorBitmap">getdoctorBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html#getToolbar_CalendarImage">getToolbar_CalendarImage()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html">Gnumed.wxpython.images_gnuMedGP_Toolbar</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmGuiBroker.GuiBroker-class.html">GuiBroker</a><br />
<span class="index-where">(in <a href="Gnumed.pycommon.gmGuiBroker-module.html">Gnumed.pycommon.gmGuiBroker</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html#getdoctorData">getdoctorData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_contacts_toolbar16_16-module.html">Gnumed.wxpython.images_contacts_toolbar16_16</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html#getToolbar_ContentsBitmap">getToolbar_ContentsBitmap()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html">Gnumed.wxpython.images_gnuMedGP_Toolbar</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmDrugDisplay.DrugDisplay-class.html#GuiElements_Init">GuiElements_Init()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.gui.gmDrugDisplay.DrugDisplay-class.html">DrugDisplay</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_patient_demographics-module.html#getdoctorData">getdoctorData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_patient_demographics-module.html">Gnumed.wxpython.images_patient_demographics</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html#getToolbar_ContentsData">getToolbar_ContentsData()</a><br />
<span class="index-where">(in <a href="Gnumed.wxpython.images_gnuMedGP_Toolbar-module.html">Gnumed.wxpython.images_gnuMedGP_Toolbar</a>)</span></td>
<td width="33%" class="link-index"> </td>
</tr>
</table>
</td></tr>
</table>
<br /><br /><!-- ==================== NAVIGATION BAR ==================== -->
<table class="navbar" border="0" width="100%" cellpadding="0"
bgcolor="#a0c0ff" cellspacing="0">
<tr valign="middle">
<!-- Home link -->
<th> <a
href="Gnumed-module.html">Home</a> </th>
<!-- Tree link -->
<th> <a
href="module-tree.html">Trees</a> </th>
<!-- Index link -->
<th bgcolor="#70b0f0" class="navbar-select"
> Indices </th>
<!-- Help link -->
<th> <a
href="help.html">Help</a> </th>
<!-- Project homepage -->
<th class="navbar" align="right" width="100%">
<table border="0" cellpadding="0" cellspacing="0">
<tr><th class="navbar" align="center"
><a class="navbar" target="_top" href="http://www.gnumed.org">GNUmed Never Sleeps</a></th>
</tr></table></th>
</tr>
</table>
<table border="0" cellpadding="0" cellspacing="0" width="100%%">
<tr>
<td align="left" class="footer">
Generated by Epydoc 3.0.1 on Mon Jun 25 03:58:05 2012
</td>
<td align="right" class="footer">
<a target="mainFrame" href="http://epydoc.sourceforge.net"
>http://epydoc.sourceforge.net</a>
</td>
</tr>
</table>
<script type="text/javascript">
<!--
// Private objects are initially displayed (because if
// javascript is turned off then we want them to be
// visible); but by default, we want to hide them. So hide
// them unless we have a cookie that says to show them.
checkCookie();
// -->
</script>
</body>
</html>
|