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
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" content="Doxygen 1.8.11"/>
<title>gtkmm: Gtk::TreeModel Class Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectalign" style="padding-left: 0.5em;">
<div id="projectname">gtkmm
 <span id="projectnumber">2.24.4</span>
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.11 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main Page</span></a></li>
<li><a href="pages.html"><span>Related Pages</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li><a href="namespaces.html"><span>Namespaces</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class List</span></a></li>
<li><a href="classes.html"><span>Class Index</span></a></li>
<li><a href="inherits.html"><span>Class Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><a class="el" href="namespaceGtk.html">Gtk</a></li><li class="navelem"><a class="el" href="classGtk_1_1TreeModel.html">TreeModel</a></li> </ul>
</div>
</div><!-- top -->
<div class="header">
<div class="summary">
<a href="#pub-types">Public Types</a> |
<a href="#pub-methods">Public Member Functions</a> |
<a href="#pub-static-methods">Static Public Member Functions</a> |
<a href="#pro-methods">Protected Member Functions</a> |
<a href="#related">Related Functions</a> |
<a href="classGtk_1_1TreeModel-members.html">List of all members</a> </div>
<div class="headertitle">
<div class="title">Gtk::TreeModel Class Reference<div class="ingroups"><a class="el" href="group__TreeView.html">TreeView Classes</a></div></div> </div>
</div><!--header-->
<div class="contents">
<p>This class defines a generic tree interface for use by the <a class="el" href="classGtk_1_1TreeView.html" title="The TreeView widget displays the model (Gtk::TreeModel) data and allows the user to interact with it...">Gtk::TreeView</a> widget.
<a href="classGtk_1_1TreeModel.html#details">More...</a></p>
<div class="dynheader">
Inheritance diagram for Gtk::TreeModel:</div>
<div class="dyncontent">
<div class="center"><img src="classGtk_1_1TreeModel__inherit__graph.png" border="0" usemap="#Gtk_1_1TreeModel_inherit__map" alt="Inheritance graph"/></div>
<map name="Gtk_1_1TreeModel_inherit__map" id="Gtk_1_1TreeModel_inherit__map">
<area shape="rect" id="node5" href="classGtk_1_1ListStore.html" title="Thist is a list model for use with a Gtk::TreeView widget. " alt="" coords="5,304,105,331"/>
<area shape="rect" id="node6" href="classGtk_1_1TreeModelFilter.html" title="Gtk::TreeModelFilter" alt="" coords="130,304,269,331"/>
<area shape="rect" id="node7" href="classGtk_1_1TreeModelSort.html" title="A wrapper which makes an underlying Gtk::TreeModel sortable. " alt="" coords="293,304,428,331"/>
<area shape="rect" id="node8" href="classGtk_1_1TreeStore.html" title="Gtk::TreeStore" alt="" coords="453,304,559,331"/>
<area shape="rect" id="node2" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Interface.html" title="Glib::Interface" alt="" coords="228,155,331,181"/>
<area shape="rect" id="node3" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html" title="Glib::ObjectBase" alt="" coords="220,80,339,107"/>
<area shape="rect" id="node4" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html" title="sigc::trackable" alt="" coords="227,5,331,32"/>
</map>
<center><span class="legend">[<a href="graph_legend.html">legend</a>]</span></center></div>
<div class="dynheader">
Collaboration diagram for Gtk::TreeModel:</div>
<div class="dyncontent">
<div class="center"><img src="classGtk_1_1TreeModel__coll__graph.png" border="0" usemap="#Gtk_1_1TreeModel_coll__map" alt="Collaboration graph"/></div>
<map name="Gtk_1_1TreeModel_coll__map" id="Gtk_1_1TreeModel_coll__map">
<area shape="rect" id="node2" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Interface.html" title="Glib::Interface" alt="" coords="13,155,116,181"/>
<area shape="rect" id="node3" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html" title="Glib::ObjectBase" alt="" coords="5,80,124,107"/>
<area shape="rect" id="node4" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html" title="sigc::trackable" alt="" coords="13,5,117,32"/>
</map>
<center><span class="legend">[<a href="graph_legend.html">legend</a>]</span></center></div>
<table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-types"></a>
Public Types</h2></td></tr>
<tr class="memitem:a58f10daabaa507b4c2473c9d1b6fa584"><td class="memItemLeft" align="right" valign="top">typedef <a class="el" href="classGtk_1_1TreeModelColumnRecord.html">TreeModelColumnRecord</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TreeModel.html#a58f10daabaa507b4c2473c9d1b6fa584">ColumnRecord</a></td></tr>
<tr class="separator:a58f10daabaa507b4c2473c9d1b6fa584"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad04e0f7d1bb271fceeef487a19b97703"><td class="memItemLeft" align="right" valign="top">typedef <a class="el" href="classGtk_1_1TreeNodeChildren.html">TreeNodeChildren</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TreeModel.html#ad04e0f7d1bb271fceeef487a19b97703">Children</a></td></tr>
<tr class="separator:ad04e0f7d1bb271fceeef487a19b97703"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a754e74cd833ff30e729f9b8d7daf4d8c"><td class="memItemLeft" align="right" valign="top">typedef <a class="el" href="classGtk_1_1TreeNodeChildren.html#ad327867180db4997bb42159112a47f24">Children::iterator</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TreeModel.html#a754e74cd833ff30e729f9b8d7daf4d8c">iterator</a></td></tr>
<tr class="separator:a754e74cd833ff30e729f9b8d7daf4d8c"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2d898ba817a56f34dd877887e38e4640"><td class="memItemLeft" align="right" valign="top">typedef <a class="el" href="classGtk_1_1TreeNodeChildren.html#a1b11dc8d1e456f72c67a4011e410176c">Children::reverse_iterator</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TreeModel.html#a2d898ba817a56f34dd877887e38e4640">reverse_iterator</a></td></tr>
<tr class="separator:a2d898ba817a56f34dd877887e38e4640"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab25e01638bef26f1e93617e36b212292"><td class="memItemLeft" align="right" valign="top">typedef <a class="el" href="classGtk_1_1TreeNodeChildren.html#a28d8776c1eb0a4b4bb830e886fc0c5e1">Children::const_iterator</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TreeModel.html#ab25e01638bef26f1e93617e36b212292">const_iterator</a></td></tr>
<tr class="separator:ab25e01638bef26f1e93617e36b212292"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a516b42e786cc2c3ef239e5fa46c43886"><td class="memItemLeft" align="right" valign="top">typedef <a class="el" href="classGtk_1_1TreeNodeChildren.html#ae3a940e41ed2256f2d7c811c65e5e6d3">Children::const_reverse_iterator</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TreeModel.html#a516b42e786cc2c3ef239e5fa46c43886">const_reverse_iterator</a></td></tr>
<tr class="separator:a516b42e786cc2c3ef239e5fa46c43886"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a297c9db68905e82fe7c3fac57f6c4de8"><td class="memItemLeft" align="right" valign="top">typedef <a class="el" href="classGtk_1_1TreeRow.html">TreeRow</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TreeModel.html#a297c9db68905e82fe7c3fac57f6c4de8">Row</a></td></tr>
<tr class="separator:a297c9db68905e82fe7c3fac57f6c4de8"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a06a713fecde31f2f1a7baeb0e3e2fea5"><td class="memItemLeft" align="right" valign="top">typedef <a class="el" href="classGtk_1_1TreePath.html">TreePath</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TreeModel.html#a06a713fecde31f2f1a7baeb0e3e2fea5">Path</a></td></tr>
<tr class="separator:a06a713fecde31f2f1a7baeb0e3e2fea5"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a518281b14bcc32f9d0ef4ca0584a1a30"><td class="memItemLeft" align="right" valign="top">typedef <a class="el" href="classGtk_1_1TreeRowReference.html">TreeRowReference</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TreeModel.html#a518281b14bcc32f9d0ef4ca0584a1a30">RowReference</a></td></tr>
<tr class="separator:a518281b14bcc32f9d0ef4ca0584a1a30"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9db469cffdaa5e2d38b6a8427acd12c4"><td class="memItemLeft" align="right" valign="top">typedef <a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/classsigc_1_1slot.html">sigc::slot</a>< bool, const <a class="el" href="classGtk_1_1TreeModel.html#a754e74cd833ff30e729f9b8d7daf4d8c">TreeModel::iterator</a>& > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TreeModel.html#a9db469cffdaa5e2d38b6a8427acd12c4">SlotForeachIter</a></td></tr>
<tr class="memdesc:a9db469cffdaa5e2d38b6a8427acd12c4"><td class="mdescLeft"> </td><td class="mdescRight">For example, void on_foreach(const Gtk::TreeModel::iterator& iter);. <a href="#a9db469cffdaa5e2d38b6a8427acd12c4">More...</a><br /></td></tr>
<tr class="separator:a9db469cffdaa5e2d38b6a8427acd12c4"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a254bbb5d47f64423580c055031467f98"><td class="memItemLeft" align="right" valign="top">typedef <a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/classsigc_1_1slot.html">sigc::slot</a>< bool, const <a class="el" href="classGtk_1_1TreeModel.html#a06a713fecde31f2f1a7baeb0e3e2fea5">TreeModel::Path</a>& > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TreeModel.html#a254bbb5d47f64423580c055031467f98">SlotForeachPath</a></td></tr>
<tr class="memdesc:a254bbb5d47f64423580c055031467f98"><td class="mdescLeft"> </td><td class="mdescRight">For example, void on_foreach(const Gtk::TreeModel::Path& path);. <a href="#a254bbb5d47f64423580c055031467f98">More...</a><br /></td></tr>
<tr class="separator:a254bbb5d47f64423580c055031467f98"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a83d0f66e0e21509699104401899ac394"><td class="memItemLeft" align="right" valign="top">typedef <a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/classsigc_1_1slot.html">sigc::slot</a>< bool, const <a class="el" href="classGtk_1_1TreeModel.html#a06a713fecde31f2f1a7baeb0e3e2fea5">TreeModel::Path</a>&, const <a class="el" href="classGtk_1_1TreeModel.html#a754e74cd833ff30e729f9b8d7daf4d8c">TreeModel::iterator</a>& > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TreeModel.html#a83d0f66e0e21509699104401899ac394">SlotForeachPathAndIter</a></td></tr>
<tr class="memdesc:a83d0f66e0e21509699104401899ac394"><td class="mdescLeft"> </td><td class="mdescRight">For example, void on_foreach(const Gtk::TreeModel::Path& path, const Gtk::TreeModel::iterator& iter);. <a href="#a83d0f66e0e21509699104401899ac394">More...</a><br /></td></tr>
<tr class="separator:a83d0f66e0e21509699104401899ac394"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pub_types_structsigc_1_1trackable"><td colspan="2" onclick="javascript:toggleInherit('pub_types_structsigc_1_1trackable')"><img src="closed.png" alt="-"/> Public Types inherited from <a class="el" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html">sigc::trackable</a></td></tr>
<tr class="memitem:a3338954d7565534bd945290b798e13ed inherit pub_types_structsigc_1_1trackable"><td class="memItemLeft" align="right" valign="top">typedef internal::func_destroy_notify </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html#a3338954d7565534bd945290b798e13ed">func_destroy_notify</a></td></tr>
<tr class="separator:a3338954d7565534bd945290b798e13ed inherit pub_types_structsigc_1_1trackable"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-methods"></a>
Public Member Functions</h2></td></tr>
<tr class="memitem:ac43d6be71926e7951e6fd623a3cc0929"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TreeModel.html#ac43d6be71926e7951e6fd623a3cc0929">TreeModel</a> (<a class="el" href="classGtk_1_1TreeModel.html">TreeModel</a>&& src) noexcept</td></tr>
<tr class="separator:ac43d6be71926e7951e6fd623a3cc0929"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1236a9b09c8a363d83a626e9e80185e5"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGtk_1_1TreeModel.html">TreeModel</a>& </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TreeModel.html#a1236a9b09c8a363d83a626e9e80185e5">operator=</a> (<a class="el" href="classGtk_1_1TreeModel.html">TreeModel</a>&& src) noexcept</td></tr>
<tr class="separator:a1236a9b09c8a363d83a626e9e80185e5"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2d840e90590f1ff25b39eadf65a2e7c3"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TreeModel.html#a2d840e90590f1ff25b39eadf65a2e7c3">~TreeModel</a> () noexceptoverride</td></tr>
<tr class="separator:a2d840e90590f1ff25b39eadf65a2e7c3"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a190c8fd4588b844696e36e5c12966b4b"><td class="memItemLeft" align="right" valign="top">GtkTreeModel* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TreeModel.html#a190c8fd4588b844696e36e5c12966b4b">gobj</a> ()</td></tr>
<tr class="memdesc:a190c8fd4588b844696e36e5c12966b4b"><td class="mdescLeft"> </td><td class="mdescRight">Provides access to the underlying C GObject. <a href="#a190c8fd4588b844696e36e5c12966b4b">More...</a><br /></td></tr>
<tr class="separator:a190c8fd4588b844696e36e5c12966b4b"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae6a7c63aca59b5904beef977753558c2"><td class="memItemLeft" align="right" valign="top">const GtkTreeModel* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TreeModel.html#ae6a7c63aca59b5904beef977753558c2">gobj</a> () const </td></tr>
<tr class="memdesc:ae6a7c63aca59b5904beef977753558c2"><td class="mdescLeft"> </td><td class="mdescRight">Provides access to the underlying C GObject. <a href="#ae6a7c63aca59b5904beef977753558c2">More...</a><br /></td></tr>
<tr class="separator:ae6a7c63aca59b5904beef977753558c2"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aebaa795e4920ddc0ec5e39c9f4fbc660"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGtk_1_1TreeModel.html#a754e74cd833ff30e729f9b8d7daf4d8c">iterator</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TreeModel.html#aebaa795e4920ddc0ec5e39c9f4fbc660">get_iter</a> (const <a class="el" href="classGtk_1_1TreeModel.html#a06a713fecde31f2f1a7baeb0e3e2fea5">Path</a>& path)</td></tr>
<tr class="memdesc:aebaa795e4920ddc0ec5e39c9f4fbc660"><td class="mdescLeft"> </td><td class="mdescRight">Returns a valid iterator pointing to <em>path</em>. <a href="#aebaa795e4920ddc0ec5e39c9f4fbc660">More...</a><br /></td></tr>
<tr class="separator:aebaa795e4920ddc0ec5e39c9f4fbc660"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a7697e287ce17c6f2e900c5762f7ba77a"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGtk_1_1TreeModel.html#a754e74cd833ff30e729f9b8d7daf4d8c">iterator</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TreeModel.html#a7697e287ce17c6f2e900c5762f7ba77a">get_iter</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>& path_string)</td></tr>
<tr class="memdesc:a7697e287ce17c6f2e900c5762f7ba77a"><td class="mdescLeft"> </td><td class="mdescRight">Returns a valid iterator pointing to <em>path_string</em>. <a href="#a7697e287ce17c6f2e900c5762f7ba77a">More...</a><br /></td></tr>
<tr class="separator:a7697e287ce17c6f2e900c5762f7ba77a"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a62142e8a5beffb04a2b643d7f62c890f"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGtk_1_1TreeModel.html#ad04e0f7d1bb271fceeef487a19b97703">Children</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TreeModel.html#a62142e8a5beffb04a2b643d7f62c890f">children</a> ()</td></tr>
<tr class="memdesc:a62142e8a5beffb04a2b643d7f62c890f"><td class="mdescLeft"> </td><td class="mdescRight">This returns an STL-like container API, for iterating over the rows. <a href="#a62142e8a5beffb04a2b643d7f62c890f">More...</a><br /></td></tr>
<tr class="separator:a62142e8a5beffb04a2b643d7f62c890f"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4c867cde63dbb443e1735eb8b82f85a9"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGtk_1_1TreeModel.html#ad04e0f7d1bb271fceeef487a19b97703">Children</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TreeModel.html#a4c867cde63dbb443e1735eb8b82f85a9">children</a> () const </td></tr>
<tr class="memdesc:a4c867cde63dbb443e1735eb8b82f85a9"><td class="mdescLeft"> </td><td class="mdescRight">This returns an STL-like container API, for iterating over the rows. <a href="#a4c867cde63dbb443e1735eb8b82f85a9">More...</a><br /></td></tr>
<tr class="separator:a4c867cde63dbb443e1735eb8b82f85a9"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab65a437945c182eb2b033336bb493bee"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TreeModel.html#ab65a437945c182eb2b033336bb493bee">foreach_iter</a> (const <a class="el" href="classGtk_1_1TreeModel.html#a9db469cffdaa5e2d38b6a8427acd12c4">SlotForeachIter</a>& slot)</td></tr>
<tr class="memdesc:ab65a437945c182eb2b033336bb493bee"><td class="mdescLeft"> </td><td class="mdescRight">Calls a callback slot on each node in the model in a depth-first fashion. <a href="#ab65a437945c182eb2b033336bb493bee">More...</a><br /></td></tr>
<tr class="separator:ab65a437945c182eb2b033336bb493bee"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab3879b2da7542137d136515acc2d79fa"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TreeModel.html#ab3879b2da7542137d136515acc2d79fa">foreach_path</a> (const <a class="el" href="classGtk_1_1TreeModel.html#a254bbb5d47f64423580c055031467f98">SlotForeachPath</a>& slot)</td></tr>
<tr class="memdesc:ab3879b2da7542137d136515acc2d79fa"><td class="mdescLeft"> </td><td class="mdescRight">Calls a callback slot on each node in the model in a depth-first fashion. <a href="#ab3879b2da7542137d136515acc2d79fa">More...</a><br /></td></tr>
<tr class="separator:ab3879b2da7542137d136515acc2d79fa"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a11fbc9b39c01210e525e7b6cdf91f66f"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TreeModel.html#a11fbc9b39c01210e525e7b6cdf91f66f">foreach</a> (const <a class="el" href="classGtk_1_1TreeModel.html#a83d0f66e0e21509699104401899ac394">SlotForeachPathAndIter</a>& slot)</td></tr>
<tr class="memdesc:a11fbc9b39c01210e525e7b6cdf91f66f"><td class="mdescLeft"> </td><td class="mdescRight">Calls a callback slot on each node in the model in a depth-first fashion. <a href="#a11fbc9b39c01210e525e7b6cdf91f66f">More...</a><br /></td></tr>
<tr class="separator:a11fbc9b39c01210e525e7b6cdf91f66f"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af4b5de9c0bd5a79ef06fcda4fc415ef8"><td class="memItemLeft" align="right" valign="top"><a class="el" href="group__gtkmmEnums.html#ga8db2110062643eb26461ec23b63e2cb2">TreeModelFlags</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TreeModel.html#af4b5de9c0bd5a79ef06fcda4fc415ef8">get_flags</a> () const </td></tr>
<tr class="memdesc:af4b5de9c0bd5a79ef06fcda4fc415ef8"><td class="mdescLeft"> </td><td class="mdescRight">Returns a set of flags supported by this interface. <a href="#af4b5de9c0bd5a79ef06fcda4fc415ef8">More...</a><br /></td></tr>
<tr class="separator:af4b5de9c0bd5a79ef06fcda4fc415ef8"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac0696920f0dbcdd7677198175459743c"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TreeModel.html#ac0696920f0dbcdd7677198175459743c">get_n_columns</a> () const </td></tr>
<tr class="memdesc:ac0696920f0dbcdd7677198175459743c"><td class="mdescLeft"> </td><td class="mdescRight">Returns the number of columns supported by <em>tree_model</em>. <a href="#ac0696920f0dbcdd7677198175459743c">More...</a><br /></td></tr>
<tr class="separator:ac0696920f0dbcdd7677198175459743c"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:abde62f1a364d44440b2d17960ef764e6"><td class="memItemLeft" align="right" valign="top">GType </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TreeModel.html#abde62f1a364d44440b2d17960ef764e6">get_column_type</a> (int index) const </td></tr>
<tr class="memdesc:abde62f1a364d44440b2d17960ef764e6"><td class="mdescLeft"> </td><td class="mdescRight">Returns the type of the column. <a href="#abde62f1a364d44440b2d17960ef764e6">More...</a><br /></td></tr>
<tr class="separator:abde62f1a364d44440b2d17960ef764e6"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a090a3d092d3b9876c6965d8bf79ba780"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGtk_1_1TreeModel.html#a06a713fecde31f2f1a7baeb0e3e2fea5">TreeModel::Path</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TreeModel.html#a090a3d092d3b9876c6965d8bf79ba780">get_path</a> (const <a class="el" href="classGtk_1_1TreeModel.html#a754e74cd833ff30e729f9b8d7daf4d8c">iterator</a>& iter) const </td></tr>
<tr class="memdesc:a090a3d092d3b9876c6965d8bf79ba780"><td class="mdescLeft"> </td><td class="mdescRight">Returns a <a class="el" href="classGtk_1_1TreePath.html" title="A path is essentially a potential node. ">Gtk::TreePath</a> referenced by <em>iter</em>. <a href="#a090a3d092d3b9876c6965d8bf79ba780">More...</a><br /></td></tr>
<tr class="separator:a090a3d092d3b9876c6965d8bf79ba780"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a8f06ebb80f930bb780eab62aac748df2"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TreeModel.html#a8f06ebb80f930bb780eab62aac748df2">row_changed</a> (const <a class="el" href="classGtk_1_1TreeModel.html#a06a713fecde31f2f1a7baeb0e3e2fea5">Path</a>& path, const <a class="el" href="classGtk_1_1TreeModel.html#a754e74cd833ff30e729f9b8d7daf4d8c">iterator</a>& iter)</td></tr>
<tr class="memdesc:a8f06ebb80f930bb780eab62aac748df2"><td class="mdescLeft"> </td><td class="mdescRight">Emits the "row-changed" signal on <em>tree_model</em>. <a href="#a8f06ebb80f930bb780eab62aac748df2">More...</a><br /></td></tr>
<tr class="separator:a8f06ebb80f930bb780eab62aac748df2"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a30f829882ee631c1b83fa980a00f9778"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TreeModel.html#a30f829882ee631c1b83fa980a00f9778">row_inserted</a> (const <a class="el" href="classGtk_1_1TreeModel.html#a06a713fecde31f2f1a7baeb0e3e2fea5">Path</a>& path, const <a class="el" href="classGtk_1_1TreeModel.html#a754e74cd833ff30e729f9b8d7daf4d8c">iterator</a>& iter)</td></tr>
<tr class="memdesc:a30f829882ee631c1b83fa980a00f9778"><td class="mdescLeft"> </td><td class="mdescRight">Emits the "row-inserted" signal on <em>tree_model</em>. <a href="#a30f829882ee631c1b83fa980a00f9778">More...</a><br /></td></tr>
<tr class="separator:a30f829882ee631c1b83fa980a00f9778"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a892cb6aa9235fb362fc0cd245c09d862"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TreeModel.html#a892cb6aa9235fb362fc0cd245c09d862">row_has_child_toggled</a> (const <a class="el" href="classGtk_1_1TreeModel.html#a06a713fecde31f2f1a7baeb0e3e2fea5">Path</a>& path, const <a class="el" href="classGtk_1_1TreeModel.html#a754e74cd833ff30e729f9b8d7daf4d8c">iterator</a>& iter)</td></tr>
<tr class="memdesc:a892cb6aa9235fb362fc0cd245c09d862"><td class="mdescLeft"> </td><td class="mdescRight">Emits the "row-has-child-toggled" signal on <em>tree_model</em>. <a href="#a892cb6aa9235fb362fc0cd245c09d862">More...</a><br /></td></tr>
<tr class="separator:a892cb6aa9235fb362fc0cd245c09d862"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae8896f29424c2609fde93a873ac54b28"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TreeModel.html#ae8896f29424c2609fde93a873ac54b28">row_deleted</a> (const <a class="el" href="classGtk_1_1TreeModel.html#a06a713fecde31f2f1a7baeb0e3e2fea5">Path</a>& path)</td></tr>
<tr class="memdesc:ae8896f29424c2609fde93a873ac54b28"><td class="mdescLeft"> </td><td class="mdescRight">Emits the "row-deleted" signal on <em>tree_model</em>. <a href="#ae8896f29424c2609fde93a873ac54b28">More...</a><br /></td></tr>
<tr class="separator:ae8896f29424c2609fde93a873ac54b28"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a7b3d20e68dc5b57bfe91a2965733c9f9"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TreeModel.html#a7b3d20e68dc5b57bfe91a2965733c9f9">rows_reordered</a> (const <a class="el" href="classGtk_1_1TreeModel.html#a06a713fecde31f2f1a7baeb0e3e2fea5">Path</a>& path, const <a class="el" href="classGtk_1_1TreeModel.html#a754e74cd833ff30e729f9b8d7daf4d8c">iterator</a>& iter, const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ArrayHandle.html">Glib::ArrayHandle</a>< int >& new_order)</td></tr>
<tr class="memdesc:a7b3d20e68dc5b57bfe91a2965733c9f9"><td class="mdescLeft"> </td><td class="mdescRight">Emits the "rows_reordered" signal on the tree model. <a href="#a7b3d20e68dc5b57bfe91a2965733c9f9">More...</a><br /></td></tr>
<tr class="separator:a7b3d20e68dc5b57bfe91a2965733c9f9"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab860a1ddc31a13959b3e614d44b6a32a"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TreeModel.html#ab860a1ddc31a13959b3e614d44b6a32a">rows_reordered</a> (const <a class="el" href="classGtk_1_1TreeModel.html#a06a713fecde31f2f1a7baeb0e3e2fea5">Path</a>& path, const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ArrayHandle.html">Glib::ArrayHandle</a>< int >& new_order)</td></tr>
<tr class="memdesc:ab860a1ddc31a13959b3e614d44b6a32a"><td class="mdescLeft"> </td><td class="mdescRight">Emits the "rows_reordered" signal on the tree model. <a href="#ab860a1ddc31a13959b3e614d44b6a32a">More...</a><br /></td></tr>
<tr class="separator:ab860a1ddc31a13959b3e614d44b6a32a"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a90ed223eefc7087e7a18d63ea21c3839"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TreeModel.html#a90ed223eefc7087e7a18d63ea21c3839">rows_reordered</a> (const <a class="el" href="classGtk_1_1TreeModel.html#a06a713fecde31f2f1a7baeb0e3e2fea5">Path</a>& path, const <a class="el" href="classGtk_1_1TreeModel.html#a754e74cd833ff30e729f9b8d7daf4d8c">iterator</a>& iter, int* new_order)</td></tr>
<tr class="memdesc:a90ed223eefc7087e7a18d63ea21c3839"><td class="mdescLeft"> </td><td class="mdescRight">Emits the "rows-reordered" signal on <em>tree_model</em>. <a href="#a90ed223eefc7087e7a18d63ea21c3839">More...</a><br /></td></tr>
<tr class="separator:a90ed223eefc7087e7a18d63ea21c3839"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aafe5344f4012d8bf13194bd63c01cef1"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TreeModel.html#aafe5344f4012d8bf13194bd63c01cef1">get_string</a> (const <a class="el" href="classGtk_1_1TreeModel.html#a754e74cd833ff30e729f9b8d7daf4d8c">iterator</a>& iter) const </td></tr>
<tr class="memdesc:aafe5344f4012d8bf13194bd63c01cef1"><td class="mdescLeft"> </td><td class="mdescRight">Generates a string representation of the iter. <a href="#aafe5344f4012d8bf13194bd63c01cef1">More...</a><br /></td></tr>
<tr class="separator:aafe5344f4012d8bf13194bd63c01cef1"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a68bcb8a4563a498b504a4e5f0fb2a731"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< void, const <a class="el" href="classGtk_1_1TreeModel.html#a06a713fecde31f2f1a7baeb0e3e2fea5">TreeModel::Path</a>&, const <a class="el" href="classGtk_1_1TreeModel.html#a754e74cd833ff30e729f9b8d7daf4d8c">TreeModel::iterator</a>& > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TreeModel.html#a68bcb8a4563a498b504a4e5f0fb2a731">signal_row_changed</a> ()</td></tr>
<tr class="separator:a68bcb8a4563a498b504a4e5f0fb2a731"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a6542a817e0f329ab2b62238331db3d6a"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< void, const <a class="el" href="classGtk_1_1TreeModel.html#a06a713fecde31f2f1a7baeb0e3e2fea5">TreeModel::Path</a>&, const <a class="el" href="classGtk_1_1TreeModel.html#a754e74cd833ff30e729f9b8d7daf4d8c">TreeModel::iterator</a>& > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TreeModel.html#a6542a817e0f329ab2b62238331db3d6a">signal_row_inserted</a> ()</td></tr>
<tr class="separator:a6542a817e0f329ab2b62238331db3d6a"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:abe50982f216d36c344424711caf984cc"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< void, const <a class="el" href="classGtk_1_1TreeModel.html#a06a713fecde31f2f1a7baeb0e3e2fea5">TreeModel::Path</a>&, const <a class="el" href="classGtk_1_1TreeModel.html#a754e74cd833ff30e729f9b8d7daf4d8c">TreeModel::iterator</a>& > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TreeModel.html#abe50982f216d36c344424711caf984cc">signal_row_has_child_toggled</a> ()</td></tr>
<tr class="separator:abe50982f216d36c344424711caf984cc"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a3528812724561bcb61fdf4d5c0b387dc"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< void, const <a class="el" href="classGtk_1_1TreeModel.html#a06a713fecde31f2f1a7baeb0e3e2fea5">TreeModel::Path</a>& > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TreeModel.html#a3528812724561bcb61fdf4d5c0b387dc">signal_row_deleted</a> ()</td></tr>
<tr class="separator:a3528812724561bcb61fdf4d5c0b387dc"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5f625ff2c5991a9a3e7e23cf281536ad"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< void, const <a class="el" href="classGtk_1_1TreeModel.html#a06a713fecde31f2f1a7baeb0e3e2fea5">TreeModel::Path</a>&, const <a class="el" href="classGtk_1_1TreeModel.html#a754e74cd833ff30e729f9b8d7daf4d8c">TreeModel::iterator</a>&, int* > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TreeModel.html#a5f625ff2c5991a9a3e7e23cf281536ad">signal_rows_reordered</a> ()</td></tr>
<tr class="separator:a5f625ff2c5991a9a3e7e23cf281536ad"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pub_methods_classGlib_1_1Interface"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classGlib_1_1Interface')"><img src="closed.png" alt="-"/> Public Member Functions inherited from <a class="el" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Interface.html">Glib::Interface</a></td></tr>
<tr class="memitem:a3ab20f29c40967352d1bf2d88bfe11e5 inherit pub_methods_classGlib_1_1Interface"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Interface.html#a3ab20f29c40967352d1bf2d88bfe11e5">Interface</a> ()</td></tr>
<tr class="separator:a3ab20f29c40967352d1bf2d88bfe11e5 inherit pub_methods_classGlib_1_1Interface"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a83337dc270f966539b9f46804460ab75 inherit pub_methods_classGlib_1_1Interface"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Interface.html#a83337dc270f966539b9f46804460ab75">Interface</a> (<a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Interface.html">Interface</a> &&src) noexcept</td></tr>
<tr class="separator:a83337dc270f966539b9f46804460ab75 inherit pub_methods_classGlib_1_1Interface"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a411d66c7467e749dbb2c4b31c4d518b5 inherit pub_methods_classGlib_1_1Interface"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Interface.html">Interface</a> & </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Interface.html#a411d66c7467e749dbb2c4b31c4d518b5">operator=</a> (<a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Interface.html">Interface</a> &&src) noexcept</td></tr>
<tr class="separator:a411d66c7467e749dbb2c4b31c4d518b5 inherit pub_methods_classGlib_1_1Interface"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae05bf6a4ce0f0992c2ad01429d13f9f7 inherit pub_methods_classGlib_1_1Interface"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Interface.html#ae05bf6a4ce0f0992c2ad01429d13f9f7">Interface</a> (const Glib::Interface_Class &interface_class)</td></tr>
<tr class="separator:ae05bf6a4ce0f0992c2ad01429d13f9f7 inherit pub_methods_classGlib_1_1Interface"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a00253b22a76f751f1627865451cbc404 inherit pub_methods_classGlib_1_1Interface"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Interface.html#a00253b22a76f751f1627865451cbc404">Interface</a> (GObject *castitem)</td></tr>
<tr class="separator:a00253b22a76f751f1627865451cbc404 inherit pub_methods_classGlib_1_1Interface"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a50b6cc885cb02bc158ce779939dd4654 inherit pub_methods_classGlib_1_1Interface"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Interface.html#a50b6cc885cb02bc158ce779939dd4654">~Interface</a> () noexceptoverride</td></tr>
<tr class="separator:a50b6cc885cb02bc158ce779939dd4654 inherit pub_methods_classGlib_1_1Interface"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4bb27d294728f34452be66b4ec4cd757 inherit pub_methods_classGlib_1_1Interface"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Interface.html#a4bb27d294728f34452be66b4ec4cd757">Interface</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Interface.html">Interface</a> &)=delete</td></tr>
<tr class="separator:a4bb27d294728f34452be66b4ec4cd757 inherit pub_methods_classGlib_1_1Interface"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:acf322f95cef17aa4cc232d8ef25f2b42 inherit pub_methods_classGlib_1_1Interface"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Interface.html">Interface</a> & </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Interface.html#acf322f95cef17aa4cc232d8ef25f2b42">operator=</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Interface.html">Interface</a> &)=delete</td></tr>
<tr class="separator:acf322f95cef17aa4cc232d8ef25f2b42 inherit pub_methods_classGlib_1_1Interface"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a969e9396f75132a9577428f4fa932d42 inherit pub_methods_classGlib_1_1Interface"><td class="memItemLeft" align="right" valign="top">GObject * </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Interface.html#a969e9396f75132a9577428f4fa932d42">gobj</a> ()</td></tr>
<tr class="separator:a969e9396f75132a9577428f4fa932d42 inherit pub_methods_classGlib_1_1Interface"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a70a443071a69d3372c2cdd7128a91ed1 inherit pub_methods_classGlib_1_1Interface"><td class="memItemLeft" align="right" valign="top">const GObject * </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Interface.html#a70a443071a69d3372c2cdd7128a91ed1">gobj</a> () const </td></tr>
<tr class="separator:a70a443071a69d3372c2cdd7128a91ed1 inherit pub_methods_classGlib_1_1Interface"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pub_methods_classGlib_1_1ObjectBase"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classGlib_1_1ObjectBase')"><img src="closed.png" alt="-"/> Public Member Functions inherited from <a class="el" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html">Glib::ObjectBase</a></td></tr>
<tr class="memitem:aaf0e140e7192dcecddd9f57c46825434 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#aaf0e140e7192dcecddd9f57c46825434">ObjectBase</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html">ObjectBase</a> &)=delete</td></tr>
<tr class="separator:aaf0e140e7192dcecddd9f57c46825434 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a15f8834a320eac98dc1c1b8a9a2fd4c1 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html">ObjectBase</a> & </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a15f8834a320eac98dc1c1b8a9a2fd4c1">operator=</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html">ObjectBase</a> &)=delete</td></tr>
<tr class="separator:a15f8834a320eac98dc1c1b8a9a2fd4c1 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aab599d3eec4b4a9ddc95ccdc6100053d inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#aab599d3eec4b4a9ddc95ccdc6100053d">set_property_value</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> &property_name, const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ValueBase.html">Glib::ValueBase</a> &value)</td></tr>
<tr class="separator:aab599d3eec4b4a9ddc95ccdc6100053d inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5e30750441b92f0246c9d4ece95fc8a0 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a5e30750441b92f0246c9d4ece95fc8a0">get_property_value</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> &property_name, <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ValueBase.html">Glib::ValueBase</a> &value) const </td></tr>
<tr class="separator:a5e30750441b92f0246c9d4ece95fc8a0 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad37844f7ea2c0091a22d011e04c48820 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#ad37844f7ea2c0091a22d011e04c48820">set_property</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> &property_name, const PropertyType &value)</td></tr>
<tr class="separator:ad37844f7ea2c0091a22d011e04c48820 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5f894c9c36ad391fdc85552af67a8530 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a5f894c9c36ad391fdc85552af67a8530">get_property</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> &property_name, PropertyType &value) const </td></tr>
<tr class="separator:a5f894c9c36ad391fdc85552af67a8530 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:adc6c1e8f094275114d6e2c3ef3a33f98 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#adc6c1e8f094275114d6e2c3ef3a33f98">connect_property_changed</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> &property_name, const <a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/classsigc_1_1slot.html">sigc::slot</a>< void > &slot)</td></tr>
<tr class="separator:adc6c1e8f094275114d6e2c3ef3a33f98 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9fff4abb6ecc939866a6ff5d32808221 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a9fff4abb6ecc939866a6ff5d32808221">connect_property_changed</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> &property_name, <a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/classsigc_1_1slot.html">sigc::slot</a>< void > &&slot)</td></tr>
<tr class="separator:a9fff4abb6ecc939866a6ff5d32808221 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a896d7773c00bd2dcd310c861282ee8d1 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1connection.html">sigc::connection</a> </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a896d7773c00bd2dcd310c861282ee8d1">connect_property_changed_with_return</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> &property_name, const <a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/classsigc_1_1slot.html">sigc::slot</a>< void > &slot)</td></tr>
<tr class="separator:a896d7773c00bd2dcd310c861282ee8d1 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a00f0e2119fbb42efe42d66b8188a0daf inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1connection.html">sigc::connection</a> </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a00f0e2119fbb42efe42d66b8188a0daf">connect_property_changed_with_return</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> &property_name, <a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/classsigc_1_1slot.html">sigc::slot</a>< void > &&slot)</td></tr>
<tr class="separator:a00f0e2119fbb42efe42d66b8188a0daf inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a6e9e13b75f116c20212d318204ce8ea3 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a6e9e13b75f116c20212d318204ce8ea3">freeze_notify</a> ()</td></tr>
<tr class="separator:a6e9e13b75f116c20212d318204ce8ea3 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1bd8ea7bd8c4084ade6b3c27dddf06a4 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a1bd8ea7bd8c4084ade6b3c27dddf06a4">thaw_notify</a> ()</td></tr>
<tr class="separator:a1bd8ea7bd8c4084ade6b3c27dddf06a4 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a896a8a5db20043ea82956e3ef4b9c4ae inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a896a8a5db20043ea82956e3ef4b9c4ae">reference</a> () const </td></tr>
<tr class="separator:a896a8a5db20043ea82956e3ef4b9c4ae inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a3234b8ffb2a35b927e2978c8f3bfbfe3 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a3234b8ffb2a35b927e2978c8f3bfbfe3">unreference</a> () const </td></tr>
<tr class="separator:a3234b8ffb2a35b927e2978c8f3bfbfe3 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4c6efc18be8cb9c56e58fc0bd20fafbe inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">GObject * </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a4c6efc18be8cb9c56e58fc0bd20fafbe">gobj</a> ()</td></tr>
<tr class="separator:a4c6efc18be8cb9c56e58fc0bd20fafbe inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a778a94181132976bbfb0519793f3b32e inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">const GObject * </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a778a94181132976bbfb0519793f3b32e">gobj</a> () const </td></tr>
<tr class="separator:a778a94181132976bbfb0519793f3b32e inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9b2a5eb93102f1849e5419016e22a15f inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">GObject * </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a9b2a5eb93102f1849e5419016e22a15f">gobj_copy</a> () const </td></tr>
<tr class="separator:a9b2a5eb93102f1849e5419016e22a15f inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pub_methods_structsigc_1_1trackable"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_structsigc_1_1trackable')"><img src="closed.png" alt="-"/> Public Member Functions inherited from <a class="el" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html">sigc::trackable</a></td></tr>
<tr class="memitem:a7e1348841e762fb41b41c6f2ce9fa073 inherit pub_methods_structsigc_1_1trackable"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html#a7e1348841e762fb41b41c6f2ce9fa073">trackable</a> () noexcept</td></tr>
<tr class="separator:a7e1348841e762fb41b41c6f2ce9fa073 inherit pub_methods_structsigc_1_1trackable"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac8431d9452c9698a012597e6560c72fa inherit pub_methods_structsigc_1_1trackable"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html#ac8431d9452c9698a012597e6560c72fa">trackable</a> (const <a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html">trackable</a> &src) noexcept</td></tr>
<tr class="separator:ac8431d9452c9698a012597e6560c72fa inherit pub_methods_structsigc_1_1trackable"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aba42ed8afb6598106cf68c18a7387f18 inherit pub_methods_structsigc_1_1trackable"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html#aba42ed8afb6598106cf68c18a7387f18">trackable</a> (<a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html">trackable</a> &&src)</td></tr>
<tr class="separator:aba42ed8afb6598106cf68c18a7387f18 inherit pub_methods_structsigc_1_1trackable"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a75587da09e30031db7a2519843f1f4fb inherit pub_methods_structsigc_1_1trackable"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html#a75587da09e30031db7a2519843f1f4fb">~trackable</a> ()</td></tr>
<tr class="separator:a75587da09e30031db7a2519843f1f4fb inherit pub_methods_structsigc_1_1trackable"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab14931670837728e49bb5ca88fb16db5 inherit pub_methods_structsigc_1_1trackable"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html#ab14931670837728e49bb5ca88fb16db5">add_destroy_notify_callback</a> (void *data, <a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html#a3338954d7565534bd945290b798e13ed">func_destroy_notify</a> func) const </td></tr>
<tr class="separator:ab14931670837728e49bb5ca88fb16db5 inherit pub_methods_structsigc_1_1trackable"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af2e23cfe7adc1ca844a3350bbac557cb inherit pub_methods_structsigc_1_1trackable"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html#af2e23cfe7adc1ca844a3350bbac557cb">notify_callbacks</a> ()</td></tr>
<tr class="separator:af2e23cfe7adc1ca844a3350bbac557cb inherit pub_methods_structsigc_1_1trackable"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a7494fbad23a65932ff1457d00d4edaf5 inherit pub_methods_structsigc_1_1trackable"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html">trackable</a> & </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html#a7494fbad23a65932ff1457d00d4edaf5">operator=</a> (const <a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html">trackable</a> &src)</td></tr>
<tr class="separator:a7494fbad23a65932ff1457d00d4edaf5 inherit pub_methods_structsigc_1_1trackable"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac3d61cdb452dc46fcdc8a8d42d9c079d inherit pub_methods_structsigc_1_1trackable"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html">trackable</a> & </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html#ac3d61cdb452dc46fcdc8a8d42d9c079d">operator=</a> (<a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html">trackable</a> &&src)</td></tr>
<tr class="separator:ac3d61cdb452dc46fcdc8a8d42d9c079d inherit pub_methods_structsigc_1_1trackable"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a8b9dffa8a50ff13ba33e6c7f10468e2b inherit pub_methods_structsigc_1_1trackable"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html#a8b9dffa8a50ff13ba33e6c7f10468e2b">remove_destroy_notify_callback</a> (void *data) const </td></tr>
<tr class="separator:a8b9dffa8a50ff13ba33e6c7f10468e2b inherit pub_methods_structsigc_1_1trackable"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-static-methods"></a>
Static Public Member Functions</h2></td></tr>
<tr class="memitem:aed810cc59d8176fac21c9559e03d4c51"><td class="memItemLeft" align="right" valign="top">static void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TreeModel.html#aed810cc59d8176fac21c9559e03d4c51">add_interface</a> (GType gtype_implementer)</td></tr>
<tr class="separator:aed810cc59d8176fac21c9559e03d4c51"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a8795c37c6a281af3488135207e1c9661"><td class="memItemLeft" align="right" valign="top">static GType </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TreeModel.html#a8795c37c6a281af3488135207e1c9661">get_type</a> ()</td></tr>
<tr class="memdesc:a8795c37c6a281af3488135207e1c9661"><td class="mdescLeft"> </td><td class="mdescRight">Get the GType for this class, for use with the underlying GObject type system. <a href="#a8795c37c6a281af3488135207e1c9661">More...</a><br /></td></tr>
<tr class="separator:a8795c37c6a281af3488135207e1c9661"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pro-methods"></a>
Protected Member Functions</h2></td></tr>
<tr class="memitem:a32fe9767f9ad56c546635e143645cd5a"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TreeModel.html#a32fe9767f9ad56c546635e143645cd5a">TreeModel</a> ()</td></tr>
<tr class="memdesc:a32fe9767f9ad56c546635e143645cd5a"><td class="mdescLeft"> </td><td class="mdescRight">You should derive from this class to use it. <a href="#a32fe9767f9ad56c546635e143645cd5a">More...</a><br /></td></tr>
<tr class="separator:a32fe9767f9ad56c546635e143645cd5a"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a92ab54c2bac694b7065c617db17ef717"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="group__gtkmmEnums.html#ga8db2110062643eb26461ec23b63e2cb2">TreeModelFlags</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TreeModel.html#a92ab54c2bac694b7065c617db17ef717">get_flags_vfunc</a> () const </td></tr>
<tr class="separator:a92ab54c2bac694b7065c617db17ef717"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a110c6a9e23e3332e46efdfc1d544026b"><td class="memItemLeft" align="right" valign="top">virtual int </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TreeModel.html#a110c6a9e23e3332e46efdfc1d544026b">get_n_columns_vfunc</a> () const </td></tr>
<tr class="separator:a110c6a9e23e3332e46efdfc1d544026b"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab59203d0ac1d7084ea3a69ae59120686"><td class="memItemLeft" align="right" valign="top">virtual GType </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TreeModel.html#ab59203d0ac1d7084ea3a69ae59120686">get_column_type_vfunc</a> (int index) const </td></tr>
<tr class="separator:ab59203d0ac1d7084ea3a69ae59120686"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af371b624eec90b865eae30b07cdbe20b"><td class="memItemLeft" align="right" valign="top">virtual bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TreeModel.html#af371b624eec90b865eae30b07cdbe20b">iter_next_vfunc</a> (const <a class="el" href="classGtk_1_1TreeModel.html#a754e74cd833ff30e729f9b8d7daf4d8c">iterator</a>& iter, <a class="el" href="classGtk_1_1TreeModel.html#a754e74cd833ff30e729f9b8d7daf4d8c">iterator</a>& iter_next) const </td></tr>
<tr class="memdesc:af371b624eec90b865eae30b07cdbe20b"><td class="mdescLeft"> </td><td class="mdescRight">Override and implement this in a derived <a class="el" href="classGtk_1_1TreeModel.html" title="This class defines a generic tree interface for use by the Gtk::TreeView widget. ">TreeModel</a> class. <a href="#af371b624eec90b865eae30b07cdbe20b">More...</a><br /></td></tr>
<tr class="separator:af371b624eec90b865eae30b07cdbe20b"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2476e133c67544c3ac1e466497150382"><td class="memItemLeft" align="right" valign="top">virtual bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TreeModel.html#a2476e133c67544c3ac1e466497150382">get_iter_vfunc</a> (const <a class="el" href="classGtk_1_1TreeModel.html#a06a713fecde31f2f1a7baeb0e3e2fea5">Path</a>& path, <a class="el" href="classGtk_1_1TreeModel.html#a754e74cd833ff30e729f9b8d7daf4d8c">iterator</a>& iter) const </td></tr>
<tr class="memdesc:a2476e133c67544c3ac1e466497150382"><td class="mdescLeft"> </td><td class="mdescRight">Override and implement this in a derived <a class="el" href="classGtk_1_1TreeModel.html" title="This class defines a generic tree interface for use by the Gtk::TreeView widget. ">TreeModel</a> class. <a href="#a2476e133c67544c3ac1e466497150382">More...</a><br /></td></tr>
<tr class="separator:a2476e133c67544c3ac1e466497150382"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a08a44f8c4a4cc069a6bb063911195c5d"><td class="memItemLeft" align="right" valign="top">virtual bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TreeModel.html#a08a44f8c4a4cc069a6bb063911195c5d">iter_children_vfunc</a> (const <a class="el" href="classGtk_1_1TreeModel.html#a754e74cd833ff30e729f9b8d7daf4d8c">iterator</a>& parent, <a class="el" href="classGtk_1_1TreeModel.html#a754e74cd833ff30e729f9b8d7daf4d8c">iterator</a>& iter) const </td></tr>
<tr class="memdesc:a08a44f8c4a4cc069a6bb063911195c5d"><td class="mdescLeft"> </td><td class="mdescRight">Override and implement this in a derived <a class="el" href="classGtk_1_1TreeModel.html" title="This class defines a generic tree interface for use by the Gtk::TreeView widget. ">TreeModel</a> class. <a href="#a08a44f8c4a4cc069a6bb063911195c5d">More...</a><br /></td></tr>
<tr class="separator:a08a44f8c4a4cc069a6bb063911195c5d"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:acb0ce509e06b9a64b8b619cbf68d1269"><td class="memItemLeft" align="right" valign="top">virtual bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TreeModel.html#acb0ce509e06b9a64b8b619cbf68d1269">iter_parent_vfunc</a> (const <a class="el" href="classGtk_1_1TreeModel.html#a754e74cd833ff30e729f9b8d7daf4d8c">iterator</a>& child, <a class="el" href="classGtk_1_1TreeModel.html#a754e74cd833ff30e729f9b8d7daf4d8c">iterator</a>& iter) const </td></tr>
<tr class="memdesc:acb0ce509e06b9a64b8b619cbf68d1269"><td class="mdescLeft"> </td><td class="mdescRight">Override and implement this in a derived <a class="el" href="classGtk_1_1TreeModel.html" title="This class defines a generic tree interface for use by the Gtk::TreeView widget. ">TreeModel</a> class. <a href="#acb0ce509e06b9a64b8b619cbf68d1269">More...</a><br /></td></tr>
<tr class="separator:acb0ce509e06b9a64b8b619cbf68d1269"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9425e899db0b07486220fb885de984db"><td class="memItemLeft" align="right" valign="top">virtual bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TreeModel.html#a9425e899db0b07486220fb885de984db">iter_nth_child_vfunc</a> (const <a class="el" href="classGtk_1_1TreeModel.html#a754e74cd833ff30e729f9b8d7daf4d8c">iterator</a>& parent, int n, <a class="el" href="classGtk_1_1TreeModel.html#a754e74cd833ff30e729f9b8d7daf4d8c">iterator</a>& iter) const </td></tr>
<tr class="memdesc:a9425e899db0b07486220fb885de984db"><td class="mdescLeft"> </td><td class="mdescRight">Override and implement this in a derived <a class="el" href="classGtk_1_1TreeModel.html" title="This class defines a generic tree interface for use by the Gtk::TreeView widget. ">TreeModel</a> class. <a href="#a9425e899db0b07486220fb885de984db">More...</a><br /></td></tr>
<tr class="separator:a9425e899db0b07486220fb885de984db"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad707d3063b4ef72a1fe59646fc42a7a4"><td class="memItemLeft" align="right" valign="top">virtual bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TreeModel.html#ad707d3063b4ef72a1fe59646fc42a7a4">iter_nth_root_child_vfunc</a> (int n, <a class="el" href="classGtk_1_1TreeModel.html#a754e74cd833ff30e729f9b8d7daf4d8c">iterator</a>& iter) const </td></tr>
<tr class="memdesc:ad707d3063b4ef72a1fe59646fc42a7a4"><td class="mdescLeft"> </td><td class="mdescRight">Override and implement this in a derived <a class="el" href="classGtk_1_1TreeModel.html" title="This class defines a generic tree interface for use by the Gtk::TreeView widget. ">TreeModel</a> class. <a href="#ad707d3063b4ef72a1fe59646fc42a7a4">More...</a><br /></td></tr>
<tr class="separator:ad707d3063b4ef72a1fe59646fc42a7a4"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a20a37892a5c4aa8b2ef975f8f24d8f35"><td class="memItemLeft" align="right" valign="top">virtual bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TreeModel.html#a20a37892a5c4aa8b2ef975f8f24d8f35">iter_has_child_vfunc</a> (const <a class="el" href="classGtk_1_1TreeModel.html#a754e74cd833ff30e729f9b8d7daf4d8c">iterator</a>& iter) const </td></tr>
<tr class="memdesc:a20a37892a5c4aa8b2ef975f8f24d8f35"><td class="mdescLeft"> </td><td class="mdescRight">Override and implement this in a derived <a class="el" href="classGtk_1_1TreeModel.html" title="This class defines a generic tree interface for use by the Gtk::TreeView widget. ">TreeModel</a> class. <a href="#a20a37892a5c4aa8b2ef975f8f24d8f35">More...</a><br /></td></tr>
<tr class="separator:a20a37892a5c4aa8b2ef975f8f24d8f35"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a61991c22a9ae0c46423a1504ad2f5e96"><td class="memItemLeft" align="right" valign="top">virtual int </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TreeModel.html#a61991c22a9ae0c46423a1504ad2f5e96">iter_n_children_vfunc</a> (const <a class="el" href="classGtk_1_1TreeModel.html#a754e74cd833ff30e729f9b8d7daf4d8c">iterator</a>& iter) const </td></tr>
<tr class="memdesc:a61991c22a9ae0c46423a1504ad2f5e96"><td class="mdescLeft"> </td><td class="mdescRight">Override and implement this in a derived <a class="el" href="classGtk_1_1TreeModel.html" title="This class defines a generic tree interface for use by the Gtk::TreeView widget. ">TreeModel</a> class. <a href="#a61991c22a9ae0c46423a1504ad2f5e96">More...</a><br /></td></tr>
<tr class="separator:a61991c22a9ae0c46423a1504ad2f5e96"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4a4465b80fd34b51d7c67b731773804d"><td class="memItemLeft" align="right" valign="top">virtual int </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TreeModel.html#a4a4465b80fd34b51d7c67b731773804d">iter_n_root_children_vfunc</a> () const </td></tr>
<tr class="memdesc:a4a4465b80fd34b51d7c67b731773804d"><td class="mdescLeft"> </td><td class="mdescRight">Override and implement this in a derived <a class="el" href="classGtk_1_1TreeModel.html" title="This class defines a generic tree interface for use by the Gtk::TreeView widget. ">TreeModel</a> class. <a href="#a4a4465b80fd34b51d7c67b731773804d">More...</a><br /></td></tr>
<tr class="separator:a4a4465b80fd34b51d7c67b731773804d"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a8a07671ff491460f94902dc2f4576c78"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TreeModel.html#a8a07671ff491460f94902dc2f4576c78">ref_node_vfunc</a> (const <a class="el" href="classGtk_1_1TreeModel.html#a754e74cd833ff30e729f9b8d7daf4d8c">iterator</a>& iter) const </td></tr>
<tr class="memdesc:a8a07671ff491460f94902dc2f4576c78"><td class="mdescLeft"> </td><td class="mdescRight">Override and implement this in a derived <a class="el" href="classGtk_1_1TreeModel.html" title="This class defines a generic tree interface for use by the Gtk::TreeView widget. ">TreeModel</a> class. <a href="#a8a07671ff491460f94902dc2f4576c78">More...</a><br /></td></tr>
<tr class="separator:a8a07671ff491460f94902dc2f4576c78"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab19d09af11054d80f8ab9f19f239cb30"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TreeModel.html#ab19d09af11054d80f8ab9f19f239cb30">unref_node_vfunc</a> (const <a class="el" href="classGtk_1_1TreeModel.html#a754e74cd833ff30e729f9b8d7daf4d8c">iterator</a>& iter) const </td></tr>
<tr class="memdesc:ab19d09af11054d80f8ab9f19f239cb30"><td class="mdescLeft"> </td><td class="mdescRight">Override and implement this in a derived <a class="el" href="classGtk_1_1TreeModel.html" title="This class defines a generic tree interface for use by the Gtk::TreeView widget. ">TreeModel</a> class. <a href="#ab19d09af11054d80f8ab9f19f239cb30">More...</a><br /></td></tr>
<tr class="separator:ab19d09af11054d80f8ab9f19f239cb30"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a05875688ebf31e276835722f911a7612"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="classGtk_1_1TreeModel.html#a06a713fecde31f2f1a7baeb0e3e2fea5">TreeModel::Path</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TreeModel.html#a05875688ebf31e276835722f911a7612">get_path_vfunc</a> (const <a class="el" href="classGtk_1_1TreeModel.html#a754e74cd833ff30e729f9b8d7daf4d8c">iterator</a>& iter) const </td></tr>
<tr class="memdesc:a05875688ebf31e276835722f911a7612"><td class="mdescLeft"> </td><td class="mdescRight">Override and implement this in a derived <a class="el" href="classGtk_1_1TreeModel.html" title="This class defines a generic tree interface for use by the Gtk::TreeView widget. ">TreeModel</a> class. <a href="#a05875688ebf31e276835722f911a7612">More...</a><br /></td></tr>
<tr class="separator:a05875688ebf31e276835722f911a7612"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a67ad9adb1572fbf73afcb02386634f1b"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TreeModel.html#a67ad9adb1572fbf73afcb02386634f1b">get_value_vfunc</a> (const <a class="el" href="classGtk_1_1TreeModel.html#a754e74cd833ff30e729f9b8d7daf4d8c">iterator</a>& iter, int column, <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ValueBase.html">Glib::ValueBase</a>& value) const </td></tr>
<tr class="memdesc:a67ad9adb1572fbf73afcb02386634f1b"><td class="mdescLeft"> </td><td class="mdescRight">Override and implement this in a derived <a class="el" href="classGtk_1_1TreeModel.html" title="This class defines a generic tree interface for use by the Gtk::TreeView widget. ">TreeModel</a> class. <a href="#a67ad9adb1572fbf73afcb02386634f1b">More...</a><br /></td></tr>
<tr class="separator:a67ad9adb1572fbf73afcb02386634f1b"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa5c6526633d0fa8a78fd3d14d1fbd6cf"><td class="memItemLeft" align="right" valign="top">virtual bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TreeModel.html#aa5c6526633d0fa8a78fd3d14d1fbd6cf">iter_is_valid</a> (const <a class="el" href="classGtk_1_1TreeModel.html#a754e74cd833ff30e729f9b8d7daf4d8c">iterator</a>& iter) const </td></tr>
<tr class="memdesc:aa5c6526633d0fa8a78fd3d14d1fbd6cf"><td class="mdescLeft"> </td><td class="mdescRight">Override and implement this in a derived <a class="el" href="classGtk_1_1TreeModel.html" title="This class defines a generic tree interface for use by the Gtk::TreeView widget. ">TreeModel</a> class. <a href="#aa5c6526633d0fa8a78fd3d14d1fbd6cf">More...</a><br /></td></tr>
<tr class="separator:aa5c6526633d0fa8a78fd3d14d1fbd6cf"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a26cf070eadb8e242bcf2b57f7e6d7d9e"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TreeModel.html#a26cf070eadb8e242bcf2b57f7e6d7d9e">set_value_impl</a> (const <a class="el" href="classGtk_1_1TreeModel.html#a754e74cd833ff30e729f9b8d7daf4d8c">iterator</a>& row, int column, const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ValueBase.html">Glib::ValueBase</a>& value)</td></tr>
<tr class="memdesc:a26cf070eadb8e242bcf2b57f7e6d7d9e"><td class="mdescLeft"> </td><td class="mdescRight">Override and implement this in a derived <a class="el" href="classGtk_1_1TreeModel.html" title="This class defines a generic tree interface for use by the Gtk::TreeView widget. ">TreeModel</a> class, so that Row::operator() and <a class="el" href="classGtk_1_1TreeRow.html#a79e62bd6eb9dc803aada1d5f7b6ed915" title="Sets the value of this column of this row. ">Row::set_value()</a> work. <a href="#a26cf070eadb8e242bcf2b57f7e6d7d9e">More...</a><br /></td></tr>
<tr class="separator:a26cf070eadb8e242bcf2b57f7e6d7d9e"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a78055c29e3375a53c85c6c0283ac782b"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TreeModel.html#a78055c29e3375a53c85c6c0283ac782b">get_value_impl</a> (const <a class="el" href="classGtk_1_1TreeModel.html#a754e74cd833ff30e729f9b8d7daf4d8c">iterator</a>& row, int column, <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ValueBase.html">Glib::ValueBase</a>& value) const </td></tr>
<tr class="separator:a78055c29e3375a53c85c6c0283ac782b"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a245ce3fcf75411a8800b05213e652754"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TreeModel.html#a245ce3fcf75411a8800b05213e652754">on_row_changed</a> (const <a class="el" href="classGtk_1_1TreeModel.html#a06a713fecde31f2f1a7baeb0e3e2fea5">TreeModel::Path</a>& path, const <a class="el" href="classGtk_1_1TreeModel.html#a754e74cd833ff30e729f9b8d7daf4d8c">TreeModel::iterator</a>& iter)</td></tr>
<tr class="memdesc:a245ce3fcf75411a8800b05213e652754"><td class="mdescLeft"> </td><td class="mdescRight">This is a default handler for the signal <a class="el" href="classGtk_1_1TreeModel.html#a68bcb8a4563a498b504a4e5f0fb2a731">signal_row_changed()</a>. <a href="#a245ce3fcf75411a8800b05213e652754">More...</a><br /></td></tr>
<tr class="separator:a245ce3fcf75411a8800b05213e652754"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a23134167e0e61f22e24d387eabc54890"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TreeModel.html#a23134167e0e61f22e24d387eabc54890">on_row_inserted</a> (const <a class="el" href="classGtk_1_1TreeModel.html#a06a713fecde31f2f1a7baeb0e3e2fea5">TreeModel::Path</a>& path, const <a class="el" href="classGtk_1_1TreeModel.html#a754e74cd833ff30e729f9b8d7daf4d8c">TreeModel::iterator</a>& iter)</td></tr>
<tr class="memdesc:a23134167e0e61f22e24d387eabc54890"><td class="mdescLeft"> </td><td class="mdescRight">This is a default handler for the signal <a class="el" href="classGtk_1_1TreeModel.html#a6542a817e0f329ab2b62238331db3d6a">signal_row_inserted()</a>. <a href="#a23134167e0e61f22e24d387eabc54890">More...</a><br /></td></tr>
<tr class="separator:a23134167e0e61f22e24d387eabc54890"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:abddf86f9cce30999456fe9aade3431e7"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TreeModel.html#abddf86f9cce30999456fe9aade3431e7">on_row_has_child_toggled</a> (const <a class="el" href="classGtk_1_1TreeModel.html#a06a713fecde31f2f1a7baeb0e3e2fea5">TreeModel::Path</a>& path, const <a class="el" href="classGtk_1_1TreeModel.html#a754e74cd833ff30e729f9b8d7daf4d8c">TreeModel::iterator</a>& iter)</td></tr>
<tr class="memdesc:abddf86f9cce30999456fe9aade3431e7"><td class="mdescLeft"> </td><td class="mdescRight">This is a default handler for the signal <a class="el" href="classGtk_1_1TreeModel.html#abe50982f216d36c344424711caf984cc">signal_row_has_child_toggled()</a>. <a href="#abddf86f9cce30999456fe9aade3431e7">More...</a><br /></td></tr>
<tr class="separator:abddf86f9cce30999456fe9aade3431e7"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a438d4fd8dc0228c6b57ea7a031422cf8"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TreeModel.html#a438d4fd8dc0228c6b57ea7a031422cf8">on_row_deleted</a> (const <a class="el" href="classGtk_1_1TreeModel.html#a06a713fecde31f2f1a7baeb0e3e2fea5">TreeModel::Path</a>& path)</td></tr>
<tr class="memdesc:a438d4fd8dc0228c6b57ea7a031422cf8"><td class="mdescLeft"> </td><td class="mdescRight">This is a default handler for the signal <a class="el" href="classGtk_1_1TreeModel.html#a3528812724561bcb61fdf4d5c0b387dc">signal_row_deleted()</a>. <a href="#a438d4fd8dc0228c6b57ea7a031422cf8">More...</a><br /></td></tr>
<tr class="separator:a438d4fd8dc0228c6b57ea7a031422cf8"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac5e459f6370dafe528d928c99f0086c8"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TreeModel.html#ac5e459f6370dafe528d928c99f0086c8">on_rows_reordered</a> (const <a class="el" href="classGtk_1_1TreeModel.html#a06a713fecde31f2f1a7baeb0e3e2fea5">TreeModel::Path</a>& path, const <a class="el" href="classGtk_1_1TreeModel.html#a754e74cd833ff30e729f9b8d7daf4d8c">TreeModel::iterator</a>& iter, int* new_order)</td></tr>
<tr class="memdesc:ac5e459f6370dafe528d928c99f0086c8"><td class="mdescLeft"> </td><td class="mdescRight">This is a default handler for the signal <a class="el" href="classGtk_1_1TreeModel.html#a5f625ff2c5991a9a3e7e23cf281536ad">signal_rows_reordered()</a>. <a href="#ac5e459f6370dafe528d928c99f0086c8">More...</a><br /></td></tr>
<tr class="separator:ac5e459f6370dafe528d928c99f0086c8"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pro_methods_classGlib_1_1ObjectBase"><td colspan="2" onclick="javascript:toggleInherit('pro_methods_classGlib_1_1ObjectBase')"><img src="closed.png" alt="-"/> Protected Member Functions inherited from <a class="el" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html">Glib::ObjectBase</a></td></tr>
<tr class="memitem:a27d3451d9ca28d6a2f00838d7c56d545 inherit pro_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a27d3451d9ca28d6a2f00838d7c56d545">ObjectBase</a> ()</td></tr>
<tr class="separator:a27d3451d9ca28d6a2f00838d7c56d545 inherit pro_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad4ef18214894c6874579313ab21d1018 inherit pro_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#ad4ef18214894c6874579313ab21d1018">ObjectBase</a> (const char *custom_type_name)</td></tr>
<tr class="separator:ad4ef18214894c6874579313ab21d1018 inherit pro_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a3d59b4d85b0ee72a727e6b2e1b31a2ff inherit pro_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a3d59b4d85b0ee72a727e6b2e1b31a2ff">ObjectBase</a> (const <a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a00947.html">std::type_info</a> &custom_type_info)</td></tr>
<tr class="separator:a3d59b4d85b0ee72a727e6b2e1b31a2ff inherit pro_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a7e2e177061f6a6e09c4cf3da49c6dfd3 inherit pro_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a7e2e177061f6a6e09c4cf3da49c6dfd3">ObjectBase</a> (<a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html">ObjectBase</a> &&src) noexcept</td></tr>
<tr class="separator:a7e2e177061f6a6e09c4cf3da49c6dfd3 inherit pro_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2e968f118314ba4d5debfd2850d18003 inherit pro_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html">ObjectBase</a> & </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a2e968f118314ba4d5debfd2850d18003">operator=</a> (<a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html">ObjectBase</a> &&src) noexcept</td></tr>
<tr class="separator:a2e968f118314ba4d5debfd2850d18003 inherit pro_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae56ec45e9ebeaacf24be4fb54ed2eea3 inherit pro_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">virtual </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#ae56ec45e9ebeaacf24be4fb54ed2eea3">~ObjectBase</a> () noexcept=0</td></tr>
<tr class="separator:ae56ec45e9ebeaacf24be4fb54ed2eea3 inherit pro_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a3faafb14c4f0ca60fbf0f5f5c4d549d0 inherit pro_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a3faafb14c4f0ca60fbf0f5f5c4d549d0">initialize</a> (GObject *castitem)</td></tr>
<tr class="separator:a3faafb14c4f0ca60fbf0f5f5c4d549d0 inherit pro_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a44ddc123cd98ed0083aa06364365c8d3 inherit pro_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a44ddc123cd98ed0083aa06364365c8d3">initialize_move</a> (GObject *castitem, <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html">Glib::ObjectBase</a> *previous_wrapper)</td></tr>
<tr class="separator:a44ddc123cd98ed0083aa06364365c8d3 inherit pro_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="related"></a>
Related Functions</h2></td></tr>
<tr><td class="ititle" colspan="2"><p>(Note that these are not member functions.) </p>
</td></tr>
<tr class="memitem:a510776c39d65f700937cf14a2f6bad73"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGtk_1_1TreeModel.html">Gtk::TreeModel</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TreeModel.html#a510776c39d65f700937cf14a2f6bad73">wrap</a> (GtkTreeModel* object, bool take_copy=false)</td></tr>
<tr class="memdesc:a510776c39d65f700937cf14a2f6bad73"><td class="mdescLeft"> </td><td class="mdescRight">A <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/namespaceGlib.html#a671306f4a3a0cae5ab4d7a9d54886592">Glib::wrap()</a> method for this object. <a href="#a510776c39d65f700937cf14a2f6bad73">More...</a><br /></td></tr>
<tr class="separator:a510776c39d65f700937cf14a2f6bad73"><td class="memSeparator" colspan="2"> </td></tr>
</table>
<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2>
<div class="textblock"><p>This class defines a generic tree interface for use by the <a class="el" href="classGtk_1_1TreeView.html" title="The TreeView widget displays the model (Gtk::TreeModel) data and allows the user to interact with it...">Gtk::TreeView</a> widget. </p>
<p>It is is designed to be usable with any appropriate data structure. The programmer just has to implement this interface on their own data type for it to be viewable by a <a class="el" href="classGtk_1_1TreeView.html" title="The TreeView widget displays the model (Gtk::TreeModel) data and allows the user to interact with it...">Gtk::TreeView</a> widget.</p>
<p>The model is represented as a hierarchical tree of strongly-typed, columned data. In other words, the model can be seen as a tree where every node has different values depending on which column is being queried. The type of data found in a column is determined by TreeModel::Column<> templates. The types are homogeneous per column across all nodes. It is important to note that this interface only provides a way of examining a model and observing changes. The implementation of each individual model decides how and if changes are made.</p>
<p>In order to make life simpler for programmers who do not need to write their own specialized model, two generic models are provided - the <a class="el" href="classGtk_1_1TreeStore.html">Gtk::TreeStore</a> and the <a class="el" href="classGtk_1_1ListStore.html" title="Thist is a list model for use with a Gtk::TreeView widget. ">Gtk::ListStore</a>. To use these, the developer simply pushes data into these models as necessary. These models provide the data structure as well as all appropriate tree interfaces. As a result, implementing drag and drop, sorting, and storing data is trivial. For the vast majority of trees and lists, these two models are sufficient.</p>
<p>Models are accessed on a node/column level of granularity. One can query for the value of a model at a certain node and a certain column on that node. There are two structures used to reference a particular node in a model. They are the <a class="el" href="classGtk_1_1TreePath.html">Path</a> and the iterator. Most of the interface consists of operations on an <a class="el" href="classGtk_1_1TreeIter.html">iterator</a>.</p>
<p>A <a class="el" href="classGtk_1_1TreePath.html">Gtk::TreeModel::Path</a> is essentially a potential node. It is a location on a model that may or may not actually correspond to a node on a specific model.</p>
<p>By contrast, an <a class="el" href="classGtk_1_1TreeIter.html">Gtk::TreeModel::iterator</a> is a reference to a specific node on a specific model. One can convert a path to an <a class="el" href="classGtk_1_1TreeIter.html">iterator</a> by calling <a class="el" href="classGtk_1_1TreeModel.html#aebaa795e4920ddc0ec5e39c9f4fbc660" title="Returns a valid iterator pointing to path. ">Gtk::TreeModel::get_iter()</a>. These iterators are the primary way of accessing a model and are similar to the iterators used by <a class="el" href="classGtk_1_1TextBuffer.html" title="Multi-line attributed text that can be displayed by one or more Gtk::TextView widgets. ">Gtk::TextBuffer</a>. The model interface defines a set of operations using them for navigating the model.</p>
<p>The <a class="el" href="classGtk_1_1TreeRowReference.html">RowReference</a> is also useful, because it remains valid as long as there is an existing row pointed to by it's path. You can convert between RowReferences and iterators and <a class="el" href="classGtk_1_1TreePath.html">Path</a> s. </p>
</div><h2 class="groupheader">Member Typedef Documentation</h2>
<a class="anchor" id="ad04e0f7d1bb271fceeef487a19b97703"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">typedef <a class="el" href="classGtk_1_1TreeNodeChildren.html">TreeNodeChildren</a> <a class="el" href="classGtk_1_1TreeModel.html#ad04e0f7d1bb271fceeef487a19b97703">Gtk::TreeModel::Children</a></td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="a58f10daabaa507b4c2473c9d1b6fa584"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">typedef <a class="el" href="classGtk_1_1TreeModelColumnRecord.html">TreeModelColumnRecord</a> <a class="el" href="classGtk_1_1TreeModel.html#a58f10daabaa507b4c2473c9d1b6fa584">Gtk::TreeModel::ColumnRecord</a></td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="ab25e01638bef26f1e93617e36b212292"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">typedef <a class="el" href="classGtk_1_1TreeNodeChildren.html#a28d8776c1eb0a4b4bb830e886fc0c5e1">Children::const_iterator</a> <a class="el" href="classGtk_1_1TreeModel.html#ab25e01638bef26f1e93617e36b212292">Gtk::TreeModel::const_iterator</a></td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="a516b42e786cc2c3ef239e5fa46c43886"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">typedef <a class="el" href="classGtk_1_1TreeNodeChildren.html#ae3a940e41ed2256f2d7c811c65e5e6d3">Children::const_reverse_iterator</a> <a class="el" href="classGtk_1_1TreeModel.html#a516b42e786cc2c3ef239e5fa46c43886">Gtk::TreeModel::const_reverse_iterator</a></td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="a754e74cd833ff30e729f9b8d7daf4d8c"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">typedef <a class="el" href="classGtk_1_1TreeNodeChildren.html#ad327867180db4997bb42159112a47f24">Children::iterator</a> <a class="el" href="classGtk_1_1TreeModel.html#a754e74cd833ff30e729f9b8d7daf4d8c">Gtk::TreeModel::iterator</a></td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="a06a713fecde31f2f1a7baeb0e3e2fea5"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">typedef <a class="el" href="classGtk_1_1TreePath.html">TreePath</a> <a class="el" href="classGtk_1_1TreeModel.html#a06a713fecde31f2f1a7baeb0e3e2fea5">Gtk::TreeModel::Path</a></td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="a2d898ba817a56f34dd877887e38e4640"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">typedef <a class="el" href="classGtk_1_1TreeNodeChildren.html#a1b11dc8d1e456f72c67a4011e410176c">Children::reverse_iterator</a> <a class="el" href="classGtk_1_1TreeModel.html#a2d898ba817a56f34dd877887e38e4640">Gtk::TreeModel::reverse_iterator</a></td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="a297c9db68905e82fe7c3fac57f6c4de8"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">typedef <a class="el" href="classGtk_1_1TreeRow.html">TreeRow</a> <a class="el" href="classGtk_1_1TreeModel.html#a297c9db68905e82fe7c3fac57f6c4de8">Gtk::TreeModel::Row</a></td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="a518281b14bcc32f9d0ef4ca0584a1a30"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">typedef <a class="el" href="classGtk_1_1TreeRowReference.html">TreeRowReference</a> <a class="el" href="classGtk_1_1TreeModel.html#a518281b14bcc32f9d0ef4ca0584a1a30">Gtk::TreeModel::RowReference</a></td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="a9db469cffdaa5e2d38b6a8427acd12c4"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">typedef <a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/classsigc_1_1slot.html">sigc::slot</a><bool, const <a class="el" href="classGtk_1_1TreeModel.html#a754e74cd833ff30e729f9b8d7daf4d8c">TreeModel::iterator</a>&> <a class="el" href="classGtk_1_1TreeModel.html#a9db469cffdaa5e2d38b6a8427acd12c4">Gtk::TreeModel::SlotForeachIter</a></td>
</tr>
</table>
</div><div class="memdoc">
<p>For example, void on_foreach(const Gtk::TreeModel::iterator& iter);. </p>
<p>If the callback function returns true, then the tree ceases to be walked, and <a class="el" href="classGtk_1_1TreeModel.html#a11fbc9b39c01210e525e7b6cdf91f66f" title="Calls a callback slot on each node in the model in a depth-first fashion. ">foreach()</a> returns. </p>
</div>
</div>
<a class="anchor" id="a254bbb5d47f64423580c055031467f98"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">typedef <a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/classsigc_1_1slot.html">sigc::slot</a><bool, const <a class="el" href="classGtk_1_1TreeModel.html#a06a713fecde31f2f1a7baeb0e3e2fea5">TreeModel::Path</a>&> <a class="el" href="classGtk_1_1TreeModel.html#a254bbb5d47f64423580c055031467f98">Gtk::TreeModel::SlotForeachPath</a></td>
</tr>
</table>
</div><div class="memdoc">
<p>For example, void on_foreach(const Gtk::TreeModel::Path& path);. </p>
<p>If the callback function returns true, then the tree ceases to be walked, and <a class="el" href="classGtk_1_1TreeModel.html#a11fbc9b39c01210e525e7b6cdf91f66f" title="Calls a callback slot on each node in the model in a depth-first fashion. ">foreach()</a> returns. </p>
</div>
</div>
<a class="anchor" id="a83d0f66e0e21509699104401899ac394"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">typedef <a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/classsigc_1_1slot.html">sigc::slot</a><bool, const <a class="el" href="classGtk_1_1TreeModel.html#a06a713fecde31f2f1a7baeb0e3e2fea5">TreeModel::Path</a>&, const <a class="el" href="classGtk_1_1TreeModel.html#a754e74cd833ff30e729f9b8d7daf4d8c">TreeModel::iterator</a>&> <a class="el" href="classGtk_1_1TreeModel.html#a83d0f66e0e21509699104401899ac394">Gtk::TreeModel::SlotForeachPathAndIter</a></td>
</tr>
</table>
</div><div class="memdoc">
<p>For example, void on_foreach(const Gtk::TreeModel::Path& path, const Gtk::TreeModel::iterator& iter);. </p>
<p>If the callback function returns true, then the tree ceases to be walked, and <a class="el" href="classGtk_1_1TreeModel.html#a11fbc9b39c01210e525e7b6cdf91f66f" title="Calls a callback slot on each node in the model in a depth-first fashion. ">foreach()</a> returns. </p>
</div>
</div>
<h2 class="groupheader">Constructor & Destructor Documentation</h2>
<a class="anchor" id="a32fe9767f9ad56c546635e143645cd5a"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">Gtk::TreeModel::TreeModel </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>You should derive from this class to use it. </p>
</div>
</div>
<a class="anchor" id="ac43d6be71926e7951e6fd623a3cc0929"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">Gtk::TreeModel::TreeModel </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classGtk_1_1TreeModel.html">TreeModel</a>&& </td>
<td class="paramname"><em>src</em></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">noexcept</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="a2d840e90590f1ff25b39eadf65a2e7c3"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">Gtk::TreeModel::~TreeModel </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">override</span><span class="mlabel">noexcept</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<h2 class="groupheader">Member Function Documentation</h2>
<a class="anchor" id="aed810cc59d8176fac21c9559e03d4c51"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">static void Gtk::TreeModel::add_interface </td>
<td>(</td>
<td class="paramtype">GType </td>
<td class="paramname"><em>gtype_implementer</em></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="a62142e8a5beffb04a2b643d7f62c890f"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classGtk_1_1TreeModel.html#ad04e0f7d1bb271fceeef487a19b97703">Children</a> Gtk::TreeModel::children </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>This returns an STL-like container API, for iterating over the rows. </p>
</div>
</div>
<a class="anchor" id="a4c867cde63dbb443e1735eb8b82f85a9"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classGtk_1_1TreeModel.html#ad04e0f7d1bb271fceeef487a19b97703">Children</a> Gtk::TreeModel::children </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>This returns an STL-like container API, for iterating over the rows. </p>
</div>
</div>
<a class="anchor" id="a11fbc9b39c01210e525e7b6cdf91f66f"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::TreeModel::foreach </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classGtk_1_1TreeModel.html#a83d0f66e0e21509699104401899ac394">SlotForeachPathAndIter</a>& </td>
<td class="paramname"><em>slot</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Calls a callback slot on each node in the model in a depth-first fashion. </p>
<p>If the callback function returns true, then the tree ceases to be walked, and <a class="el" href="classGtk_1_1TreeModel.html#a11fbc9b39c01210e525e7b6cdf91f66f" title="Calls a callback slot on each node in the model in a depth-first fashion. ">foreach()</a> returns.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">slot</td><td>The function to call for each selected node. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="ab65a437945c182eb2b033336bb493bee"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::TreeModel::foreach_iter </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classGtk_1_1TreeModel.html#a9db469cffdaa5e2d38b6a8427acd12c4">SlotForeachIter</a>& </td>
<td class="paramname"><em>slot</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Calls a callback slot on each node in the model in a depth-first fashion. </p>
<p>If the callback function returns true, then the tree ceases to be walked, and <a class="el" href="classGtk_1_1TreeModel.html#a11fbc9b39c01210e525e7b6cdf91f66f" title="Calls a callback slot on each node in the model in a depth-first fashion. ">foreach()</a> returns.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">slot</td><td>The function to call for each selected node. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="ab3879b2da7542137d136515acc2d79fa"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::TreeModel::foreach_path </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classGtk_1_1TreeModel.html#a254bbb5d47f64423580c055031467f98">SlotForeachPath</a>& </td>
<td class="paramname"><em>slot</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Calls a callback slot on each node in the model in a depth-first fashion. </p>
<p>If the callback function returns true, then the tree ceases to be walked, and <a class="el" href="classGtk_1_1TreeModel.html#a11fbc9b39c01210e525e7b6cdf91f66f" title="Calls a callback slot on each node in the model in a depth-first fashion. ">foreach()</a> returns.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">slot</td><td>The function to call for each selected node. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="abde62f1a364d44440b2d17960ef764e6"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GType Gtk::TreeModel::get_column_type </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"><em>index</em></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns the type of the column. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">index</td><td>The column index. </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>The type of the column. </dd></dl>
</div>
</div>
<a class="anchor" id="ab59203d0ac1d7084ea3a69ae59120686"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual GType Gtk::TreeModel::get_column_type_vfunc </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"><em>index</em></td><td>)</td>
<td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="af4b5de9c0bd5a79ef06fcda4fc415ef8"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="group__gtkmmEnums.html#ga8db2110062643eb26461ec23b63e2cb2">TreeModelFlags</a> Gtk::TreeModel::get_flags </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns a set of flags supported by this interface. </p>
<p>The flags are a bitwise combination of <a class="el" href="group__gtkmmEnums.html#ga8db2110062643eb26461ec23b63e2cb2">Gtk::TreeModelFlags</a>. The flags supported should not change during the lifecycle of the <em>tree_model</em>.</p>
<dl class="section return"><dt>Returns</dt><dd>The flags supported by this interface. </dd></dl>
</div>
</div>
<a class="anchor" id="a92ab54c2bac694b7065c617db17ef717"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual <a class="el" href="group__gtkmmEnums.html#ga8db2110062643eb26461ec23b63e2cb2">TreeModelFlags</a> Gtk::TreeModel::get_flags_vfunc </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="aebaa795e4920ddc0ec5e39c9f4fbc660"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classGtk_1_1TreeModel.html#a754e74cd833ff30e729f9b8d7daf4d8c">iterator</a> Gtk::TreeModel::get_iter </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classGtk_1_1TreeModel.html#a06a713fecde31f2f1a7baeb0e3e2fea5">Path</a>& </td>
<td class="paramname"><em>path</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns a valid iterator pointing to <em>path</em>. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">path</td><td>The <a class="el" href="classGtk_1_1TreePath.html">Gtk::TreeModel::Path</a>. </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>A valid iterator pointing to the path, or an invalid iterator if that is not possible. </dd></dl>
</div>
</div>
<a class="anchor" id="a7697e287ce17c6f2e900c5762f7ba77a"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classGtk_1_1TreeModel.html#a754e74cd833ff30e729f9b8d7daf4d8c">iterator</a> Gtk::TreeModel::get_iter </td>
<td>(</td>
<td class="paramtype">const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> & </td>
<td class="paramname"><em>path_string</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns a valid iterator pointing to <em>path_string</em>. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">path_string</td><td>The path, as a string representation. </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>A valid iterator pointing to the path, or an invalid iterator if that is not possible. </dd></dl>
</div>
</div>
<a class="anchor" id="a2476e133c67544c3ac1e466497150382"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual bool Gtk::TreeModel::get_iter_vfunc </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classGtk_1_1TreeModel.html#a06a713fecde31f2f1a7baeb0e3e2fea5">Path</a>& </td>
<td class="paramname"><em>path</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="classGtk_1_1TreeModel.html#a754e74cd833ff30e729f9b8d7daf4d8c">iterator</a>& </td>
<td class="paramname"><em>iter</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Override and implement this in a derived <a class="el" href="classGtk_1_1TreeModel.html" title="This class defines a generic tree interface for use by the Gtk::TreeView widget. ">TreeModel</a> class. </p>
<p>Sets <em>iter</em> to a valid iterator pointing to <em>path</em> </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">path</td><td>An path to a node. </td></tr>
<tr><td class="paramname">iter</td><td>An iterator that will be set to refer to a node to the path, or will be set as invalid. </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>true if the operation was possible. </dd></dl>
</div>
</div>
<a class="anchor" id="ac0696920f0dbcdd7677198175459743c"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">int Gtk::TreeModel::get_n_columns </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns the number of columns supported by <em>tree_model</em>. </p>
<dl class="section return"><dt>Returns</dt><dd>The number of columns. </dd></dl>
</div>
</div>
<a class="anchor" id="a110c6a9e23e3332e46efdfc1d544026b"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual int Gtk::TreeModel::get_n_columns_vfunc </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="a090a3d092d3b9876c6965d8bf79ba780"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classGtk_1_1TreeModel.html#a06a713fecde31f2f1a7baeb0e3e2fea5">TreeModel::Path</a> Gtk::TreeModel::get_path </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classGtk_1_1TreeModel.html#a754e74cd833ff30e729f9b8d7daf4d8c">iterator</a>& </td>
<td class="paramname"><em>iter</em></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns a <a class="el" href="classGtk_1_1TreePath.html" title="A path is essentially a potential node. ">Gtk::TreePath</a> referenced by <em>iter</em>. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">iter</td><td>The <a class="el" href="classGtk_1_1TreeIter.html" title="A Gtk::TreeModel::iterator is a reference to a specific node on a specific model. ...">Gtk::TreeIter</a>. </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>A <a class="el" href="classGtk_1_1TreePath.html" title="A path is essentially a potential node. ">Gtk::TreePath</a>. </dd></dl>
</div>
</div>
<a class="anchor" id="a05875688ebf31e276835722f911a7612"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual <a class="el" href="classGtk_1_1TreeModel.html#a06a713fecde31f2f1a7baeb0e3e2fea5">TreeModel::Path</a> Gtk::TreeModel::get_path_vfunc </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classGtk_1_1TreeModel.html#a754e74cd833ff30e729f9b8d7daf4d8c">iterator</a>& </td>
<td class="paramname"><em>iter</em></td><td>)</td>
<td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Override and implement this in a derived <a class="el" href="classGtk_1_1TreeModel.html" title="This class defines a generic tree interface for use by the Gtk::TreeView widget. ">TreeModel</a> class. </p>
<p>Returns a Path referenced by <em>iter</em>.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">iter</td><td>The iterator. </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>The path. </dd></dl>
</div>
</div>
<a class="anchor" id="aafe5344f4012d8bf13194bd63c01cef1"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> Gtk::TreeModel::get_string </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classGtk_1_1TreeModel.html#a754e74cd833ff30e729f9b8d7daf4d8c">iterator</a>& </td>
<td class="paramname"><em>iter</em></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Generates a string representation of the iter. </p>
<p>This string is a ':' separated list of numbers. For example, "4:10:0:3" would be an acceptable return value for this string.</p>
<dl class="since_2_2"><dt><b><a class="el" href="since_2_2.html#_since_2_2000104">Since gtkmm 2.2:</a></b></dt><dd></dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">iter</td><td>An <a class="el" href="classGtk_1_1TreeIter.html" title="A Gtk::TreeModel::iterator is a reference to a specific node on a specific model. ...">Gtk::TreeIter</a>. </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>The string. </dd></dl>
</div>
</div>
<a class="anchor" id="a8795c37c6a281af3488135207e1c9661"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">static GType Gtk::TreeModel::get_type </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Get the GType for this class, for use with the underlying GObject type system. </p>
</div>
</div>
<a class="anchor" id="a78055c29e3375a53c85c6c0283ac782b"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual void Gtk::TreeModel::get_value_impl </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classGtk_1_1TreeModel.html#a754e74cd833ff30e729f9b8d7daf4d8c">iterator</a>& </td>
<td class="paramname"><em>row</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>column</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ValueBase.html">Glib::ValueBase</a> & </td>
<td class="paramname"><em>value</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="a67ad9adb1572fbf73afcb02386634f1b"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual void Gtk::TreeModel::get_value_vfunc </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classGtk_1_1TreeModel.html#a754e74cd833ff30e729f9b8d7daf4d8c">iterator</a>& </td>
<td class="paramname"><em>iter</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>column</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ValueBase.html">Glib::ValueBase</a> & </td>
<td class="paramname"><em>value</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Override and implement this in a derived <a class="el" href="classGtk_1_1TreeModel.html" title="This class defines a generic tree interface for use by the Gtk::TreeView widget. ">TreeModel</a> class. </p>
<p>Initializes and sets <em>value</em> to that at <em>column</em>.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">iter</td><td>The iterator. </td></tr>
<tr><td class="paramname">column</td><td>The column to lookup the value at. </td></tr>
<tr><td class="paramname">value</td><td>An empty <a class="el" href="namespaceGlib.html">Glib</a>:Value to set. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a190c8fd4588b844696e36e5c12966b4b"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">GtkTreeModel* Gtk::TreeModel::gobj </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Provides access to the underlying C GObject. </p>
</div>
</div>
<a class="anchor" id="ae6a7c63aca59b5904beef977753558c2"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">const GtkTreeModel* Gtk::TreeModel::gobj </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Provides access to the underlying C GObject. </p>
</div>
</div>
<a class="anchor" id="a08a44f8c4a4cc069a6bb063911195c5d"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual bool Gtk::TreeModel::iter_children_vfunc </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classGtk_1_1TreeModel.html#a754e74cd833ff30e729f9b8d7daf4d8c">iterator</a>& </td>
<td class="paramname"><em>parent</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="classGtk_1_1TreeModel.html#a754e74cd833ff30e729f9b8d7daf4d8c">iterator</a>& </td>
<td class="paramname"><em>iter</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Override and implement this in a derived <a class="el" href="classGtk_1_1TreeModel.html" title="This class defines a generic tree interface for use by the Gtk::TreeView widget. ">TreeModel</a> class. </p>
<p>Sets <em>iter</em> to refer to the first child of <em>parent</em>. If <em>parent</em> has no children, false is returned and <em>iter</em> is set to be invalid.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">parent</td><td>An iterator. </td></tr>
<tr><td class="paramname">iter</td><td>An iterator that will be set to refer to the firt child node, or will be set as invalid. </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>true if the operation was possible. </dd></dl>
</div>
</div>
<a class="anchor" id="a20a37892a5c4aa8b2ef975f8f24d8f35"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual bool Gtk::TreeModel::iter_has_child_vfunc </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classGtk_1_1TreeModel.html#a754e74cd833ff30e729f9b8d7daf4d8c">iterator</a>& </td>
<td class="paramname"><em>iter</em></td><td>)</td>
<td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Override and implement this in a derived <a class="el" href="classGtk_1_1TreeModel.html" title="This class defines a generic tree interface for use by the Gtk::TreeView widget. ">TreeModel</a> class. </p>
<p>Returns true if <em>iter</em> has children, false otherwise.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">iter</td><td>The iterator to test for children. </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>true if <em>iter</em> has children. </dd></dl>
</div>
</div>
<a class="anchor" id="aa5c6526633d0fa8a78fd3d14d1fbd6cf"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual bool Gtk::TreeModel::iter_is_valid </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classGtk_1_1TreeModel.html#a754e74cd833ff30e729f9b8d7daf4d8c">iterator</a>& </td>
<td class="paramname"><em>iter</em></td><td>)</td>
<td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Override and implement this in a derived <a class="el" href="classGtk_1_1TreeModel.html" title="This class defines a generic tree interface for use by the Gtk::TreeView widget. ">TreeModel</a> class. </p>
<dl class="section note"><dt>Note</dt><dd>This virtual method is not recommended. To check whether an iterator is valid, call <a class="el" href="classGtk_1_1TreeStore.html#a1daf0f3011c00246dc3ca0d32c824d31" title="WARNING: This function is slow. ">TreeStore::iter_is_valid()</a>, <a class="el" href="classGtk_1_1ListStore.html#ae307acf882557f319dc309963c07705a" title="<warning>This function is slow. ">ListStore::iter_is_valid()</a> or <a class="el" href="classGtk_1_1TreeModelSort.html#a39cd337bbff15cec06a4f115bddc2355" title="<warning> This function is slow. ">TreeModelSort::iter_is_valid()</a> directly instead. Because these methods are intended to be used only for debugging and/or testing purposes, it doesn't make sense to provide an abstract interface to them.</dd></dl>
<dl class="section return"><dt>Returns</dt><dd>true if the iterator is valid.</dd></dl>
<dl class="deprecated"><dt><b><a class="el" href="deprecated.html#_deprecated000116">Deprecated:</a></b></dt><dd>Use <a class="el" href="classGtk_1_1TreeModel.html#aa5c6526633d0fa8a78fd3d14d1fbd6cf" title="Override and implement this in a derived TreeModel class. ">iter_is_valid()</a> in the derived class. </dd></dl>
<p>Reimplemented in <a class="el" href="classGtk_1_1TreeStore.html#a1daf0f3011c00246dc3ca0d32c824d31">Gtk::TreeStore</a>, <a class="el" href="classGtk_1_1ListStore.html#ae307acf882557f319dc309963c07705a">Gtk::ListStore</a>, and <a class="el" href="classGtk_1_1TreeModelSort.html#a39cd337bbff15cec06a4f115bddc2355">Gtk::TreeModelSort</a>.</p>
</div>
</div>
<a class="anchor" id="a61991c22a9ae0c46423a1504ad2f5e96"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual int Gtk::TreeModel::iter_n_children_vfunc </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classGtk_1_1TreeModel.html#a754e74cd833ff30e729f9b8d7daf4d8c">iterator</a>& </td>
<td class="paramname"><em>iter</em></td><td>)</td>
<td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Override and implement this in a derived <a class="el" href="classGtk_1_1TreeModel.html" title="This class defines a generic tree interface for use by the Gtk::TreeView widget. ">TreeModel</a> class. </p>
<p>Returns the number of children that <em>iter</em> has. See also <a class="el" href="classGtk_1_1TreeModel.html#a4a4465b80fd34b51d7c67b731773804d" title="Override and implement this in a derived TreeModel class. ">iter_n_root_children_vfunc()</a>.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">iter</td><td>The iterator to test for children. </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>The number of children of <em>iter</em>. </dd></dl>
</div>
</div>
<a class="anchor" id="a4a4465b80fd34b51d7c67b731773804d"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual int Gtk::TreeModel::iter_n_root_children_vfunc </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Override and implement this in a derived <a class="el" href="classGtk_1_1TreeModel.html" title="This class defines a generic tree interface for use by the Gtk::TreeView widget. ">TreeModel</a> class. </p>
<p>Returns the number of toplevel nodes. See also iter_n_children().</p>
<dl class="section return"><dt>Returns</dt><dd>The number of children at the root level. </dd></dl>
</div>
</div>
<a class="anchor" id="af371b624eec90b865eae30b07cdbe20b"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual bool Gtk::TreeModel::iter_next_vfunc </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classGtk_1_1TreeModel.html#a754e74cd833ff30e729f9b8d7daf4d8c">iterator</a>& </td>
<td class="paramname"><em>iter</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="classGtk_1_1TreeModel.html#a754e74cd833ff30e729f9b8d7daf4d8c">iterator</a>& </td>
<td class="paramname"><em>iter_next</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Override and implement this in a derived <a class="el" href="classGtk_1_1TreeModel.html" title="This class defines a generic tree interface for use by the Gtk::TreeView widget. ">TreeModel</a> class. </p>
<p>Sets <em>iter_next</em> to refer to the node following <em>iter</em> it at the current level. If there is no next iter, false is returned and iter_next is set to be invalid.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">iter</td><td>An iterator. </td></tr>
<tr><td class="paramname">iter_next</td><td>An iterator that will be set to refer to the next node, or will be set as invalid. </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>true if the operation was possible. </dd></dl>
</div>
</div>
<a class="anchor" id="a9425e899db0b07486220fb885de984db"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual bool Gtk::TreeModel::iter_nth_child_vfunc </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classGtk_1_1TreeModel.html#a754e74cd833ff30e729f9b8d7daf4d8c">iterator</a>& </td>
<td class="paramname"><em>parent</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>n</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="classGtk_1_1TreeModel.html#a754e74cd833ff30e729f9b8d7daf4d8c">iterator</a>& </td>
<td class="paramname"><em>iter</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Override and implement this in a derived <a class="el" href="classGtk_1_1TreeModel.html" title="This class defines a generic tree interface for use by the Gtk::TreeView widget. ">TreeModel</a> class. </p>
<p>Sets <em>iter</em> to be the child of <em>parent</em> using the given index. The first index is 0. If <em>n</em> is too big, or <em>parent</em> has no children, <em>iter</em> is set to an invalid iterator and false is returned. See also <a class="el" href="classGtk_1_1TreeModel.html#ad707d3063b4ef72a1fe59646fc42a7a4" title="Override and implement this in a derived TreeModel class. ">iter_nth_root_child_vfunc()</a></p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">parent</td><td>An iterator. </td></tr>
<tr><td class="paramname">n</td><td>The index of the child node to which <em>iter</em> should be set. </td></tr>
<tr><td class="paramname">iter</td><td>An iterator that will be set to refer to the nth node, or will be set as invalid. </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>true if the operation was possible. </dd></dl>
</div>
</div>
<a class="anchor" id="ad707d3063b4ef72a1fe59646fc42a7a4"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual bool Gtk::TreeModel::iter_nth_root_child_vfunc </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"><em>n</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="classGtk_1_1TreeModel.html#a754e74cd833ff30e729f9b8d7daf4d8c">iterator</a>& </td>
<td class="paramname"><em>iter</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Override and implement this in a derived <a class="el" href="classGtk_1_1TreeModel.html" title="This class defines a generic tree interface for use by the Gtk::TreeView widget. ">TreeModel</a> class. </p>
<p>Sets <em>iter</em> to be the child of at the root level using the given index. The first index is 0. If <em>n</em> is too big, or if there are no children, <em>iter</em> is set to an invalid iterator and false is returned. See also <a class="el" href="classGtk_1_1TreeModel.html#a9425e899db0b07486220fb885de984db" title="Override and implement this in a derived TreeModel class. ">iter_nth_child_vfunc()</a>.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">n</td><td>The index of the child node to which <em>iter</em> should be set. </td></tr>
<tr><td class="paramname">iter</td><td>An iterator that will be set to refer to the nth node, or will be set as invalid. </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>true if the operation was possible. </dd></dl>
</div>
</div>
<a class="anchor" id="acb0ce509e06b9a64b8b619cbf68d1269"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual bool Gtk::TreeModel::iter_parent_vfunc </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classGtk_1_1TreeModel.html#a754e74cd833ff30e729f9b8d7daf4d8c">iterator</a>& </td>
<td class="paramname"><em>child</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="classGtk_1_1TreeModel.html#a754e74cd833ff30e729f9b8d7daf4d8c">iterator</a>& </td>
<td class="paramname"><em>iter</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Override and implement this in a derived <a class="el" href="classGtk_1_1TreeModel.html" title="This class defines a generic tree interface for use by the Gtk::TreeView widget. ">TreeModel</a> class. </p>
<p>Sets <em>iter</em> to be the parent of <em>child</em>. If <em>child</em> is at the toplevel, and doesn't have a parent, then <em>iter</em> is set to an invalid iterator and false is returned.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">child</td><td>An iterator. </td></tr>
<tr><td class="paramname">iter</td><td>An iterator that will be set to refer to the parent node, or will be set as invalid. </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>true if the operation was possible. </dd></dl>
</div>
</div>
<a class="anchor" id="a245ce3fcf75411a8800b05213e652754"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual void Gtk::TreeModel::on_row_changed </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classGtk_1_1TreeModel.html#a06a713fecde31f2f1a7baeb0e3e2fea5">TreeModel::Path</a>& </td>
<td class="paramname"><em>path</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="classGtk_1_1TreeModel.html#a754e74cd833ff30e729f9b8d7daf4d8c">TreeModel::iterator</a>& </td>
<td class="paramname"><em>iter</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>This is a default handler for the signal <a class="el" href="classGtk_1_1TreeModel.html#a68bcb8a4563a498b504a4e5f0fb2a731">signal_row_changed()</a>. </p>
</div>
</div>
<a class="anchor" id="a438d4fd8dc0228c6b57ea7a031422cf8"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual void Gtk::TreeModel::on_row_deleted </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classGtk_1_1TreeModel.html#a06a713fecde31f2f1a7baeb0e3e2fea5">TreeModel::Path</a>& </td>
<td class="paramname"><em>path</em></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>This is a default handler for the signal <a class="el" href="classGtk_1_1TreeModel.html#a3528812724561bcb61fdf4d5c0b387dc">signal_row_deleted()</a>. </p>
</div>
</div>
<a class="anchor" id="abddf86f9cce30999456fe9aade3431e7"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual void Gtk::TreeModel::on_row_has_child_toggled </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classGtk_1_1TreeModel.html#a06a713fecde31f2f1a7baeb0e3e2fea5">TreeModel::Path</a>& </td>
<td class="paramname"><em>path</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="classGtk_1_1TreeModel.html#a754e74cd833ff30e729f9b8d7daf4d8c">TreeModel::iterator</a>& </td>
<td class="paramname"><em>iter</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>This is a default handler for the signal <a class="el" href="classGtk_1_1TreeModel.html#abe50982f216d36c344424711caf984cc">signal_row_has_child_toggled()</a>. </p>
</div>
</div>
<a class="anchor" id="a23134167e0e61f22e24d387eabc54890"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual void Gtk::TreeModel::on_row_inserted </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classGtk_1_1TreeModel.html#a06a713fecde31f2f1a7baeb0e3e2fea5">TreeModel::Path</a>& </td>
<td class="paramname"><em>path</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="classGtk_1_1TreeModel.html#a754e74cd833ff30e729f9b8d7daf4d8c">TreeModel::iterator</a>& </td>
<td class="paramname"><em>iter</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>This is a default handler for the signal <a class="el" href="classGtk_1_1TreeModel.html#a6542a817e0f329ab2b62238331db3d6a">signal_row_inserted()</a>. </p>
</div>
</div>
<a class="anchor" id="ac5e459f6370dafe528d928c99f0086c8"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual void Gtk::TreeModel::on_rows_reordered </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classGtk_1_1TreeModel.html#a06a713fecde31f2f1a7baeb0e3e2fea5">TreeModel::Path</a>& </td>
<td class="paramname"><em>path</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="classGtk_1_1TreeModel.html#a754e74cd833ff30e729f9b8d7daf4d8c">TreeModel::iterator</a>& </td>
<td class="paramname"><em>iter</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int * </td>
<td class="paramname"><em>new_order</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>This is a default handler for the signal <a class="el" href="classGtk_1_1TreeModel.html#a5f625ff2c5991a9a3e7e23cf281536ad">signal_rows_reordered()</a>. </p>
</div>
</div>
<a class="anchor" id="a1236a9b09c8a363d83a626e9e80185e5"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classGtk_1_1TreeModel.html">TreeModel</a>& Gtk::TreeModel::operator= </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classGtk_1_1TreeModel.html">TreeModel</a>&& </td>
<td class="paramname"><em>src</em></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">noexcept</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="a8a07671ff491460f94902dc2f4576c78"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual void Gtk::TreeModel::ref_node_vfunc </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classGtk_1_1TreeModel.html#a754e74cd833ff30e729f9b8d7daf4d8c">iterator</a>& </td>
<td class="paramname"><em>iter</em></td><td>)</td>
<td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Override and implement this in a derived <a class="el" href="classGtk_1_1TreeModel.html" title="This class defines a generic tree interface for use by the Gtk::TreeView widget. ">TreeModel</a> class. </p>
<p>Lets the tree ref the node. This is an optional method for models to implement. To be more specific, models may ignore this call as it exists primarily for performance reasons.</p>
<p>This function is primarily meant as a way for views to let caching model know when nodes are being displayed (and hence, whether or not to cache that node.) For example, a file-system based model would not want to keep the entire file-hierarchy in memory, just the sections that are currently being displayed by every current view.</p>
<p>A model should be expected to be able to get an iter independent of its reffed state.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">iter</td><td>the iterator. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a8f06ebb80f930bb780eab62aac748df2"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::TreeModel::row_changed </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classGtk_1_1TreeModel.html#a06a713fecde31f2f1a7baeb0e3e2fea5">Path</a>& </td>
<td class="paramname"><em>path</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="classGtk_1_1TreeModel.html#a754e74cd833ff30e729f9b8d7daf4d8c">iterator</a>& </td>
<td class="paramname"><em>iter</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Emits the "row-changed" signal on <em>tree_model</em>. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">path</td><td>A <a class="el" href="classGtk_1_1TreePath.html" title="A path is essentially a potential node. ">Gtk::TreePath</a> pointing to the changed row. </td></tr>
<tr><td class="paramname">iter</td><td>A valid <a class="el" href="classGtk_1_1TreeIter.html" title="A Gtk::TreeModel::iterator is a reference to a specific node on a specific model. ...">Gtk::TreeIter</a> pointing to the changed row. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="ae8896f29424c2609fde93a873ac54b28"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::TreeModel::row_deleted </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classGtk_1_1TreeModel.html#a06a713fecde31f2f1a7baeb0e3e2fea5">Path</a>& </td>
<td class="paramname"><em>path</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Emits the "row-deleted" signal on <em>tree_model</em>. </p>
<p>This should be called by models after a row has been removed. The location pointed to by <em>path</em> should be the location that the row previously was at. It may not be a valid location anymore.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">path</td><td>A <a class="el" href="classGtk_1_1TreePath.html" title="A path is essentially a potential node. ">Gtk::TreePath</a> pointing to the previous location of the deleted row. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a892cb6aa9235fb362fc0cd245c09d862"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::TreeModel::row_has_child_toggled </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classGtk_1_1TreeModel.html#a06a713fecde31f2f1a7baeb0e3e2fea5">Path</a>& </td>
<td class="paramname"><em>path</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="classGtk_1_1TreeModel.html#a754e74cd833ff30e729f9b8d7daf4d8c">iterator</a>& </td>
<td class="paramname"><em>iter</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Emits the "row-has-child-toggled" signal on <em>tree_model</em>. </p>
<p>This should be called by models after the child state of a node changes.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">path</td><td>A <a class="el" href="classGtk_1_1TreePath.html" title="A path is essentially a potential node. ">Gtk::TreePath</a> pointing to the changed row. </td></tr>
<tr><td class="paramname">iter</td><td>A valid <a class="el" href="classGtk_1_1TreeIter.html" title="A Gtk::TreeModel::iterator is a reference to a specific node on a specific model. ...">Gtk::TreeIter</a> pointing to the changed row. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a30f829882ee631c1b83fa980a00f9778"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::TreeModel::row_inserted </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classGtk_1_1TreeModel.html#a06a713fecde31f2f1a7baeb0e3e2fea5">Path</a>& </td>
<td class="paramname"><em>path</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="classGtk_1_1TreeModel.html#a754e74cd833ff30e729f9b8d7daf4d8c">iterator</a>& </td>
<td class="paramname"><em>iter</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Emits the "row-inserted" signal on <em>tree_model</em>. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">path</td><td>A <a class="el" href="classGtk_1_1TreePath.html" title="A path is essentially a potential node. ">Gtk::TreePath</a> pointing to the inserted row. </td></tr>
<tr><td class="paramname">iter</td><td>A valid <a class="el" href="classGtk_1_1TreeIter.html" title="A Gtk::TreeModel::iterator is a reference to a specific node on a specific model. ...">Gtk::TreeIter</a> pointing to the inserted row. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a7b3d20e68dc5b57bfe91a2965733c9f9"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::TreeModel::rows_reordered </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classGtk_1_1TreeModel.html#a06a713fecde31f2f1a7baeb0e3e2fea5">Path</a>& </td>
<td class="paramname"><em>path</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="classGtk_1_1TreeModel.html#a754e74cd833ff30e729f9b8d7daf4d8c">iterator</a>& </td>
<td class="paramname"><em>iter</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ArrayHandle.html">Glib::ArrayHandle</a>< int > & </td>
<td class="paramname"><em>new_order</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Emits the "rows_reordered" signal on the tree model. </p>
<p>This should be called by custom models when their rows have been reordered.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">path</td><td>A tree path pointing to the tree node whose children have been reordered. </td></tr>
<tr><td class="paramname">iter</td><td>A valid iterator pointing to the node whose children have been reordered. See also, <a class="el" href="classGtk_1_1TreeModel.html#ab860a1ddc31a13959b3e614d44b6a32a" title="Emits the "rows_reordered" signal on the tree model. ">rows_reordered(const Path& path, const Glib::ArrayHandle<int>& new_order)</a>, if the path has a depth of 0. </td></tr>
<tr><td class="paramname">new_order</td><td>An array of integers mapping the current position of each child to its old position before the re-ordering, i.e. <em>new_order<literal></em>[newpos] = oldpos. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="ab860a1ddc31a13959b3e614d44b6a32a"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::TreeModel::rows_reordered </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classGtk_1_1TreeModel.html#a06a713fecde31f2f1a7baeb0e3e2fea5">Path</a>& </td>
<td class="paramname"><em>path</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ArrayHandle.html">Glib::ArrayHandle</a>< int > & </td>
<td class="paramname"><em>new_order</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Emits the "rows_reordered" signal on the tree model. </p>
<p>This should be called by custom models when their rows have been reordered. This method overload is for nodes whose path has a depth of 0. </p><dl class="since_2_10"><dt><b><a class="el" href="since_2_10.html#_since_2_10000328">Since gtkmm 2.10:</a></b></dt><dd></dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">path</td><td>A tree path pointing to the tree node whose children have been reordered. </td></tr>
<tr><td class="paramname">new_order</td><td>An array of integers mapping the current position of each child to its old position before the re-ordering, i.e. <em>new_order<literal></em>[newpos] = oldpos. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a90ed223eefc7087e7a18d63ea21c3839"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::TreeModel::rows_reordered </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classGtk_1_1TreeModel.html#a06a713fecde31f2f1a7baeb0e3e2fea5">Path</a>& </td>
<td class="paramname"><em>path</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="classGtk_1_1TreeModel.html#a754e74cd833ff30e729f9b8d7daf4d8c">iterator</a>& </td>
<td class="paramname"><em>iter</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int * </td>
<td class="paramname"><em>new_order</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Emits the "rows-reordered" signal on <em>tree_model</em>. </p>
<p>This should be called by models when their rows have been reordered.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">path</td><td>A <a class="el" href="classGtk_1_1TreePath.html" title="A path is essentially a potential node. ">Gtk::TreePath</a> pointing to the tree node whose children have been reordered. </td></tr>
<tr><td class="paramname">iter</td><td>A valid <a class="el" href="classGtk_1_1TreeIter.html" title="A Gtk::TreeModel::iterator is a reference to a specific node on a specific model. ...">Gtk::TreeIter</a> pointing to the node whose children have been reordered, or <code>nullptr</code> if the depth of <em>path</em> is 0. </td></tr>
<tr><td class="paramname">new_order</td><td>An array of integers mapping the current position of each child to its old position before the re-ordering, i.e. <em>new_order<code></em>[newpos] = oldpos</code>. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a26cf070eadb8e242bcf2b57f7e6d7d9e"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual void Gtk::TreeModel::set_value_impl </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classGtk_1_1TreeModel.html#a754e74cd833ff30e729f9b8d7daf4d8c">iterator</a>& </td>
<td class="paramname"><em>row</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>column</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ValueBase.html">Glib::ValueBase</a> & </td>
<td class="paramname"><em>value</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Override and implement this in a derived <a class="el" href="classGtk_1_1TreeModel.html" title="This class defines a generic tree interface for use by the Gtk::TreeView widget. ">TreeModel</a> class, so that Row::operator() and <a class="el" href="classGtk_1_1TreeRow.html#a79e62bd6eb9dc803aada1d5f7b6ed915" title="Sets the value of this column of this row. ">Row::set_value()</a> work. </p>
<p>You can probably just implement this by calling set_value_vfunc(). Your implementation of <a class="el" href="classGtk_1_1TreeModel.html#a26cf070eadb8e242bcf2b57f7e6d7d9e" title="Override and implement this in a derived TreeModel class, so that Row::operator() and Row::set_value(...">set_value_impl()</a> should also call <a class="el" href="classGtk_1_1TreeModel.html#a8f06ebb80f930bb780eab62aac748df2" title="Emits the "row-changed" signal on tree_model. ">row_changed()</a> after changing the value. </p>
<p>Reimplemented in <a class="el" href="classGtk_1_1TreeModelFilter.html#a9164293aa3835aee9e645ac395676f2d">Gtk::TreeModelFilter</a>, <a class="el" href="classGtk_1_1TreeStore.html#a8c4ca1e9aff504e70e2b23c164692712">Gtk::TreeStore</a>, <a class="el" href="classGtk_1_1ListStore.html#add757d2d02d35b5ea782c86eef04bae7">Gtk::ListStore</a>, and <a class="el" href="classGtk_1_1TreeModelSort.html#a07c28af5bc27e1548449b71c130c26f0">Gtk::TreeModelSort</a>.</p>
</div>
</div>
<a class="anchor" id="a68bcb8a4563a498b504a4e5f0fb2a731"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< void,const <a class="el" href="classGtk_1_1TreeModel.html#a06a713fecde31f2f1a7baeb0e3e2fea5">TreeModel::Path</a>&,const <a class="el" href="classGtk_1_1TreeModel.html#a754e74cd833ff30e729f9b8d7daf4d8c">TreeModel::iterator</a>& > Gtk::TreeModel::signal_row_changed </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<dl class="section user"><dt>Slot Prototype:</dt><dd><code>void on_my_row_changed(const <a class="el" href="classGtk_1_1TreeModel.html#a06a713fecde31f2f1a7baeb0e3e2fea5">TreeModel::Path</a>& path, const <a class="el" href="classGtk_1_1TreeModel.html#a754e74cd833ff30e729f9b8d7daf4d8c">TreeModel::iterator</a>& iter)</code> </dd></dl>
</div>
</div>
<a class="anchor" id="a3528812724561bcb61fdf4d5c0b387dc"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< void,const <a class="el" href="classGtk_1_1TreeModel.html#a06a713fecde31f2f1a7baeb0e3e2fea5">TreeModel::Path</a>& > Gtk::TreeModel::signal_row_deleted </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<dl class="section user"><dt>Slot Prototype:</dt><dd><code>void on_my_row_deleted(const <a class="el" href="classGtk_1_1TreeModel.html#a06a713fecde31f2f1a7baeb0e3e2fea5">TreeModel::Path</a>& path)</code> </dd></dl>
</div>
</div>
<a class="anchor" id="abe50982f216d36c344424711caf984cc"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< void,const <a class="el" href="classGtk_1_1TreeModel.html#a06a713fecde31f2f1a7baeb0e3e2fea5">TreeModel::Path</a>&,const <a class="el" href="classGtk_1_1TreeModel.html#a754e74cd833ff30e729f9b8d7daf4d8c">TreeModel::iterator</a>& > Gtk::TreeModel::signal_row_has_child_toggled </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<dl class="section user"><dt>Slot Prototype:</dt><dd><code>void on_my_row_has_child_toggled(const <a class="el" href="classGtk_1_1TreeModel.html#a06a713fecde31f2f1a7baeb0e3e2fea5">TreeModel::Path</a>& path, const <a class="el" href="classGtk_1_1TreeModel.html#a754e74cd833ff30e729f9b8d7daf4d8c">TreeModel::iterator</a>& iter)</code> </dd></dl>
</div>
</div>
<a class="anchor" id="a6542a817e0f329ab2b62238331db3d6a"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< void,const <a class="el" href="classGtk_1_1TreeModel.html#a06a713fecde31f2f1a7baeb0e3e2fea5">TreeModel::Path</a>&,const <a class="el" href="classGtk_1_1TreeModel.html#a754e74cd833ff30e729f9b8d7daf4d8c">TreeModel::iterator</a>& > Gtk::TreeModel::signal_row_inserted </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<dl class="section user"><dt>Slot Prototype:</dt><dd><code>void on_my_row_inserted(const <a class="el" href="classGtk_1_1TreeModel.html#a06a713fecde31f2f1a7baeb0e3e2fea5">TreeModel::Path</a>& path, const <a class="el" href="classGtk_1_1TreeModel.html#a754e74cd833ff30e729f9b8d7daf4d8c">TreeModel::iterator</a>& iter)</code> </dd></dl>
</div>
</div>
<a class="anchor" id="a5f625ff2c5991a9a3e7e23cf281536ad"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< void,const <a class="el" href="classGtk_1_1TreeModel.html#a06a713fecde31f2f1a7baeb0e3e2fea5">TreeModel::Path</a>&,const <a class="el" href="classGtk_1_1TreeModel.html#a754e74cd833ff30e729f9b8d7daf4d8c">TreeModel::iterator</a>&,int* > Gtk::TreeModel::signal_rows_reordered </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<dl class="section user"><dt>Slot Prototype:</dt><dd><code>void on_my_rows_reordered(const <a class="el" href="classGtk_1_1TreeModel.html#a06a713fecde31f2f1a7baeb0e3e2fea5">TreeModel::Path</a>& path, const <a class="el" href="classGtk_1_1TreeModel.html#a754e74cd833ff30e729f9b8d7daf4d8c">TreeModel::iterator</a>& iter, int* new_order)</code> </dd></dl>
</div>
</div>
<a class="anchor" id="ab19d09af11054d80f8ab9f19f239cb30"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual void Gtk::TreeModel::unref_node_vfunc </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classGtk_1_1TreeModel.html#a754e74cd833ff30e729f9b8d7daf4d8c">iterator</a>& </td>
<td class="paramname"><em>iter</em></td><td>)</td>
<td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Override and implement this in a derived <a class="el" href="classGtk_1_1TreeModel.html" title="This class defines a generic tree interface for use by the Gtk::TreeView widget. ">TreeModel</a> class. </p>
<p>Lets the tree unref the node. This is an optional method for models to implement. To be more specific, models may ignore this call as it exists primarily for performance reasons.</p>
<p>For more information on what this means, see <a class="el" href="classGtk_1_1TreeModel.html#ab19d09af11054d80f8ab9f19f239cb30" title="Override and implement this in a derived TreeModel class. ">unref_node_vfunc()</a>. Please note that nodes that are deleted are not unreffed.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">iter</td><td>the iterator. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<h2 class="groupheader">Friends And Related Function Documentation</h2>
<a class="anchor" id="a510776c39d65f700937cf14a2f6bad73"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGtk_1_1TreeModel.html">Gtk::TreeModel</a> > wrap </td>
<td>(</td>
<td class="paramtype">GtkTreeModel * </td>
<td class="paramname"><em>object</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">bool </td>
<td class="paramname"><em>take_copy</em> = <code>false</code> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">related</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>A <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/namespaceGlib.html#a671306f4a3a0cae5ab4d7a9d54886592">Glib::wrap()</a> method for this object. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">object</td><td>The C instance. </td></tr>
<tr><td class="paramname">take_copy</td><td>False if the result should take ownership of the C instance. True if it should take a new copy or ref. </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>A C++ instance that wraps this C instance. </dd></dl>
</div>
</div>
<hr/>The documentation for this class was generated from the following file:<ul>
<li>gtkmm/treemodel.h</li>
</ul>
</div><!-- contents -->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated by  <a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.8.11
</small></address>
</body>
</html>
|