1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" content="Doxygen 1.8.11"/>
<title>gtkmm: Gtk::CellRenderer Class Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectalign" style="padding-left: 0.5em;">
<div id="projectname">gtkmm
 <span id="projectnumber">2.24.4</span>
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.11 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main Page</span></a></li>
<li><a href="pages.html"><span>Related Pages</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li><a href="namespaces.html"><span>Namespaces</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class List</span></a></li>
<li><a href="classes.html"><span>Class Index</span></a></li>
<li><a href="inherits.html"><span>Class Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><a class="el" href="namespaceGtk.html">Gtk</a></li><li class="navelem"><a class="el" href="classGtk_1_1CellRenderer.html">CellRenderer</a></li> </ul>
</div>
</div><!-- top -->
<div class="header">
<div class="summary">
<a href="#pub-methods">Public Member Functions</a> |
<a href="#pro-methods">Protected Member Functions</a> |
<a href="#related">Related Functions</a> |
<a href="classGtk_1_1CellRenderer-members.html">List of all members</a> </div>
<div class="headertitle">
<div class="title">Gtk::CellRenderer Class Reference<div class="ingroups"><a class="el" href="group__TreeView.html">TreeView Classes</a></div></div> </div>
</div><!--header-->
<div class="contents">
<p>CellRenderers are used by <a class="el" href="classGtk_1_1TreeView.html" title="The TreeView widget displays the model (Gtk::TreeModel) data and allows the user to interact with it...">Gtk::TreeView</a> columns to render the <a class="el" href="classGtk_1_1TreeModel.html" title="This class defines a generic tree interface for use by the Gtk::TreeView widget. ">Gtk::TreeModel</a> column data appropriately.
<a href="classGtk_1_1CellRenderer.html#details">More...</a></p>
<div class="dynheader">
Inheritance diagram for Gtk::CellRenderer:</div>
<div class="dyncontent">
<div class="center"><img src="classGtk_1_1CellRenderer__inherit__graph.png" border="0" usemap="#Gtk_1_1CellRenderer_inherit__map" alt="Inheritance graph"/></div>
<map name="Gtk_1_1CellRenderer_inherit__map" id="Gtk_1_1CellRenderer_inherit__map">
<area shape="rect" id="node6" href="classGtk_1_1CellRendererPixbuf.html" title="Renders a pixbuf in a cell. " alt="" coords="774,5,933,32"/>
<area shape="rect" id="node7" href="classGtk_1_1CellRendererProgress.html" title="Renders numbers as progress bars. " alt="" coords="767,56,940,83"/>
<area shape="rect" id="node8" href="classGtk_1_1CellRendererSpinner.html" title="Renders a spinning animation in a cell. " alt="" coords="770,107,937,133"/>
<area shape="rect" id="node9" href="classGtk_1_1CellRendererText.html" title="Renders text in a cell. " alt="" coords="779,157,927,184"/>
<area shape="rect" id="node13" href="classGtk_1_1CellRendererToggle.html" title="Renders a toggle button in a cell. " alt="" coords="772,208,935,235"/>
<area shape="rect" id="node2" href="classGtk_1_1Object.html" title="Gtk::Object is the base class for all widgets, and for a few non-widget objects such as Gtk::Adjustme..." alt="" coords="461,107,548,133"/>
<area shape="rect" id="node3" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html" title="Glib::Object" alt="" coords="324,107,413,133"/>
<area shape="rect" id="node4" 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="157,107,276,133"/>
<area shape="rect" id="node5" 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="5,107,109,133"/>
<area shape="rect" id="node10" href="classGtk_1_1CellRendererAccel.html" title="Renders a keyboard accelerator in a cell " alt="" coords="992,107,1148,133"/>
<area shape="rect" id="node11" href="classGtk_1_1CellRendererCombo.html" title="Renders a combobox in a cell. " alt="" coords="988,157,1152,184"/>
<area shape="rect" id="node12" href="classGtk_1_1CellRendererSpin.html" title="Renders a spin button in a cell. " alt="" coords="995,208,1145,235"/>
</map>
<center><span class="legend">[<a href="graph_legend.html">legend</a>]</span></center></div>
<div class="dynheader">
Collaboration diagram for Gtk::CellRenderer:</div>
<div class="dyncontent">
<div class="center"><img src="classGtk_1_1CellRenderer__coll__graph.png" border="0" usemap="#Gtk_1_1CellRenderer_coll__map" alt="Collaboration graph"/></div>
<map name="Gtk_1_1CellRenderer_coll__map" id="Gtk_1_1CellRenderer_coll__map">
<area shape="rect" id="node2" href="classGtk_1_1Object.html" title="Gtk::Object is the base class for all widgets, and for a few non-widget objects such as Gtk::Adjustme..." alt="" coords="23,229,110,256"/>
<area shape="rect" id="node3" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html" title="Glib::Object" alt="" coords="22,155,111,181"/>
<area shape="rect" id="node4" 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="7,80,126,107"/>
<area shape="rect" id="node5" 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="15,5,119,32"/>
</map>
<center><span class="legend">[<a href="graph_legend.html">legend</a>]</span></center></div>
<table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-methods"></a>
Public Member Functions</h2></td></tr>
<tr class="memitem:aa4fb8ad72b75ac4a0b036eb21669e049"><td class="memItemLeft" align="right" valign="top">virtual </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1CellRenderer.html#aa4fb8ad72b75ac4a0b036eb21669e049">~CellRenderer</a> ()</td></tr>
<tr class="separator:aa4fb8ad72b75ac4a0b036eb21669e049"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae40a869d68ddeb2601ed46c955514688"><td class="memItemLeft" align="right" valign="top">GtkCellRenderer* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1CellRenderer.html#ae40a869d68ddeb2601ed46c955514688">gobj</a> ()</td></tr>
<tr class="memdesc:ae40a869d68ddeb2601ed46c955514688"><td class="mdescLeft"> </td><td class="mdescRight">Provides access to the underlying C GtkObject. <a href="#ae40a869d68ddeb2601ed46c955514688">More...</a><br /></td></tr>
<tr class="separator:ae40a869d68ddeb2601ed46c955514688"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a8405f042907b039b6bd78882f4bdf8e7"><td class="memItemLeft" align="right" valign="top">const GtkCellRenderer* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1CellRenderer.html#a8405f042907b039b6bd78882f4bdf8e7">gobj</a> () const </td></tr>
<tr class="memdesc:a8405f042907b039b6bd78882f4bdf8e7"><td class="mdescLeft"> </td><td class="mdescRight">Provides access to the underlying C GtkObject. <a href="#a8405f042907b039b6bd78882f4bdf8e7">More...</a><br /></td></tr>
<tr class="separator:a8405f042907b039b6bd78882f4bdf8e7"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a42e1a19fdd781118ac13858b328a6d82"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1CellRenderer.html#a42e1a19fdd781118ac13858b328a6d82">get_size</a> (<a class="el" href="classGtk_1_1Widget.html">Widget</a>& widget, const <a class="el" href="classGdk_1_1Rectangle.html">Gdk::Rectangle</a>& cell_area, int& x_offset, int& y_offset, int& width, int& height) const </td></tr>
<tr class="memdesc:a42e1a19fdd781118ac13858b328a6d82"><td class="mdescLeft"> </td><td class="mdescRight">Obtains the width and height needed to render the cell. <a href="#a42e1a19fdd781118ac13858b328a6d82">More...</a><br /></td></tr>
<tr class="separator:a42e1a19fdd781118ac13858b328a6d82"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae59ae85702686c19cb37c620e3a318e4"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1CellRenderer.html#ae59ae85702686c19cb37c620e3a318e4">get_size</a> (<a class="el" href="classGtk_1_1Widget.html">Widget</a>& widget, int& x_offset, int& y_offset, int& width, int& height) const </td></tr>
<tr class="memdesc:ae59ae85702686c19cb37c620e3a318e4"><td class="mdescLeft"> </td><td class="mdescRight">Obtains the width and height needed to render the cell. <a href="#ae59ae85702686c19cb37c620e3a318e4">More...</a><br /></td></tr>
<tr class="separator:ae59ae85702686c19cb37c620e3a318e4"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aead757c70a8a9d504a6295b7e9a44194"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1CellRenderer.html#aead757c70a8a9d504a6295b7e9a44194">render</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_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGdk_1_1Window.html">Gdk::Window</a> >& window, <a class="el" href="classGtk_1_1Widget.html">Widget</a>& widget, const <a class="el" href="classGdk_1_1Rectangle.html">Gdk::Rectangle</a>& background_area, const <a class="el" href="classGdk_1_1Rectangle.html">Gdk::Rectangle</a>& cell_area, const <a class="el" href="classGdk_1_1Rectangle.html">Gdk::Rectangle</a>& expose_area, <a class="el" href="group__gtkmmEnums.html#ga7061270b7c31ba72e053ab001ec2b877">CellRendererState</a> flags)</td></tr>
<tr class="memdesc:aead757c70a8a9d504a6295b7e9a44194"><td class="mdescLeft"> </td><td class="mdescRight">Invokes the virtual render function of the <a class="el" href="classGtk_1_1CellRenderer.html" title="CellRenderers are used by Gtk::TreeView columns to render the Gtk::TreeModel column data appropriatel...">Gtk::CellRenderer</a>. <a href="#aead757c70a8a9d504a6295b7e9a44194">More...</a><br /></td></tr>
<tr class="separator:aead757c70a8a9d504a6295b7e9a44194"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa345ce649c2b2dced98c865ea2eec55d"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1CellRenderer.html#aa345ce649c2b2dced98c865ea2eec55d">activate</a> (GdkEvent* event, <a class="el" href="classGtk_1_1Widget.html">Widget</a>& widget, 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, const <a class="el" href="classGdk_1_1Rectangle.html">Gdk::Rectangle</a>& background_area, const <a class="el" href="classGdk_1_1Rectangle.html">Gdk::Rectangle</a>& cell_area, <a class="el" href="group__gtkmmEnums.html#ga7061270b7c31ba72e053ab001ec2b877">CellRendererState</a> flags)</td></tr>
<tr class="memdesc:aa345ce649c2b2dced98c865ea2eec55d"><td class="mdescLeft"> </td><td class="mdescRight">Passes an activate event to the cell renderer for possible processing. <a href="#aa345ce649c2b2dced98c865ea2eec55d">More...</a><br /></td></tr>
<tr class="separator:aa345ce649c2b2dced98c865ea2eec55d"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa21fc6826b9a3b0cb8a4dc364df7331e"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGtk_1_1CellEditable.html">CellEditable</a>* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1CellRenderer.html#aa21fc6826b9a3b0cb8a4dc364df7331e">start_editing</a> (GdkEvent* event, <a class="el" href="classGtk_1_1Widget.html">Widget</a>& widget, 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, const <a class="el" href="classGdk_1_1Rectangle.html">Gdk::Rectangle</a>& background_area, const <a class="el" href="classGdk_1_1Rectangle.html">Gdk::Rectangle</a>& cell_area, <a class="el" href="group__gtkmmEnums.html#ga7061270b7c31ba72e053ab001ec2b877">CellRendererState</a> flags=<a class="el" href="group__gtkmmEnums.html#ga7061270b7c31ba72e053ab001ec2b877">CellRendererState</a>(0))</td></tr>
<tr class="memdesc:aa21fc6826b9a3b0cb8a4dc364df7331e"><td class="mdescLeft"> </td><td class="mdescRight">Passes an activate event to the cell renderer for possible processing. <a href="#aa21fc6826b9a3b0cb8a4dc364df7331e">More...</a><br /></td></tr>
<tr class="separator:aa21fc6826b9a3b0cb8a4dc364df7331e"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a342d024078f987be56fe4e3d0e7fd3c4"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1CellRenderer.html#a342d024078f987be56fe4e3d0e7fd3c4">set_fixed_size</a> (int width, int height)</td></tr>
<tr class="memdesc:a342d024078f987be56fe4e3d0e7fd3c4"><td class="mdescLeft"> </td><td class="mdescRight">Sets the renderer size to be explicit, independent of the properties set. <a href="#a342d024078f987be56fe4e3d0e7fd3c4">More...</a><br /></td></tr>
<tr class="separator:a342d024078f987be56fe4e3d0e7fd3c4"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad1913dacd0141352029934ed6e96dd45"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1CellRenderer.html#ad1913dacd0141352029934ed6e96dd45">get_fixed_size</a> (int& width, int& height) const </td></tr>
<tr class="memdesc:ad1913dacd0141352029934ed6e96dd45"><td class="mdescLeft"> </td><td class="mdescRight">Fills in <em>width</em> and <em>height</em> with the appropriate size of <em>cell</em>. <a href="#ad1913dacd0141352029934ed6e96dd45">More...</a><br /></td></tr>
<tr class="separator:ad1913dacd0141352029934ed6e96dd45"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab87c7a5e775872f3721ddbd6674e2252"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1CellRenderer.html#ab87c7a5e775872f3721ddbd6674e2252">set_alignment</a> (float align, float yalign)</td></tr>
<tr class="memdesc:ab87c7a5e775872f3721ddbd6674e2252"><td class="mdescLeft"> </td><td class="mdescRight">Sets the renderer's alignment within its available space. <a href="#ab87c7a5e775872f3721ddbd6674e2252">More...</a><br /></td></tr>
<tr class="separator:ab87c7a5e775872f3721ddbd6674e2252"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a885d825836256119e16df0e995fd81a4"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1CellRenderer.html#a885d825836256119e16df0e995fd81a4">get_alignment</a> (float& xalign, float& yalign) const </td></tr>
<tr class="memdesc:a885d825836256119e16df0e995fd81a4"><td class="mdescLeft"> </td><td class="mdescRight">Fills in <em>xalign</em> and <em>yalign</em> with the appropriate values of <em>cell</em>. <a href="#a885d825836256119e16df0e995fd81a4">More...</a><br /></td></tr>
<tr class="separator:a885d825836256119e16df0e995fd81a4"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab1aac5488c6d6340d6a3ec6065383381"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1CellRenderer.html#ab1aac5488c6d6340d6a3ec6065383381">set_padding</a> (int xpad, int ypad)</td></tr>
<tr class="memdesc:ab1aac5488c6d6340d6a3ec6065383381"><td class="mdescLeft"> </td><td class="mdescRight">Sets the renderer's padding. <a href="#ab1aac5488c6d6340d6a3ec6065383381">More...</a><br /></td></tr>
<tr class="separator:ab1aac5488c6d6340d6a3ec6065383381"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a730191d2c7cd5623f96ca1458ff4aee6"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1CellRenderer.html#a730191d2c7cd5623f96ca1458ff4aee6">get_padding</a> (int& xpad, int& ypad) const </td></tr>
<tr class="memdesc:a730191d2c7cd5623f96ca1458ff4aee6"><td class="mdescLeft"> </td><td class="mdescRight">Fills in <em>xpad</em> and <em>ypad</em> with the appropriate values of <em>cell</em>. <a href="#a730191d2c7cd5623f96ca1458ff4aee6">More...</a><br /></td></tr>
<tr class="separator:a730191d2c7cd5623f96ca1458ff4aee6"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a8b70ee1d03b79b89d4b537bd1a49d8fe"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1CellRenderer.html#a8b70ee1d03b79b89d4b537bd1a49d8fe">set_visible</a> (bool visible=true)</td></tr>
<tr class="memdesc:a8b70ee1d03b79b89d4b537bd1a49d8fe"><td class="mdescLeft"> </td><td class="mdescRight">Sets the cell renderer's visibility. <a href="#a8b70ee1d03b79b89d4b537bd1a49d8fe">More...</a><br /></td></tr>
<tr class="separator:a8b70ee1d03b79b89d4b537bd1a49d8fe"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af8eb8055f961005e0c73fee0bfac7439"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1CellRenderer.html#af8eb8055f961005e0c73fee0bfac7439">get_visible</a> () const </td></tr>
<tr class="memdesc:af8eb8055f961005e0c73fee0bfac7439"><td class="mdescLeft"> </td><td class="mdescRight">Returns the cell renderer's visibility. <a href="#af8eb8055f961005e0c73fee0bfac7439">More...</a><br /></td></tr>
<tr class="separator:af8eb8055f961005e0c73fee0bfac7439"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a464a4354cce4b7cf948d3fa7bccf1ddb"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1CellRenderer.html#a464a4354cce4b7cf948d3fa7bccf1ddb">set_sensitive</a> (bool sensitive=true)</td></tr>
<tr class="memdesc:a464a4354cce4b7cf948d3fa7bccf1ddb"><td class="mdescLeft"> </td><td class="mdescRight">Sets the cell renderer's sensitivity. <a href="#a464a4354cce4b7cf948d3fa7bccf1ddb">More...</a><br /></td></tr>
<tr class="separator:a464a4354cce4b7cf948d3fa7bccf1ddb"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a25b0c5a7d474e60dc16337ed0933e991"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1CellRenderer.html#a25b0c5a7d474e60dc16337ed0933e991">get_sensitive</a> () const </td></tr>
<tr class="memdesc:a25b0c5a7d474e60dc16337ed0933e991"><td class="mdescLeft"> </td><td class="mdescRight">Returns the cell renderer's sensitivity. <a href="#a25b0c5a7d474e60dc16337ed0933e991">More...</a><br /></td></tr>
<tr class="separator:a25b0c5a7d474e60dc16337ed0933e991"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9aaef65d7b80a4ad7378b20f76ef4760"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1CellRenderer.html#a9aaef65d7b80a4ad7378b20f76ef4760">editing_canceled</a> ()</td></tr>
<tr class="memdesc:a9aaef65d7b80a4ad7378b20f76ef4760"><td class="mdescLeft"> </td><td class="mdescRight">Causes the cell renderer to emit the <a class="el" href="classGtk_1_1CellRenderer.html#a7a9e1b577da34a65fd7fb101d877fe84" title="This signal is emitted when the user cancels the process of editing a cell. ">Gtk::CellRenderer::signal_editing_canceled()</a> signal. <a href="#a9aaef65d7b80a4ad7378b20f76ef4760">More...</a><br /></td></tr>
<tr class="separator:a9aaef65d7b80a4ad7378b20f76ef4760"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab77106d860fed2839efeec69becde2a2"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1CellRenderer.html#ab77106d860fed2839efeec69becde2a2">stop_editing</a> (bool canceled=false)</td></tr>
<tr class="memdesc:ab77106d860fed2839efeec69becde2a2"><td class="mdescLeft"> </td><td class="mdescRight">Informs the cell renderer that the editing is stopped. <a href="#ab77106d860fed2839efeec69becde2a2">More...</a><br /></td></tr>
<tr class="separator:ab77106d860fed2839efeec69becde2a2"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a7a9e1b577da34a65fd7fb101d877fe84"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< void > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1CellRenderer.html#a7a9e1b577da34a65fd7fb101d877fe84">signal_editing_canceled</a> ()</td></tr>
<tr class="memdesc:a7a9e1b577da34a65fd7fb101d877fe84"><td class="mdescLeft"> </td><td class="mdescRight">This signal is emitted when the user cancels the process of editing a cell. <a href="#a7a9e1b577da34a65fd7fb101d877fe84">More...</a><br /></td></tr>
<tr class="separator:a7a9e1b577da34a65fd7fb101d877fe84"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af8880f851bbb20252262dbbcbf01522a"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< void, <a class="el" href="classGtk_1_1CellEditable.html">CellEditable</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>& > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1CellRenderer.html#af8880f851bbb20252262dbbcbf01522a">signal_editing_started</a> ()</td></tr>
<tr class="memdesc:af8880f851bbb20252262dbbcbf01522a"><td class="mdescLeft"> </td><td class="mdescRight">This signal gets emitted when a cell starts to be edited. <a href="#af8880f851bbb20252262dbbcbf01522a">More...</a><br /></td></tr>
<tr class="separator:af8880f851bbb20252262dbbcbf01522a"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a3deb3b229d34f94dfed24f126a8a22a3"><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_1PropertyProxy.html">Glib::PropertyProxy</a>< <a class="el" href="group__gtkmmEnums.html#gaf272c01b5a3cb656e373301223b1eecf">CellRendererMode</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1CellRenderer.html#a3deb3b229d34f94dfed24f126a8a22a3">property_mode</a> ()</td></tr>
<tr class="memdesc:a3deb3b229d34f94dfed24f126a8a22a3"><td class="mdescLeft"> </td><td class="mdescRight"><a class="el" href="classGtk_1_1Editable.html" title="Base class for text-editing widgets. ">Editable</a> mode of the <a class="el" href="classGtk_1_1CellRenderer.html" title="CellRenderers are used by Gtk::TreeView columns to render the Gtk::TreeModel column data appropriatel...">CellRenderer</a>. <a href="#a3deb3b229d34f94dfed24f126a8a22a3">More...</a><br /></td></tr>
<tr class="separator:a3deb3b229d34f94dfed24f126a8a22a3"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a8601d9b681fac8cceef00064c0b616a1"><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_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< <a class="el" href="group__gtkmmEnums.html#gaf272c01b5a3cb656e373301223b1eecf">CellRendererMode</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1CellRenderer.html#a8601d9b681fac8cceef00064c0b616a1">property_mode</a> () const </td></tr>
<tr class="memdesc:a8601d9b681fac8cceef00064c0b616a1"><td class="mdescLeft"> </td><td class="mdescRight"><a class="el" href="classGtk_1_1Editable.html" title="Base class for text-editing widgets. ">Editable</a> mode of the <a class="el" href="classGtk_1_1CellRenderer.html" title="CellRenderers are used by Gtk::TreeView columns to render the Gtk::TreeModel column data appropriatel...">CellRenderer</a>. <a href="#a8601d9b681fac8cceef00064c0b616a1">More...</a><br /></td></tr>
<tr class="separator:a8601d9b681fac8cceef00064c0b616a1"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af53c9a1f308d36c6a67aaeee8a0639f6"><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_1PropertyProxy.html">Glib::PropertyProxy</a>< bool > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1CellRenderer.html#af53c9a1f308d36c6a67aaeee8a0639f6">property_visible</a> ()</td></tr>
<tr class="memdesc:af53c9a1f308d36c6a67aaeee8a0639f6"><td class="mdescLeft"> </td><td class="mdescRight">Display the cell. <a href="#af53c9a1f308d36c6a67aaeee8a0639f6">More...</a><br /></td></tr>
<tr class="separator:af53c9a1f308d36c6a67aaeee8a0639f6"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1f178e4d721133c849cd1c62cedfa953"><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_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< bool > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1CellRenderer.html#a1f178e4d721133c849cd1c62cedfa953">property_visible</a> () const </td></tr>
<tr class="memdesc:a1f178e4d721133c849cd1c62cedfa953"><td class="mdescLeft"> </td><td class="mdescRight">Display the cell. <a href="#a1f178e4d721133c849cd1c62cedfa953">More...</a><br /></td></tr>
<tr class="separator:a1f178e4d721133c849cd1c62cedfa953"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a02d86b5d3e6d8c01933005735eb8e3d4"><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_1PropertyProxy.html">Glib::PropertyProxy</a>< bool > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1CellRenderer.html#a02d86b5d3e6d8c01933005735eb8e3d4">property_sensitive</a> ()</td></tr>
<tr class="memdesc:a02d86b5d3e6d8c01933005735eb8e3d4"><td class="mdescLeft"> </td><td class="mdescRight">Display the cell sensitive. <a href="#a02d86b5d3e6d8c01933005735eb8e3d4">More...</a><br /></td></tr>
<tr class="separator:a02d86b5d3e6d8c01933005735eb8e3d4"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a3f452bce914a2edaf5225c85b1f55c8a"><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_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< bool > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1CellRenderer.html#a3f452bce914a2edaf5225c85b1f55c8a">property_sensitive</a> () const </td></tr>
<tr class="memdesc:a3f452bce914a2edaf5225c85b1f55c8a"><td class="mdescLeft"> </td><td class="mdescRight">Display the cell sensitive. <a href="#a3f452bce914a2edaf5225c85b1f55c8a">More...</a><br /></td></tr>
<tr class="separator:a3f452bce914a2edaf5225c85b1f55c8a"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4b7c2f7b770b15ddbb054a908e4fc4f9"><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_1PropertyProxy.html">Glib::PropertyProxy</a>< float > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1CellRenderer.html#a4b7c2f7b770b15ddbb054a908e4fc4f9">property_xalign</a> ()</td></tr>
<tr class="memdesc:a4b7c2f7b770b15ddbb054a908e4fc4f9"><td class="mdescLeft"> </td><td class="mdescRight">The x-align. <a href="#a4b7c2f7b770b15ddbb054a908e4fc4f9">More...</a><br /></td></tr>
<tr class="separator:a4b7c2f7b770b15ddbb054a908e4fc4f9"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a04a5739aca52bce6175522ed6f7acca4"><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_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< float > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1CellRenderer.html#a04a5739aca52bce6175522ed6f7acca4">property_xalign</a> () const </td></tr>
<tr class="memdesc:a04a5739aca52bce6175522ed6f7acca4"><td class="mdescLeft"> </td><td class="mdescRight">The x-align. <a href="#a04a5739aca52bce6175522ed6f7acca4">More...</a><br /></td></tr>
<tr class="separator:a04a5739aca52bce6175522ed6f7acca4"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac8d2a9a1df611b36924bb35fb99bb3f8"><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_1PropertyProxy.html">Glib::PropertyProxy</a>< float > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1CellRenderer.html#ac8d2a9a1df611b36924bb35fb99bb3f8">property_yalign</a> ()</td></tr>
<tr class="memdesc:ac8d2a9a1df611b36924bb35fb99bb3f8"><td class="mdescLeft"> </td><td class="mdescRight">The y-align. <a href="#ac8d2a9a1df611b36924bb35fb99bb3f8">More...</a><br /></td></tr>
<tr class="separator:ac8d2a9a1df611b36924bb35fb99bb3f8"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a488308c6e42ae10a4671bdd844d11c2f"><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_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< float > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1CellRenderer.html#a488308c6e42ae10a4671bdd844d11c2f">property_yalign</a> () const </td></tr>
<tr class="memdesc:a488308c6e42ae10a4671bdd844d11c2f"><td class="mdescLeft"> </td><td class="mdescRight">The y-align. <a href="#a488308c6e42ae10a4671bdd844d11c2f">More...</a><br /></td></tr>
<tr class="separator:a488308c6e42ae10a4671bdd844d11c2f"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a3086fd79c791011c53af6d30f8c869f7"><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_1PropertyProxy.html">Glib::PropertyProxy</a>< unsigned int > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1CellRenderer.html#a3086fd79c791011c53af6d30f8c869f7">property_xpad</a> ()</td></tr>
<tr class="memdesc:a3086fd79c791011c53af6d30f8c869f7"><td class="mdescLeft"> </td><td class="mdescRight">The xpad. <a href="#a3086fd79c791011c53af6d30f8c869f7">More...</a><br /></td></tr>
<tr class="separator:a3086fd79c791011c53af6d30f8c869f7"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa8a72f3718b0e5d521cd94693129c1ef"><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_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< unsigned int > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1CellRenderer.html#aa8a72f3718b0e5d521cd94693129c1ef">property_xpad</a> () const </td></tr>
<tr class="memdesc:aa8a72f3718b0e5d521cd94693129c1ef"><td class="mdescLeft"> </td><td class="mdescRight">The xpad. <a href="#aa8a72f3718b0e5d521cd94693129c1ef">More...</a><br /></td></tr>
<tr class="separator:aa8a72f3718b0e5d521cd94693129c1ef"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a300c8c7165aa2027b2b02d7017847888"><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_1PropertyProxy.html">Glib::PropertyProxy</a>< unsigned int > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1CellRenderer.html#a300c8c7165aa2027b2b02d7017847888">property_ypad</a> ()</td></tr>
<tr class="memdesc:a300c8c7165aa2027b2b02d7017847888"><td class="mdescLeft"> </td><td class="mdescRight">The ypad. <a href="#a300c8c7165aa2027b2b02d7017847888">More...</a><br /></td></tr>
<tr class="separator:a300c8c7165aa2027b2b02d7017847888"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac83ab03cc7cccbb55433fe9d3f2c8805"><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_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< unsigned int > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1CellRenderer.html#ac83ab03cc7cccbb55433fe9d3f2c8805">property_ypad</a> () const </td></tr>
<tr class="memdesc:ac83ab03cc7cccbb55433fe9d3f2c8805"><td class="mdescLeft"> </td><td class="mdescRight">The ypad. <a href="#ac83ab03cc7cccbb55433fe9d3f2c8805">More...</a><br /></td></tr>
<tr class="separator:ac83ab03cc7cccbb55433fe9d3f2c8805"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9cd8190dff5232319e47c9744c09e579"><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_1PropertyProxy.html">Glib::PropertyProxy</a>< int > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1CellRenderer.html#a9cd8190dff5232319e47c9744c09e579">property_width</a> ()</td></tr>
<tr class="memdesc:a9cd8190dff5232319e47c9744c09e579"><td class="mdescLeft"> </td><td class="mdescRight">The fixed width. <a href="#a9cd8190dff5232319e47c9744c09e579">More...</a><br /></td></tr>
<tr class="separator:a9cd8190dff5232319e47c9744c09e579"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a50f20ba57f100d7adb4208914b74864b"><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_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< int > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1CellRenderer.html#a50f20ba57f100d7adb4208914b74864b">property_width</a> () const </td></tr>
<tr class="memdesc:a50f20ba57f100d7adb4208914b74864b"><td class="mdescLeft"> </td><td class="mdescRight">The fixed width. <a href="#a50f20ba57f100d7adb4208914b74864b">More...</a><br /></td></tr>
<tr class="separator:a50f20ba57f100d7adb4208914b74864b"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a3bd864a4b69cc7f12d2d65128fc0c473"><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_1PropertyProxy.html">Glib::PropertyProxy</a>< int > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1CellRenderer.html#a3bd864a4b69cc7f12d2d65128fc0c473">property_height</a> ()</td></tr>
<tr class="memdesc:a3bd864a4b69cc7f12d2d65128fc0c473"><td class="mdescLeft"> </td><td class="mdescRight">The fixed height. <a href="#a3bd864a4b69cc7f12d2d65128fc0c473">More...</a><br /></td></tr>
<tr class="separator:a3bd864a4b69cc7f12d2d65128fc0c473"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac9494446ea871ccc0fd124b72e2d7919"><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_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< int > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1CellRenderer.html#ac9494446ea871ccc0fd124b72e2d7919">property_height</a> () const </td></tr>
<tr class="memdesc:ac9494446ea871ccc0fd124b72e2d7919"><td class="mdescLeft"> </td><td class="mdescRight">The fixed height. <a href="#ac9494446ea871ccc0fd124b72e2d7919">More...</a><br /></td></tr>
<tr class="separator:ac9494446ea871ccc0fd124b72e2d7919"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2b13f9463d1153b87f0d200714c30613"><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_1PropertyProxy.html">Glib::PropertyProxy</a>< bool > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1CellRenderer.html#a2b13f9463d1153b87f0d200714c30613">property_is_expander</a> ()</td></tr>
<tr class="memdesc:a2b13f9463d1153b87f0d200714c30613"><td class="mdescLeft"> </td><td class="mdescRight">Row has children. <a href="#a2b13f9463d1153b87f0d200714c30613">More...</a><br /></td></tr>
<tr class="separator:a2b13f9463d1153b87f0d200714c30613"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4055aea52dd16d8d6e825bf6a2f65849"><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_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< bool > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1CellRenderer.html#a4055aea52dd16d8d6e825bf6a2f65849">property_is_expander</a> () const </td></tr>
<tr class="memdesc:a4055aea52dd16d8d6e825bf6a2f65849"><td class="mdescLeft"> </td><td class="mdescRight">Row has children. <a href="#a4055aea52dd16d8d6e825bf6a2f65849">More...</a><br /></td></tr>
<tr class="separator:a4055aea52dd16d8d6e825bf6a2f65849"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab07bdc9a8dcaea453516a8490bad8adb"><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_1PropertyProxy.html">Glib::PropertyProxy</a>< bool > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1CellRenderer.html#ab07bdc9a8dcaea453516a8490bad8adb">property_is_expanded</a> ()</td></tr>
<tr class="memdesc:ab07bdc9a8dcaea453516a8490bad8adb"><td class="mdescLeft"> </td><td class="mdescRight">Row is an expander row, and is expanded. <a href="#ab07bdc9a8dcaea453516a8490bad8adb">More...</a><br /></td></tr>
<tr class="separator:ab07bdc9a8dcaea453516a8490bad8adb"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a19a8cda9b10b2630166600db6c0c6ff4"><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_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< bool > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1CellRenderer.html#a19a8cda9b10b2630166600db6c0c6ff4">property_is_expanded</a> () const </td></tr>
<tr class="memdesc:a19a8cda9b10b2630166600db6c0c6ff4"><td class="mdescLeft"> </td><td class="mdescRight">Row is an expander row, and is expanded. <a href="#a19a8cda9b10b2630166600db6c0c6ff4">More...</a><br /></td></tr>
<tr class="separator:a19a8cda9b10b2630166600db6c0c6ff4"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1ea01a610f9c4f5b158f96a6b2c2898a"><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_1PropertyProxy__WriteOnly.html">Glib::PropertyProxy_WriteOnly</a>< <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1CellRenderer.html#a1ea01a610f9c4f5b158f96a6b2c2898a">property_cell_background</a> ()</td></tr>
<tr class="memdesc:a1ea01a610f9c4f5b158f96a6b2c2898a"><td class="mdescLeft"> </td><td class="mdescRight">Cell background color as a string. <a href="#a1ea01a610f9c4f5b158f96a6b2c2898a">More...</a><br /></td></tr>
<tr class="separator:a1ea01a610f9c4f5b158f96a6b2c2898a"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a0d2520461f8042aa7524b699463e9f6a"><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_1PropertyProxy.html">Glib::PropertyProxy</a>< <a class="el" href="classGdk_1_1Color.html">Gdk::Color</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1CellRenderer.html#a0d2520461f8042aa7524b699463e9f6a">property_cell_background_gdk</a> ()</td></tr>
<tr class="memdesc:a0d2520461f8042aa7524b699463e9f6a"><td class="mdescLeft"> </td><td class="mdescRight">Cell background color as a GdkColor. <a href="#a0d2520461f8042aa7524b699463e9f6a">More...</a><br /></td></tr>
<tr class="separator:a0d2520461f8042aa7524b699463e9f6a"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a3174150bd182fdc2e3d28739413ac70b"><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_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< <a class="el" href="classGdk_1_1Color.html">Gdk::Color</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1CellRenderer.html#a3174150bd182fdc2e3d28739413ac70b">property_cell_background_gdk</a> () const </td></tr>
<tr class="memdesc:a3174150bd182fdc2e3d28739413ac70b"><td class="mdescLeft"> </td><td class="mdescRight">Cell background color as a GdkColor. <a href="#a3174150bd182fdc2e3d28739413ac70b">More...</a><br /></td></tr>
<tr class="separator:a3174150bd182fdc2e3d28739413ac70b"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a24ac2b32c9fd6ade15c5884448453209"><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_1PropertyProxy.html">Glib::PropertyProxy</a>< bool > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1CellRenderer.html#a24ac2b32c9fd6ade15c5884448453209">property_cell_background_set</a> ()</td></tr>
<tr class="memdesc:a24ac2b32c9fd6ade15c5884448453209"><td class="mdescLeft"> </td><td class="mdescRight">Whether this tag affects the cell background color. <a href="#a24ac2b32c9fd6ade15c5884448453209">More...</a><br /></td></tr>
<tr class="separator:a24ac2b32c9fd6ade15c5884448453209"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a0ab6a8fe1117f68b7346b70f14a66e14"><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_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< bool > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1CellRenderer.html#a0ab6a8fe1117f68b7346b70f14a66e14">property_cell_background_set</a> () const </td></tr>
<tr class="memdesc:a0ab6a8fe1117f68b7346b70f14a66e14"><td class="mdescLeft"> </td><td class="mdescRight">Whether this tag affects the cell background color. <a href="#a0ab6a8fe1117f68b7346b70f14a66e14">More...</a><br /></td></tr>
<tr class="separator:a0ab6a8fe1117f68b7346b70f14a66e14"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab5727620c167faa86c80ef982289443f"><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_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< bool > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1CellRenderer.html#ab5727620c167faa86c80ef982289443f">property_editing</a> () const </td></tr>
<tr class="memdesc:ab5727620c167faa86c80ef982289443f"><td class="mdescLeft"> </td><td class="mdescRight">Whether the cell renderer is currently in editing mode. <a href="#ab5727620c167faa86c80ef982289443f">More...</a><br /></td></tr>
<tr class="separator:ab5727620c167faa86c80ef982289443f"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pub_methods_classGtk_1_1Object"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classGtk_1_1Object')"><img src="closed.png" alt="-"/> Public Member Functions inherited from <a class="el" href="classGtk_1_1Object.html">Gtk::Object</a></td></tr>
<tr class="memitem:a2012086b1ada81a5351d6d7c83f3946c inherit pub_methods_classGtk_1_1Object"><td class="memItemLeft" align="right" valign="top">virtual </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Object.html#a2012086b1ada81a5351d6d7c83f3946c">~Object</a> ()</td></tr>
<tr class="separator:a2012086b1ada81a5351d6d7c83f3946c inherit pub_methods_classGtk_1_1Object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae3541ec02d1b7cd56cfabe7295f8948f inherit pub_methods_classGtk_1_1Object"><td class="memItemLeft" align="right" valign="top">GtkObject* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Object.html#ae3541ec02d1b7cd56cfabe7295f8948f">gobj</a> ()</td></tr>
<tr class="memdesc:ae3541ec02d1b7cd56cfabe7295f8948f inherit pub_methods_classGtk_1_1Object"><td class="mdescLeft"> </td><td class="mdescRight">Provides access to the underlying C GtkObject. <a href="#ae3541ec02d1b7cd56cfabe7295f8948f">More...</a><br /></td></tr>
<tr class="separator:ae3541ec02d1b7cd56cfabe7295f8948f inherit pub_methods_classGtk_1_1Object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5a0e5941619df9ec0cc52feccad99005 inherit pub_methods_classGtk_1_1Object"><td class="memItemLeft" align="right" valign="top">const GtkObject* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Object.html#a5a0e5941619df9ec0cc52feccad99005">gobj</a> () const </td></tr>
<tr class="memdesc:a5a0e5941619df9ec0cc52feccad99005 inherit pub_methods_classGtk_1_1Object"><td class="mdescLeft"> </td><td class="mdescRight">Provides access to the underlying C GtkObject. <a href="#a5a0e5941619df9ec0cc52feccad99005">More...</a><br /></td></tr>
<tr class="separator:a5a0e5941619df9ec0cc52feccad99005 inherit pub_methods_classGtk_1_1Object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa9604f11e1a66f4518b0f0813bb32aca inherit pub_methods_classGtk_1_1Object"><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_1PropertyProxy.html">Glib::PropertyProxy</a>< void* > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Object.html#aa9604f11e1a66f4518b0f0813bb32aca">property_user_data</a> ()</td></tr>
<tr class="memdesc:aa9604f11e1a66f4518b0f0813bb32aca inherit pub_methods_classGtk_1_1Object"><td class="mdescLeft"> </td><td class="mdescRight">Anonymous User Data Pointer. <a href="#aa9604f11e1a66f4518b0f0813bb32aca">More...</a><br /></td></tr>
<tr class="separator:aa9604f11e1a66f4518b0f0813bb32aca inherit pub_methods_classGtk_1_1Object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a6ed51e23dbac139103993b23d0253bb2 inherit pub_methods_classGtk_1_1Object"><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_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< void* > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Object.html#a6ed51e23dbac139103993b23d0253bb2">property_user_data</a> () const </td></tr>
<tr class="memdesc:a6ed51e23dbac139103993b23d0253bb2 inherit pub_methods_classGtk_1_1Object"><td class="mdescLeft"> </td><td class="mdescRight">Anonymous User Data Pointer. <a href="#a6ed51e23dbac139103993b23d0253bb2">More...</a><br /></td></tr>
<tr class="separator:a6ed51e23dbac139103993b23d0253bb2 inherit pub_methods_classGtk_1_1Object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pub_methods_classGlib_1_1Object"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classGlib_1_1Object')"><img src="closed.png" alt="-"/> Public Member Functions inherited from <a class="el" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html">Glib::Object</a></td></tr>
<tr class="memitem:a0127f43140e01d6a6731d42f9419be27 inherit pub_methods_classGlib_1_1Object"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html#a0127f43140e01d6a6731d42f9419be27">Object</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_1Object.html">Object</a> &)=delete</td></tr>
<tr class="separator:a0127f43140e01d6a6731d42f9419be27 inherit pub_methods_classGlib_1_1Object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a7081561a5684709718fdf8c1875c56c0 inherit pub_methods_classGlib_1_1Object"><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_1Object.html">Object</a> & </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html#a7081561a5684709718fdf8c1875c56c0">operator=</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html">Object</a> &)=delete</td></tr>
<tr class="separator:a7081561a5684709718fdf8c1875c56c0 inherit pub_methods_classGlib_1_1Object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a473ee068b40d5c949cee2c721d720c9a inherit pub_methods_classGlib_1_1Object"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html#a473ee068b40d5c949cee2c721d720c9a">Object</a> (<a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html">Object</a> &&src) noexcept</td></tr>
<tr class="separator:a473ee068b40d5c949cee2c721d720c9a inherit pub_methods_classGlib_1_1Object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2855131d475e54294dc34573f12ca9a0 inherit pub_methods_classGlib_1_1Object"><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_1Object.html">Object</a> & </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html#a2855131d475e54294dc34573f12ca9a0">operator=</a> (<a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html">Object</a> &&src) noexcept</td></tr>
<tr class="separator:a2855131d475e54294dc34573f12ca9a0 inherit pub_methods_classGlib_1_1Object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a0e6581bcbcc6197cca07df24bb91c492 inherit pub_methods_classGlib_1_1Object"><td class="memItemLeft" align="right" valign="top">void * </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html#a0e6581bcbcc6197cca07df24bb91c492">get_data</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_1QueryQuark.html">QueryQuark</a> &key)</td></tr>
<tr class="separator:a0e6581bcbcc6197cca07df24bb91c492 inherit pub_methods_classGlib_1_1Object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:afff7a375a862f3f899daaa99710122fa inherit pub_methods_classGlib_1_1Object"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html#afff7a375a862f3f899daaa99710122fa">set_data</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_1Quark.html">Quark</a> &key, void *data)</td></tr>
<tr class="separator:afff7a375a862f3f899daaa99710122fa inherit pub_methods_classGlib_1_1Object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1febe3bae2dd71756e98e523cd33c1b4 inherit pub_methods_classGlib_1_1Object"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html#a1febe3bae2dd71756e98e523cd33c1b4">set_data</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_1Quark.html">Quark</a> &key, void *data, <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_1Object.html#a969836f7bf4fec78eb50a1d790304d82">DestroyNotify</a> notify)</td></tr>
<tr class="separator:a1febe3bae2dd71756e98e523cd33c1b4 inherit pub_methods_classGlib_1_1Object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aada5b50844bda7ee02bed0ae2a715c00 inherit pub_methods_classGlib_1_1Object"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html#aada5b50844bda7ee02bed0ae2a715c00">remove_data</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_1QueryQuark.html">QueryQuark</a> &quark)</td></tr>
<tr class="separator:aada5b50844bda7ee02bed0ae2a715c00 inherit pub_methods_classGlib_1_1Object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab454f71bd74403b0cc46d3cbbedd6b0e inherit pub_methods_classGlib_1_1Object"><td class="memItemLeft" align="right" valign="top">void * </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html#ab454f71bd74403b0cc46d3cbbedd6b0e">steal_data</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_1QueryQuark.html">QueryQuark</a> &quark)</td></tr>
<tr class="separator:ab454f71bd74403b0cc46d3cbbedd6b0e inherit pub_methods_classGlib_1_1Object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae4dea9a8dc611d6e4400a5b6a3cb4e7f inherit pub_methods_classGlib_1_1Object"><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="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html">Glib::Object</a> > </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html#ae4dea9a8dc611d6e4400a5b6a3cb4e7f">wrap</a> (GObject *object, bool take_copy=false)</td></tr>
<tr class="separator:ae4dea9a8dc611d6e4400a5b6a3cb4e7f inherit pub_methods_classGlib_1_1Object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pub_methods_classGlib_1_1ObjectBase"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classGlib_1_1ObjectBase')"><img src="closed.png" alt="-"/> Public Member Functions inherited from <a class="el" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html">Glib::ObjectBase</a></td></tr>
<tr class="memitem:aaf0e140e7192dcecddd9f57c46825434 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#aaf0e140e7192dcecddd9f57c46825434">ObjectBase</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html">ObjectBase</a> &)=delete</td></tr>
<tr class="separator:aaf0e140e7192dcecddd9f57c46825434 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a15f8834a320eac98dc1c1b8a9a2fd4c1 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html">ObjectBase</a> & </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a15f8834a320eac98dc1c1b8a9a2fd4c1">operator=</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html">ObjectBase</a> &)=delete</td></tr>
<tr class="separator:a15f8834a320eac98dc1c1b8a9a2fd4c1 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aab599d3eec4b4a9ddc95ccdc6100053d inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#aab599d3eec4b4a9ddc95ccdc6100053d">set_property_value</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> &property_name, const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ValueBase.html">Glib::ValueBase</a> &value)</td></tr>
<tr class="separator:aab599d3eec4b4a9ddc95ccdc6100053d inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5e30750441b92f0246c9d4ece95fc8a0 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a5e30750441b92f0246c9d4ece95fc8a0">get_property_value</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> &property_name, <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ValueBase.html">Glib::ValueBase</a> &value) const </td></tr>
<tr class="separator:a5e30750441b92f0246c9d4ece95fc8a0 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad37844f7ea2c0091a22d011e04c48820 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#ad37844f7ea2c0091a22d011e04c48820">set_property</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> &property_name, const PropertyType &value)</td></tr>
<tr class="separator:ad37844f7ea2c0091a22d011e04c48820 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5f894c9c36ad391fdc85552af67a8530 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a5f894c9c36ad391fdc85552af67a8530">get_property</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> &property_name, PropertyType &value) const </td></tr>
<tr class="separator:a5f894c9c36ad391fdc85552af67a8530 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:adc6c1e8f094275114d6e2c3ef3a33f98 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#adc6c1e8f094275114d6e2c3ef3a33f98">connect_property_changed</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> &property_name, const <a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/classsigc_1_1slot.html">sigc::slot</a>< void > &slot)</td></tr>
<tr class="separator:adc6c1e8f094275114d6e2c3ef3a33f98 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9fff4abb6ecc939866a6ff5d32808221 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a9fff4abb6ecc939866a6ff5d32808221">connect_property_changed</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> &property_name, <a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/classsigc_1_1slot.html">sigc::slot</a>< void > &&slot)</td></tr>
<tr class="separator:a9fff4abb6ecc939866a6ff5d32808221 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a896d7773c00bd2dcd310c861282ee8d1 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1connection.html">sigc::connection</a> </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a896d7773c00bd2dcd310c861282ee8d1">connect_property_changed_with_return</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> &property_name, const <a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/classsigc_1_1slot.html">sigc::slot</a>< void > &slot)</td></tr>
<tr class="separator:a896d7773c00bd2dcd310c861282ee8d1 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a00f0e2119fbb42efe42d66b8188a0daf inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1connection.html">sigc::connection</a> </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a00f0e2119fbb42efe42d66b8188a0daf">connect_property_changed_with_return</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> &property_name, <a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/classsigc_1_1slot.html">sigc::slot</a>< void > &&slot)</td></tr>
<tr class="separator:a00f0e2119fbb42efe42d66b8188a0daf inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a6e9e13b75f116c20212d318204ce8ea3 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a6e9e13b75f116c20212d318204ce8ea3">freeze_notify</a> ()</td></tr>
<tr class="separator:a6e9e13b75f116c20212d318204ce8ea3 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1bd8ea7bd8c4084ade6b3c27dddf06a4 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a1bd8ea7bd8c4084ade6b3c27dddf06a4">thaw_notify</a> ()</td></tr>
<tr class="separator:a1bd8ea7bd8c4084ade6b3c27dddf06a4 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a896a8a5db20043ea82956e3ef4b9c4ae inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a896a8a5db20043ea82956e3ef4b9c4ae">reference</a> () const </td></tr>
<tr class="separator:a896a8a5db20043ea82956e3ef4b9c4ae inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a3234b8ffb2a35b927e2978c8f3bfbfe3 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a3234b8ffb2a35b927e2978c8f3bfbfe3">unreference</a> () const </td></tr>
<tr class="separator:a3234b8ffb2a35b927e2978c8f3bfbfe3 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4c6efc18be8cb9c56e58fc0bd20fafbe inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">GObject * </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a4c6efc18be8cb9c56e58fc0bd20fafbe">gobj</a> ()</td></tr>
<tr class="separator:a4c6efc18be8cb9c56e58fc0bd20fafbe inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a778a94181132976bbfb0519793f3b32e inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">const GObject * </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a778a94181132976bbfb0519793f3b32e">gobj</a> () const </td></tr>
<tr class="separator:a778a94181132976bbfb0519793f3b32e inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9b2a5eb93102f1849e5419016e22a15f inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">GObject * </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a9b2a5eb93102f1849e5419016e22a15f">gobj_copy</a> () const </td></tr>
<tr class="separator:a9b2a5eb93102f1849e5419016e22a15f inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pub_methods_structsigc_1_1trackable"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_structsigc_1_1trackable')"><img src="closed.png" alt="-"/> Public Member Functions inherited from <a class="el" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html">sigc::trackable</a></td></tr>
<tr class="memitem:a7e1348841e762fb41b41c6f2ce9fa073 inherit pub_methods_structsigc_1_1trackable"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html#a7e1348841e762fb41b41c6f2ce9fa073">trackable</a> () noexcept</td></tr>
<tr class="separator:a7e1348841e762fb41b41c6f2ce9fa073 inherit pub_methods_structsigc_1_1trackable"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac8431d9452c9698a012597e6560c72fa inherit pub_methods_structsigc_1_1trackable"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html#ac8431d9452c9698a012597e6560c72fa">trackable</a> (const <a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html">trackable</a> &src) noexcept</td></tr>
<tr class="separator:ac8431d9452c9698a012597e6560c72fa inherit pub_methods_structsigc_1_1trackable"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aba42ed8afb6598106cf68c18a7387f18 inherit pub_methods_structsigc_1_1trackable"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html#aba42ed8afb6598106cf68c18a7387f18">trackable</a> (<a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html">trackable</a> &&src)</td></tr>
<tr class="separator:aba42ed8afb6598106cf68c18a7387f18 inherit pub_methods_structsigc_1_1trackable"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a75587da09e30031db7a2519843f1f4fb inherit pub_methods_structsigc_1_1trackable"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html#a75587da09e30031db7a2519843f1f4fb">~trackable</a> ()</td></tr>
<tr class="separator:a75587da09e30031db7a2519843f1f4fb inherit pub_methods_structsigc_1_1trackable"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab14931670837728e49bb5ca88fb16db5 inherit pub_methods_structsigc_1_1trackable"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html#ab14931670837728e49bb5ca88fb16db5">add_destroy_notify_callback</a> (void *data, <a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html#a3338954d7565534bd945290b798e13ed">func_destroy_notify</a> func) const </td></tr>
<tr class="separator:ab14931670837728e49bb5ca88fb16db5 inherit pub_methods_structsigc_1_1trackable"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af2e23cfe7adc1ca844a3350bbac557cb inherit pub_methods_structsigc_1_1trackable"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html#af2e23cfe7adc1ca844a3350bbac557cb">notify_callbacks</a> ()</td></tr>
<tr class="separator:af2e23cfe7adc1ca844a3350bbac557cb inherit pub_methods_structsigc_1_1trackable"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a7494fbad23a65932ff1457d00d4edaf5 inherit pub_methods_structsigc_1_1trackable"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html">trackable</a> & </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html#a7494fbad23a65932ff1457d00d4edaf5">operator=</a> (const <a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html">trackable</a> &src)</td></tr>
<tr class="separator:a7494fbad23a65932ff1457d00d4edaf5 inherit pub_methods_structsigc_1_1trackable"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac3d61cdb452dc46fcdc8a8d42d9c079d inherit pub_methods_structsigc_1_1trackable"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html">trackable</a> & </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html#ac3d61cdb452dc46fcdc8a8d42d9c079d">operator=</a> (<a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html">trackable</a> &&src)</td></tr>
<tr class="separator:ac3d61cdb452dc46fcdc8a8d42d9c079d inherit pub_methods_structsigc_1_1trackable"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a8b9dffa8a50ff13ba33e6c7f10468e2b inherit pub_methods_structsigc_1_1trackable"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html#a8b9dffa8a50ff13ba33e6c7f10468e2b">remove_destroy_notify_callback</a> (void *data) const </td></tr>
<tr class="separator:a8b9dffa8a50ff13ba33e6c7f10468e2b inherit pub_methods_structsigc_1_1trackable"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pro-methods"></a>
Protected Member Functions</h2></td></tr>
<tr class="memitem:a107db713a7444f11af9bd72d6201cc9e"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1CellRenderer.html#a107db713a7444f11af9bd72d6201cc9e">on_editing_canceled</a> ()</td></tr>
<tr class="memdesc:a107db713a7444f11af9bd72d6201cc9e"><td class="mdescLeft"> </td><td class="mdescRight">This is a default handler for the signal <a class="el" href="classGtk_1_1CellRenderer.html#a7a9e1b577da34a65fd7fb101d877fe84" title="This signal is emitted when the user cancels the process of editing a cell. ">signal_editing_canceled()</a>. <a href="#a107db713a7444f11af9bd72d6201cc9e">More...</a><br /></td></tr>
<tr class="separator:a107db713a7444f11af9bd72d6201cc9e"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad0638b8a04dd1676d8619fcce1955576"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1CellRenderer.html#ad0638b8a04dd1676d8619fcce1955576">CellRenderer</a> ()</td></tr>
<tr class="separator:ad0638b8a04dd1676d8619fcce1955576"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:acd0997118350a0874cdea7be3800c5bb"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1CellRenderer.html#acd0997118350a0874cdea7be3800c5bb">get_size_vfunc</a> (<a class="el" href="classGtk_1_1Widget.html">Widget</a>& widget, const <a class="el" href="classGdk_1_1Rectangle.html">Gdk::Rectangle</a>* cell_area, int* x_offset, int* y_offset, int* width, int* height) const </td></tr>
<tr class="memdesc:acd0997118350a0874cdea7be3800c5bb"><td class="mdescLeft"> </td><td class="mdescRight">Override this in derived CellRenderers. <a href="#acd0997118350a0874cdea7be3800c5bb">More...</a><br /></td></tr>
<tr class="separator:acd0997118350a0874cdea7be3800c5bb"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ace15422f9ec1e800982209691e90ad09"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1CellRenderer.html#ace15422f9ec1e800982209691e90ad09">render_vfunc</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_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGdk_1_1Drawable.html">Gdk::Drawable</a> >& window, <a class="el" href="classGtk_1_1Widget.html">Widget</a>& widget, const <a class="el" href="classGdk_1_1Rectangle.html">Gdk::Rectangle</a>& background_area, const <a class="el" href="classGdk_1_1Rectangle.html">Gdk::Rectangle</a>& cell_area, const <a class="el" href="classGdk_1_1Rectangle.html">Gdk::Rectangle</a>& expose_area, <a class="el" href="group__gtkmmEnums.html#ga7061270b7c31ba72e053ab001ec2b877">CellRendererState</a> flags)</td></tr>
<tr class="separator:ace15422f9ec1e800982209691e90ad09"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a14dc8ee3bc58bf8a2282df1a6dc693da"><td class="memItemLeft" align="right" valign="top">virtual bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1CellRenderer.html#a14dc8ee3bc58bf8a2282df1a6dc693da">activate_vfunc</a> (GdkEvent* event, <a class="el" href="classGtk_1_1Widget.html">Widget</a>& widget, 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, const <a class="el" href="classGdk_1_1Rectangle.html">Gdk::Rectangle</a>& background_area, const <a class="el" href="classGdk_1_1Rectangle.html">Gdk::Rectangle</a>& cell_area, <a class="el" href="group__gtkmmEnums.html#ga7061270b7c31ba72e053ab001ec2b877">CellRendererState</a> flags)</td></tr>
<tr class="separator:a14dc8ee3bc58bf8a2282df1a6dc693da"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae2d7434b3e136ed8cabd7e312b0f3c81"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="classGtk_1_1CellEditable.html">CellEditable</a>* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1CellRenderer.html#ae2d7434b3e136ed8cabd7e312b0f3c81">start_editing_vfunc</a> (GdkEvent* event, <a class="el" href="classGtk_1_1Widget.html">Widget</a>& widget, 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, const <a class="el" href="classGdk_1_1Rectangle.html">Gdk::Rectangle</a>& background_area, const <a class="el" href="classGdk_1_1Rectangle.html">Gdk::Rectangle</a>& cell_area, <a class="el" href="group__gtkmmEnums.html#ga7061270b7c31ba72e053ab001ec2b877">CellRendererState</a> flags)</td></tr>
<tr class="separator:ae2d7434b3e136ed8cabd7e312b0f3c81"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pro_methods_classGlib_1_1Object"><td colspan="2" onclick="javascript:toggleInherit('pro_methods_classGlib_1_1Object')"><img src="closed.png" alt="-"/> Protected Member Functions inherited from <a class="el" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html">Glib::Object</a></td></tr>
<tr class="memitem:ad43f7c5ad0336e1eb3af622392a112eb inherit pro_methods_classGlib_1_1Object"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html#ad43f7c5ad0336e1eb3af622392a112eb">Object</a> ()</td></tr>
<tr class="separator:ad43f7c5ad0336e1eb3af622392a112eb inherit pro_methods_classGlib_1_1Object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a6d72588496bd7ac03f72420021fb94a5 inherit pro_methods_classGlib_1_1Object"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html#a6d72588496bd7ac03f72420021fb94a5">Object</a> (const Glib::ConstructParams &construct_params)</td></tr>
<tr class="separator:a6d72588496bd7ac03f72420021fb94a5 inherit pro_methods_classGlib_1_1Object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a6f490eeaeb71db673c36799a0f729be5 inherit pro_methods_classGlib_1_1Object"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html#a6f490eeaeb71db673c36799a0f729be5">Object</a> (GObject *castitem)</td></tr>
<tr class="separator:a6f490eeaeb71db673c36799a0f729be5 inherit pro_methods_classGlib_1_1Object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1a156a738ca71cff3789fd6bafaf8903 inherit pro_methods_classGlib_1_1Object"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html#a1a156a738ca71cff3789fd6bafaf8903">~Object</a> () noexceptoverride</td></tr>
<tr class="separator:a1a156a738ca71cff3789fd6bafaf8903 inherit pro_methods_classGlib_1_1Object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pro_methods_classGlib_1_1ObjectBase"><td colspan="2" onclick="javascript:toggleInherit('pro_methods_classGlib_1_1ObjectBase')"><img src="closed.png" alt="-"/> Protected Member Functions inherited from <a class="el" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html">Glib::ObjectBase</a></td></tr>
<tr class="memitem:a27d3451d9ca28d6a2f00838d7c56d545 inherit pro_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a27d3451d9ca28d6a2f00838d7c56d545">ObjectBase</a> ()</td></tr>
<tr class="separator:a27d3451d9ca28d6a2f00838d7c56d545 inherit pro_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad4ef18214894c6874579313ab21d1018 inherit pro_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#ad4ef18214894c6874579313ab21d1018">ObjectBase</a> (const char *custom_type_name)</td></tr>
<tr class="separator:ad4ef18214894c6874579313ab21d1018 inherit pro_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a3d59b4d85b0ee72a727e6b2e1b31a2ff inherit pro_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a3d59b4d85b0ee72a727e6b2e1b31a2ff">ObjectBase</a> (const <a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a00947.html">std::type_info</a> &custom_type_info)</td></tr>
<tr class="separator:a3d59b4d85b0ee72a727e6b2e1b31a2ff inherit pro_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a7e2e177061f6a6e09c4cf3da49c6dfd3 inherit pro_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a7e2e177061f6a6e09c4cf3da49c6dfd3">ObjectBase</a> (<a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html">ObjectBase</a> &&src) noexcept</td></tr>
<tr class="separator:a7e2e177061f6a6e09c4cf3da49c6dfd3 inherit pro_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2e968f118314ba4d5debfd2850d18003 inherit pro_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html">ObjectBase</a> & </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a2e968f118314ba4d5debfd2850d18003">operator=</a> (<a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html">ObjectBase</a> &&src) noexcept</td></tr>
<tr class="separator:a2e968f118314ba4d5debfd2850d18003 inherit pro_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae56ec45e9ebeaacf24be4fb54ed2eea3 inherit pro_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">virtual </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#ae56ec45e9ebeaacf24be4fb54ed2eea3">~ObjectBase</a> () noexcept=0</td></tr>
<tr class="separator:ae56ec45e9ebeaacf24be4fb54ed2eea3 inherit pro_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a3faafb14c4f0ca60fbf0f5f5c4d549d0 inherit pro_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a3faafb14c4f0ca60fbf0f5f5c4d549d0">initialize</a> (GObject *castitem)</td></tr>
<tr class="separator:a3faafb14c4f0ca60fbf0f5f5c4d549d0 inherit pro_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a44ddc123cd98ed0083aa06364365c8d3 inherit pro_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a44ddc123cd98ed0083aa06364365c8d3">initialize_move</a> (GObject *castitem, <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html">Glib::ObjectBase</a> *previous_wrapper)</td></tr>
<tr class="separator:a44ddc123cd98ed0083aa06364365c8d3 inherit pro_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="related"></a>
Related Functions</h2></td></tr>
<tr><td class="ititle" colspan="2"><p>(Note that these are not member functions.) </p>
</td></tr>
<tr class="memitem:a7658018083799e3966942a4bd06dc7cf"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGtk_1_1CellRenderer.html">Gtk::CellRenderer</a>* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1CellRenderer.html#a7658018083799e3966942a4bd06dc7cf">wrap</a> (GtkCellRenderer* object, bool take_copy=false)</td></tr>
<tr class="memdesc:a7658018083799e3966942a4bd06dc7cf"><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="#a7658018083799e3966942a4bd06dc7cf">More...</a><br /></td></tr>
<tr class="separator:a7658018083799e3966942a4bd06dc7cf"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header related_classGtk_1_1Object"><td colspan="2" onclick="javascript:toggleInherit('related_classGtk_1_1Object')"><img src="closed.png" alt="-"/> Related Functions inherited from <a class="el" href="classGtk_1_1Object.html">Gtk::Object</a></td></tr>
<tr class="memitem:adad5ba1a4159e3566b2e091ef7bc2f4d inherit related_classGtk_1_1Object"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGtk_1_1Object.html">Gtk::Object</a>* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Object.html#adad5ba1a4159e3566b2e091ef7bc2f4d">wrap</a> (GtkObject* object, bool take_copy=false)</td></tr>
<tr class="memdesc:adad5ba1a4159e3566b2e091ef7bc2f4d inherit related_classGtk_1_1Object"><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="#adad5ba1a4159e3566b2e091ef7bc2f4d">More...</a><br /></td></tr>
<tr class="separator:adad5ba1a4159e3566b2e091ef7bc2f4d inherit related_classGtk_1_1Object"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="inherited"></a>
Additional Inherited Members</h2></td></tr>
<tr class="inherit_header pub_types_classGlib_1_1Object"><td colspan="2" onclick="javascript:toggleInherit('pub_types_classGlib_1_1Object')"><img src="closed.png" alt="-"/> Public Types inherited from <a class="el" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html">Glib::Object</a></td></tr>
<tr class="memitem:a969836f7bf4fec78eb50a1d790304d82 inherit pub_types_classGlib_1_1Object"><td class="memItemLeft" align="right" valign="top">typedef void(*)(gpointer data </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html#a969836f7bf4fec78eb50a1d790304d82">DestroyNotify</a>)</td></tr>
<tr class="separator:a969836f7bf4fec78eb50a1d790304d82 inherit pub_types_classGlib_1_1Object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pub_types_structsigc_1_1trackable"><td colspan="2" onclick="javascript:toggleInherit('pub_types_structsigc_1_1trackable')"><img src="closed.png" alt="-"/> Public Types inherited from <a class="el" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html">sigc::trackable</a></td></tr>
<tr class="memitem:a3338954d7565534bd945290b798e13ed inherit pub_types_structsigc_1_1trackable"><td class="memItemLeft" align="right" valign="top">typedef internal::func_destroy_notify </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html#a3338954d7565534bd945290b798e13ed">func_destroy_notify</a></td></tr>
<tr class="separator:a3338954d7565534bd945290b798e13ed inherit pub_types_structsigc_1_1trackable"><td class="memSeparator" colspan="2"> </td></tr>
</table>
<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2>
<div class="textblock"><p>CellRenderers are used by <a class="el" href="classGtk_1_1TreeView.html" title="The TreeView widget displays the model (Gtk::TreeModel) data and allows the user to interact with it...">Gtk::TreeView</a> columns to render the <a class="el" href="classGtk_1_1TreeModel.html" title="This class defines a generic tree interface for use by the Gtk::TreeView widget. ">Gtk::TreeModel</a> column data appropriately. </p>
<p>They display, and allow editing of, the values of their properties. In most cases, <a class="el" href="classGtk_1_1TreeView.html#a16f55997427768789b625fab842f5a2d" title="Appends column to the list of columns. ">Gtk::TreeView::append_column()</a> will automatically choose the appropriate renderer for the mode column's data type, so you will rarely need to worry about these classes. </p>
</div><h2 class="groupheader">Constructor & Destructor Documentation</h2>
<a class="anchor" id="aa4fb8ad72b75ac4a0b036eb21669e049"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual Gtk::CellRenderer::~CellRenderer </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="ad0638b8a04dd1676d8619fcce1955576"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">Gtk::CellRenderer::CellRenderer </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<h2 class="groupheader">Member Function Documentation</h2>
<a class="anchor" id="aa345ce649c2b2dced98c865ea2eec55d"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gtk::CellRenderer::activate </td>
<td>(</td>
<td class="paramtype">GdkEvent * </td>
<td class="paramname"><em>event</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="classGtk_1_1Widget.html">Widget</a>& </td>
<td class="paramname"><em>widget</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_1ustring.html">Glib::ustring</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="classGdk_1_1Rectangle.html">Gdk::Rectangle</a>& </td>
<td class="paramname"><em>background_area</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="classGdk_1_1Rectangle.html">Gdk::Rectangle</a>& </td>
<td class="paramname"><em>cell_area</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="group__gtkmmEnums.html#ga7061270b7c31ba72e053ab001ec2b877">CellRendererState</a> </td>
<td class="paramname"><em>flags</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Passes an activate event to the cell renderer for possible processing. </p>
<p>Some cell renderers may use events; for example, <a class="el" href="classGtk_1_1CellRendererToggle.html" title="Renders a toggle button in a cell. ">Gtk::CellRendererToggle</a> toggles when it gets a mouse click.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">event</td><td>A <a class="el" href="classGdk_1_1Event.html">Gdk::Event</a>. </td></tr>
<tr><td class="paramname">widget</td><td><a class="el" href="classGtk_1_1Widget.html" title="Abstract Widget (Base class for all widgets) ">Widget</a> that received the event. </td></tr>
<tr><td class="paramname">path</td><td>Widget-dependent string representation of the event location; e.g. for <a class="el" href="classGtk_1_1TreeView.html" title="The TreeView widget displays the model (Gtk::TreeModel) data and allows the user to interact with it...">Gtk::TreeView</a>, a string representation of <a class="el" href="classGtk_1_1TreePath.html" title="A path is essentially a potential node. ">Gtk::TreePath</a>. </td></tr>
<tr><td class="paramname">background_area</td><td>Background area as passed to <a class="el" href="classGtk_1_1CellRenderer.html#aead757c70a8a9d504a6295b7e9a44194" title="Invokes the virtual render function of the Gtk::CellRenderer. ">render()</a>. </td></tr>
<tr><td class="paramname">cell_area</td><td>Cell area as passed to <a class="el" href="classGtk_1_1CellRenderer.html#aead757c70a8a9d504a6295b7e9a44194" title="Invokes the virtual render function of the Gtk::CellRenderer. ">render()</a>. </td></tr>
<tr><td class="paramname">flags</td><td>Render flags. </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd><code>true</code> if the event was consumed/handled. </dd></dl>
</div>
</div>
<a class="anchor" id="a14dc8ee3bc58bf8a2282df1a6dc693da"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual bool Gtk::CellRenderer::activate_vfunc </td>
<td>(</td>
<td class="paramtype">GdkEvent * </td>
<td class="paramname"><em>event</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="classGtk_1_1Widget.html">Widget</a>& </td>
<td class="paramname"><em>widget</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_1ustring.html">Glib::ustring</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="classGdk_1_1Rectangle.html">Gdk::Rectangle</a>& </td>
<td class="paramname"><em>background_area</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="classGdk_1_1Rectangle.html">Gdk::Rectangle</a>& </td>
<td class="paramname"><em>cell_area</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="group__gtkmmEnums.html#ga7061270b7c31ba72e053ab001ec2b877">CellRendererState</a> </td>
<td class="paramname"><em>flags</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="a9aaef65d7b80a4ad7378b20f76ef4760"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::CellRenderer::editing_canceled </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Causes the cell renderer to emit the <a class="el" href="classGtk_1_1CellRenderer.html#a7a9e1b577da34a65fd7fb101d877fe84" title="This signal is emitted when the user cancels the process of editing a cell. ">Gtk::CellRenderer::signal_editing_canceled()</a> signal. </p>
<p>This function is for use only by implementations of cell renderers that need to notify the client program that an editing process was canceled and the changes were not committed.</p>
<dl class="since_2_4"><dt><b><a class="el" href="since_2_4.html#_since_2_4000058">Since gtkmm 2.4:</a></b></dt><dd>Deprecated: 2.6: Use <a class="el" href="classGtk_1_1CellRenderer.html#ab77106d860fed2839efeec69becde2a2" title="Informs the cell renderer that the editing is stopped. ">stop_editing()</a> instead</dd></dl>
<dl class="deprecated"><dt><b><a class="el" href="deprecated.html#_deprecated000031">Deprecated:</a></b></dt><dd>Use <a class="el" href="classGtk_1_1CellRenderer.html#ab77106d860fed2839efeec69becde2a2" title="Informs the cell renderer that the editing is stopped. ">stop_editing()</a>. </dd></dl>
</div>
</div>
<a class="anchor" id="a885d825836256119e16df0e995fd81a4"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::CellRenderer::get_alignment </td>
<td>(</td>
<td class="paramtype">float & </td>
<td class="paramname"><em>xalign</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">float & </td>
<td class="paramname"><em>yalign</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Fills in <em>xalign</em> and <em>yalign</em> with the appropriate values of <em>cell</em>. </p>
<dl class="since_2_18"><dt><b><a class="el" href="since_2_18.html#_since_2_18000013">Since gtkmm 2.18:</a></b></dt><dd></dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">xalign</td><td>Location to fill in with the x alignment of the cell, or <code>nullptr</code>. </td></tr>
<tr><td class="paramname">yalign</td><td>Location to fill in with the y alignment of the cell, or <code>nullptr</code>. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="ad1913dacd0141352029934ed6e96dd45"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::CellRenderer::get_fixed_size </td>
<td>(</td>
<td class="paramtype">int & </td>
<td class="paramname"><em>width</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int & </td>
<td class="paramname"><em>height</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Fills in <em>width</em> and <em>height</em> with the appropriate size of <em>cell</em>. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">width</td><td>Location to fill in with the fixed width of the widget. </td></tr>
<tr><td class="paramname">height</td><td>Location to fill in with the fixed height of the widget. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a730191d2c7cd5623f96ca1458ff4aee6"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::CellRenderer::get_padding </td>
<td>(</td>
<td class="paramtype">int & </td>
<td class="paramname"><em>xpad</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int & </td>
<td class="paramname"><em>ypad</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Fills in <em>xpad</em> and <em>ypad</em> with the appropriate values of <em>cell</em>. </p>
<dl class="since_2_18"><dt><b><a class="el" href="since_2_18.html#_since_2_18000015">Since gtkmm 2.18:</a></b></dt><dd></dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">xpad</td><td>Location to fill in with the x padding of the cell, or <code>nullptr</code>. </td></tr>
<tr><td class="paramname">ypad</td><td>Location to fill in with the y padding of the cell, or <code>nullptr</code>. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a25b0c5a7d474e60dc16337ed0933e991"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gtk::CellRenderer::get_sensitive </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns the cell renderer's sensitivity. </p>
<dl class="since_2_18"><dt><b><a class="el" href="since_2_18.html#_since_2_18000019">Since gtkmm 2.18:</a></b></dt><dd></dd></dl>
<dl class="section return"><dt>Returns</dt><dd><code>true</code> if the cell renderer is sensitive. </dd></dl>
</div>
</div>
<a class="anchor" id="a42e1a19fdd781118ac13858b328a6d82"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::CellRenderer::get_size </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classGtk_1_1Widget.html">Widget</a>& </td>
<td class="paramname"><em>widget</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="classGdk_1_1Rectangle.html">Gdk::Rectangle</a>& </td>
<td class="paramname"><em>cell_area</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int & </td>
<td class="paramname"><em>x_offset</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int & </td>
<td class="paramname"><em>y_offset</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int & </td>
<td class="paramname"><em>width</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int & </td>
<td class="paramname"><em>height</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Obtains the width and height needed to render the cell. </p>
<p>Used by view widgets to determine the appropriate size for the cell_area passed to <a class="el" href="classGtk_1_1CellRenderer.html#aead757c70a8a9d504a6295b7e9a44194" title="Invokes the virtual render function of the Gtk::CellRenderer. ">render()</a>. Fills in the x and y offsets of the cell relative to this location. Please note that the values set in <em>width</em> and <em>height</em>, as well as those in <em>x_offset</em> and <em>y_offset</em> are inclusive of the xpad and ypad properties.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">widget</td><td>The widget the renderer is rendering to. </td></tr>
<tr><td class="paramname">cell_area</td><td>The area a cell will be allocated. </td></tr>
<tr><td class="paramname">x_offset</td><td>Location to return x offset of cell relative to <em>cell_area</em>. </td></tr>
<tr><td class="paramname">y_offset</td><td>Location to return y offset of cell relative to <em>cell_area</em>. </td></tr>
<tr><td class="paramname">width</td><td>Location to return width needed to render a cell. </td></tr>
<tr><td class="paramname">height</td><td>Location to return height needed to render a cell. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="ae59ae85702686c19cb37c620e3a318e4"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::CellRenderer::get_size </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classGtk_1_1Widget.html">Widget</a>& </td>
<td class="paramname"><em>widget</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int & </td>
<td class="paramname"><em>x_offset</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int & </td>
<td class="paramname"><em>y_offset</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int & </td>
<td class="paramname"><em>width</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int & </td>
<td class="paramname"><em>height</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Obtains the width and height needed to render the cell. </p>
<p>Used by view widgets to determine the appropriate size for the cell_area passed to <a class="el" href="classGtk_1_1CellRenderer.html#aead757c70a8a9d504a6295b7e9a44194" title="Invokes the virtual render function of the Gtk::CellRenderer. ">render()</a>. Fills in the x and y offsets of the cell relative to this location. Please note that the values set in <em>width</em> and <em>height</em> , as well as those in <em>x_offset</em> and <em>y_offset</em> are inclusive of the xpad and ypad properties. </p><dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">widget</td><td>The widget the renderer is rendering to. </td></tr>
<tr><td class="paramname">x_offset</td><td>Location to return x offset of cell relative to <em>cell_area</em>. </td></tr>
<tr><td class="paramname">y_offset</td><td>Location to return y offset of cell relative to <em>cell_area</em>. </td></tr>
<tr><td class="paramname">width</td><td>Location to return width needed to render a cell. </td></tr>
<tr><td class="paramname">height</td><td>Location to return height needed to render a cell. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="acd0997118350a0874cdea7be3800c5bb"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual void Gtk::CellRenderer::get_size_vfunc </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classGtk_1_1Widget.html">Widget</a>& </td>
<td class="paramname"><em>widget</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="classGdk_1_1Rectangle.html">Gdk::Rectangle</a>* </td>
<td class="paramname"><em>cell_area</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int * </td>
<td class="paramname"><em>x_offset</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int * </td>
<td class="paramname"><em>y_offset</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int * </td>
<td class="paramname"><em>width</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int * </td>
<td class="paramname"><em>height</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Override this in derived CellRenderers. </p>
<p>Obtains the width and height needed to render the cell. Used by view widgets to determine the appropriate size for the cell_area passed to <a class="el" href="classGtk_1_1CellRenderer.html#aead757c70a8a9d504a6295b7e9a44194" title="Invokes the virtual render function of the Gtk::CellRenderer. ">render()</a>. If <em>cell_area</em> is not 0, fills in the x and y offsets (if set) of the cell relative to this location. Please note that the values set in <em>width</em> and <em>height</em>, as well as those in <em>x_offset</em> and <em>y_offset</em> are inclusive of the xpad and ypad properties.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">widget</td><td>The widget the renderer is rendering to. </td></tr>
<tr><td class="paramname">cell_area</td><td>The area a cell will be allocated, or 0. </td></tr>
<tr><td class="paramname">x_offset</td><td>x offset of cell relative to <em>cell_area</em>. </td></tr>
<tr><td class="paramname">y_offset</td><td>y offset of cell relative to <em>cell_area</em>. </td></tr>
<tr><td class="paramname">width</td><td>Width needed to render a cell. </td></tr>
<tr><td class="paramname">height</td><td>Height needed to render a cell. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="af8eb8055f961005e0c73fee0bfac7439"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gtk::CellRenderer::get_visible </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns the cell renderer's visibility. </p>
<dl class="since_2_18"><dt><b><a class="el" href="since_2_18.html#_since_2_18000017">Since gtkmm 2.18:</a></b></dt><dd></dd></dl>
<dl class="section return"><dt>Returns</dt><dd><code>true</code> if the cell renderer is visible. </dd></dl>
</div>
</div>
<a class="anchor" id="ae40a869d68ddeb2601ed46c955514688"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">GtkCellRenderer* Gtk::CellRenderer::gobj </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Provides access to the underlying C GtkObject. </p>
</div>
</div>
<a class="anchor" id="a8405f042907b039b6bd78882f4bdf8e7"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">const GtkCellRenderer* Gtk::CellRenderer::gobj </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Provides access to the underlying C GtkObject. </p>
</div>
</div>
<a class="anchor" id="a107db713a7444f11af9bd72d6201cc9e"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual void Gtk::CellRenderer::on_editing_canceled </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>This is a default handler for the signal <a class="el" href="classGtk_1_1CellRenderer.html#a7a9e1b577da34a65fd7fb101d877fe84" title="This signal is emitted when the user cancels the process of editing a cell. ">signal_editing_canceled()</a>. </p>
</div>
</div>
<a class="anchor" id="a1ea01a610f9c4f5b158f96a6b2c2898a"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__WriteOnly.html">Glib::PropertyProxy_WriteOnly</a>< <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> > Gtk::CellRenderer::property_cell_background </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Cell background color as a string. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy_WriteOnly that allows you to set the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="a0d2520461f8042aa7524b699463e9f6a"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< <a class="el" href="classGdk_1_1Color.html">Gdk::Color</a> > Gtk::CellRenderer::property_cell_background_gdk </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Cell background color as a GdkColor. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy that allows you to get or set the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="a3174150bd182fdc2e3d28739413ac70b"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< <a class="el" href="classGdk_1_1Color.html">Gdk::Color</a> > Gtk::CellRenderer::property_cell_background_gdk </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Cell background color as a GdkColor. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="a24ac2b32c9fd6ade15c5884448453209"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< bool > Gtk::CellRenderer::property_cell_background_set </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Whether this tag affects the cell background color. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy that allows you to get or set the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="a0ab6a8fe1117f68b7346b70f14a66e14"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< bool > Gtk::CellRenderer::property_cell_background_set </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Whether this tag affects the cell background color. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="ab5727620c167faa86c80ef982289443f"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< bool > Gtk::CellRenderer::property_editing </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Whether the cell renderer is currently in editing mode. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="a3bd864a4b69cc7f12d2d65128fc0c473"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< int > Gtk::CellRenderer::property_height </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>The fixed height. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy that allows you to get or set the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="ac9494446ea871ccc0fd124b72e2d7919"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< int > Gtk::CellRenderer::property_height </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>The fixed height. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="ab07bdc9a8dcaea453516a8490bad8adb"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< bool > Gtk::CellRenderer::property_is_expanded </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Row is an expander row, and is expanded. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy that allows you to get or set the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="a19a8cda9b10b2630166600db6c0c6ff4"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< bool > Gtk::CellRenderer::property_is_expanded </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Row is an expander row, and is expanded. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="a2b13f9463d1153b87f0d200714c30613"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< bool > Gtk::CellRenderer::property_is_expander </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Row has children. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy that allows you to get or set the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="a4055aea52dd16d8d6e825bf6a2f65849"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< bool > Gtk::CellRenderer::property_is_expander </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Row has children. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="a3deb3b229d34f94dfed24f126a8a22a3"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< <a class="el" href="group__gtkmmEnums.html#gaf272c01b5a3cb656e373301223b1eecf">CellRendererMode</a> > Gtk::CellRenderer::property_mode </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p><a class="el" href="classGtk_1_1Editable.html" title="Base class for text-editing widgets. ">Editable</a> mode of the <a class="el" href="classGtk_1_1CellRenderer.html" title="CellRenderers are used by Gtk::TreeView columns to render the Gtk::TreeModel column data appropriatel...">CellRenderer</a>. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy that allows you to get or set the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="a8601d9b681fac8cceef00064c0b616a1"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< <a class="el" href="group__gtkmmEnums.html#gaf272c01b5a3cb656e373301223b1eecf">CellRendererMode</a> > Gtk::CellRenderer::property_mode </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p><a class="el" href="classGtk_1_1Editable.html" title="Base class for text-editing widgets. ">Editable</a> mode of the <a class="el" href="classGtk_1_1CellRenderer.html" title="CellRenderers are used by Gtk::TreeView columns to render the Gtk::TreeModel column data appropriatel...">CellRenderer</a>. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="a02d86b5d3e6d8c01933005735eb8e3d4"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< bool > Gtk::CellRenderer::property_sensitive </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Display the cell sensitive. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy that allows you to get or set the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="a3f452bce914a2edaf5225c85b1f55c8a"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< bool > Gtk::CellRenderer::property_sensitive </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Display the cell sensitive. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="af53c9a1f308d36c6a67aaeee8a0639f6"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< bool > Gtk::CellRenderer::property_visible </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Display the cell. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy that allows you to get or set the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="a1f178e4d721133c849cd1c62cedfa953"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< bool > Gtk::CellRenderer::property_visible </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Display the cell. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="a9cd8190dff5232319e47c9744c09e579"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< int > Gtk::CellRenderer::property_width </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>The fixed width. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy that allows you to get or set the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="a50f20ba57f100d7adb4208914b74864b"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< int > Gtk::CellRenderer::property_width </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>The fixed width. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="a4b7c2f7b770b15ddbb054a908e4fc4f9"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< float > Gtk::CellRenderer::property_xalign </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>The x-align. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy that allows you to get or set the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="a04a5739aca52bce6175522ed6f7acca4"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< float > Gtk::CellRenderer::property_xalign </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>The x-align. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="a3086fd79c791011c53af6d30f8c869f7"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< unsigned int > Gtk::CellRenderer::property_xpad </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>The xpad. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy that allows you to get or set the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="aa8a72f3718b0e5d521cd94693129c1ef"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< unsigned int > Gtk::CellRenderer::property_xpad </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>The xpad. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="ac8d2a9a1df611b36924bb35fb99bb3f8"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< float > Gtk::CellRenderer::property_yalign </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>The y-align. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy that allows you to get or set the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="a488308c6e42ae10a4671bdd844d11c2f"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< float > Gtk::CellRenderer::property_yalign </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>The y-align. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="a300c8c7165aa2027b2b02d7017847888"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< unsigned int > Gtk::CellRenderer::property_ypad </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>The ypad. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy that allows you to get or set the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="ac83ab03cc7cccbb55433fe9d3f2c8805"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< unsigned int > Gtk::CellRenderer::property_ypad </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>The ypad. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="aead757c70a8a9d504a6295b7e9a44194"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::CellRenderer::render </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_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGdk_1_1Window.html">Gdk::Window</a> >& </td>
<td class="paramname"><em>window</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="classGtk_1_1Widget.html">Widget</a>& </td>
<td class="paramname"><em>widget</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="classGdk_1_1Rectangle.html">Gdk::Rectangle</a>& </td>
<td class="paramname"><em>background_area</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="classGdk_1_1Rectangle.html">Gdk::Rectangle</a>& </td>
<td class="paramname"><em>cell_area</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="classGdk_1_1Rectangle.html">Gdk::Rectangle</a>& </td>
<td class="paramname"><em>expose_area</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="group__gtkmmEnums.html#ga7061270b7c31ba72e053ab001ec2b877">CellRendererState</a> </td>
<td class="paramname"><em>flags</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Invokes the virtual render function of the <a class="el" href="classGtk_1_1CellRenderer.html" title="CellRenderers are used by Gtk::TreeView columns to render the Gtk::TreeModel column data appropriatel...">Gtk::CellRenderer</a>. </p>
<p>The three passed-in rectangles are areas of <em>window</em>. Most renderers will draw within <em>cell_area</em>; the xalign, yalign, xpad, and ypad fields of the <a class="el" href="classGtk_1_1CellRenderer.html" title="CellRenderers are used by Gtk::TreeView columns to render the Gtk::TreeModel column data appropriatel...">Gtk::CellRenderer</a> should be honored with respect to <em>cell_area</em>. <em>background_area</em> includes the blank space around the cell, and also the area containing the tree expander; so the <em>background_area</em> rectangles for all cells tile to cover the entire <em>window</em>. <em>expose_area</em> is a clip rectangle.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">window</td><td>A <a class="el" href="classGdk_1_1Drawable.html" title="Drawing Primitives. ">Gdk::Drawable</a> to draw to. </td></tr>
<tr><td class="paramname">widget</td><td>The widget owning <em>window</em>. </td></tr>
<tr><td class="paramname">background_area</td><td>Entire cell area (including tree expanders and maybe padding on the sides). </td></tr>
<tr><td class="paramname">cell_area</td><td>Area normally rendered by a cell renderer. </td></tr>
<tr><td class="paramname">expose_area</td><td>Area that actually needs updating. </td></tr>
<tr><td class="paramname">flags</td><td>Flags that affect rendering. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="ace15422f9ec1e800982209691e90ad09"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual void Gtk::CellRenderer::render_vfunc </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_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGdk_1_1Drawable.html">Gdk::Drawable</a> >& </td>
<td class="paramname"><em>window</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="classGtk_1_1Widget.html">Widget</a>& </td>
<td class="paramname"><em>widget</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="classGdk_1_1Rectangle.html">Gdk::Rectangle</a>& </td>
<td class="paramname"><em>background_area</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="classGdk_1_1Rectangle.html">Gdk::Rectangle</a>& </td>
<td class="paramname"><em>cell_area</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="classGdk_1_1Rectangle.html">Gdk::Rectangle</a>& </td>
<td class="paramname"><em>expose_area</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="group__gtkmmEnums.html#ga7061270b7c31ba72e053ab001ec2b877">CellRendererState</a> </td>
<td class="paramname"><em>flags</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="ab87c7a5e775872f3721ddbd6674e2252"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::CellRenderer::set_alignment </td>
<td>(</td>
<td class="paramtype">float </td>
<td class="paramname"><em>align</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">float </td>
<td class="paramname"><em>yalign</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets the renderer's alignment within its available space. </p>
<dl class="since_2_18"><dt><b><a class="el" href="since_2_18.html#_since_2_18000012">Since gtkmm 2.18:</a></b></dt><dd></dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">align</td><td>The x alignment of the cell renderer. </td></tr>
<tr><td class="paramname">yalign</td><td>The y alignment of the cell renderer. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a342d024078f987be56fe4e3d0e7fd3c4"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::CellRenderer::set_fixed_size </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"><em>width</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>height</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets the renderer size to be explicit, independent of the properties set. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">width</td><td>The width of the cell renderer, or -1. </td></tr>
<tr><td class="paramname">height</td><td>The height of the cell renderer, or -1. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="ab1aac5488c6d6340d6a3ec6065383381"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::CellRenderer::set_padding </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"><em>xpad</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>ypad</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets the renderer's padding. </p>
<dl class="since_2_18"><dt><b><a class="el" href="since_2_18.html#_since_2_18000014">Since gtkmm 2.18:</a></b></dt><dd></dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">xpad</td><td>The x padding of the cell renderer. </td></tr>
<tr><td class="paramname">ypad</td><td>The y padding of the cell renderer. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a464a4354cce4b7cf948d3fa7bccf1ddb"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::CellRenderer::set_sensitive </td>
<td>(</td>
<td class="paramtype">bool </td>
<td class="paramname"><em>sensitive</em> = <code>true</code></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets the cell renderer's sensitivity. </p>
<dl class="since_2_18"><dt><b><a class="el" href="since_2_18.html#_since_2_18000018">Since gtkmm 2.18:</a></b></dt><dd></dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">sensitive</td><td>The sensitivity of the cell. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a8b70ee1d03b79b89d4b537bd1a49d8fe"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::CellRenderer::set_visible </td>
<td>(</td>
<td class="paramtype">bool </td>
<td class="paramname"><em>visible</em> = <code>true</code></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets the cell renderer's visibility. </p>
<dl class="since_2_18"><dt><b><a class="el" href="since_2_18.html#_since_2_18000016">Since gtkmm 2.18:</a></b></dt><dd></dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">visible</td><td>The visibility of the cell. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a7a9e1b577da34a65fd7fb101d877fe84"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< void > Gtk::CellRenderer::signal_editing_canceled </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>This signal is emitted when the user cancels the process of editing a cell. </p>
<p>For example, an editable cell renderer could be written to cancel editing when the user presses Escape.</p>
<dl class="section see"><dt>See also</dt><dd><a class="el" href="classGtk_1_1CellRenderer.html#a9aaef65d7b80a4ad7378b20f76ef4760" title="Causes the cell renderer to emit the Gtk::CellRenderer::signal_editing_canceled() signal...">editing_canceled()</a></dd></dl>
<dl class="section user"><dt>Slot Prototype:</dt><dd><code>void on_my_editing_canceled()</code> </dd></dl>
</div>
</div>
<a class="anchor" id="af8880f851bbb20252262dbbcbf01522a"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< void,<a class="el" href="classGtk_1_1CellEditable.html">CellEditable</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>& > Gtk::CellRenderer::signal_editing_started </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>This signal gets emitted when a cell starts to be edited. </p>
<p>The indended use of this signal is to do special setup on <em>editable</em>, e.g. adding an <a class="el" href="classGtk_1_1EntryCompletion.html" title="Completion functionality for Gtk::Entry. ">EntryCompletion</a> or setting up additional columns in a <a class="el" href="classGtk_1_1ComboBox.html" title="A widget used to choose from a list of items. ">ComboBox</a>.</p>
<p>Note that GTK+ doesn't guarantee that cell renderers will continue to use the same kind of widget for editing in future releases, therefore you should check the type of <em>editable</em> before doing any specific setup.</p>
<p>Note that this signal does not work yet in gtkmm. See <a href="http://bugzilla.gnome.org/show_bug.cgi?id=301597">http://bugzilla.gnome.org/show_bug.cgi?id=301597</a></p>
<dl class="since_2_6"><dt><b><a class="el" href="since_2_6.html#_since_2_6000044">Since gtkmm 2.6:</a></b></dt><dd></dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">editable</td><td>the <a class="el" href="classGtk_1_1CellEditable.html" title="Interface for widgets which are used for editing cells. ">CellEditable</a>. </td></tr>
<tr><td class="paramname">path</td><td>the path identifying the edited cell.</td></tr>
</table>
</dd>
</dl>
<dl class="section user"><dt>Slot Prototype:</dt><dd><code>void on_my_editing_started(CellEditable* editable, 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)</code> </dd></dl>
</div>
</div>
<a class="anchor" id="aa21fc6826b9a3b0cb8a4dc364df7331e"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classGtk_1_1CellEditable.html">CellEditable</a>* Gtk::CellRenderer::start_editing </td>
<td>(</td>
<td class="paramtype">GdkEvent * </td>
<td class="paramname"><em>event</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="classGtk_1_1Widget.html">Widget</a>& </td>
<td class="paramname"><em>widget</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_1ustring.html">Glib::ustring</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="classGdk_1_1Rectangle.html">Gdk::Rectangle</a>& </td>
<td class="paramname"><em>background_area</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="classGdk_1_1Rectangle.html">Gdk::Rectangle</a>& </td>
<td class="paramname"><em>cell_area</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="group__gtkmmEnums.html#ga7061270b7c31ba72e053ab001ec2b877">CellRendererState</a> </td>
<td class="paramname"><em>flags</em> = <code><a class="el" href="group__gtkmmEnums.html#ga7061270b7c31ba72e053ab001ec2b877">CellRendererState</a>(0)</code> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Passes an activate event to the cell renderer for possible processing. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">event</td><td>A <a class="el" href="classGdk_1_1Event.html">Gdk::Event</a>. </td></tr>
<tr><td class="paramname">widget</td><td><a class="el" href="classGtk_1_1Widget.html" title="Abstract Widget (Base class for all widgets) ">Widget</a> that received the event. </td></tr>
<tr><td class="paramname">path</td><td>Widget-dependent string representation of the event location; e.g. for <a class="el" href="classGtk_1_1TreeView.html" title="The TreeView widget displays the model (Gtk::TreeModel) data and allows the user to interact with it...">Gtk::TreeView</a>, a string representation of <a class="el" href="classGtk_1_1TreePath.html" title="A path is essentially a potential node. ">Gtk::TreePath</a>. </td></tr>
<tr><td class="paramname">background_area</td><td>Background area as passed to <a class="el" href="classGtk_1_1CellRenderer.html#aead757c70a8a9d504a6295b7e9a44194" title="Invokes the virtual render function of the Gtk::CellRenderer. ">render()</a>. </td></tr>
<tr><td class="paramname">cell_area</td><td>Cell area as passed to <a class="el" href="classGtk_1_1CellRenderer.html#aead757c70a8a9d504a6295b7e9a44194" title="Invokes the virtual render function of the Gtk::CellRenderer. ">render()</a>. </td></tr>
<tr><td class="paramname">flags</td><td>Render flags. </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>A new <a class="el" href="classGtk_1_1CellEditable.html" title="Interface for widgets which are used for editing cells. ">Gtk::CellEditable</a>, or <code>nullptr</code>. </dd></dl>
</div>
</div>
<a class="anchor" id="ae2d7434b3e136ed8cabd7e312b0f3c81"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual <a class="el" href="classGtk_1_1CellEditable.html">CellEditable</a>* Gtk::CellRenderer::start_editing_vfunc </td>
<td>(</td>
<td class="paramtype">GdkEvent * </td>
<td class="paramname"><em>event</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="classGtk_1_1Widget.html">Widget</a>& </td>
<td class="paramname"><em>widget</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_1ustring.html">Glib::ustring</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="classGdk_1_1Rectangle.html">Gdk::Rectangle</a>& </td>
<td class="paramname"><em>background_area</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="classGdk_1_1Rectangle.html">Gdk::Rectangle</a>& </td>
<td class="paramname"><em>cell_area</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="group__gtkmmEnums.html#ga7061270b7c31ba72e053ab001ec2b877">CellRendererState</a> </td>
<td class="paramname"><em>flags</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="ab77106d860fed2839efeec69becde2a2"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::CellRenderer::stop_editing </td>
<td>(</td>
<td class="paramtype">bool </td>
<td class="paramname"><em>canceled</em> = <code>false</code></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Informs the cell renderer that the editing is stopped. </p>
<p>If <em>canceled</em> is <code>true</code>, the cell renderer will emit the <a class="el" href="classGtk_1_1CellRenderer.html#a7a9e1b577da34a65fd7fb101d877fe84" title="This signal is emitted when the user cancels the process of editing a cell. ">Gtk::CellRenderer::signal_editing_canceled()</a> signal.</p>
<p>This function should be called by cell renderer implementations in response to the <a class="el" href="classGtk_1_1CellEditable.html#a1d284887ce7c17b68e6e996e5a17db1d">Gtk::CellEditable::signal_editing_done()</a> signal of <a class="el" href="classGtk_1_1CellEditable.html" title="Interface for widgets which are used for editing cells. ">Gtk::CellEditable</a>.</p>
<dl class="since_2_6"><dt><b><a class="el" href="since_2_6.html#_since_2_6000043">Since gtkmm 2.6:</a></b></dt><dd></dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">canceled</td><td><code>true</code> if the editing has been canceled. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<h2 class="groupheader">Friends And Related Function Documentation</h2>
<a class="anchor" id="a7658018083799e3966942a4bd06dc7cf"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classGtk_1_1CellRenderer.html">Gtk::CellRenderer</a>* wrap </td>
<td>(</td>
<td class="paramtype">GtkCellRenderer * </td>
<td class="paramname"><em>object</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">bool </td>
<td class="paramname"><em>take_copy</em> = <code>false</code> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">related</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>A <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/namespaceGlib.html#a671306f4a3a0cae5ab4d7a9d54886592">Glib::wrap()</a> method for this object. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">object</td><td>The C instance. </td></tr>
<tr><td class="paramname">take_copy</td><td>False if the result should take ownership of the C instance. True if it should take a new copy or ref. </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>A C++ instance that wraps this C instance. </dd></dl>
</div>
</div>
<hr/>The documentation for this class was generated from the following file:<ul>
<li>gtkmm/cellrenderer.h</li>
</ul>
</div><!-- contents -->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated by  <a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.8.11
</small></address>
</body>
</html>
|