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
|
<!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"/>
<title>gtkmm: Gtk::TreeModel Class Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<!-- Generated by Doxygen 1.6.1 -->
<div class="navigation" id="top">
<div class="tabs">
<ul>
<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 class="tabs">
<ul>
<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="hierarchy.html"><span>Class Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class Members</span></a></li>
</ul>
</div>
<div class="navpath"><a class="el" href="namespaceGtk.html">Gtk</a>::<a class="el" href="classGtk_1_1TreeModel.html">TreeModel</a>
</div>
</div>
<div class="contents">
<h1>Gtk::TreeModel Class Reference<br/>
<small>
[<a class="el" href="group__TreeView.html">TreeView Classes</a>]</small>
</h1><!-- doxytag: class="Gtk::TreeModel" --><!-- doxytag: inherits="Glib::Interface" -->
<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...">Gtk::TreeView</a> widget. <a href="#_details">More...</a></p>
<p>Inherits <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">Glib::Interface</a>.</p>
<p>Inherited by <a class="el" href="classGtk_1_1ListStore.html">Gtk::ListStore</a>, <a class="el" href="classGtk_1_1TreeModelFilter.html">Gtk::TreeModelFilter</a>, <a class="el" href="classGtk_1_1TreeModelSort.html">Gtk::TreeModelSort</a>, and <a class="el" href="classGtk_1_1TreeStore.html">Gtk::TreeStore</a>.</p>
<div class="dynheader">
Collaboration diagram for Gtk::TreeModel:</div>
<div class="dynsection">
<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" 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,160,117,189"/><area shape="rect" 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,83,125,112"/><area shape="rect" 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="12,5,119,35"/></map>
<center><span class="legend">[<a href="graph_legend.html">legend</a>]</span></center></div>
<p><a href="classGtk_1_1TreeModel-members.html">List of all members.</a></p>
<table border="0" cellpadding="0" cellspacing="0">
<tr><td colspan="2"><h2>Public Types</h2></td></tr>
<tr><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><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><td class="memItemLeft" align="right" valign="top">typedef <a class="el" href="classGtk_1_1TreeIter.html">Children::iterator</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TreeModel.html#a754e74cd833ff30e729f9b8d7daf4d8c">iterator</a></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">typedef <a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a00668.html">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><td class="memItemLeft" align="right" valign="top">typedef <a class="el" href="classGtk_1_1TreeIter.html">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><td class="memItemLeft" align="right" valign="top">typedef <br class="typebreak"/>
<a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a00668.html">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><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><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><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><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, <br class="typebreak"/>
const <a class="el" href="classGtk_1_1TreeIter.html">TreeModel::iterator</a>& > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TreeModel.html#a9db469cffdaa5e2d38b6a8427acd12c4">SlotForeachIter</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">For example, void on_foreach(const Gtk::TreeModel::iterator& iter);. <a href="#a9db469cffdaa5e2d38b6a8427acd12c4"></a><br/></td></tr>
<tr><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, <br class="typebreak"/>
const <a class="el" href="classGtk_1_1TreePath.html">TreeModel::Path</a>& > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TreeModel.html#a254bbb5d47f64423580c055031467f98">SlotForeachPath</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">For example, void on_foreach(const Gtk::TreeModel::Path& path);. <a href="#a254bbb5d47f64423580c055031467f98"></a><br/></td></tr>
<tr><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, <br class="typebreak"/>
const <a class="el" href="classGtk_1_1TreePath.html">TreeModel::Path</a>&, const <br class="typebreak"/>
<a class="el" href="classGtk_1_1TreeIter.html">TreeModel::iterator</a>& > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TreeModel.html#a83d0f66e0e21509699104401899ac394">SlotForeachPathAndIter</a></td></tr>
<tr><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"></a><br/></td></tr>
<tr><td colspan="2"><h2>Public Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">virtual </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TreeModel.html#a0dd3fbf3875ed1a88cc5f1765e9ef8bd">~TreeModel</a> ()</td></tr>
<tr><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><td class="mdescLeft"> </td><td class="mdescRight">Provides access to the underlying C GObject. <a href="#a190c8fd4588b844696e36e5c12966b4b"></a><br/></td></tr>
<tr><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><td class="mdescLeft"> </td><td class="mdescRight">Provides access to the underlying C GObject. <a href="#ae6a7c63aca59b5904beef977753558c2"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGtk_1_1TreeIter.html">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_1TreePath.html">Path</a>& path)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Returns a valid iterator pointing to <em>path</em>. <a href="#aebaa795e4920ddc0ec5e39c9f4fbc660"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGtk_1_1TreeIter.html">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><td class="mdescLeft"> </td><td class="mdescRight">Returns a valid iterator pointing to <em>path_string</em>. <a href="#a7697e287ce17c6f2e900c5762f7ba77a"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGtk_1_1TreeNodeChildren.html">Children</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TreeModel.html#a62142e8a5beffb04a2b643d7f62c890f">children</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This returns an STL-like container API, for iterating over the rows. <a href="#a62142e8a5beffb04a2b643d7f62c890f"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGtk_1_1TreeNodeChildren.html">Children</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TreeModel.html#a4c867cde63dbb443e1735eb8b82f85a9">children</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This returns an STL-like container API, for iterating over the rows. <a href="#a4c867cde63dbb443e1735eb8b82f85a9"></a><br/></td></tr>
<tr><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="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">SlotForeachIter</a>& slot)</td></tr>
<tr><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"></a><br/></td></tr>
<tr><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="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">SlotForeachPath</a>& slot)</td></tr>
<tr><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"></a><br/></td></tr>
<tr><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="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">SlotForeachPathAndIter</a>& slot)</td></tr>
<tr><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"></a><br/></td></tr>
<tr><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><td class="mdescLeft"> </td><td class="mdescRight">Returns a set of flags supported by this interface. <a href="#af4b5de9c0bd5a79ef06fcda4fc415ef8"></a><br/></td></tr>
<tr><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><td class="mdescLeft"> </td><td class="mdescRight">Returns the number of columns supported by <em>tree_model</em>. <a href="#ac0696920f0dbcdd7677198175459743c"></a><br/></td></tr>
<tr><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><td class="mdescLeft"> </td><td class="mdescRight">Returns the type of the column. <a href="#abde62f1a364d44440b2d17960ef764e6"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGtk_1_1TreePath.html">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_1TreeIter.html">iterator</a>& iter) const </td></tr>
<tr><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"></a><br/></td></tr>
<tr><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_1TreePath.html">Path</a>& path, const <a class="el" href="classGtk_1_1TreeIter.html">iterator</a>& iter)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Emits the "row-changed" signal on <em>tree_model</em>. <a href="#a8f06ebb80f930bb780eab62aac748df2"></a><br/></td></tr>
<tr><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_1TreePath.html">Path</a>& path, const <a class="el" href="classGtk_1_1TreeIter.html">iterator</a>& iter)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Emits the "row-inserted" signal on <em>tree_model</em>. <a href="#a30f829882ee631c1b83fa980a00f9778"></a><br/></td></tr>
<tr><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_1TreePath.html">Path</a>& path, const <a class="el" href="classGtk_1_1TreeIter.html">iterator</a>& iter)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Emits the "row-has-child-toggled" signal on <em>tree_model</em>. <a href="#a892cb6aa9235fb362fc0cd245c09d862"></a><br/></td></tr>
<tr><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_1TreePath.html">Path</a>& path)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Emits the "row-deleted" signal on <em>tree_model</em>. <a href="#ae8896f29424c2609fde93a873ac54b28"></a><br/></td></tr>
<tr><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_1TreePath.html">Path</a>& path, const <a class="el" href="classGtk_1_1TreeIter.html">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><td class="mdescLeft"> </td><td class="mdescRight">Emits the "rows_reordered" signal on the tree model. <a href="#a7b3d20e68dc5b57bfe91a2965733c9f9"></a><br/></td></tr>
<tr><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_1TreePath.html">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><td class="mdescLeft"> </td><td class="mdescRight">Emits the "rows_reordered" signal on the tree model. <a href="#ab860a1ddc31a13959b3e614d44b6a32a"></a><br/></td></tr>
<tr><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_1TreePath.html">Path</a>& path, const <a class="el" href="classGtk_1_1TreeIter.html">iterator</a>& iter, int* new_order)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Emits the "rows-reordered" signal on <em>tree_model</em>. <a href="#a90ed223eefc7087e7a18d63ea21c3839"></a><br/></td></tr>
<tr><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_1TreeIter.html">iterator</a>& iter) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Generates a string representation of the iter. <a href="#aafe5344f4012d8bf13194bd63c01cef1"></a><br/></td></tr>
<tr><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_1SignalProxy2.html">Glib::SignalProxy2</a>< void, <br class="typebreak"/>
const <a class="el" href="classGtk_1_1TreePath.html">TreeModel::Path</a>&, const <br class="typebreak"/>
<a class="el" href="classGtk_1_1TreeIter.html">TreeModel::iterator</a>& > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TreeModel.html#a74c26cc73afb5fcbcd29e3a9f116606a">signal_row_changed</a> ()</td></tr>
<tr><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_1SignalProxy2.html">Glib::SignalProxy2</a>< void, <br class="typebreak"/>
const <a class="el" href="classGtk_1_1TreePath.html">TreeModel::Path</a>&, const <br class="typebreak"/>
<a class="el" href="classGtk_1_1TreeIter.html">TreeModel::iterator</a>& > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TreeModel.html#a9f3847ec1419f8aaf836314d3da78f34">signal_row_inserted</a> ()</td></tr>
<tr><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_1SignalProxy2.html">Glib::SignalProxy2</a>< void, <br class="typebreak"/>
const <a class="el" href="classGtk_1_1TreePath.html">TreeModel::Path</a>&, const <br class="typebreak"/>
<a class="el" href="classGtk_1_1TreeIter.html">TreeModel::iterator</a>& > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TreeModel.html#a98e9f3e0d5c1b0db6f3093e24fac5e88">signal_row_has_child_toggled</a> ()</td></tr>
<tr><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_1SignalProxy1.html">Glib::SignalProxy1</a>< void, <br class="typebreak"/>
const <a class="el" href="classGtk_1_1TreePath.html">TreeModel::Path</a>& > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TreeModel.html#a9dc0f05aacaf1e614524b4a29d31d9e5">signal_row_deleted</a> ()</td></tr>
<tr><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_1SignalProxy3.html">Glib::SignalProxy3</a>< void, <br class="typebreak"/>
const <a class="el" href="classGtk_1_1TreePath.html">TreeModel::Path</a>&, const <br class="typebreak"/>
<a class="el" href="classGtk_1_1TreeIter.html">TreeModel::iterator</a>&, int* > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TreeModel.html#aaaf6ecc1f8a7bf716ad9c45e72be7984">signal_rows_reordered</a> ()</td></tr>
<tr><td colspan="2"><h2>Static Public Member Functions</h2></td></tr>
<tr><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><td colspan="2"><h2>Protected Member Functions</h2></td></tr>
<tr><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><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><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><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_1TreeIter.html">iterator</a>& iter, <a class="el" href="classGtk_1_1TreeIter.html">iterator</a>& iter_next) const </td></tr>
<tr><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"></a><br/></td></tr>
<tr><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_1TreePath.html">Path</a>& path, <a class="el" href="classGtk_1_1TreeIter.html">iterator</a>& iter) const </td></tr>
<tr><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"></a><br/></td></tr>
<tr><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_1TreeIter.html">iterator</a>& parent, <a class="el" href="classGtk_1_1TreeIter.html">iterator</a>& iter) const </td></tr>
<tr><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"></a><br/></td></tr>
<tr><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_1TreeIter.html">iterator</a>& child, <a class="el" href="classGtk_1_1TreeIter.html">iterator</a>& iter) const </td></tr>
<tr><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"></a><br/></td></tr>
<tr><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_1TreeIter.html">iterator</a>& parent, int n, <a class="el" href="classGtk_1_1TreeIter.html">iterator</a>& iter) const </td></tr>
<tr><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"></a><br/></td></tr>
<tr><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_1TreeIter.html">iterator</a>& iter) const </td></tr>
<tr><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"></a><br/></td></tr>
<tr><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_1TreeIter.html">iterator</a>& iter) const </td></tr>
<tr><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"></a><br/></td></tr>
<tr><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_1TreeIter.html">iterator</a>& iter) const </td></tr>
<tr><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"></a><br/></td></tr>
<tr><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><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"></a><br/></td></tr>
<tr><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_1TreeIter.html">iterator</a>& iter) const </td></tr>
<tr><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"></a><br/></td></tr>
<tr><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_1TreeIter.html">iterator</a>& iter) const </td></tr>
<tr><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"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="classGtk_1_1TreePath.html">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_1TreeIter.html">iterator</a>& iter) const </td></tr>
<tr><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"></a><br/></td></tr>
<tr><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_1TreeIter.html">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>&<a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01156.html#ga1c9e781d8d15a3814a601f471797c825">value</a>) const </td></tr>
<tr><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"></a><br/></td></tr>
<tr><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_1TreeIter.html">iterator</a>& iter) const </td></tr>
<tr><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"></a><br/></td></tr>
<tr><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_1TreeIter.html">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>&<a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01156.html#ga1c9e781d8d15a3814a601f471797c825">value</a>)</td></tr>
<tr><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#ae25785fc6de538f6dd632bb434a5f2ff" title="Sets the value of this column of this row.">Row::set_value()</a> work. <a href="#a26cf070eadb8e242bcf2b57f7e6d7d9e"></a><br/></td></tr>
<tr><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_1TreeIter.html">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>&<a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01156.html#ga1c9e781d8d15a3814a601f471797c825">value</a>) const </td></tr>
<tr><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_1TreePath.html">TreeModel::Path</a>& path, const <a class="el" href="classGtk_1_1TreeIter.html">TreeModel::iterator</a>& iter)</td></tr>
<tr><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_1TreePath.html">TreeModel::Path</a>& path, const <a class="el" href="classGtk_1_1TreeIter.html">TreeModel::iterator</a>& iter)</td></tr>
<tr><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_1TreePath.html">TreeModel::Path</a>& path, const <a class="el" href="classGtk_1_1TreeIter.html">TreeModel::iterator</a>& iter)</td></tr>
<tr><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_1TreePath.html">TreeModel::Path</a>& path)</td></tr>
<tr><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_1TreePath.html">TreeModel::Path</a>& path, const <a class="el" href="classGtk_1_1TreeIter.html">TreeModel::iterator</a>& iter, int* new_order)</td></tr>
<tr><td colspan="2"><h2>Related Functions</h2></td></tr>
<tr><td colspan="2"><p>(Note that these are not member functions.) </p>
<br/><br/></td></tr>
<tr><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><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"></a><br/></td></tr>
</table>
<hr/><a name="_details"></a><h2>Detailed Description</h2>
<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...">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...">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>
<hr/><h2>Member Typedef Documentation</h2>
<a class="anchor" id="ad04e0f7d1bb271fceeef487a19b97703"></a><!-- doxytag: member="Gtk::TreeModel::Children" ref="ad04e0f7d1bb271fceeef487a19b97703" args="" -->
<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_1TreeNodeChildren.html">Gtk::TreeModel::Children</a></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="a58f10daabaa507b4c2473c9d1b6fa584"></a><!-- doxytag: member="Gtk::TreeModel::ColumnRecord" ref="a58f10daabaa507b4c2473c9d1b6fa584" args="" -->
<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_1TreeModelColumnRecord.html">Gtk::TreeModel::ColumnRecord</a></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="ab25e01638bef26f1e93617e36b212292"></a><!-- doxytag: member="Gtk::TreeModel::const_iterator" ref="ab25e01638bef26f1e93617e36b212292" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">typedef <a class="el" href="classGtk_1_1TreeIter.html">Children::const_iterator</a> <a class="el" href="classGtk_1_1TreeIter.html">Gtk::TreeModel::const_iterator</a></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="a516b42e786cc2c3ef239e5fa46c43886"></a><!-- doxytag: member="Gtk::TreeModel::const_reverse_iterator" ref="a516b42e786cc2c3ef239e5fa46c43886" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">typedef <a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a00668.html">Children::const_reverse_iterator</a> <a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a00668.html">Gtk::TreeModel::const_reverse_iterator</a></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="a754e74cd833ff30e729f9b8d7daf4d8c"></a><!-- doxytag: member="Gtk::TreeModel::iterator" ref="a754e74cd833ff30e729f9b8d7daf4d8c" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">typedef <a class="el" href="classGtk_1_1TreeIter.html">Children::iterator</a> <a class="el" href="classGtk_1_1TreeIter.html">Gtk::TreeModel::iterator</a></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="a06a713fecde31f2f1a7baeb0e3e2fea5"></a><!-- doxytag: member="Gtk::TreeModel::Path" ref="a06a713fecde31f2f1a7baeb0e3e2fea5" args="" -->
<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_1TreePath.html">Gtk::TreeModel::Path</a></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="a2d898ba817a56f34dd877887e38e4640"></a><!-- doxytag: member="Gtk::TreeModel::reverse_iterator" ref="a2d898ba817a56f34dd877887e38e4640" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">typedef <a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a00668.html">Children::reverse_iterator</a> <a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a00668.html">Gtk::TreeModel::reverse_iterator</a></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="a297c9db68905e82fe7c3fac57f6c4de8"></a><!-- doxytag: member="Gtk::TreeModel::Row" ref="a297c9db68905e82fe7c3fac57f6c4de8" args="" -->
<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_1TreeRow.html">Gtk::TreeModel::Row</a></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="a518281b14bcc32f9d0ef4ca0584a1a30"></a><!-- doxytag: member="Gtk::TreeModel::RowReference" ref="a518281b14bcc32f9d0ef4ca0584a1a30" args="" -->
<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_1TreeRowReference.html">Gtk::TreeModel::RowReference</a></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="a9db469cffdaa5e2d38b6a8427acd12c4"></a><!-- doxytag: member="Gtk::TreeModel::SlotForeachIter" ref="a9db469cffdaa5e2d38b6a8427acd12c4" args="" -->
<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_1TreeIter.html">TreeModel::iterator</a>&> <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">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><!-- doxytag: member="Gtk::TreeModel::SlotForeachPath" ref="a254bbb5d47f64423580c055031467f98" args="" -->
<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_1TreePath.html">TreeModel::Path</a>&> <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">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><!-- doxytag: member="Gtk::TreeModel::SlotForeachPathAndIter" ref="a83d0f66e0e21509699104401899ac394" args="" -->
<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_1TreePath.html">TreeModel::Path</a>&, const <a class="el" href="classGtk_1_1TreeIter.html">TreeModel::iterator</a>&> <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">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>
<hr/><h2>Constructor & Destructor Documentation</h2>
<a class="anchor" id="a0dd3fbf3875ed1a88cc5f1765e9ef8bd"></a><!-- doxytag: member="Gtk::TreeModel::~TreeModel" ref="a0dd3fbf3875ed1a88cc5f1765e9ef8bd" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual Gtk::TreeModel::~TreeModel </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td><code> [virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<hr/><h2>Member Function Documentation</h2>
<a class="anchor" id="aed810cc59d8176fac21c9559e03d4c51"></a><!-- doxytag: member="Gtk::TreeModel::add_interface" ref="aed810cc59d8176fac21c9559e03d4c51" args="(GType gtype_implementer)" -->
<div class="memitem">
<div class="memproto">
<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><code> [static]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="a4c867cde63dbb443e1735eb8b82f85a9"></a><!-- doxytag: member="Gtk::TreeModel::children" ref="a4c867cde63dbb443e1735eb8b82f85a9" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classGtk_1_1TreeNodeChildren.html">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="a62142e8a5beffb04a2b643d7f62c890f"></a><!-- doxytag: member="Gtk::TreeModel::children" ref="a62142e8a5beffb04a2b643d7f62c890f" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classGtk_1_1TreeNodeChildren.html">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="a11fbc9b39c01210e525e7b6cdf91f66f"></a><!-- doxytag: member="Gtk::TreeModel::foreach" ref="a11fbc9b39c01210e525e7b6cdf91f66f" args="(const SlotForeachPathAndIter &slot)" -->
<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="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">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><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>slot</em> </td><td>The function to call for each selected node. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="ab65a437945c182eb2b033336bb493bee"></a><!-- doxytag: member="Gtk::TreeModel::foreach_iter" ref="ab65a437945c182eb2b033336bb493bee" args="(const SlotForeachIter &slot)" -->
<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="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">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><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>slot</em> </td><td>The function to call for each selected node. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="ab3879b2da7542137d136515acc2d79fa"></a><!-- doxytag: member="Gtk::TreeModel::foreach_path" ref="ab3879b2da7542137d136515acc2d79fa" args="(const SlotForeachPath &slot)" -->
<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="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">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><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>slot</em> </td><td>The function to call for each selected node. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="abde62f1a364d44440b2d17960ef764e6"></a><!-- doxytag: member="Gtk::TreeModel::get_column_type" ref="abde62f1a364d44440b2d17960ef764e6" args="(int index) const " -->
<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><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>index</em> </td><td>The column index. </td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>The type of the column. </dd></dl>
</div>
</div>
<a class="anchor" id="ab59203d0ac1d7084ea3a69ae59120686"></a><!-- doxytag: member="Gtk::TreeModel::get_column_type_vfunc" ref="ab59203d0ac1d7084ea3a69ae59120686" args="(int index) const " -->
<div class="memitem">
<div class="memproto">
<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<code> [protected, virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="af4b5de9c0bd5a79ef06fcda4fc415ef8"></a><!-- doxytag: member="Gtk::TreeModel::get_flags" ref="af4b5de9c0bd5a79ef06fcda4fc415ef8" args="() const " -->
<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="return"><dt><b>Returns:</b></dt><dd>The flags supported by this interface. </dd></dl>
</div>
</div>
<a class="anchor" id="a92ab54c2bac694b7065c617db17ef717"></a><!-- doxytag: member="Gtk::TreeModel::get_flags_vfunc" ref="a92ab54c2bac694b7065c617db17ef717" args="() const " -->
<div class="memitem">
<div class="memproto">
<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<code> [protected, virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="a7697e287ce17c6f2e900c5762f7ba77a"></a><!-- doxytag: member="Gtk::TreeModel::get_iter" ref="a7697e287ce17c6f2e900c5762f7ba77a" args="(const Glib::ustring &path_string)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classGtk_1_1TreeIter.html">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><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>path_string</em> </td><td>The path, as a string representation. </td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></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="aebaa795e4920ddc0ec5e39c9f4fbc660"></a><!-- doxytag: member="Gtk::TreeModel::get_iter" ref="aebaa795e4920ddc0ec5e39c9f4fbc660" args="(const Path &path)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classGtk_1_1TreeIter.html">iterator</a> Gtk::TreeModel::get_iter </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classGtk_1_1TreePath.html">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><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>path</em> </td><td>The <a class="el" href="classGtk_1_1TreePath.html">Gtk::TreeModel::Path</a>. </td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></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><!-- doxytag: member="Gtk::TreeModel::get_iter_vfunc" ref="a2476e133c67544c3ac1e466497150382" args="(const Path &path, iterator &iter) const " -->
<div class="memitem">
<div class="memproto">
<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_1TreePath.html">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_1TreeIter.html">iterator</a>& </td>
<td class="paramname"> <em>iter</em></td><td> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td><td> const<code> [protected, virtual]</code></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><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>path</em> </td><td>An path to a node. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>iter</em> </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="return"><dt><b>Returns:</b></dt><dd>true if the operation was possible. </dd></dl>
</div>
</div>
<a class="anchor" id="ac0696920f0dbcdd7677198175459743c"></a><!-- doxytag: member="Gtk::TreeModel::get_n_columns" ref="ac0696920f0dbcdd7677198175459743c" args="() const " -->
<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="return"><dt><b>Returns:</b></dt><dd>The number of columns. </dd></dl>
</div>
</div>
<a class="anchor" id="a110c6a9e23e3332e46efdfc1d544026b"></a><!-- doxytag: member="Gtk::TreeModel::get_n_columns_vfunc" ref="a110c6a9e23e3332e46efdfc1d544026b" args="() const " -->
<div class="memitem">
<div class="memproto">
<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<code> [protected, virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="a090a3d092d3b9876c6965d8bf79ba780"></a><!-- doxytag: member="Gtk::TreeModel::get_path" ref="a090a3d092d3b9876c6965d8bf79ba780" args="(const iterator &iter) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classGtk_1_1TreePath.html">TreeModel::Path</a> Gtk::TreeModel::get_path </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classGtk_1_1TreeIter.html">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><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>iter</em> </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="return"><dt><b>Returns:</b></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><!-- doxytag: member="Gtk::TreeModel::get_path_vfunc" ref="a05875688ebf31e276835722f911a7612" args="(const iterator &iter) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual <a class="el" href="classGtk_1_1TreePath.html">TreeModel::Path</a> Gtk::TreeModel::get_path_vfunc </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classGtk_1_1TreeIter.html">iterator</a>& </td>
<td class="paramname"> <em>iter</em></td>
<td> ) </td>
<td> const<code> [protected, virtual]</code></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><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>iter</em> </td><td>The iterator. </td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>The path. </dd></dl>
</div>
</div>
<a class="anchor" id="aafe5344f4012d8bf13194bd63c01cef1"></a><!-- doxytag: member="Gtk::TreeModel::get_string" ref="aafe5344f4012d8bf13194bd63c01cef1" args="(const iterator &iter) const " -->
<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_1TreeIter.html">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><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>iter</em> </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="return"><dt><b>Returns:</b></dt><dd>The string. </dd></dl>
</div>
</div>
<a class="anchor" id="a78055c29e3375a53c85c6c0283ac782b"></a><!-- doxytag: member="Gtk::TreeModel::get_value_impl" ref="a78055c29e3375a53c85c6c0283ac782b" args="(const iterator &row, int column, Glib::ValueBase &value) const " -->
<div class="memitem">
<div class="memproto">
<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_1TreeIter.html">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><td> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td><td> const<code> [protected, virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="a67ad9adb1572fbf73afcb02386634f1b"></a><!-- doxytag: member="Gtk::TreeModel::get_value_vfunc" ref="a67ad9adb1572fbf73afcb02386634f1b" args="(const iterator &iter, int column, Glib::ValueBase &value) const " -->
<div class="memitem">
<div class="memproto">
<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_1TreeIter.html">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><td> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td><td> const<code> [protected, virtual]</code></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><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>iter</em> </td><td>The iterator. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>column</em> </td><td>The column to lookup the value at. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>value</em> </td><td>An empty <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">Glib</a>:Value to set. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="ae6a7c63aca59b5904beef977753558c2"></a><!-- doxytag: member="Gtk::TreeModel::gobj" ref="ae6a7c63aca59b5904beef977753558c2" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">const GtkTreeModel* Gtk::TreeModel::gobj </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td> const<code> [inline]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Provides access to the underlying C GObject. </p>
<p>Reimplemented from <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">Glib::Interface</a>.</p>
<p>Reimplemented in <a class="el" href="classGtk_1_1ListStore.html#a8d0844616280900206a77aaec2c546d7">Gtk::ListStore</a>, <a class="el" href="classGtk_1_1TreeModelFilter.html#a534aa3244b78967356421b70e703320f">Gtk::TreeModelFilter</a>, <a class="el" href="classGtk_1_1TreeModelSort.html#a46201ea3130b92a85b2cf8d839f59659">Gtk::TreeModelSort</a>, and <a class="el" href="classGtk_1_1TreeStore.html#adecedf7e9f77e9aa8e7eb44990fd8a74">Gtk::TreeStore</a>.</p>
</div>
</div>
<a class="anchor" id="a190c8fd4588b844696e36e5c12966b4b"></a><!-- doxytag: member="Gtk::TreeModel::gobj" ref="a190c8fd4588b844696e36e5c12966b4b" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GtkTreeModel* Gtk::TreeModel::gobj </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td><code> [inline]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Provides access to the underlying C GObject. </p>
<p>Reimplemented from <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">Glib::Interface</a>.</p>
<p>Reimplemented in <a class="el" href="classGtk_1_1ListStore.html#a5086758716b9f34a5219b1387aebe59c">Gtk::ListStore</a>, <a class="el" href="classGtk_1_1TreeModelFilter.html#a8b2569b6b90a043b8c78e01e97bd6d55">Gtk::TreeModelFilter</a>, <a class="el" href="classGtk_1_1TreeModelSort.html#a29ab164c823754b5a6c9a8a9dcb8d393">Gtk::TreeModelSort</a>, and <a class="el" href="classGtk_1_1TreeStore.html#a1f6405d80c3b1e4a9672a69f6c13f6f6">Gtk::TreeStore</a>.</p>
</div>
</div>
<a class="anchor" id="a08a44f8c4a4cc069a6bb063911195c5d"></a><!-- doxytag: member="Gtk::TreeModel::iter_children_vfunc" ref="a08a44f8c4a4cc069a6bb063911195c5d" args="(const iterator &parent, iterator &iter) const " -->
<div class="memitem">
<div class="memproto">
<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_1TreeIter.html">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_1TreeIter.html">iterator</a>& </td>
<td class="paramname"> <em>iter</em></td><td> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td><td> const<code> [protected, virtual]</code></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><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>parent</em> </td><td>An iterator. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>iter</em> </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="return"><dt><b>Returns:</b></dt><dd>true if the operation was possible. </dd></dl>
</div>
</div>
<a class="anchor" id="a20a37892a5c4aa8b2ef975f8f24d8f35"></a><!-- doxytag: member="Gtk::TreeModel::iter_has_child_vfunc" ref="a20a37892a5c4aa8b2ef975f8f24d8f35" args="(const iterator &iter) const " -->
<div class="memitem">
<div class="memproto">
<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_1TreeIter.html">iterator</a>& </td>
<td class="paramname"> <em>iter</em></td>
<td> ) </td>
<td> const<code> [protected, virtual]</code></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><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>iter</em> </td><td>The iterator to test for children. </td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>true if <em>iter</em> has children. </dd></dl>
</div>
</div>
<a class="anchor" id="aa5c6526633d0fa8a78fd3d14d1fbd6cf"></a><!-- doxytag: member="Gtk::TreeModel::iter_is_valid" ref="aa5c6526633d0fa8a78fd3d14d1fbd6cf" args="(const iterator &iter) const " -->
<div class="memitem">
<div class="memproto">
<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_1TreeIter.html">iterator</a>& </td>
<td class="paramname"> <em>iter</em></td>
<td> ) </td>
<td> const<code> [protected, virtual]</code></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="note"><dt><b>Note:</b></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="return"><dt><b>Returns:</b></dt><dd>true if the iterator is valid.</dd></dl>
<dl class="deprecated"><dt><b><a class="el" href="deprecated.html#_deprecated000070">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_1ListStore.html#ae307acf882557f319dc309963c07705a">Gtk::ListStore</a>, <a class="el" href="classGtk_1_1TreeModelSort.html#a39cd337bbff15cec06a4f115bddc2355">Gtk::TreeModelSort</a>, and <a class="el" href="classGtk_1_1TreeStore.html#a1daf0f3011c00246dc3ca0d32c824d31">Gtk::TreeStore</a>.</p>
</div>
</div>
<a class="anchor" id="a61991c22a9ae0c46423a1504ad2f5e96"></a><!-- doxytag: member="Gtk::TreeModel::iter_n_children_vfunc" ref="a61991c22a9ae0c46423a1504ad2f5e96" args="(const iterator &iter) const " -->
<div class="memitem">
<div class="memproto">
<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_1TreeIter.html">iterator</a>& </td>
<td class="paramname"> <em>iter</em></td>
<td> ) </td>
<td> const<code> [protected, virtual]</code></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><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>iter</em> </td><td>The iterator to test for children. </td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>The number of children of <em>iter</em>. </dd></dl>
</div>
</div>
<a class="anchor" id="a4a4465b80fd34b51d7c67b731773804d"></a><!-- doxytag: member="Gtk::TreeModel::iter_n_root_children_vfunc" ref="a4a4465b80fd34b51d7c67b731773804d" args="() const " -->
<div class="memitem">
<div class="memproto">
<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<code> [protected, virtual]</code></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="return"><dt><b>Returns:</b></dt><dd>The number of children at the root level. </dd></dl>
</div>
</div>
<a class="anchor" id="af371b624eec90b865eae30b07cdbe20b"></a><!-- doxytag: member="Gtk::TreeModel::iter_next_vfunc" ref="af371b624eec90b865eae30b07cdbe20b" args="(const iterator &iter, iterator &iter_next) const " -->
<div class="memitem">
<div class="memproto">
<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_1TreeIter.html">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_1TreeIter.html">iterator</a>& </td>
<td class="paramname"> <em>iter_next</em></td><td> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td><td> const<code> [protected, virtual]</code></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><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>iter</em> </td><td>An iterator. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>iter_next</em> </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="return"><dt><b>Returns:</b></dt><dd>true if the operation was possible. </dd></dl>
</div>
</div>
<a class="anchor" id="a9425e899db0b07486220fb885de984db"></a><!-- doxytag: member="Gtk::TreeModel::iter_nth_child_vfunc" ref="a9425e899db0b07486220fb885de984db" args="(const iterator &parent, int n, iterator &iter) const " -->
<div class="memitem">
<div class="memproto">
<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_1TreeIter.html">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_1TreeIter.html">iterator</a>& </td>
<td class="paramname"> <em>iter</em></td><td> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td><td> const<code> [protected, virtual]</code></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><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>parent</em> </td><td>An iterator. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>n</em> </td><td>The index of the child node to which <em>iter</em> should be set. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>iter</em> </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="return"><dt><b>Returns:</b></dt><dd>true if the operation was possible. </dd></dl>
</div>
</div>
<a class="anchor" id="ad707d3063b4ef72a1fe59646fc42a7a4"></a><!-- doxytag: member="Gtk::TreeModel::iter_nth_root_child_vfunc" ref="ad707d3063b4ef72a1fe59646fc42a7a4" args="(int n, iterator &iter) const " -->
<div class="memitem">
<div class="memproto">
<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_1TreeIter.html">iterator</a>& </td>
<td class="paramname"> <em>iter</em></td><td> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td><td> const<code> [protected, virtual]</code></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><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>n</em> </td><td>The index of the child node to which <em>iter</em> should be set. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>iter</em> </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="return"><dt><b>Returns:</b></dt><dd>true if the operation was possible. </dd></dl>
</div>
</div>
<a class="anchor" id="acb0ce509e06b9a64b8b619cbf68d1269"></a><!-- doxytag: member="Gtk::TreeModel::iter_parent_vfunc" ref="acb0ce509e06b9a64b8b619cbf68d1269" args="(const iterator &child, iterator &iter) const " -->
<div class="memitem">
<div class="memproto">
<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_1TreeIter.html">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_1TreeIter.html">iterator</a>& </td>
<td class="paramname"> <em>iter</em></td><td> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td><td> const<code> [protected, virtual]</code></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><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>child</em> </td><td>An iterator. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>iter</em> </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="return"><dt><b>Returns:</b></dt><dd>true if the operation was possible. </dd></dl>
</div>
</div>
<a class="anchor" id="a245ce3fcf75411a8800b05213e652754"></a><!-- doxytag: member="Gtk::TreeModel::on_row_changed" ref="a245ce3fcf75411a8800b05213e652754" args="(const TreeModel::Path &path, const TreeModel::iterator &iter)" -->
<div class="memitem">
<div class="memproto">
<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_1TreePath.html">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_1TreeIter.html">TreeModel::iterator</a>& </td>
<td class="paramname"> <em>iter</em></td><td> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td><td><code> [protected, virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="a438d4fd8dc0228c6b57ea7a031422cf8"></a><!-- doxytag: member="Gtk::TreeModel::on_row_deleted" ref="a438d4fd8dc0228c6b57ea7a031422cf8" args="(const TreeModel::Path &path)" -->
<div class="memitem">
<div class="memproto">
<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_1TreePath.html">TreeModel::Path</a>& </td>
<td class="paramname"> <em>path</em></td>
<td> ) </td>
<td><code> [protected, virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="abddf86f9cce30999456fe9aade3431e7"></a><!-- doxytag: member="Gtk::TreeModel::on_row_has_child_toggled" ref="abddf86f9cce30999456fe9aade3431e7" args="(const TreeModel::Path &path, const TreeModel::iterator &iter)" -->
<div class="memitem">
<div class="memproto">
<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_1TreePath.html">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_1TreeIter.html">TreeModel::iterator</a>& </td>
<td class="paramname"> <em>iter</em></td><td> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td><td><code> [protected, virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="a23134167e0e61f22e24d387eabc54890"></a><!-- doxytag: member="Gtk::TreeModel::on_row_inserted" ref="a23134167e0e61f22e24d387eabc54890" args="(const TreeModel::Path &path, const TreeModel::iterator &iter)" -->
<div class="memitem">
<div class="memproto">
<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_1TreePath.html">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_1TreeIter.html">TreeModel::iterator</a>& </td>
<td class="paramname"> <em>iter</em></td><td> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td><td><code> [protected, virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="ac5e459f6370dafe528d928c99f0086c8"></a><!-- doxytag: member="Gtk::TreeModel::on_rows_reordered" ref="ac5e459f6370dafe528d928c99f0086c8" args="(const TreeModel::Path &path, const TreeModel::iterator &iter, int *new_order)" -->
<div class="memitem">
<div class="memproto">
<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_1TreePath.html">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_1TreeIter.html">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><td> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td><td><code> [protected, virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="a8a07671ff491460f94902dc2f4576c78"></a><!-- doxytag: member="Gtk::TreeModel::ref_node_vfunc" ref="a8a07671ff491460f94902dc2f4576c78" args="(const iterator &iter) const " -->
<div class="memitem">
<div class="memproto">
<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_1TreeIter.html">iterator</a>& </td>
<td class="paramname"> <em>iter</em></td>
<td> ) </td>
<td> const<code> [protected, virtual]</code></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><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>iter</em> </td><td>the iterator. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a8f06ebb80f930bb780eab62aac748df2"></a><!-- doxytag: member="Gtk::TreeModel::row_changed" ref="a8f06ebb80f930bb780eab62aac748df2" args="(const Path &path, const iterator &iter)" -->
<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_1TreePath.html">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_1TreeIter.html">iterator</a>& </td>
<td class="paramname"> <em>iter</em></td><td> </td>
</tr>
<tr>
<td></td>
<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><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>path</em> </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 valign="top"></td><td valign="top"><em>iter</em> </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><!-- doxytag: member="Gtk::TreeModel::row_deleted" ref="ae8896f29424c2609fde93a873ac54b28" args="(const Path &path)" -->
<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_1TreePath.html">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><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>path</em> </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><!-- doxytag: member="Gtk::TreeModel::row_has_child_toggled" ref="a892cb6aa9235fb362fc0cd245c09d862" args="(const Path &path, const iterator &iter)" -->
<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_1TreePath.html">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_1TreeIter.html">iterator</a>& </td>
<td class="paramname"> <em>iter</em></td><td> </td>
</tr>
<tr>
<td></td>
<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><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>path</em> </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 valign="top"></td><td valign="top"><em>iter</em> </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><!-- doxytag: member="Gtk::TreeModel::row_inserted" ref="a30f829882ee631c1b83fa980a00f9778" args="(const Path &path, const iterator &iter)" -->
<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_1TreePath.html">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_1TreeIter.html">iterator</a>& </td>
<td class="paramname"> <em>iter</em></td><td> </td>
</tr>
<tr>
<td></td>
<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><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>path</em> </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 valign="top"></td><td valign="top"><em>iter</em> </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="a90ed223eefc7087e7a18d63ea21c3839"></a><!-- doxytag: member="Gtk::TreeModel::rows_reordered" ref="a90ed223eefc7087e7a18d63ea21c3839" args="(const Path &path, const iterator &iter, int *new_order)" -->
<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_1TreePath.html">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_1TreeIter.html">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><td> </td>
</tr>
<tr>
<td></td>
<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><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>path</em> </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 valign="top"></td><td valign="top"><em>iter</em> </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>0</code> if the depth of <em>path</em> is 0. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>new_order</em> </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</literal>. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="ab860a1ddc31a13959b3e614d44b6a32a"></a><!-- doxytag: member="Gtk::TreeModel::rows_reordered" ref="ab860a1ddc31a13959b3e614d44b6a32a" args="(const Path &path, const Glib::ArrayHandle< int > &new_order)" -->
<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_1TreePath.html">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><td> </td>
</tr>
<tr>
<td></td>
<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_10000326">Since gtkmm 2.10:</a></b></dt><dd></dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>path</em> </td><td>A tree path pointing to the tree node whose children have been reordered. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>new_order</em> </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="a7b3d20e68dc5b57bfe91a2965733c9f9"></a><!-- doxytag: member="Gtk::TreeModel::rows_reordered" ref="a7b3d20e68dc5b57bfe91a2965733c9f9" args="(const Path &path, const iterator &iter, const Glib::ArrayHandle< int > &new_order)" -->
<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_1TreePath.html">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_1TreeIter.html">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><td> </td>
</tr>
<tr>
<td></td>
<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><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>path</em> </td><td>A tree path pointing to the tree node whose children have been reordered. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>iter</em> </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 valign="top"></td><td valign="top"><em>new_order</em> </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="a26cf070eadb8e242bcf2b57f7e6d7d9e"></a><!-- doxytag: member="Gtk::TreeModel::set_value_impl" ref="a26cf070eadb8e242bcf2b57f7e6d7d9e" args="(const iterator &row, int column, const Glib::ValueBase &value)" -->
<div class="memitem">
<div class="memproto">
<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_1TreeIter.html">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><td> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td><td><code> [protected, virtual]</code></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#ae25785fc6de538f6dd632bb434a5f2ff" 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()...">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_1ListStore.html#add757d2d02d35b5ea782c86eef04bae7">Gtk::ListStore</a>, <a class="el" href="classGtk_1_1TreeModelFilter.html#a9164293aa3835aee9e645ac395676f2d">Gtk::TreeModelFilter</a>, <a class="el" href="classGtk_1_1TreeModelSort.html#a07c28af5bc27e1548449b71c130c26f0">Gtk::TreeModelSort</a>, and <a class="el" href="classGtk_1_1TreeStore.html#a8c4ca1e9aff504e70e2b23c164692712">Gtk::TreeStore</a>.</p>
</div>
</div>
<a class="anchor" id="a74c26cc73afb5fcbcd29e3a9f116606a"></a><!-- doxytag: member="Gtk::TreeModel::signal_row_changed" ref="a74c26cc73afb5fcbcd29e3a9f116606a" args="()" -->
<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_1SignalProxy2.html">Glib::SignalProxy2</a>< void,const <a class="el" href="classGtk_1_1TreePath.html">TreeModel::Path</a>&,const <a class="el" href="classGtk_1_1TreeIter.html">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="user"><dt><b>Prototype:</b></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="a9dc0f05aacaf1e614524b4a29d31d9e5"></a><!-- doxytag: member="Gtk::TreeModel::signal_row_deleted" ref="a9dc0f05aacaf1e614524b4a29d31d9e5" args="()" -->
<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_1SignalProxy1.html">Glib::SignalProxy1</a>< void,const <a class="el" href="classGtk_1_1TreePath.html">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="user"><dt><b>Prototype:</b></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="a98e9f3e0d5c1b0db6f3093e24fac5e88"></a><!-- doxytag: member="Gtk::TreeModel::signal_row_has_child_toggled" ref="a98e9f3e0d5c1b0db6f3093e24fac5e88" args="()" -->
<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_1SignalProxy2.html">Glib::SignalProxy2</a>< void,const <a class="el" href="classGtk_1_1TreePath.html">TreeModel::Path</a>&,const <a class="el" href="classGtk_1_1TreeIter.html">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="user"><dt><b>Prototype:</b></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="a9f3847ec1419f8aaf836314d3da78f34"></a><!-- doxytag: member="Gtk::TreeModel::signal_row_inserted" ref="a9f3847ec1419f8aaf836314d3da78f34" args="()" -->
<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_1SignalProxy2.html">Glib::SignalProxy2</a>< void,const <a class="el" href="classGtk_1_1TreePath.html">TreeModel::Path</a>&,const <a class="el" href="classGtk_1_1TreeIter.html">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="user"><dt><b>Prototype:</b></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="aaaf6ecc1f8a7bf716ad9c45e72be7984"></a><!-- doxytag: member="Gtk::TreeModel::signal_rows_reordered" ref="aaaf6ecc1f8a7bf716ad9c45e72be7984" args="()" -->
<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_1SignalProxy3.html">Glib::SignalProxy3</a>< void,const <a class="el" href="classGtk_1_1TreePath.html">TreeModel::Path</a>&,const <a class="el" href="classGtk_1_1TreeIter.html">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="user"><dt><b>Prototype:</b></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><!-- doxytag: member="Gtk::TreeModel::unref_node_vfunc" ref="ab19d09af11054d80f8ab9f19f239cb30" args="(const iterator &iter) const " -->
<div class="memitem">
<div class="memproto">
<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_1TreeIter.html">iterator</a>& </td>
<td class="paramname"> <em>iter</em></td>
<td> ) </td>
<td> const<code> [protected, virtual]</code></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><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>iter</em> </td><td>the iterator. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<hr/><h2>Friends And Related Function Documentation</h2>
<a class="anchor" id="a510776c39d65f700937cf14a2f6bad73"></a><!-- doxytag: member="Gtk::TreeModel::wrap" ref="a510776c39d65f700937cf14a2f6bad73" args="(GtkTreeModel *object, bool take_copy=false)" -->
<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_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><td> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td><td><code> [related]</code></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><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>object</em> </td><td>The C instance. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>take_copy</em> </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="return"><dt><b>Returns:</b></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>
<hr size="1"/><address style="text-align: right;"><small>Generated on Tue May 4 13:22:06 2010 for gtkmm by 
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.1 </small></address>
</body>
</html>
|