1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437
|
<!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::CellRendererText 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_1CellRendererText.html">CellRendererText</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_1CellRendererText-members.html">List of all members</a> </div>
<div class="headertitle">
<div class="title">Gtk::CellRendererText Class Reference<div class="ingroups"><a class="el" href="group__TreeView.html">TreeView Classes</a></div></div> </div>
</div><!--header-->
<div class="contents">
<p>Renders text in a cell.
<a href="classGtk_1_1CellRendererText.html#details">More...</a></p>
<div class="dynheader">
Inheritance diagram for Gtk::CellRendererText:</div>
<div class="dyncontent">
<div class="center"><img src="classGtk_1_1CellRendererText__inherit__graph.png" border="0" usemap="#Gtk_1_1CellRendererText_inherit__map" alt="Inheritance graph"/></div>
<map name="Gtk_1_1CellRendererText_inherit__map" id="Gtk_1_1CellRendererText_inherit__map">
<area shape="rect" id="node7" href="classGtk_1_1CellRendererAccel.html" title="Renders a keyboard accelerator in a cell " alt="" coords="5,453,161,480"/>
<area shape="rect" id="node8" href="classGtk_1_1CellRendererCombo.html" title="Renders a combobox in a cell. " alt="" coords="185,453,349,480"/>
<area shape="rect" id="node9" href="classGtk_1_1CellRendererSpin.html" title="Renders a spin button in a cell. " alt="" coords="374,453,523,480"/>
<area shape="rect" id="node2" href="classGtk_1_1CellRenderer.html" title="CellRenderers are used by Gtk::TreeView columns to render the Gtk::TreeModel column data appropriatel..." alt="" coords="206,304,329,331"/>
<area shape="rect" id="node3" 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="224,229,311,256"/>
<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_1Object.html" title="Glib::Object" alt="" coords="223,155,312,181"/>
<area shape="rect" id="node5" 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="208,80,327,107"/>
<area shape="rect" id="node6" 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="215,5,319,32"/>
</map>
<center><span class="legend">[<a href="graph_legend.html">legend</a>]</span></center></div>
<div class="dynheader">
Collaboration diagram for Gtk::CellRendererText:</div>
<div class="dyncontent">
<div class="center"><img src="classGtk_1_1CellRendererText__coll__graph.png" border="0" usemap="#Gtk_1_1CellRendererText_coll__map" alt="Collaboration graph"/></div>
<map name="Gtk_1_1CellRendererText_coll__map" id="Gtk_1_1CellRendererText_coll__map">
<area shape="rect" id="node2" href="classGtk_1_1CellRenderer.html" title="CellRenderers are used by Gtk::TreeView columns to render the Gtk::TreeModel column data appropriatel..." alt="" coords="18,304,141,331"/>
<area shape="rect" id="node3" 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="36,229,123,256"/>
<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_1Object.html" title="Glib::Object" alt="" coords="35,155,124,181"/>
<area shape="rect" id="node5" 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="20,80,139,107"/>
<area shape="rect" id="node6" 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="27,5,131,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:aa30ac5b14f6d57e4b020985394d8abe3"><td class="memItemLeft" align="right" valign="top">virtual </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1CellRendererText.html#aa30ac5b14f6d57e4b020985394d8abe3">~CellRendererText</a> ()</td></tr>
<tr class="separator:aa30ac5b14f6d57e4b020985394d8abe3"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4ffbd2c93cf18a88ca52a4bc39fe60ba"><td class="memItemLeft" align="right" valign="top">GtkCellRendererText* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1CellRendererText.html#a4ffbd2c93cf18a88ca52a4bc39fe60ba">gobj</a> ()</td></tr>
<tr class="memdesc:a4ffbd2c93cf18a88ca52a4bc39fe60ba"><td class="mdescLeft"> </td><td class="mdescRight">Provides access to the underlying C GtkObject. <a href="#a4ffbd2c93cf18a88ca52a4bc39fe60ba">More...</a><br /></td></tr>
<tr class="separator:a4ffbd2c93cf18a88ca52a4bc39fe60ba"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a8160d679ceb11793ab7cbcbaa4fa4c01"><td class="memItemLeft" align="right" valign="top">const GtkCellRendererText* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1CellRendererText.html#a8160d679ceb11793ab7cbcbaa4fa4c01">gobj</a> () const </td></tr>
<tr class="memdesc:a8160d679ceb11793ab7cbcbaa4fa4c01"><td class="mdescLeft"> </td><td class="mdescRight">Provides access to the underlying C GtkObject. <a href="#a8160d679ceb11793ab7cbcbaa4fa4c01">More...</a><br /></td></tr>
<tr class="separator:a8160d679ceb11793ab7cbcbaa4fa4c01"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a51a95de8de0a705102bd384e558844fe"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1CellRendererText.html#a51a95de8de0a705102bd384e558844fe">CellRendererText</a> ()</td></tr>
<tr class="separator:a51a95de8de0a705102bd384e558844fe"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a6562695b656b1bf47b547a975a7aad87"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1CellRendererText.html#a6562695b656b1bf47b547a975a7aad87">set_fixed_height_from_font</a> (int number_of_rows)</td></tr>
<tr class="memdesc:a6562695b656b1bf47b547a975a7aad87"><td class="mdescLeft"> </td><td class="mdescRight">Sets the height of a renderer to explicitly be determined by the "font" and "y_pad" property set on it. <a href="#a6562695b656b1bf47b547a975a7aad87">More...</a><br /></td></tr>
<tr class="separator:a6562695b656b1bf47b547a975a7aad87"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a8197b68290056cd2ce2f4645ddf564ec"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< void, const <a class="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>&, 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_1CellRendererText.html#a8197b68290056cd2ce2f4645ddf564ec">signal_edited</a> ()</td></tr>
<tr class="separator:a8197b68290056cd2ce2f4645ddf564ec"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a16b3a8e3b526f26b42e26d2a33389763"><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="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_1CellRendererText.html#a16b3a8e3b526f26b42e26d2a33389763">property_text</a> ()</td></tr>
<tr class="memdesc:a16b3a8e3b526f26b42e26d2a33389763"><td class="mdescLeft"> </td><td class="mdescRight">Text to render. <a href="#a16b3a8e3b526f26b42e26d2a33389763">More...</a><br /></td></tr>
<tr class="separator:a16b3a8e3b526f26b42e26d2a33389763"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a72a85af4d5411855471d09facab1ee22"><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="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_1CellRendererText.html#a72a85af4d5411855471d09facab1ee22">property_text</a> () const </td></tr>
<tr class="memdesc:a72a85af4d5411855471d09facab1ee22"><td class="mdescLeft"> </td><td class="mdescRight">Text to render. <a href="#a72a85af4d5411855471d09facab1ee22">More...</a><br /></td></tr>
<tr class="separator:a72a85af4d5411855471d09facab1ee22"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1aaa78c29f39106e2dcffb913d500ee8"><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_1CellRendererText.html#a1aaa78c29f39106e2dcffb913d500ee8">property_markup</a> ()</td></tr>
<tr class="memdesc:a1aaa78c29f39106e2dcffb913d500ee8"><td class="mdescLeft"> </td><td class="mdescRight">Marked up text to render. <a href="#a1aaa78c29f39106e2dcffb913d500ee8">More...</a><br /></td></tr>
<tr class="separator:a1aaa78c29f39106e2dcffb913d500ee8"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae2706db479edc3753664173bfadbddbe"><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="elRef" doxygen="pangomm-1.4.tag:http://library.gnome.org/devel/pangomm/unstable/" href="http://library.gnome.org/devel/pangomm/unstable/classPango_1_1AttrList.html">Pango::AttrList</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1CellRendererText.html#ae2706db479edc3753664173bfadbddbe">property_attributes</a> ()</td></tr>
<tr class="memdesc:ae2706db479edc3753664173bfadbddbe"><td class="mdescLeft"> </td><td class="mdescRight">A list of style attributes to apply to the text of the renderer. <a href="#ae2706db479edc3753664173bfadbddbe">More...</a><br /></td></tr>
<tr class="separator:ae2706db479edc3753664173bfadbddbe"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a978e351cf8f8ddefe865524a5f09e097"><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="elRef" doxygen="pangomm-1.4.tag:http://library.gnome.org/devel/pangomm/unstable/" href="http://library.gnome.org/devel/pangomm/unstable/classPango_1_1AttrList.html">Pango::AttrList</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1CellRendererText.html#a978e351cf8f8ddefe865524a5f09e097">property_attributes</a> () const </td></tr>
<tr class="memdesc:a978e351cf8f8ddefe865524a5f09e097"><td class="mdescLeft"> </td><td class="mdescRight">A list of style attributes to apply to the text of the renderer. <a href="#a978e351cf8f8ddefe865524a5f09e097">More...</a><br /></td></tr>
<tr class="separator:a978e351cf8f8ddefe865524a5f09e097"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1831ef58ade6c9ada86c830f6d4693a0"><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_1CellRendererText.html#a1831ef58ade6c9ada86c830f6d4693a0">property_background</a> ()</td></tr>
<tr class="memdesc:a1831ef58ade6c9ada86c830f6d4693a0"><td class="mdescLeft"> </td><td class="mdescRight">Background color as a string. <a href="#a1831ef58ade6c9ada86c830f6d4693a0">More...</a><br /></td></tr>
<tr class="separator:a1831ef58ade6c9ada86c830f6d4693a0"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aee20faf7aa3b3f644a24786a22335974"><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_1CellRendererText.html#aee20faf7aa3b3f644a24786a22335974">property_foreground</a> ()</td></tr>
<tr class="memdesc:aee20faf7aa3b3f644a24786a22335974"><td class="mdescLeft"> </td><td class="mdescRight">Foreground color as a string. <a href="#aee20faf7aa3b3f644a24786a22335974">More...</a><br /></td></tr>
<tr class="separator:aee20faf7aa3b3f644a24786a22335974"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad786fe64c877425a3ad1b543c92497b6"><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_1CellRendererText.html#ad786fe64c877425a3ad1b543c92497b6">property_background_gdk</a> ()</td></tr>
<tr class="memdesc:ad786fe64c877425a3ad1b543c92497b6"><td class="mdescLeft"> </td><td class="mdescRight">Background color as a GdkColor. <a href="#ad786fe64c877425a3ad1b543c92497b6">More...</a><br /></td></tr>
<tr class="separator:ad786fe64c877425a3ad1b543c92497b6"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad3bad77e11c4d7501545096a13df0ab4"><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_1CellRendererText.html#ad3bad77e11c4d7501545096a13df0ab4">property_background_gdk</a> () const </td></tr>
<tr class="memdesc:ad3bad77e11c4d7501545096a13df0ab4"><td class="mdescLeft"> </td><td class="mdescRight">Background color as a GdkColor. <a href="#ad3bad77e11c4d7501545096a13df0ab4">More...</a><br /></td></tr>
<tr class="separator:ad3bad77e11c4d7501545096a13df0ab4"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a03af05fd55babe62801b140e40f647ff"><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_1CellRendererText.html#a03af05fd55babe62801b140e40f647ff">property_foreground_gdk</a> ()</td></tr>
<tr class="memdesc:a03af05fd55babe62801b140e40f647ff"><td class="mdescLeft"> </td><td class="mdescRight">Foreground color as a GdkColor. <a href="#a03af05fd55babe62801b140e40f647ff">More...</a><br /></td></tr>
<tr class="separator:a03af05fd55babe62801b140e40f647ff"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a8656fc13ef11ff1eed982964bde8f1fd"><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_1CellRendererText.html#a8656fc13ef11ff1eed982964bde8f1fd">property_foreground_gdk</a> () const </td></tr>
<tr class="memdesc:a8656fc13ef11ff1eed982964bde8f1fd"><td class="mdescLeft"> </td><td class="mdescRight">Foreground color as a GdkColor. <a href="#a8656fc13ef11ff1eed982964bde8f1fd">More...</a><br /></td></tr>
<tr class="separator:a8656fc13ef11ff1eed982964bde8f1fd"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4e10548cca6f5abf048f09edc3c2c4e1"><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="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_1CellRendererText.html#a4e10548cca6f5abf048f09edc3c2c4e1">property_font</a> ()</td></tr>
<tr class="memdesc:a4e10548cca6f5abf048f09edc3c2c4e1"><td class="mdescLeft"> </td><td class="mdescRight">Font description as a string, e.g. <a href="#a4e10548cca6f5abf048f09edc3c2c4e1">More...</a><br /></td></tr>
<tr class="separator:a4e10548cca6f5abf048f09edc3c2c4e1"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9bd9b5ed559d95557f96f6d618978af8"><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="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_1CellRendererText.html#a9bd9b5ed559d95557f96f6d618978af8">property_font</a> () const </td></tr>
<tr class="memdesc:a9bd9b5ed559d95557f96f6d618978af8"><td class="mdescLeft"> </td><td class="mdescRight">Font description as a string, e.g. <a href="#a9bd9b5ed559d95557f96f6d618978af8">More...</a><br /></td></tr>
<tr class="separator:a9bd9b5ed559d95557f96f6d618978af8"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:afeda2c2a29e81517f2c00a59e449564c"><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="elRef" doxygen="pangomm-1.4.tag:http://library.gnome.org/devel/pangomm/unstable/" href="http://library.gnome.org/devel/pangomm/unstable/classPango_1_1FontDescription.html">Pango::FontDescription</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1CellRendererText.html#afeda2c2a29e81517f2c00a59e449564c">property_font_desc</a> ()</td></tr>
<tr class="memdesc:afeda2c2a29e81517f2c00a59e449564c"><td class="mdescLeft"> </td><td class="mdescRight">Font description as a PangoFontDescription struct. <a href="#afeda2c2a29e81517f2c00a59e449564c">More...</a><br /></td></tr>
<tr class="separator:afeda2c2a29e81517f2c00a59e449564c"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9e1261f684ff28bb90cf1f80c6a39f0a"><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="elRef" doxygen="pangomm-1.4.tag:http://library.gnome.org/devel/pangomm/unstable/" href="http://library.gnome.org/devel/pangomm/unstable/classPango_1_1FontDescription.html">Pango::FontDescription</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1CellRendererText.html#a9e1261f684ff28bb90cf1f80c6a39f0a">property_font_desc</a> () const </td></tr>
<tr class="memdesc:a9e1261f684ff28bb90cf1f80c6a39f0a"><td class="mdescLeft"> </td><td class="mdescRight">Font description as a PangoFontDescription struct. <a href="#a9e1261f684ff28bb90cf1f80c6a39f0a">More...</a><br /></td></tr>
<tr class="separator:a9e1261f684ff28bb90cf1f80c6a39f0a"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a240ce2ec252417c2999991e324b3a49e"><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="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_1CellRendererText.html#a240ce2ec252417c2999991e324b3a49e">property_family</a> ()</td></tr>
<tr class="memdesc:a240ce2ec252417c2999991e324b3a49e"><td class="mdescLeft"> </td><td class="mdescRight">Name of the font family, e.g. <a href="#a240ce2ec252417c2999991e324b3a49e">More...</a><br /></td></tr>
<tr class="separator:a240ce2ec252417c2999991e324b3a49e"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac3fef9a8398b3565f4ec9610815cd7aa"><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="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_1CellRendererText.html#ac3fef9a8398b3565f4ec9610815cd7aa">property_family</a> () const </td></tr>
<tr class="memdesc:ac3fef9a8398b3565f4ec9610815cd7aa"><td class="mdescLeft"> </td><td class="mdescRight">Name of the font family, e.g. <a href="#ac3fef9a8398b3565f4ec9610815cd7aa">More...</a><br /></td></tr>
<tr class="separator:ac3fef9a8398b3565f4ec9610815cd7aa"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aff701fd164f7a60920e1b75ab1925d42"><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="elRef" doxygen="pangomm-1.4.tag:http://library.gnome.org/devel/pangomm/unstable/" href="http://library.gnome.org/devel/pangomm/unstable/group__pangommEnums.html#ga0a57bd35d5acd409367672e19b67e2f5">Pango::Style</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1CellRendererText.html#aff701fd164f7a60920e1b75ab1925d42">property_style</a> ()</td></tr>
<tr class="memdesc:aff701fd164f7a60920e1b75ab1925d42"><td class="mdescLeft"> </td><td class="mdescRight">Font style. <a href="#aff701fd164f7a60920e1b75ab1925d42">More...</a><br /></td></tr>
<tr class="separator:aff701fd164f7a60920e1b75ab1925d42"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af5674794a6c49103c5dfb2eea5e8eb2d"><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="elRef" doxygen="pangomm-1.4.tag:http://library.gnome.org/devel/pangomm/unstable/" href="http://library.gnome.org/devel/pangomm/unstable/group__pangommEnums.html#ga0a57bd35d5acd409367672e19b67e2f5">Pango::Style</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1CellRendererText.html#af5674794a6c49103c5dfb2eea5e8eb2d">property_style</a> () const </td></tr>
<tr class="memdesc:af5674794a6c49103c5dfb2eea5e8eb2d"><td class="mdescLeft"> </td><td class="mdescRight">Font style. <a href="#af5674794a6c49103c5dfb2eea5e8eb2d">More...</a><br /></td></tr>
<tr class="separator:af5674794a6c49103c5dfb2eea5e8eb2d"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a25ea25bbfcb169efa578b65648b30281"><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="elRef" doxygen="pangomm-1.4.tag:http://library.gnome.org/devel/pangomm/unstable/" href="http://library.gnome.org/devel/pangomm/unstable/group__pangommEnums.html#ga30ba1457cecb545a04d1f029ca0e86ed">Pango::Variant</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1CellRendererText.html#a25ea25bbfcb169efa578b65648b30281">property_variant</a> ()</td></tr>
<tr class="memdesc:a25ea25bbfcb169efa578b65648b30281"><td class="mdescLeft"> </td><td class="mdescRight">Font variant. <a href="#a25ea25bbfcb169efa578b65648b30281">More...</a><br /></td></tr>
<tr class="separator:a25ea25bbfcb169efa578b65648b30281"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa7de611cfece664ea31594ac1c0dc1c1"><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="elRef" doxygen="pangomm-1.4.tag:http://library.gnome.org/devel/pangomm/unstable/" href="http://library.gnome.org/devel/pangomm/unstable/group__pangommEnums.html#ga30ba1457cecb545a04d1f029ca0e86ed">Pango::Variant</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1CellRendererText.html#aa7de611cfece664ea31594ac1c0dc1c1">property_variant</a> () const </td></tr>
<tr class="memdesc:aa7de611cfece664ea31594ac1c0dc1c1"><td class="mdescLeft"> </td><td class="mdescRight">Font variant. <a href="#aa7de611cfece664ea31594ac1c0dc1c1">More...</a><br /></td></tr>
<tr class="separator:aa7de611cfece664ea31594ac1c0dc1c1"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2ade25456e249c3d63708db760908dc3"><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_1CellRendererText.html#a2ade25456e249c3d63708db760908dc3">property_weight</a> ()</td></tr>
<tr class="memdesc:a2ade25456e249c3d63708db760908dc3"><td class="mdescLeft"> </td><td class="mdescRight">Font weight. <a href="#a2ade25456e249c3d63708db760908dc3">More...</a><br /></td></tr>
<tr class="separator:a2ade25456e249c3d63708db760908dc3"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:afef5a2377400d306bbd3a0aaa1d16942"><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_1CellRendererText.html#afef5a2377400d306bbd3a0aaa1d16942">property_weight</a> () const </td></tr>
<tr class="memdesc:afef5a2377400d306bbd3a0aaa1d16942"><td class="mdescLeft"> </td><td class="mdescRight">Font weight. <a href="#afef5a2377400d306bbd3a0aaa1d16942">More...</a><br /></td></tr>
<tr class="separator:afef5a2377400d306bbd3a0aaa1d16942"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4a7a77cc901721a6a4240dd96aa599cb"><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="elRef" doxygen="pangomm-1.4.tag:http://library.gnome.org/devel/pangomm/unstable/" href="http://library.gnome.org/devel/pangomm/unstable/group__pangommEnums.html#gac2df3c6939d06e2cd565e9c943428ad3">Pango::Stretch</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1CellRendererText.html#a4a7a77cc901721a6a4240dd96aa599cb">property_stretch</a> ()</td></tr>
<tr class="memdesc:a4a7a77cc901721a6a4240dd96aa599cb"><td class="mdescLeft"> </td><td class="mdescRight">Font stretch. <a href="#a4a7a77cc901721a6a4240dd96aa599cb">More...</a><br /></td></tr>
<tr class="separator:a4a7a77cc901721a6a4240dd96aa599cb"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aac8c1062abcd242fc83f14da22e0261e"><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="elRef" doxygen="pangomm-1.4.tag:http://library.gnome.org/devel/pangomm/unstable/" href="http://library.gnome.org/devel/pangomm/unstable/group__pangommEnums.html#gac2df3c6939d06e2cd565e9c943428ad3">Pango::Stretch</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1CellRendererText.html#aac8c1062abcd242fc83f14da22e0261e">property_stretch</a> () const </td></tr>
<tr class="memdesc:aac8c1062abcd242fc83f14da22e0261e"><td class="mdescLeft"> </td><td class="mdescRight">Font stretch. <a href="#aac8c1062abcd242fc83f14da22e0261e">More...</a><br /></td></tr>
<tr class="separator:aac8c1062abcd242fc83f14da22e0261e"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a90e37a18ad088ab5cb7f061bcb9b1db0"><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_1CellRendererText.html#a90e37a18ad088ab5cb7f061bcb9b1db0">property_size</a> ()</td></tr>
<tr class="memdesc:a90e37a18ad088ab5cb7f061bcb9b1db0"><td class="mdescLeft"> </td><td class="mdescRight">Font size. <a href="#a90e37a18ad088ab5cb7f061bcb9b1db0">More...</a><br /></td></tr>
<tr class="separator:a90e37a18ad088ab5cb7f061bcb9b1db0"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae8ea63d91e6b62ef511233caf393e7b6"><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_1CellRendererText.html#ae8ea63d91e6b62ef511233caf393e7b6">property_size</a> () const </td></tr>
<tr class="memdesc:ae8ea63d91e6b62ef511233caf393e7b6"><td class="mdescLeft"> </td><td class="mdescRight">Font size. <a href="#ae8ea63d91e6b62ef511233caf393e7b6">More...</a><br /></td></tr>
<tr class="separator:ae8ea63d91e6b62ef511233caf393e7b6"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9e1410e5a1df4e92b12cc6a9f32d44b7"><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>< double > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1CellRendererText.html#a9e1410e5a1df4e92b12cc6a9f32d44b7">property_size_points</a> ()</td></tr>
<tr class="memdesc:a9e1410e5a1df4e92b12cc6a9f32d44b7"><td class="mdescLeft"> </td><td class="mdescRight">Font size in points. <a href="#a9e1410e5a1df4e92b12cc6a9f32d44b7">More...</a><br /></td></tr>
<tr class="separator:a9e1410e5a1df4e92b12cc6a9f32d44b7"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab91e27eb48be773b24f7c01c48eb2e13"><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>< double > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1CellRendererText.html#ab91e27eb48be773b24f7c01c48eb2e13">property_size_points</a> () const </td></tr>
<tr class="memdesc:ab91e27eb48be773b24f7c01c48eb2e13"><td class="mdescLeft"> </td><td class="mdescRight">Font size in points. <a href="#ab91e27eb48be773b24f7c01c48eb2e13">More...</a><br /></td></tr>
<tr class="separator:ab91e27eb48be773b24f7c01c48eb2e13"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a001afcfcb244f08be93c7c8ff53e68b2"><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>< double > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1CellRendererText.html#a001afcfcb244f08be93c7c8ff53e68b2">property_scale</a> ()</td></tr>
<tr class="memdesc:a001afcfcb244f08be93c7c8ff53e68b2"><td class="mdescLeft"> </td><td class="mdescRight">Font scaling factor. <a href="#a001afcfcb244f08be93c7c8ff53e68b2">More...</a><br /></td></tr>
<tr class="separator:a001afcfcb244f08be93c7c8ff53e68b2"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a01eb5f080dcff311c22bbac1faf325a7"><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>< double > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1CellRendererText.html#a01eb5f080dcff311c22bbac1faf325a7">property_scale</a> () const </td></tr>
<tr class="memdesc:a01eb5f080dcff311c22bbac1faf325a7"><td class="mdescLeft"> </td><td class="mdescRight">Font scaling factor. <a href="#a01eb5f080dcff311c22bbac1faf325a7">More...</a><br /></td></tr>
<tr class="separator:a01eb5f080dcff311c22bbac1faf325a7"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5fe559fb3d312ba68734f29c8d8f6abe"><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_1CellRendererText.html#a5fe559fb3d312ba68734f29c8d8f6abe">property_editable</a> ()</td></tr>
<tr class="memdesc:a5fe559fb3d312ba68734f29c8d8f6abe"><td class="mdescLeft"> </td><td class="mdescRight">Whether the text can be modified by the user. <a href="#a5fe559fb3d312ba68734f29c8d8f6abe">More...</a><br /></td></tr>
<tr class="separator:a5fe559fb3d312ba68734f29c8d8f6abe"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a911ac5e0286fd6db63ac4b01fbf18f58"><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_1CellRendererText.html#a911ac5e0286fd6db63ac4b01fbf18f58">property_editable</a> () const </td></tr>
<tr class="memdesc:a911ac5e0286fd6db63ac4b01fbf18f58"><td class="mdescLeft"> </td><td class="mdescRight">Whether the text can be modified by the user. <a href="#a911ac5e0286fd6db63ac4b01fbf18f58">More...</a><br /></td></tr>
<tr class="separator:a911ac5e0286fd6db63ac4b01fbf18f58"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ada109a94faed8feec76511226b018c31"><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_1CellRendererText.html#ada109a94faed8feec76511226b018c31">property_strikethrough</a> ()</td></tr>
<tr class="memdesc:ada109a94faed8feec76511226b018c31"><td class="mdescLeft"> </td><td class="mdescRight">Whether to strike through the text. <a href="#ada109a94faed8feec76511226b018c31">More...</a><br /></td></tr>
<tr class="separator:ada109a94faed8feec76511226b018c31"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa823936c3392c98edcce74453b93bfa0"><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_1CellRendererText.html#aa823936c3392c98edcce74453b93bfa0">property_strikethrough</a> () const </td></tr>
<tr class="memdesc:aa823936c3392c98edcce74453b93bfa0"><td class="mdescLeft"> </td><td class="mdescRight">Whether to strike through the text. <a href="#aa823936c3392c98edcce74453b93bfa0">More...</a><br /></td></tr>
<tr class="separator:aa823936c3392c98edcce74453b93bfa0"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac01c2d4a3ce38b48e0eadc80840d86f7"><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="elRef" doxygen="pangomm-1.4.tag:http://library.gnome.org/devel/pangomm/unstable/" href="http://library.gnome.org/devel/pangomm/unstable/group__pangommEnums.html#gabbd069e35161c1ad698b7f1fe70aec57">Pango::Underline</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1CellRendererText.html#ac01c2d4a3ce38b48e0eadc80840d86f7">property_underline</a> ()</td></tr>
<tr class="memdesc:ac01c2d4a3ce38b48e0eadc80840d86f7"><td class="mdescLeft"> </td><td class="mdescRight"><a class="el" href="classGtk_1_1Style.html">Style</a> of underline for this text. <a href="#ac01c2d4a3ce38b48e0eadc80840d86f7">More...</a><br /></td></tr>
<tr class="separator:ac01c2d4a3ce38b48e0eadc80840d86f7"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad33b3011ea88c5abddc6393261322fbe"><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="elRef" doxygen="pangomm-1.4.tag:http://library.gnome.org/devel/pangomm/unstable/" href="http://library.gnome.org/devel/pangomm/unstable/group__pangommEnums.html#gabbd069e35161c1ad698b7f1fe70aec57">Pango::Underline</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1CellRendererText.html#ad33b3011ea88c5abddc6393261322fbe">property_underline</a> () const </td></tr>
<tr class="memdesc:ad33b3011ea88c5abddc6393261322fbe"><td class="mdescLeft"> </td><td class="mdescRight"><a class="el" href="classGtk_1_1Style.html">Style</a> of underline for this text. <a href="#ad33b3011ea88c5abddc6393261322fbe">More...</a><br /></td></tr>
<tr class="separator:ad33b3011ea88c5abddc6393261322fbe"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5307feac2b1dfb5eadd1cc63f9429968"><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_1CellRendererText.html#a5307feac2b1dfb5eadd1cc63f9429968">property_rise</a> ()</td></tr>
<tr class="memdesc:a5307feac2b1dfb5eadd1cc63f9429968"><td class="mdescLeft"> </td><td class="mdescRight">Offset of text above the baseline (below the baseline if rise is negative). <a href="#a5307feac2b1dfb5eadd1cc63f9429968">More...</a><br /></td></tr>
<tr class="separator:a5307feac2b1dfb5eadd1cc63f9429968"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa02bb2c2a58780587a68bbfcaed6024d"><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_1CellRendererText.html#aa02bb2c2a58780587a68bbfcaed6024d">property_rise</a> () const </td></tr>
<tr class="memdesc:aa02bb2c2a58780587a68bbfcaed6024d"><td class="mdescLeft"> </td><td class="mdescRight">Offset of text above the baseline (below the baseline if rise is negative). <a href="#aa02bb2c2a58780587a68bbfcaed6024d">More...</a><br /></td></tr>
<tr class="separator:aa02bb2c2a58780587a68bbfcaed6024d"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab9a7f9edcb00be7b32cf9d35767557d8"><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="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_1CellRendererText.html#ab9a7f9edcb00be7b32cf9d35767557d8">property_language</a> ()</td></tr>
<tr class="memdesc:ab9a7f9edcb00be7b32cf9d35767557d8"><td class="mdescLeft"> </td><td class="mdescRight">The language this text is in, as an ISO code. <a href="#ab9a7f9edcb00be7b32cf9d35767557d8">More...</a><br /></td></tr>
<tr class="separator:ab9a7f9edcb00be7b32cf9d35767557d8"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae9fa8e87ae34704f8f0b1b45016c2f35"><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="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_1CellRendererText.html#ae9fa8e87ae34704f8f0b1b45016c2f35">property_language</a> () const </td></tr>
<tr class="memdesc:ae9fa8e87ae34704f8f0b1b45016c2f35"><td class="mdescLeft"> </td><td class="mdescRight">The language this text is in, as an ISO code. <a href="#ae9fa8e87ae34704f8f0b1b45016c2f35">More...</a><br /></td></tr>
<tr class="separator:ae9fa8e87ae34704f8f0b1b45016c2f35"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ace14d59242935c417096fb53509ebbb2"><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="elRef" doxygen="pangomm-1.4.tag:http://library.gnome.org/devel/pangomm/unstable/" href="http://library.gnome.org/devel/pangomm/unstable/group__pangommEnums.html#ga982cbecf0c4ee56766aab816a7f5ed0b">Pango::EllipsizeMode</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1CellRendererText.html#ace14d59242935c417096fb53509ebbb2">property_ellipsize</a> ()</td></tr>
<tr class="memdesc:ace14d59242935c417096fb53509ebbb2"><td class="mdescLeft"> </td><td class="mdescRight">The preferred place to ellipsize the string, if the cell renderer does not have enough room to display the entire string. <a href="#ace14d59242935c417096fb53509ebbb2">More...</a><br /></td></tr>
<tr class="separator:ace14d59242935c417096fb53509ebbb2"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9e267a60691b2606cc8a3de57dbd4e96"><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="elRef" doxygen="pangomm-1.4.tag:http://library.gnome.org/devel/pangomm/unstable/" href="http://library.gnome.org/devel/pangomm/unstable/group__pangommEnums.html#ga982cbecf0c4ee56766aab816a7f5ed0b">Pango::EllipsizeMode</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1CellRendererText.html#a9e267a60691b2606cc8a3de57dbd4e96">property_ellipsize</a> () const </td></tr>
<tr class="memdesc:a9e267a60691b2606cc8a3de57dbd4e96"><td class="mdescLeft"> </td><td class="mdescRight">The preferred place to ellipsize the string, if the cell renderer does not have enough room to display the entire string. <a href="#a9e267a60691b2606cc8a3de57dbd4e96">More...</a><br /></td></tr>
<tr class="separator:a9e267a60691b2606cc8a3de57dbd4e96"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a0cac4bfea19568add198eeaab7df0e82"><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_1CellRendererText.html#a0cac4bfea19568add198eeaab7df0e82">property_width_chars</a> ()</td></tr>
<tr class="memdesc:a0cac4bfea19568add198eeaab7df0e82"><td class="mdescLeft"> </td><td class="mdescRight">The desired width of the label, in characters. <a href="#a0cac4bfea19568add198eeaab7df0e82">More...</a><br /></td></tr>
<tr class="separator:a0cac4bfea19568add198eeaab7df0e82"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a0176526c58da6c49a7eec5335eda7ad2"><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_1CellRendererText.html#a0176526c58da6c49a7eec5335eda7ad2">property_width_chars</a> () const </td></tr>
<tr class="memdesc:a0176526c58da6c49a7eec5335eda7ad2"><td class="mdescLeft"> </td><td class="mdescRight">The desired width of the label, in characters. <a href="#a0176526c58da6c49a7eec5335eda7ad2">More...</a><br /></td></tr>
<tr class="separator:a0176526c58da6c49a7eec5335eda7ad2"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a72d49ef956acb0237c066cf6ce8cd7ed"><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="elRef" doxygen="pangomm-1.4.tag:http://library.gnome.org/devel/pangomm/unstable/" href="http://library.gnome.org/devel/pangomm/unstable/group__pangommEnums.html#gad57530f0324d4fd9e8a2fcec904ab240">Pango::WrapMode</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1CellRendererText.html#a72d49ef956acb0237c066cf6ce8cd7ed">property_wrap_mode</a> ()</td></tr>
<tr class="memdesc:a72d49ef956acb0237c066cf6ce8cd7ed"><td class="mdescLeft"> </td><td class="mdescRight">How to break the string into multiple lines, if the cell renderer does not have enough room to display the entire string. <a href="#a72d49ef956acb0237c066cf6ce8cd7ed">More...</a><br /></td></tr>
<tr class="separator:a72d49ef956acb0237c066cf6ce8cd7ed"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a7b968703ef9ca97bc6fad571a4b272bf"><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="elRef" doxygen="pangomm-1.4.tag:http://library.gnome.org/devel/pangomm/unstable/" href="http://library.gnome.org/devel/pangomm/unstable/group__pangommEnums.html#gad57530f0324d4fd9e8a2fcec904ab240">Pango::WrapMode</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1CellRendererText.html#a7b968703ef9ca97bc6fad571a4b272bf">property_wrap_mode</a> () const </td></tr>
<tr class="memdesc:a7b968703ef9ca97bc6fad571a4b272bf"><td class="mdescLeft"> </td><td class="mdescRight">How to break the string into multiple lines, if the cell renderer does not have enough room to display the entire string. <a href="#a7b968703ef9ca97bc6fad571a4b272bf">More...</a><br /></td></tr>
<tr class="separator:a7b968703ef9ca97bc6fad571a4b272bf"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a90920ae30815dbe63377e71305931117"><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_1CellRendererText.html#a90920ae30815dbe63377e71305931117">property_wrap_width</a> ()</td></tr>
<tr class="memdesc:a90920ae30815dbe63377e71305931117"><td class="mdescLeft"> </td><td class="mdescRight">The width at which the text is wrapped. <a href="#a90920ae30815dbe63377e71305931117">More...</a><br /></td></tr>
<tr class="separator:a90920ae30815dbe63377e71305931117"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:afe46401f9da7ecbd63446a9c24161017"><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_1CellRendererText.html#afe46401f9da7ecbd63446a9c24161017">property_wrap_width</a> () const </td></tr>
<tr class="memdesc:afe46401f9da7ecbd63446a9c24161017"><td class="mdescLeft"> </td><td class="mdescRight">The width at which the text is wrapped. <a href="#afe46401f9da7ecbd63446a9c24161017">More...</a><br /></td></tr>
<tr class="separator:afe46401f9da7ecbd63446a9c24161017"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a3fa4f0f5f3ce31da77b203ac3a31fef1"><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="elRef" doxygen="pangomm-1.4.tag:http://library.gnome.org/devel/pangomm/unstable/" href="http://library.gnome.org/devel/pangomm/unstable/group__pangommEnums.html#gaf6b8926663368e305380e01f8858caca">Pango::Alignment</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1CellRendererText.html#a3fa4f0f5f3ce31da77b203ac3a31fef1">property_alignment</a> ()</td></tr>
<tr class="memdesc:a3fa4f0f5f3ce31da77b203ac3a31fef1"><td class="mdescLeft"> </td><td class="mdescRight">How to align the lines. <a href="#a3fa4f0f5f3ce31da77b203ac3a31fef1">More...</a><br /></td></tr>
<tr class="separator:a3fa4f0f5f3ce31da77b203ac3a31fef1"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:acc95246d701385af70871162a23eab22"><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="elRef" doxygen="pangomm-1.4.tag:http://library.gnome.org/devel/pangomm/unstable/" href="http://library.gnome.org/devel/pangomm/unstable/group__pangommEnums.html#gaf6b8926663368e305380e01f8858caca">Pango::Alignment</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1CellRendererText.html#acc95246d701385af70871162a23eab22">property_alignment</a> () const </td></tr>
<tr class="memdesc:acc95246d701385af70871162a23eab22"><td class="mdescLeft"> </td><td class="mdescRight">How to align the lines. <a href="#acc95246d701385af70871162a23eab22">More...</a><br /></td></tr>
<tr class="separator:acc95246d701385af70871162a23eab22"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab44071bc6725104945d559abf8bfbaac"><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_1CellRendererText.html#ab44071bc6725104945d559abf8bfbaac">property_background_set</a> ()</td></tr>
<tr class="memdesc:ab44071bc6725104945d559abf8bfbaac"><td class="mdescLeft"> </td><td class="mdescRight">Whether this tag affects the background color. <a href="#ab44071bc6725104945d559abf8bfbaac">More...</a><br /></td></tr>
<tr class="separator:ab44071bc6725104945d559abf8bfbaac"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a8d8b402009c0256cffd0bf2f9ca85d0e"><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_1CellRendererText.html#a8d8b402009c0256cffd0bf2f9ca85d0e">property_background_set</a> () const </td></tr>
<tr class="memdesc:a8d8b402009c0256cffd0bf2f9ca85d0e"><td class="mdescLeft"> </td><td class="mdescRight">Whether this tag affects the background color. <a href="#a8d8b402009c0256cffd0bf2f9ca85d0e">More...</a><br /></td></tr>
<tr class="separator:a8d8b402009c0256cffd0bf2f9ca85d0e"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a272009a063251ea04ba4c11790cea736"><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_1CellRendererText.html#a272009a063251ea04ba4c11790cea736">property_foreground_set</a> ()</td></tr>
<tr class="memdesc:a272009a063251ea04ba4c11790cea736"><td class="mdescLeft"> </td><td class="mdescRight">Whether this tag affects the foreground color. <a href="#a272009a063251ea04ba4c11790cea736">More...</a><br /></td></tr>
<tr class="separator:a272009a063251ea04ba4c11790cea736"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a13a5e1df196e654781a4dcf21d7bf6c1"><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_1CellRendererText.html#a13a5e1df196e654781a4dcf21d7bf6c1">property_foreground_set</a> () const </td></tr>
<tr class="memdesc:a13a5e1df196e654781a4dcf21d7bf6c1"><td class="mdescLeft"> </td><td class="mdescRight">Whether this tag affects the foreground color. <a href="#a13a5e1df196e654781a4dcf21d7bf6c1">More...</a><br /></td></tr>
<tr class="separator:a13a5e1df196e654781a4dcf21d7bf6c1"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a6839ca0090c4ad591a5066276020c8cd"><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_1CellRendererText.html#a6839ca0090c4ad591a5066276020c8cd">property_family_set</a> ()</td></tr>
<tr class="memdesc:a6839ca0090c4ad591a5066276020c8cd"><td class="mdescLeft"> </td><td class="mdescRight">Whether this tag affects the font family. <a href="#a6839ca0090c4ad591a5066276020c8cd">More...</a><br /></td></tr>
<tr class="separator:a6839ca0090c4ad591a5066276020c8cd"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a76e8dc29ddc372d2965c38c6b0cfc23d"><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_1CellRendererText.html#a76e8dc29ddc372d2965c38c6b0cfc23d">property_family_set</a> () const </td></tr>
<tr class="memdesc:a76e8dc29ddc372d2965c38c6b0cfc23d"><td class="mdescLeft"> </td><td class="mdescRight">Whether this tag affects the font family. <a href="#a76e8dc29ddc372d2965c38c6b0cfc23d">More...</a><br /></td></tr>
<tr class="separator:a76e8dc29ddc372d2965c38c6b0cfc23d"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a349f5676f84dbbe2638ae2736a984a0d"><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_1CellRendererText.html#a349f5676f84dbbe2638ae2736a984a0d">property_style_set</a> ()</td></tr>
<tr class="memdesc:a349f5676f84dbbe2638ae2736a984a0d"><td class="mdescLeft"> </td><td class="mdescRight">Whether this tag affects the font style. <a href="#a349f5676f84dbbe2638ae2736a984a0d">More...</a><br /></td></tr>
<tr class="separator:a349f5676f84dbbe2638ae2736a984a0d"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a731c00bc532bc58e2eba5bb0a50cdaab"><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_1CellRendererText.html#a731c00bc532bc58e2eba5bb0a50cdaab">property_style_set</a> () const </td></tr>
<tr class="memdesc:a731c00bc532bc58e2eba5bb0a50cdaab"><td class="mdescLeft"> </td><td class="mdescRight">Whether this tag affects the font style. <a href="#a731c00bc532bc58e2eba5bb0a50cdaab">More...</a><br /></td></tr>
<tr class="separator:a731c00bc532bc58e2eba5bb0a50cdaab"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a540176f4e372175e8f6ee120dc8a6e55"><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_1CellRendererText.html#a540176f4e372175e8f6ee120dc8a6e55">property_variant_set</a> ()</td></tr>
<tr class="memdesc:a540176f4e372175e8f6ee120dc8a6e55"><td class="mdescLeft"> </td><td class="mdescRight">Whether this tag affects the font variant. <a href="#a540176f4e372175e8f6ee120dc8a6e55">More...</a><br /></td></tr>
<tr class="separator:a540176f4e372175e8f6ee120dc8a6e55"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:adc7f68740208cc073cf72381fb46f42b"><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_1CellRendererText.html#adc7f68740208cc073cf72381fb46f42b">property_variant_set</a> () const </td></tr>
<tr class="memdesc:adc7f68740208cc073cf72381fb46f42b"><td class="mdescLeft"> </td><td class="mdescRight">Whether this tag affects the font variant. <a href="#adc7f68740208cc073cf72381fb46f42b">More...</a><br /></td></tr>
<tr class="separator:adc7f68740208cc073cf72381fb46f42b"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9cda8ef9fc909781e0179c1ce7a9af07"><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_1CellRendererText.html#a9cda8ef9fc909781e0179c1ce7a9af07">property_weight_set</a> ()</td></tr>
<tr class="memdesc:a9cda8ef9fc909781e0179c1ce7a9af07"><td class="mdescLeft"> </td><td class="mdescRight">Whether this tag affects the font weight. <a href="#a9cda8ef9fc909781e0179c1ce7a9af07">More...</a><br /></td></tr>
<tr class="separator:a9cda8ef9fc909781e0179c1ce7a9af07"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a19db0097e0e806e6b7f9228febdd580a"><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_1CellRendererText.html#a19db0097e0e806e6b7f9228febdd580a">property_weight_set</a> () const </td></tr>
<tr class="memdesc:a19db0097e0e806e6b7f9228febdd580a"><td class="mdescLeft"> </td><td class="mdescRight">Whether this tag affects the font weight. <a href="#a19db0097e0e806e6b7f9228febdd580a">More...</a><br /></td></tr>
<tr class="separator:a19db0097e0e806e6b7f9228febdd580a"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4cd435e41dda86ab62ca926a19e87497"><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_1CellRendererText.html#a4cd435e41dda86ab62ca926a19e87497">property_stretch_set</a> ()</td></tr>
<tr class="memdesc:a4cd435e41dda86ab62ca926a19e87497"><td class="mdescLeft"> </td><td class="mdescRight">Whether this tag affects the font stretch. <a href="#a4cd435e41dda86ab62ca926a19e87497">More...</a><br /></td></tr>
<tr class="separator:a4cd435e41dda86ab62ca926a19e87497"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a32a748f5ad31c1e77e593da136124ff3"><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_1CellRendererText.html#a32a748f5ad31c1e77e593da136124ff3">property_stretch_set</a> () const </td></tr>
<tr class="memdesc:a32a748f5ad31c1e77e593da136124ff3"><td class="mdescLeft"> </td><td class="mdescRight">Whether this tag affects the font stretch. <a href="#a32a748f5ad31c1e77e593da136124ff3">More...</a><br /></td></tr>
<tr class="separator:a32a748f5ad31c1e77e593da136124ff3"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1deae8414d6ae2cede9f9164448b83b7"><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_1CellRendererText.html#a1deae8414d6ae2cede9f9164448b83b7">property_size_set</a> ()</td></tr>
<tr class="memdesc:a1deae8414d6ae2cede9f9164448b83b7"><td class="mdescLeft"> </td><td class="mdescRight">Whether this tag affects the font size. <a href="#a1deae8414d6ae2cede9f9164448b83b7">More...</a><br /></td></tr>
<tr class="separator:a1deae8414d6ae2cede9f9164448b83b7"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1e582bb0e8a26fbaa89a30f1288e4a39"><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_1CellRendererText.html#a1e582bb0e8a26fbaa89a30f1288e4a39">property_size_set</a> () const </td></tr>
<tr class="memdesc:a1e582bb0e8a26fbaa89a30f1288e4a39"><td class="mdescLeft"> </td><td class="mdescRight">Whether this tag affects the font size. <a href="#a1e582bb0e8a26fbaa89a30f1288e4a39">More...</a><br /></td></tr>
<tr class="separator:a1e582bb0e8a26fbaa89a30f1288e4a39"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4730679c1c83e36b4594154caa12e9e2"><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_1CellRendererText.html#a4730679c1c83e36b4594154caa12e9e2">property_scale_set</a> ()</td></tr>
<tr class="memdesc:a4730679c1c83e36b4594154caa12e9e2"><td class="mdescLeft"> </td><td class="mdescRight">Whether this tag scales the font size by a factor. <a href="#a4730679c1c83e36b4594154caa12e9e2">More...</a><br /></td></tr>
<tr class="separator:a4730679c1c83e36b4594154caa12e9e2"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a81e399499ab0d6b1eac1c26dd2949159"><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_1CellRendererText.html#a81e399499ab0d6b1eac1c26dd2949159">property_scale_set</a> () const </td></tr>
<tr class="memdesc:a81e399499ab0d6b1eac1c26dd2949159"><td class="mdescLeft"> </td><td class="mdescRight">Whether this tag scales the font size by a factor. <a href="#a81e399499ab0d6b1eac1c26dd2949159">More...</a><br /></td></tr>
<tr class="separator:a81e399499ab0d6b1eac1c26dd2949159"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a992ae709215b40725b29e5e0c8f1e765"><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_1CellRendererText.html#a992ae709215b40725b29e5e0c8f1e765">property_editable_set</a> ()</td></tr>
<tr class="memdesc:a992ae709215b40725b29e5e0c8f1e765"><td class="mdescLeft"> </td><td class="mdescRight">Whether this tag affects text editability. <a href="#a992ae709215b40725b29e5e0c8f1e765">More...</a><br /></td></tr>
<tr class="separator:a992ae709215b40725b29e5e0c8f1e765"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a34f3bec7989b8cf6574364daad4c4484"><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_1CellRendererText.html#a34f3bec7989b8cf6574364daad4c4484">property_editable_set</a> () const </td></tr>
<tr class="memdesc:a34f3bec7989b8cf6574364daad4c4484"><td class="mdescLeft"> </td><td class="mdescRight">Whether this tag affects text editability. <a href="#a34f3bec7989b8cf6574364daad4c4484">More...</a><br /></td></tr>
<tr class="separator:a34f3bec7989b8cf6574364daad4c4484"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a584d1ae0e4070eabb5bc2eae1691b9cf"><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_1CellRendererText.html#a584d1ae0e4070eabb5bc2eae1691b9cf">property_strikethrough_set</a> ()</td></tr>
<tr class="memdesc:a584d1ae0e4070eabb5bc2eae1691b9cf"><td class="mdescLeft"> </td><td class="mdescRight">Whether this tag affects strikethrough. <a href="#a584d1ae0e4070eabb5bc2eae1691b9cf">More...</a><br /></td></tr>
<tr class="separator:a584d1ae0e4070eabb5bc2eae1691b9cf"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a8d617fcf6a5ce4298e92054e9665046d"><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_1CellRendererText.html#a8d617fcf6a5ce4298e92054e9665046d">property_strikethrough_set</a> () const </td></tr>
<tr class="memdesc:a8d617fcf6a5ce4298e92054e9665046d"><td class="mdescLeft"> </td><td class="mdescRight">Whether this tag affects strikethrough. <a href="#a8d617fcf6a5ce4298e92054e9665046d">More...</a><br /></td></tr>
<tr class="separator:a8d617fcf6a5ce4298e92054e9665046d"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a6467db349a72582bf9f535742f074684"><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_1CellRendererText.html#a6467db349a72582bf9f535742f074684">property_underline_set</a> ()</td></tr>
<tr class="memdesc:a6467db349a72582bf9f535742f074684"><td class="mdescLeft"> </td><td class="mdescRight">Whether this tag affects underlining. <a href="#a6467db349a72582bf9f535742f074684">More...</a><br /></td></tr>
<tr class="separator:a6467db349a72582bf9f535742f074684"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a134d9cb6763ad959e3be6d1988a1647f"><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_1CellRendererText.html#a134d9cb6763ad959e3be6d1988a1647f">property_underline_set</a> () const </td></tr>
<tr class="memdesc:a134d9cb6763ad959e3be6d1988a1647f"><td class="mdescLeft"> </td><td class="mdescRight">Whether this tag affects underlining. <a href="#a134d9cb6763ad959e3be6d1988a1647f">More...</a><br /></td></tr>
<tr class="separator:a134d9cb6763ad959e3be6d1988a1647f"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab39b0740553ab6d2ade153911d016d01"><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_1CellRendererText.html#ab39b0740553ab6d2ade153911d016d01">property_rise_set</a> ()</td></tr>
<tr class="memdesc:ab39b0740553ab6d2ade153911d016d01"><td class="mdescLeft"> </td><td class="mdescRight">Whether this tag affects the rise. <a href="#ab39b0740553ab6d2ade153911d016d01">More...</a><br /></td></tr>
<tr class="separator:ab39b0740553ab6d2ade153911d016d01"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a65e239b80dfa2a32152bf37e7ac443c3"><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_1CellRendererText.html#a65e239b80dfa2a32152bf37e7ac443c3">property_rise_set</a> () const </td></tr>
<tr class="memdesc:a65e239b80dfa2a32152bf37e7ac443c3"><td class="mdescLeft"> </td><td class="mdescRight">Whether this tag affects the rise. <a href="#a65e239b80dfa2a32152bf37e7ac443c3">More...</a><br /></td></tr>
<tr class="separator:a65e239b80dfa2a32152bf37e7ac443c3"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a6b896cae706f947b01ccd4101c85e657"><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_1CellRendererText.html#a6b896cae706f947b01ccd4101c85e657">property_language_set</a> ()</td></tr>
<tr class="memdesc:a6b896cae706f947b01ccd4101c85e657"><td class="mdescLeft"> </td><td class="mdescRight">Whether this tag affects the language the text is rendered as. <a href="#a6b896cae706f947b01ccd4101c85e657">More...</a><br /></td></tr>
<tr class="separator:a6b896cae706f947b01ccd4101c85e657"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a25e6a1bd2232d3f737a299a9f1bf587c"><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_1CellRendererText.html#a25e6a1bd2232d3f737a299a9f1bf587c">property_language_set</a> () const </td></tr>
<tr class="memdesc:a25e6a1bd2232d3f737a299a9f1bf587c"><td class="mdescLeft"> </td><td class="mdescRight">Whether this tag affects the language the text is rendered as. <a href="#a25e6a1bd2232d3f737a299a9f1bf587c">More...</a><br /></td></tr>
<tr class="separator:a25e6a1bd2232d3f737a299a9f1bf587c"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa1db4f8f50b6477821048ff44a5fb0c0"><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_1CellRendererText.html#aa1db4f8f50b6477821048ff44a5fb0c0">property_ellipsize_set</a> ()</td></tr>
<tr class="memdesc:aa1db4f8f50b6477821048ff44a5fb0c0"><td class="mdescLeft"> </td><td class="mdescRight">Whether this tag affects the ellipsize mode. <a href="#aa1db4f8f50b6477821048ff44a5fb0c0">More...</a><br /></td></tr>
<tr class="separator:aa1db4f8f50b6477821048ff44a5fb0c0"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a349950a0d0d2bd01725a3b5add794945"><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_1CellRendererText.html#a349950a0d0d2bd01725a3b5add794945">property_ellipsize_set</a> () const </td></tr>
<tr class="memdesc:a349950a0d0d2bd01725a3b5add794945"><td class="mdescLeft"> </td><td class="mdescRight">Whether this tag affects the ellipsize mode. <a href="#a349950a0d0d2bd01725a3b5add794945">More...</a><br /></td></tr>
<tr class="separator:a349950a0d0d2bd01725a3b5add794945"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa8682c512f393c80581fddd9900e4048"><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_1CellRendererText.html#aa8682c512f393c80581fddd9900e4048">property_single_paragraph_mode</a> ()</td></tr>
<tr class="memdesc:aa8682c512f393c80581fddd9900e4048"><td class="mdescLeft"> </td><td class="mdescRight">Whether or not to keep all text in a single paragraph. <a href="#aa8682c512f393c80581fddd9900e4048">More...</a><br /></td></tr>
<tr class="separator:aa8682c512f393c80581fddd9900e4048"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac9bf82ce5d2d105d9863236558a22bec"><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_1CellRendererText.html#ac9bf82ce5d2d105d9863236558a22bec">property_single_paragraph_mode</a> () const </td></tr>
<tr class="memdesc:ac9bf82ce5d2d105d9863236558a22bec"><td class="mdescLeft"> </td><td class="mdescRight">Whether or not to keep all text in a single paragraph. <a href="#ac9bf82ce5d2d105d9863236558a22bec">More...</a><br /></td></tr>
<tr class="separator:ac9bf82ce5d2d105d9863236558a22bec"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pub_methods_classGtk_1_1CellRenderer"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classGtk_1_1CellRenderer')"><img src="closed.png" alt="-"/> Public Member Functions inherited from <a class="el" href="classGtk_1_1CellRenderer.html">Gtk::CellRenderer</a></td></tr>
<tr class="memitem:aa4fb8ad72b75ac4a0b036eb21669e049 inherit pub_methods_classGtk_1_1CellRenderer"><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 inherit pub_methods_classGtk_1_1CellRenderer"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae40a869d68ddeb2601ed46c955514688 inherit pub_methods_classGtk_1_1CellRenderer"><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 inherit pub_methods_classGtk_1_1CellRenderer"><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 inherit pub_methods_classGtk_1_1CellRenderer"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a8405f042907b039b6bd78882f4bdf8e7 inherit pub_methods_classGtk_1_1CellRenderer"><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 inherit pub_methods_classGtk_1_1CellRenderer"><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 inherit pub_methods_classGtk_1_1CellRenderer"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a42e1a19fdd781118ac13858b328a6d82 inherit pub_methods_classGtk_1_1CellRenderer"><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 inherit pub_methods_classGtk_1_1CellRenderer"><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 inherit pub_methods_classGtk_1_1CellRenderer"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae59ae85702686c19cb37c620e3a318e4 inherit pub_methods_classGtk_1_1CellRenderer"><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 inherit pub_methods_classGtk_1_1CellRenderer"><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 inherit pub_methods_classGtk_1_1CellRenderer"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aead757c70a8a9d504a6295b7e9a44194 inherit pub_methods_classGtk_1_1CellRenderer"><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 inherit pub_methods_classGtk_1_1CellRenderer"><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 inherit pub_methods_classGtk_1_1CellRenderer"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa345ce649c2b2dced98c865ea2eec55d inherit pub_methods_classGtk_1_1CellRenderer"><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 inherit pub_methods_classGtk_1_1CellRenderer"><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 inherit pub_methods_classGtk_1_1CellRenderer"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa21fc6826b9a3b0cb8a4dc364df7331e inherit pub_methods_classGtk_1_1CellRenderer"><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 inherit pub_methods_classGtk_1_1CellRenderer"><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 inherit pub_methods_classGtk_1_1CellRenderer"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a342d024078f987be56fe4e3d0e7fd3c4 inherit pub_methods_classGtk_1_1CellRenderer"><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 inherit pub_methods_classGtk_1_1CellRenderer"><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 inherit pub_methods_classGtk_1_1CellRenderer"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad1913dacd0141352029934ed6e96dd45 inherit pub_methods_classGtk_1_1CellRenderer"><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 inherit pub_methods_classGtk_1_1CellRenderer"><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 inherit pub_methods_classGtk_1_1CellRenderer"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab87c7a5e775872f3721ddbd6674e2252 inherit pub_methods_classGtk_1_1CellRenderer"><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 inherit pub_methods_classGtk_1_1CellRenderer"><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 inherit pub_methods_classGtk_1_1CellRenderer"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a885d825836256119e16df0e995fd81a4 inherit pub_methods_classGtk_1_1CellRenderer"><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 inherit pub_methods_classGtk_1_1CellRenderer"><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 inherit pub_methods_classGtk_1_1CellRenderer"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab1aac5488c6d6340d6a3ec6065383381 inherit pub_methods_classGtk_1_1CellRenderer"><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 inherit pub_methods_classGtk_1_1CellRenderer"><td class="mdescLeft"> </td><td class="mdescRight">Sets the renderer's padding. <a href="#ab1aac5488c6d6340d6a3ec6065383381">More...</a><br /></td></tr>
<tr class="separator:ab1aac5488c6d6340d6a3ec6065383381 inherit pub_methods_classGtk_1_1CellRenderer"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a730191d2c7cd5623f96ca1458ff4aee6 inherit pub_methods_classGtk_1_1CellRenderer"><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 inherit pub_methods_classGtk_1_1CellRenderer"><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 inherit pub_methods_classGtk_1_1CellRenderer"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a8b70ee1d03b79b89d4b537bd1a49d8fe inherit pub_methods_classGtk_1_1CellRenderer"><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 inherit pub_methods_classGtk_1_1CellRenderer"><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 inherit pub_methods_classGtk_1_1CellRenderer"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af8eb8055f961005e0c73fee0bfac7439 inherit pub_methods_classGtk_1_1CellRenderer"><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 inherit pub_methods_classGtk_1_1CellRenderer"><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 inherit pub_methods_classGtk_1_1CellRenderer"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a464a4354cce4b7cf948d3fa7bccf1ddb inherit pub_methods_classGtk_1_1CellRenderer"><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 inherit pub_methods_classGtk_1_1CellRenderer"><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 inherit pub_methods_classGtk_1_1CellRenderer"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a25b0c5a7d474e60dc16337ed0933e991 inherit pub_methods_classGtk_1_1CellRenderer"><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 inherit pub_methods_classGtk_1_1CellRenderer"><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 inherit pub_methods_classGtk_1_1CellRenderer"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9aaef65d7b80a4ad7378b20f76ef4760 inherit pub_methods_classGtk_1_1CellRenderer"><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 inherit pub_methods_classGtk_1_1CellRenderer"><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 inherit pub_methods_classGtk_1_1CellRenderer"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab77106d860fed2839efeec69becde2a2 inherit pub_methods_classGtk_1_1CellRenderer"><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 inherit pub_methods_classGtk_1_1CellRenderer"><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 inherit pub_methods_classGtk_1_1CellRenderer"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a7a9e1b577da34a65fd7fb101d877fe84 inherit pub_methods_classGtk_1_1CellRenderer"><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 inherit pub_methods_classGtk_1_1CellRenderer"><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 inherit pub_methods_classGtk_1_1CellRenderer"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af8880f851bbb20252262dbbcbf01522a inherit pub_methods_classGtk_1_1CellRenderer"><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 inherit pub_methods_classGtk_1_1CellRenderer"><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 inherit pub_methods_classGtk_1_1CellRenderer"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a3deb3b229d34f94dfed24f126a8a22a3 inherit pub_methods_classGtk_1_1CellRenderer"><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 inherit pub_methods_classGtk_1_1CellRenderer"><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 inherit pub_methods_classGtk_1_1CellRenderer"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a8601d9b681fac8cceef00064c0b616a1 inherit pub_methods_classGtk_1_1CellRenderer"><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 inherit pub_methods_classGtk_1_1CellRenderer"><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 inherit pub_methods_classGtk_1_1CellRenderer"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af53c9a1f308d36c6a67aaeee8a0639f6 inherit pub_methods_classGtk_1_1CellRenderer"><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 inherit pub_methods_classGtk_1_1CellRenderer"><td class="mdescLeft"> </td><td class="mdescRight">Display the cell. <a href="#af53c9a1f308d36c6a67aaeee8a0639f6">More...</a><br /></td></tr>
<tr class="separator:af53c9a1f308d36c6a67aaeee8a0639f6 inherit pub_methods_classGtk_1_1CellRenderer"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1f178e4d721133c849cd1c62cedfa953 inherit pub_methods_classGtk_1_1CellRenderer"><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 inherit pub_methods_classGtk_1_1CellRenderer"><td class="mdescLeft"> </td><td class="mdescRight">Display the cell. <a href="#a1f178e4d721133c849cd1c62cedfa953">More...</a><br /></td></tr>
<tr class="separator:a1f178e4d721133c849cd1c62cedfa953 inherit pub_methods_classGtk_1_1CellRenderer"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a02d86b5d3e6d8c01933005735eb8e3d4 inherit pub_methods_classGtk_1_1CellRenderer"><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 inherit pub_methods_classGtk_1_1CellRenderer"><td class="mdescLeft"> </td><td class="mdescRight">Display the cell sensitive. <a href="#a02d86b5d3e6d8c01933005735eb8e3d4">More...</a><br /></td></tr>
<tr class="separator:a02d86b5d3e6d8c01933005735eb8e3d4 inherit pub_methods_classGtk_1_1CellRenderer"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a3f452bce914a2edaf5225c85b1f55c8a inherit pub_methods_classGtk_1_1CellRenderer"><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 inherit pub_methods_classGtk_1_1CellRenderer"><td class="mdescLeft"> </td><td class="mdescRight">Display the cell sensitive. <a href="#a3f452bce914a2edaf5225c85b1f55c8a">More...</a><br /></td></tr>
<tr class="separator:a3f452bce914a2edaf5225c85b1f55c8a inherit pub_methods_classGtk_1_1CellRenderer"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4b7c2f7b770b15ddbb054a908e4fc4f9 inherit pub_methods_classGtk_1_1CellRenderer"><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 inherit pub_methods_classGtk_1_1CellRenderer"><td class="mdescLeft"> </td><td class="mdescRight">The x-align. <a href="#a4b7c2f7b770b15ddbb054a908e4fc4f9">More...</a><br /></td></tr>
<tr class="separator:a4b7c2f7b770b15ddbb054a908e4fc4f9 inherit pub_methods_classGtk_1_1CellRenderer"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a04a5739aca52bce6175522ed6f7acca4 inherit pub_methods_classGtk_1_1CellRenderer"><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 inherit pub_methods_classGtk_1_1CellRenderer"><td class="mdescLeft"> </td><td class="mdescRight">The x-align. <a href="#a04a5739aca52bce6175522ed6f7acca4">More...</a><br /></td></tr>
<tr class="separator:a04a5739aca52bce6175522ed6f7acca4 inherit pub_methods_classGtk_1_1CellRenderer"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac8d2a9a1df611b36924bb35fb99bb3f8 inherit pub_methods_classGtk_1_1CellRenderer"><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 inherit pub_methods_classGtk_1_1CellRenderer"><td class="mdescLeft"> </td><td class="mdescRight">The y-align. <a href="#ac8d2a9a1df611b36924bb35fb99bb3f8">More...</a><br /></td></tr>
<tr class="separator:ac8d2a9a1df611b36924bb35fb99bb3f8 inherit pub_methods_classGtk_1_1CellRenderer"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a488308c6e42ae10a4671bdd844d11c2f inherit pub_methods_classGtk_1_1CellRenderer"><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 inherit pub_methods_classGtk_1_1CellRenderer"><td class="mdescLeft"> </td><td class="mdescRight">The y-align. <a href="#a488308c6e42ae10a4671bdd844d11c2f">More...</a><br /></td></tr>
<tr class="separator:a488308c6e42ae10a4671bdd844d11c2f inherit pub_methods_classGtk_1_1CellRenderer"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a3086fd79c791011c53af6d30f8c869f7 inherit pub_methods_classGtk_1_1CellRenderer"><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 inherit pub_methods_classGtk_1_1CellRenderer"><td class="mdescLeft"> </td><td class="mdescRight">The xpad. <a href="#a3086fd79c791011c53af6d30f8c869f7">More...</a><br /></td></tr>
<tr class="separator:a3086fd79c791011c53af6d30f8c869f7 inherit pub_methods_classGtk_1_1CellRenderer"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa8a72f3718b0e5d521cd94693129c1ef inherit pub_methods_classGtk_1_1CellRenderer"><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 inherit pub_methods_classGtk_1_1CellRenderer"><td class="mdescLeft"> </td><td class="mdescRight">The xpad. <a href="#aa8a72f3718b0e5d521cd94693129c1ef">More...</a><br /></td></tr>
<tr class="separator:aa8a72f3718b0e5d521cd94693129c1ef inherit pub_methods_classGtk_1_1CellRenderer"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a300c8c7165aa2027b2b02d7017847888 inherit pub_methods_classGtk_1_1CellRenderer"><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 inherit pub_methods_classGtk_1_1CellRenderer"><td class="mdescLeft"> </td><td class="mdescRight">The ypad. <a href="#a300c8c7165aa2027b2b02d7017847888">More...</a><br /></td></tr>
<tr class="separator:a300c8c7165aa2027b2b02d7017847888 inherit pub_methods_classGtk_1_1CellRenderer"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac83ab03cc7cccbb55433fe9d3f2c8805 inherit pub_methods_classGtk_1_1CellRenderer"><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 inherit pub_methods_classGtk_1_1CellRenderer"><td class="mdescLeft"> </td><td class="mdescRight">The ypad. <a href="#ac83ab03cc7cccbb55433fe9d3f2c8805">More...</a><br /></td></tr>
<tr class="separator:ac83ab03cc7cccbb55433fe9d3f2c8805 inherit pub_methods_classGtk_1_1CellRenderer"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9cd8190dff5232319e47c9744c09e579 inherit pub_methods_classGtk_1_1CellRenderer"><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 inherit pub_methods_classGtk_1_1CellRenderer"><td class="mdescLeft"> </td><td class="mdescRight">The fixed width. <a href="#a9cd8190dff5232319e47c9744c09e579">More...</a><br /></td></tr>
<tr class="separator:a9cd8190dff5232319e47c9744c09e579 inherit pub_methods_classGtk_1_1CellRenderer"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a50f20ba57f100d7adb4208914b74864b inherit pub_methods_classGtk_1_1CellRenderer"><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 inherit pub_methods_classGtk_1_1CellRenderer"><td class="mdescLeft"> </td><td class="mdescRight">The fixed width. <a href="#a50f20ba57f100d7adb4208914b74864b">More...</a><br /></td></tr>
<tr class="separator:a50f20ba57f100d7adb4208914b74864b inherit pub_methods_classGtk_1_1CellRenderer"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a3bd864a4b69cc7f12d2d65128fc0c473 inherit pub_methods_classGtk_1_1CellRenderer"><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 inherit pub_methods_classGtk_1_1CellRenderer"><td class="mdescLeft"> </td><td class="mdescRight">The fixed height. <a href="#a3bd864a4b69cc7f12d2d65128fc0c473">More...</a><br /></td></tr>
<tr class="separator:a3bd864a4b69cc7f12d2d65128fc0c473 inherit pub_methods_classGtk_1_1CellRenderer"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac9494446ea871ccc0fd124b72e2d7919 inherit pub_methods_classGtk_1_1CellRenderer"><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 inherit pub_methods_classGtk_1_1CellRenderer"><td class="mdescLeft"> </td><td class="mdescRight">The fixed height. <a href="#ac9494446ea871ccc0fd124b72e2d7919">More...</a><br /></td></tr>
<tr class="separator:ac9494446ea871ccc0fd124b72e2d7919 inherit pub_methods_classGtk_1_1CellRenderer"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2b13f9463d1153b87f0d200714c30613 inherit pub_methods_classGtk_1_1CellRenderer"><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 inherit pub_methods_classGtk_1_1CellRenderer"><td class="mdescLeft"> </td><td class="mdescRight">Row has children. <a href="#a2b13f9463d1153b87f0d200714c30613">More...</a><br /></td></tr>
<tr class="separator:a2b13f9463d1153b87f0d200714c30613 inherit pub_methods_classGtk_1_1CellRenderer"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4055aea52dd16d8d6e825bf6a2f65849 inherit pub_methods_classGtk_1_1CellRenderer"><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 inherit pub_methods_classGtk_1_1CellRenderer"><td class="mdescLeft"> </td><td class="mdescRight">Row has children. <a href="#a4055aea52dd16d8d6e825bf6a2f65849">More...</a><br /></td></tr>
<tr class="separator:a4055aea52dd16d8d6e825bf6a2f65849 inherit pub_methods_classGtk_1_1CellRenderer"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab07bdc9a8dcaea453516a8490bad8adb inherit pub_methods_classGtk_1_1CellRenderer"><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 inherit pub_methods_classGtk_1_1CellRenderer"><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 inherit pub_methods_classGtk_1_1CellRenderer"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a19a8cda9b10b2630166600db6c0c6ff4 inherit pub_methods_classGtk_1_1CellRenderer"><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 inherit pub_methods_classGtk_1_1CellRenderer"><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 inherit pub_methods_classGtk_1_1CellRenderer"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1ea01a610f9c4f5b158f96a6b2c2898a inherit pub_methods_classGtk_1_1CellRenderer"><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 inherit pub_methods_classGtk_1_1CellRenderer"><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 inherit pub_methods_classGtk_1_1CellRenderer"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a0d2520461f8042aa7524b699463e9f6a inherit pub_methods_classGtk_1_1CellRenderer"><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 inherit pub_methods_classGtk_1_1CellRenderer"><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 inherit pub_methods_classGtk_1_1CellRenderer"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a3174150bd182fdc2e3d28739413ac70b inherit pub_methods_classGtk_1_1CellRenderer"><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 inherit pub_methods_classGtk_1_1CellRenderer"><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 inherit pub_methods_classGtk_1_1CellRenderer"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a24ac2b32c9fd6ade15c5884448453209 inherit pub_methods_classGtk_1_1CellRenderer"><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 inherit pub_methods_classGtk_1_1CellRenderer"><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 inherit pub_methods_classGtk_1_1CellRenderer"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a0ab6a8fe1117f68b7346b70f14a66e14 inherit pub_methods_classGtk_1_1CellRenderer"><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 inherit pub_methods_classGtk_1_1CellRenderer"><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 inherit pub_methods_classGtk_1_1CellRenderer"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab5727620c167faa86c80ef982289443f inherit pub_methods_classGtk_1_1CellRenderer"><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 inherit pub_methods_classGtk_1_1CellRenderer"><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 inherit pub_methods_classGtk_1_1CellRenderer"><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:a1378d48fa4ca7dceb75685a0ba2d9262"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1CellRendererText.html#a1378d48fa4ca7dceb75685a0ba2d9262">on_edited</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>& path, 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>& new_text)</td></tr>
<tr class="memdesc:a1378d48fa4ca7dceb75685a0ba2d9262"><td class="mdescLeft"> </td><td class="mdescRight">This is a default handler for the signal <a class="el" href="classGtk_1_1CellRendererText.html#a8197b68290056cd2ce2f4645ddf564ec">signal_edited()</a>. <a href="#a1378d48fa4ca7dceb75685a0ba2d9262">More...</a><br /></td></tr>
<tr class="separator:a1378d48fa4ca7dceb75685a0ba2d9262"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aee211c5f2679e36518ebccc6c4c7d161"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1CellRendererText.html#aee211c5f2679e36518ebccc6c4c7d161">edited</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>& path, 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>& new_text)</td></tr>
<tr class="memdesc:aee211c5f2679e36518ebccc6c4c7d161"><td class="mdescLeft"> </td><td class="mdescRight">Emits the "edited" signal. <a href="#aee211c5f2679e36518ebccc6c4c7d161">More...</a><br /></td></tr>
<tr class="separator:aee211c5f2679e36518ebccc6c4c7d161"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pro_methods_classGtk_1_1CellRenderer"><td colspan="2" onclick="javascript:toggleInherit('pro_methods_classGtk_1_1CellRenderer')"><img src="closed.png" alt="-"/> Protected Member Functions inherited from <a class="el" href="classGtk_1_1CellRenderer.html">Gtk::CellRenderer</a></td></tr>
<tr class="memitem:a107db713a7444f11af9bd72d6201cc9e inherit pro_methods_classGtk_1_1CellRenderer"><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 inherit pro_methods_classGtk_1_1CellRenderer"><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 inherit pro_methods_classGtk_1_1CellRenderer"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad0638b8a04dd1676d8619fcce1955576 inherit pro_methods_classGtk_1_1CellRenderer"><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 inherit pro_methods_classGtk_1_1CellRenderer"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:acd0997118350a0874cdea7be3800c5bb inherit pro_methods_classGtk_1_1CellRenderer"><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 inherit pro_methods_classGtk_1_1CellRenderer"><td class="mdescLeft"> </td><td class="mdescRight">Override this in derived CellRenderers. <a href="#acd0997118350a0874cdea7be3800c5bb">More...</a><br /></td></tr>
<tr class="separator:acd0997118350a0874cdea7be3800c5bb inherit pro_methods_classGtk_1_1CellRenderer"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ace15422f9ec1e800982209691e90ad09 inherit pro_methods_classGtk_1_1CellRenderer"><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 inherit pro_methods_classGtk_1_1CellRenderer"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a14dc8ee3bc58bf8a2282df1a6dc693da inherit pro_methods_classGtk_1_1CellRenderer"><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 inherit pro_methods_classGtk_1_1CellRenderer"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae2d7434b3e136ed8cabd7e312b0f3c81 inherit pro_methods_classGtk_1_1CellRenderer"><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 inherit pro_methods_classGtk_1_1CellRenderer"><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:a013738a392f96b031b37a0a2bd2b6869"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGtk_1_1CellRendererText.html">Gtk::CellRendererText</a>* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1CellRendererText.html#a013738a392f96b031b37a0a2bd2b6869">wrap</a> (GtkCellRendererText* object, bool take_copy=false)</td></tr>
<tr class="memdesc:a013738a392f96b031b37a0a2bd2b6869"><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="#a013738a392f96b031b37a0a2bd2b6869">More...</a><br /></td></tr>
<tr class="separator:a013738a392f96b031b37a0a2bd2b6869"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header related_classGtk_1_1CellRenderer"><td colspan="2" onclick="javascript:toggleInherit('related_classGtk_1_1CellRenderer')"><img src="closed.png" alt="-"/> Related Functions inherited from <a class="el" href="classGtk_1_1CellRenderer.html">Gtk::CellRenderer</a></td></tr>
<tr class="memitem:a7658018083799e3966942a4bd06dc7cf inherit related_classGtk_1_1CellRenderer"><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 inherit related_classGtk_1_1CellRenderer"><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 inherit related_classGtk_1_1CellRenderer"><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>Renders text in a cell. </p>
</div><h2 class="groupheader">Constructor & Destructor Documentation</h2>
<a class="anchor" id="aa30ac5b14f6d57e4b020985394d8abe3"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual Gtk::CellRendererText::~CellRendererText </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="a51a95de8de0a705102bd384e558844fe"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">Gtk::CellRendererText::CellRendererText </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<h2 class="groupheader">Member Function Documentation</h2>
<a class="anchor" id="aee211c5f2679e36518ebccc6c4c7d161"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">void Gtk::CellRendererText::edited </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="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>new_text</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> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Emits the "edited" signal. </p>
<p>This is useful when implementing custom CellRenderers. </p>
</div>
</div>
<a class="anchor" id="a4ffbd2c93cf18a88ca52a4bc39fe60ba"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">GtkCellRendererText* Gtk::CellRendererText::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="a8160d679ceb11793ab7cbcbaa4fa4c01"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">const GtkCellRendererText* Gtk::CellRendererText::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="a1378d48fa4ca7dceb75685a0ba2d9262"></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::CellRendererText::on_edited </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="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>new_text</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>This is a default handler for the signal <a class="el" href="classGtk_1_1CellRendererText.html#a8197b68290056cd2ce2f4645ddf564ec">signal_edited()</a>. </p>
</div>
</div>
<a class="anchor" id="a3fa4f0f5f3ce31da77b203ac3a31fef1"></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="elRef" doxygen="pangomm-1.4.tag:http://library.gnome.org/devel/pangomm/unstable/" href="http://library.gnome.org/devel/pangomm/unstable/group__pangommEnums.html#gaf6b8926663368e305380e01f8858caca">Pango::Alignment</a> > Gtk::CellRendererText::property_alignment </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>How to align the lines. </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="acc95246d701385af70871162a23eab22"></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="elRef" doxygen="pangomm-1.4.tag:http://library.gnome.org/devel/pangomm/unstable/" href="http://library.gnome.org/devel/pangomm/unstable/group__pangommEnums.html#gaf6b8926663368e305380e01f8858caca">Pango::Alignment</a> > Gtk::CellRendererText::property_alignment </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>How to align the lines. </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="ae2706db479edc3753664173bfadbddbe"></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="elRef" doxygen="pangomm-1.4.tag:http://library.gnome.org/devel/pangomm/unstable/" href="http://library.gnome.org/devel/pangomm/unstable/classPango_1_1AttrList.html">Pango::AttrList</a> > Gtk::CellRendererText::property_attributes </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>A list of style attributes to apply to the text of the renderer. </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="a978e351cf8f8ddefe865524a5f09e097"></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="elRef" doxygen="pangomm-1.4.tag:http://library.gnome.org/devel/pangomm/unstable/" href="http://library.gnome.org/devel/pangomm/unstable/classPango_1_1AttrList.html">Pango::AttrList</a> > Gtk::CellRendererText::property_attributes </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>A list of style attributes to apply to the text of the renderer. </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="a1831ef58ade6c9ada86c830f6d4693a0"></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::CellRendererText::property_background </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>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="ad786fe64c877425a3ad1b543c92497b6"></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::CellRendererText::property_background_gdk </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>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="ad3bad77e11c4d7501545096a13df0ab4"></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::CellRendererText::property_background_gdk </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>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="ab44071bc6725104945d559abf8bfbaac"></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::CellRendererText::property_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 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="a8d8b402009c0256cffd0bf2f9ca85d0e"></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::CellRendererText::property_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 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="a5fe559fb3d312ba68734f29c8d8f6abe"></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::CellRendererText::property_editable </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Whether the text can be modified by the user. </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="a911ac5e0286fd6db63ac4b01fbf18f58"></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::CellRendererText::property_editable </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Whether the text can be modified by the user. </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="a992ae709215b40725b29e5e0c8f1e765"></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::CellRendererText::property_editable_set </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Whether this tag affects text editability. </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="a34f3bec7989b8cf6574364daad4c4484"></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::CellRendererText::property_editable_set </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Whether this tag affects text editability. </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="ace14d59242935c417096fb53509ebbb2"></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="elRef" doxygen="pangomm-1.4.tag:http://library.gnome.org/devel/pangomm/unstable/" href="http://library.gnome.org/devel/pangomm/unstable/group__pangommEnums.html#ga982cbecf0c4ee56766aab816a7f5ed0b">Pango::EllipsizeMode</a> > Gtk::CellRendererText::property_ellipsize </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>The preferred place to ellipsize the string, if the cell renderer does not have enough room to display the entire string. </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="a9e267a60691b2606cc8a3de57dbd4e96"></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="elRef" doxygen="pangomm-1.4.tag:http://library.gnome.org/devel/pangomm/unstable/" href="http://library.gnome.org/devel/pangomm/unstable/group__pangommEnums.html#ga982cbecf0c4ee56766aab816a7f5ed0b">Pango::EllipsizeMode</a> > Gtk::CellRendererText::property_ellipsize </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>The preferred place to ellipsize the string, if the cell renderer does not have enough room to display the entire string. </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="aa1db4f8f50b6477821048ff44a5fb0c0"></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::CellRendererText::property_ellipsize_set </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Whether this tag affects the ellipsize mode. </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="a349950a0d0d2bd01725a3b5add794945"></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::CellRendererText::property_ellipsize_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 ellipsize 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="a240ce2ec252417c2999991e324b3a49e"></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="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::CellRendererText::property_family </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Name of the font family, e.g. </p>
<p>Sans, Helvetica, Times, Monospace.</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="ac3fef9a8398b3565f4ec9610815cd7aa"></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="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::CellRendererText::property_family </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Name of the font family, e.g. </p>
<p>Sans, Helvetica, Times, Monospace.</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="a6839ca0090c4ad591a5066276020c8cd"></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::CellRendererText::property_family_set </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Whether this tag affects the font family. </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="a76e8dc29ddc372d2965c38c6b0cfc23d"></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::CellRendererText::property_family_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 font family. </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="a4e10548cca6f5abf048f09edc3c2c4e1"></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="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::CellRendererText::property_font </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Font description as a string, e.g. </p>
<p>'Sans Italic 12'.</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="a9bd9b5ed559d95557f96f6d618978af8"></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="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::CellRendererText::property_font </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Font description as a string, e.g. </p>
<p>'Sans Italic 12'.</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="afeda2c2a29e81517f2c00a59e449564c"></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="elRef" doxygen="pangomm-1.4.tag:http://library.gnome.org/devel/pangomm/unstable/" href="http://library.gnome.org/devel/pangomm/unstable/classPango_1_1FontDescription.html">Pango::FontDescription</a> > Gtk::CellRendererText::property_font_desc </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Font description as a PangoFontDescription struct. </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="a9e1261f684ff28bb90cf1f80c6a39f0a"></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="elRef" doxygen="pangomm-1.4.tag:http://library.gnome.org/devel/pangomm/unstable/" href="http://library.gnome.org/devel/pangomm/unstable/classPango_1_1FontDescription.html">Pango::FontDescription</a> > Gtk::CellRendererText::property_font_desc </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Font description as a PangoFontDescription struct. </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="aee20faf7aa3b3f644a24786a22335974"></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::CellRendererText::property_foreground </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Foreground 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="a03af05fd55babe62801b140e40f647ff"></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::CellRendererText::property_foreground_gdk </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Foreground 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="a8656fc13ef11ff1eed982964bde8f1fd"></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::CellRendererText::property_foreground_gdk </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Foreground 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="a272009a063251ea04ba4c11790cea736"></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::CellRendererText::property_foreground_set </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Whether this tag affects the foreground 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="a13a5e1df196e654781a4dcf21d7bf6c1"></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::CellRendererText::property_foreground_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 foreground 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="ab9a7f9edcb00be7b32cf9d35767557d8"></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="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::CellRendererText::property_language </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>The language this text is in, as an ISO code. </p>
<p><a class="elRef" doxygen="pangomm-1.4.tag:http://library.gnome.org/devel/pangomm/unstable/" href="http://library.gnome.org/devel/pangomm/unstable/namespacePango.html">Pango</a> can use this as a hint when rendering the text. If you don't understand this parameter, you probably don't need it.</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="ae9fa8e87ae34704f8f0b1b45016c2f35"></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="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::CellRendererText::property_language </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>The language this text is in, as an ISO code. </p>
<p><a class="elRef" doxygen="pangomm-1.4.tag:http://library.gnome.org/devel/pangomm/unstable/" href="http://library.gnome.org/devel/pangomm/unstable/namespacePango.html">Pango</a> can use this as a hint when rendering the text. If you don't understand this parameter, you probably don't need it.</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="a6b896cae706f947b01ccd4101c85e657"></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::CellRendererText::property_language_set </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Whether this tag affects the language the text is rendered as. </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="a25e6a1bd2232d3f737a299a9f1bf587c"></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::CellRendererText::property_language_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 language the text is rendered as. </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="a1aaa78c29f39106e2dcffb913d500ee8"></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::CellRendererText::property_markup </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Marked up text to render. </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="a5307feac2b1dfb5eadd1cc63f9429968"></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::CellRendererText::property_rise </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Offset of text above the baseline (below the baseline if rise is negative). </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="aa02bb2c2a58780587a68bbfcaed6024d"></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::CellRendererText::property_rise </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Offset of text above the baseline (below the baseline if rise is negative). </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="ab39b0740553ab6d2ade153911d016d01"></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::CellRendererText::property_rise_set </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Whether this tag affects the rise. </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="a65e239b80dfa2a32152bf37e7ac443c3"></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::CellRendererText::property_rise_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 rise. </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="a001afcfcb244f08be93c7c8ff53e68b2"></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>< double > Gtk::CellRendererText::property_scale </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Font scaling factor. </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="a01eb5f080dcff311c22bbac1faf325a7"></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>< double > Gtk::CellRendererText::property_scale </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Font scaling factor. </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="a4730679c1c83e36b4594154caa12e9e2"></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::CellRendererText::property_scale_set </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Whether this tag scales the font size by a factor. </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="a81e399499ab0d6b1eac1c26dd2949159"></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::CellRendererText::property_scale_set </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Whether this tag scales the font size by a factor. </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="aa8682c512f393c80581fddd9900e4048"></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::CellRendererText::property_single_paragraph_mode </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Whether or not to keep all text in a single paragraph. </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="ac9bf82ce5d2d105d9863236558a22bec"></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::CellRendererText::property_single_paragraph_mode </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Whether or not to keep all text in a single paragraph. </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="a90e37a18ad088ab5cb7f061bcb9b1db0"></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::CellRendererText::property_size </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Font size. </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="ae8ea63d91e6b62ef511233caf393e7b6"></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::CellRendererText::property_size </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Font size. </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="a9e1410e5a1df4e92b12cc6a9f32d44b7"></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>< double > Gtk::CellRendererText::property_size_points </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Font size in points. </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="ab91e27eb48be773b24f7c01c48eb2e13"></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>< double > Gtk::CellRendererText::property_size_points </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Font size in points. </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="a1deae8414d6ae2cede9f9164448b83b7"></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::CellRendererText::property_size_set </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Whether this tag affects the font size. </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="a1e582bb0e8a26fbaa89a30f1288e4a39"></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::CellRendererText::property_size_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 font size. </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="a4a7a77cc901721a6a4240dd96aa599cb"></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="elRef" doxygen="pangomm-1.4.tag:http://library.gnome.org/devel/pangomm/unstable/" href="http://library.gnome.org/devel/pangomm/unstable/group__pangommEnums.html#gac2df3c6939d06e2cd565e9c943428ad3">Pango::Stretch</a> > Gtk::CellRendererText::property_stretch </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Font stretch. </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="aac8c1062abcd242fc83f14da22e0261e"></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="elRef" doxygen="pangomm-1.4.tag:http://library.gnome.org/devel/pangomm/unstable/" href="http://library.gnome.org/devel/pangomm/unstable/group__pangommEnums.html#gac2df3c6939d06e2cd565e9c943428ad3">Pango::Stretch</a> > Gtk::CellRendererText::property_stretch </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Font stretch. </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="a4cd435e41dda86ab62ca926a19e87497"></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::CellRendererText::property_stretch_set </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Whether this tag affects the font stretch. </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="a32a748f5ad31c1e77e593da136124ff3"></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::CellRendererText::property_stretch_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 font stretch. </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="ada109a94faed8feec76511226b018c31"></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::CellRendererText::property_strikethrough </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Whether to strike through the text. </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="aa823936c3392c98edcce74453b93bfa0"></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::CellRendererText::property_strikethrough </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Whether to strike through the text. </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="a584d1ae0e4070eabb5bc2eae1691b9cf"></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::CellRendererText::property_strikethrough_set </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Whether this tag affects strikethrough. </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="a8d617fcf6a5ce4298e92054e9665046d"></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::CellRendererText::property_strikethrough_set </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Whether this tag affects strikethrough. </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="aff701fd164f7a60920e1b75ab1925d42"></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="elRef" doxygen="pangomm-1.4.tag:http://library.gnome.org/devel/pangomm/unstable/" href="http://library.gnome.org/devel/pangomm/unstable/group__pangommEnums.html#ga0a57bd35d5acd409367672e19b67e2f5">Pango::Style</a> > Gtk::CellRendererText::property_style </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Font style. </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="af5674794a6c49103c5dfb2eea5e8eb2d"></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="elRef" doxygen="pangomm-1.4.tag:http://library.gnome.org/devel/pangomm/unstable/" href="http://library.gnome.org/devel/pangomm/unstable/group__pangommEnums.html#ga0a57bd35d5acd409367672e19b67e2f5">Pango::Style</a> > Gtk::CellRendererText::property_style </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Font style. </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="a349f5676f84dbbe2638ae2736a984a0d"></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::CellRendererText::property_style_set </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Whether this tag affects the font style. </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="a731c00bc532bc58e2eba5bb0a50cdaab"></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::CellRendererText::property_style_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 font style. </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="a16b3a8e3b526f26b42e26d2a33389763"></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="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::CellRendererText::property_text </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Text to render. </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="a72a85af4d5411855471d09facab1ee22"></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="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::CellRendererText::property_text </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Text to render. </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="ac01c2d4a3ce38b48e0eadc80840d86f7"></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="elRef" doxygen="pangomm-1.4.tag:http://library.gnome.org/devel/pangomm/unstable/" href="http://library.gnome.org/devel/pangomm/unstable/group__pangommEnums.html#gabbd069e35161c1ad698b7f1fe70aec57">Pango::Underline</a> > Gtk::CellRendererText::property_underline </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p><a class="el" href="classGtk_1_1Style.html">Style</a> of underline for this text. </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="ad33b3011ea88c5abddc6393261322fbe"></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="elRef" doxygen="pangomm-1.4.tag:http://library.gnome.org/devel/pangomm/unstable/" href="http://library.gnome.org/devel/pangomm/unstable/group__pangommEnums.html#gabbd069e35161c1ad698b7f1fe70aec57">Pango::Underline</a> > Gtk::CellRendererText::property_underline </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_1Style.html">Style</a> of underline for this text. </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="a6467db349a72582bf9f535742f074684"></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::CellRendererText::property_underline_set </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Whether this tag affects underlining. </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="a134d9cb6763ad959e3be6d1988a1647f"></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::CellRendererText::property_underline_set </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Whether this tag affects underlining. </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="a25ea25bbfcb169efa578b65648b30281"></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="elRef" doxygen="pangomm-1.4.tag:http://library.gnome.org/devel/pangomm/unstable/" href="http://library.gnome.org/devel/pangomm/unstable/group__pangommEnums.html#ga30ba1457cecb545a04d1f029ca0e86ed">Pango::Variant</a> > Gtk::CellRendererText::property_variant </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Font variant. </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="aa7de611cfece664ea31594ac1c0dc1c1"></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="elRef" doxygen="pangomm-1.4.tag:http://library.gnome.org/devel/pangomm/unstable/" href="http://library.gnome.org/devel/pangomm/unstable/group__pangommEnums.html#ga30ba1457cecb545a04d1f029ca0e86ed">Pango::Variant</a> > Gtk::CellRendererText::property_variant </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Font variant. </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="a540176f4e372175e8f6ee120dc8a6e55"></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::CellRendererText::property_variant_set </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Whether this tag affects the font variant. </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="adc7f68740208cc073cf72381fb46f42b"></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::CellRendererText::property_variant_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 font variant. </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="a2ade25456e249c3d63708db760908dc3"></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::CellRendererText::property_weight </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Font weight. </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="afef5a2377400d306bbd3a0aaa1d16942"></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::CellRendererText::property_weight </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Font weight. </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="a9cda8ef9fc909781e0179c1ce7a9af07"></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::CellRendererText::property_weight_set </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Whether this tag affects the font weight. </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="a19db0097e0e806e6b7f9228febdd580a"></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::CellRendererText::property_weight_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 font weight. </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="a0cac4bfea19568add198eeaab7df0e82"></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::CellRendererText::property_width_chars </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>The desired width of the label, in characters. </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="a0176526c58da6c49a7eec5335eda7ad2"></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::CellRendererText::property_width_chars </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>The desired width of the label, in characters. </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="a72d49ef956acb0237c066cf6ce8cd7ed"></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="elRef" doxygen="pangomm-1.4.tag:http://library.gnome.org/devel/pangomm/unstable/" href="http://library.gnome.org/devel/pangomm/unstable/group__pangommEnums.html#gad57530f0324d4fd9e8a2fcec904ab240">Pango::WrapMode</a> > Gtk::CellRendererText::property_wrap_mode </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>How to break the string into multiple lines, if the cell renderer does not have enough room to display the entire string. </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="a7b968703ef9ca97bc6fad571a4b272bf"></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="elRef" doxygen="pangomm-1.4.tag:http://library.gnome.org/devel/pangomm/unstable/" href="http://library.gnome.org/devel/pangomm/unstable/group__pangommEnums.html#gad57530f0324d4fd9e8a2fcec904ab240">Pango::WrapMode</a> > Gtk::CellRendererText::property_wrap_mode </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>How to break the string into multiple lines, if the cell renderer does not have enough room to display the entire string. </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="a90920ae30815dbe63377e71305931117"></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::CellRendererText::property_wrap_width </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>The width at which the text is wrapped. </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="afe46401f9da7ecbd63446a9c24161017"></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::CellRendererText::property_wrap_width </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>The width at which the text is wrapped. </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="a6562695b656b1bf47b547a975a7aad87"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::CellRendererText::set_fixed_height_from_font </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"><em>number_of_rows</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets the height of a renderer to explicitly be determined by the "font" and "y_pad" property set on it. </p>
<p>Further changes in these properties do not affect the height, so they must be accompanied by a subsequent call to this function. Using this function is unflexible, and should really only be used if calculating the size of a cell is too slow (ie, a massive number of cells displayed). If <em>number_of_rows</em> is -1, then the fixed height is unset, and the height is determined by the properties again.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">number_of_rows</td><td>Number of rows of text each cell renderer is allocated, or -1. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a8197b68290056cd2ce2f4645ddf564ec"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< void,const <a class="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>&,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::CellRendererText::signal_edited </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<dl class="section user"><dt>Slot Prototype:</dt><dd><code>void on_my_edited(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="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>& new_text)</code> </dd></dl>
</div>
</div>
<h2 class="groupheader">Friends And Related Function Documentation</h2>
<a class="anchor" id="a013738a392f96b031b37a0a2bd2b6869"></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_1CellRendererText.html">Gtk::CellRendererText</a>* wrap </td>
<td>(</td>
<td class="paramtype">GtkCellRendererText * </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/cellrenderertext.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>
|