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
|
<!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.9.1"/>
<title>pangomm: Pango::Layout 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" />
<link href="doxygen-extra.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 style="padding-left: 0.5em;">
<div id="projectname">pangomm
 <span id="projectnumber">2.40.1</span>
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.9.1 -->
<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="namespacePango.html">Pango</a></li><li class="navelem"><a class="el" href="classPango_1_1Layout.html">Layout</a></li> </ul>
</div>
</div><!-- top -->
<div class="header">
<div class="summary">
<a href="#pub-methods">Public Member Functions</a> |
<a href="#pub-static-methods">Static Public Member Functions</a> |
<a href="#pro-methods">Protected Member Functions</a> |
<a href="#related">Related Functions</a> |
<a href="classPango_1_1Layout-members.html">List of all members</a> </div>
<div class="headertitle">
<div class="title">Pango::Layout Class Reference</div> </div>
</div><!--header-->
<div class="contents">
<p>A <a class="el" href="classPango_1_1Layout.html" title="A Pango::Layout represents an entire paragraph of text. ">Pango::Layout</a> represents an entire paragraph of text.
<a href="classPango_1_1Layout.html#details">More...</a></p>
<p><code>#include <pangomm/layout.h></code></p>
<div class="dynheader">
Inheritance diagram for Pango::Layout:</div>
<div class="dyncontent">
<div class="center"><img src="classPango_1_1Layout__inherit__graph.png" border="0" usemap="#Pango_1_1Layout_inherit__map" alt="Inheritance graph"/></div>
<map name="Pango_1_1Layout_inherit__map" id="Pango_1_1Layout_inherit__map">
<area shape="rect" id="node2" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html" title="Glib::Object" alt="" coords="21,155,116,181"/><area shape="rect" id="node3" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html" title="Glib::ObjectBase" alt="" coords="5,80,132,107"/><area shape="rect" id="node4" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html" title="sigc::trackable" alt="" coords="11,5,126,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:a1221e6e10f8996dfe0377b628bfeee4b"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classPango_1_1Layout.html#a1221e6e10f8996dfe0377b628bfeee4b">Layout</a> (<a class="el" href="classPango_1_1Layout.html">Layout</a>&& src) noexcept</td></tr>
<tr class="separator:a1221e6e10f8996dfe0377b628bfeee4b"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a44227b8056bbe19769157d32c0c8d709"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classPango_1_1Layout.html">Layout</a>& </td><td class="memItemRight" valign="bottom"><a class="el" href="classPango_1_1Layout.html#a44227b8056bbe19769157d32c0c8d709">operator=</a> (<a class="el" href="classPango_1_1Layout.html">Layout</a>&& src) noexcept</td></tr>
<tr class="separator:a44227b8056bbe19769157d32c0c8d709"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a8cdc8bd805021e9c694f0f367a6bc320"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classPango_1_1Layout.html#a8cdc8bd805021e9c694f0f367a6bc320">~Layout</a> () noexceptoverride</td></tr>
<tr class="separator:a8cdc8bd805021e9c694f0f367a6bc320"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a3cf520f31292a32b7bd00fb70c6711fc"><td class="memItemLeft" align="right" valign="top">PangoLayout* </td><td class="memItemRight" valign="bottom"><a class="el" href="classPango_1_1Layout.html#a3cf520f31292a32b7bd00fb70c6711fc">gobj</a> ()</td></tr>
<tr class="memdesc:a3cf520f31292a32b7bd00fb70c6711fc"><td class="mdescLeft"> </td><td class="mdescRight">Provides access to the underlying C GObject. <a href="#a3cf520f31292a32b7bd00fb70c6711fc">More...</a><br /></td></tr>
<tr class="separator:a3cf520f31292a32b7bd00fb70c6711fc"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab0f2b726ce4d783fd127aa42de3e255d"><td class="memItemLeft" align="right" valign="top">const PangoLayout* </td><td class="memItemRight" valign="bottom"><a class="el" href="classPango_1_1Layout.html#ab0f2b726ce4d783fd127aa42de3e255d">gobj</a> () const </td></tr>
<tr class="memdesc:ab0f2b726ce4d783fd127aa42de3e255d"><td class="mdescLeft"> </td><td class="mdescRight">Provides access to the underlying C GObject. <a href="#ab0f2b726ce4d783fd127aa42de3e255d">More...</a><br /></td></tr>
<tr class="separator:ab0f2b726ce4d783fd127aa42de3e255d"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af2ed59d8031ce7df4b2592fe996bb2be"><td class="memItemLeft" align="right" valign="top">PangoLayout* </td><td class="memItemRight" valign="bottom"><a class="el" href="classPango_1_1Layout.html#af2ed59d8031ce7df4b2592fe996bb2be">gobj_copy</a> ()</td></tr>
<tr class="memdesc:af2ed59d8031ce7df4b2592fe996bb2be"><td class="mdescLeft"> </td><td class="mdescRight">Provides access to the underlying C instance. The caller is responsible for unrefing it. Use when directly setting fields in structs. <a href="#af2ed59d8031ce7df4b2592fe996bb2be">More...</a><br /></td></tr>
<tr class="separator:af2ed59d8031ce7df4b2592fe996bb2be"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a6706a92463a0df36eb3f86f8203413d7"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classPango_1_1Layout.html#a6706a92463a0df36eb3f86f8203413d7">update_from_cairo_context</a> (const <a class="elRef" doxygen="cairomm-1.0.tag:http://www.cairographics.org/documentation/cairomm/reference/" href="http://www.cairographics.org/documentation/cairomm/reference/classCairo_1_1RefPtr.html">Cairo::RefPtr</a>< <a class="elRef" doxygen="cairomm-1.0.tag:http://www.cairographics.org/documentation/cairomm/reference/" href="http://www.cairographics.org/documentation/cairomm/reference/classCairo_1_1Context.html">Cairo::Context</a> >& context)</td></tr>
<tr class="memdesc:a6706a92463a0df36eb3f86f8203413d7"><td class="mdescLeft"> </td><td class="mdescRight">Updates the private <a class="el" href="namespacePango.html">Pango</a> <a class="el" href="classPango_1_1Context.html" title="A Pango::Context stores global information used to control the itemization process. ">Context</a> of a <a class="el" href="namespacePango.html">Pango</a> <a class="el" href="classPango_1_1Layout.html" title="A Pango::Layout represents an entire paragraph of text. ">Layout</a> created with <a class="el" href="classPango_1_1Layout.html#ae0e8a32e79465fa38d2c59d0cbe482ae" title="Creates a layout object set up to match the current transformation and target surface of the Cairo co...">create(const Cairo::RefPtr<Cairo::Context>&)</a> to match the current transformation and target surface of a <a class="elRef" doxygen="cairomm-1.0.tag:http://www.cairographics.org/documentation/cairomm/reference/" href="http://www.cairographics.org/documentation/cairomm/reference/namespaceCairo.html">Cairo</a> <a class="el" href="classPango_1_1Context.html" title="A Pango::Context stores global information used to control the itemization process. ">Context</a>. <a href="#a6706a92463a0df36eb3f86f8203413d7">More...</a><br /></td></tr>
<tr class="separator:a6706a92463a0df36eb3f86f8203413d7"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a0a01b7f479ddd32145f54ada48f37147"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classPango_1_1Layout.html">Layout</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classPango_1_1Layout.html#a0a01b7f479ddd32145f54ada48f37147">copy</a> ()</td></tr>
<tr class="memdesc:a0a01b7f479ddd32145f54ada48f37147"><td class="mdescLeft"> </td><td class="mdescRight">Does a deep copy-by-value of the <em>src</em> layout. <a href="#a0a01b7f479ddd32145f54ada48f37147">More...</a><br /></td></tr>
<tr class="separator:a0a01b7f479ddd32145f54ada48f37147"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a93f926aa835611d1a3d3555271737d0e"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classPango_1_1Context.html">Context</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classPango_1_1Layout.html#a93f926aa835611d1a3d3555271737d0e">get_context</a> () const </td></tr>
<tr class="memdesc:a93f926aa835611d1a3d3555271737d0e"><td class="mdescLeft"> </td><td class="mdescRight">Retrieves the <a class="el" href="classPango_1_1Context.html" title="A Pango::Context stores global information used to control the itemization process. ">Pango::Context</a> used for this layout. <a href="#a93f926aa835611d1a3d3555271737d0e">More...</a><br /></td></tr>
<tr class="separator:a93f926aa835611d1a3d3555271737d0e"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a6b3292c3eff18aa061c4e9a6f5fa8d1a"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classPango_1_1Layout.html#a6b3292c3eff18aa061c4e9a6f5fa8d1a">set_attributes</a> (<a class="el" href="classPango_1_1AttrList.html">AttrList</a>& attrs)</td></tr>
<tr class="memdesc:a6b3292c3eff18aa061c4e9a6f5fa8d1a"><td class="mdescLeft"> </td><td class="mdescRight">Sets the text attributes for a layout object. <a href="#a6b3292c3eff18aa061c4e9a6f5fa8d1a">More...</a><br /></td></tr>
<tr class="separator:a6b3292c3eff18aa061c4e9a6f5fa8d1a"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a0d71716a2760d1f70810712aff139b9d"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classPango_1_1AttrList.html">AttrList</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classPango_1_1Layout.html#a0d71716a2760d1f70810712aff139b9d">get_attributes</a> () const </td></tr>
<tr class="memdesc:a0d71716a2760d1f70810712aff139b9d"><td class="mdescLeft"> </td><td class="mdescRight">Gets the attribute list for the layout, if any. <a href="#a0d71716a2760d1f70810712aff139b9d">More...</a><br /></td></tr>
<tr class="separator:a0d71716a2760d1f70810712aff139b9d"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a981012a0af40936591f8d39aa169a6fd"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classPango_1_1Layout.html#a981012a0af40936591f8d39aa169a6fd">set_text</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>& text)</td></tr>
<tr class="memdesc:a981012a0af40936591f8d39aa169a6fd"><td class="mdescLeft"> </td><td class="mdescRight">Set the text of the layout. <a href="#a981012a0af40936591f8d39aa169a6fd">More...</a><br /></td></tr>
<tr class="separator:a981012a0af40936591f8d39aa169a6fd"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:afe9e63119d19a3f9c6c786495137bc4a"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classPango_1_1Layout.html#afe9e63119d19a3f9c6c786495137bc4a">get_text</a> () const </td></tr>
<tr class="memdesc:afe9e63119d19a3f9c6c786495137bc4a"><td class="mdescLeft"> </td><td class="mdescRight">Gets the text in the layout. <a href="#afe9e63119d19a3f9c6c786495137bc4a">More...</a><br /></td></tr>
<tr class="separator:afe9e63119d19a3f9c6c786495137bc4a"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a91e24eb0fb1d8c42b6ac935186b9939c"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="classPango_1_1Layout.html#a91e24eb0fb1d8c42b6ac935186b9939c">get_character_count</a> () const </td></tr>
<tr class="memdesc:a91e24eb0fb1d8c42b6ac935186b9939c"><td class="mdescLeft"> </td><td class="mdescRight">Returns the number of Unicode characters in the the text of <em>layout</em>. <a href="#a91e24eb0fb1d8c42b6ac935186b9939c">More...</a><br /></td></tr>
<tr class="separator:a91e24eb0fb1d8c42b6ac935186b9939c"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af49842ef1724ac0e7a8afcb860e6bb1f"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classPango_1_1Layout.html#af49842ef1724ac0e7a8afcb860e6bb1f">set_markup</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>& markup)</td></tr>
<tr class="memdesc:af49842ef1724ac0e7a8afcb860e6bb1f"><td class="mdescLeft"> </td><td class="mdescRight">Sets the layout text and attribute list from marked-up text (see markup format). <a href="#af49842ef1724ac0e7a8afcb860e6bb1f">More...</a><br /></td></tr>
<tr class="separator:af49842ef1724ac0e7a8afcb860e6bb1f"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a466e0638cb285d7a38fe6ee79267bd89"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classPango_1_1Layout.html#a466e0638cb285d7a38fe6ee79267bd89">set_markup</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>& markup, gunichar accel_marker, gunichar& accel_char)</td></tr>
<tr class="memdesc:a466e0638cb285d7a38fe6ee79267bd89"><td class="mdescLeft"> </td><td class="mdescRight">Sets the layout text and attribute list from marked-up text (see markup format). <a href="#a466e0638cb285d7a38fe6ee79267bd89">More...</a><br /></td></tr>
<tr class="separator:a466e0638cb285d7a38fe6ee79267bd89"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac2193bc15c036f7322da333ddddef4be"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classPango_1_1Layout.html#ac2193bc15c036f7322da333ddddef4be">set_font_description</a> (const <a class="el" href="classPango_1_1FontDescription.html">FontDescription</a>& desc)</td></tr>
<tr class="memdesc:ac2193bc15c036f7322da333ddddef4be"><td class="mdescLeft"> </td><td class="mdescRight">Set the default font description for the layout. <a href="#ac2193bc15c036f7322da333ddddef4be">More...</a><br /></td></tr>
<tr class="separator:ac2193bc15c036f7322da333ddddef4be"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad808c80347d1a4b9d9d5836b6c92e4d0"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classPango_1_1Layout.html#ad808c80347d1a4b9d9d5836b6c92e4d0">unset_font_description</a> ()</td></tr>
<tr class="separator:ad808c80347d1a4b9d9d5836b6c92e4d0"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a35294f71c289402beeffaa72b277c93e"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classPango_1_1FontDescription.html">FontDescription</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classPango_1_1Layout.html#a35294f71c289402beeffaa72b277c93e">get_font_description</a> () const </td></tr>
<tr class="memdesc:a35294f71c289402beeffaa72b277c93e"><td class="mdescLeft"> </td><td class="mdescRight">Gets the font description for the layout, if any. <a href="#a35294f71c289402beeffaa72b277c93e">More...</a><br /></td></tr>
<tr class="separator:a35294f71c289402beeffaa72b277c93e"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:abb0b47950f32da332d6043c9de9b2b07"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classPango_1_1Layout.html#abb0b47950f32da332d6043c9de9b2b07">set_width</a> (int width)</td></tr>
<tr class="memdesc:abb0b47950f32da332d6043c9de9b2b07"><td class="mdescLeft"> </td><td class="mdescRight">Sets the width to which the lines of the <a class="el" href="classPango_1_1Layout.html" title="A Pango::Layout represents an entire paragraph of text. ">Pango::Layout</a> should wrap or ellipsized. <a href="#abb0b47950f32da332d6043c9de9b2b07">More...</a><br /></td></tr>
<tr class="separator:abb0b47950f32da332d6043c9de9b2b07"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab91e3097bcbff2882f2341cf35338dd2"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="classPango_1_1Layout.html#ab91e3097bcbff2882f2341cf35338dd2">get_width</a> () const </td></tr>
<tr class="memdesc:ab91e3097bcbff2882f2341cf35338dd2"><td class="mdescLeft"> </td><td class="mdescRight">Gets the width to which the lines of the <a class="el" href="classPango_1_1Layout.html" title="A Pango::Layout represents an entire paragraph of text. ">Pango::Layout</a> should wrap. <a href="#ab91e3097bcbff2882f2341cf35338dd2">More...</a><br /></td></tr>
<tr class="separator:ab91e3097bcbff2882f2341cf35338dd2"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a70af01986a0a16fe1b2d29297949a161"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classPango_1_1Layout.html#a70af01986a0a16fe1b2d29297949a161">set_height</a> (int height)</td></tr>
<tr class="memdesc:a70af01986a0a16fe1b2d29297949a161"><td class="mdescLeft"> </td><td class="mdescRight">Sets the height to which the <a class="el" href="classPango_1_1Layout.html" title="A Pango::Layout represents an entire paragraph of text. ">Pango::Layout</a> should be ellipsized at. <a href="#a70af01986a0a16fe1b2d29297949a161">More...</a><br /></td></tr>
<tr class="separator:a70af01986a0a16fe1b2d29297949a161"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad744e2727889fa2fbf7adbd78429fe0e"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="classPango_1_1Layout.html#ad744e2727889fa2fbf7adbd78429fe0e">get_height</a> () const </td></tr>
<tr class="memdesc:ad744e2727889fa2fbf7adbd78429fe0e"><td class="mdescLeft"> </td><td class="mdescRight">Gets the height of layout used for ellipsization. <a href="#ad744e2727889fa2fbf7adbd78429fe0e">More...</a><br /></td></tr>
<tr class="separator:ad744e2727889fa2fbf7adbd78429fe0e"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:acf55858919f4dffd56f41d936f9d3bfb"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classPango_1_1Layout.html#acf55858919f4dffd56f41d936f9d3bfb">set_wrap</a> (<a class="el" href="group__pangommEnums.html#gad57530f0324d4fd9e8a2fcec904ab240">WrapMode</a> <a class="el" href="classPango_1_1Layout.html#a2f16e9892cb8734c93056d6089af173b">wrap</a>)</td></tr>
<tr class="memdesc:acf55858919f4dffd56f41d936f9d3bfb"><td class="mdescLeft"> </td><td class="mdescRight">Sets the wrap mode; the wrap mode only has effect if a width is set on the layout with <a class="el" href="classPango_1_1Layout.html#abb0b47950f32da332d6043c9de9b2b07" title="Sets the width to which the lines of the Pango::Layout should wrap or ellipsized. ...">set_width()</a>. <a href="#acf55858919f4dffd56f41d936f9d3bfb">More...</a><br /></td></tr>
<tr class="separator:acf55858919f4dffd56f41d936f9d3bfb"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a0a3b9c241952bba854750471f91f983e"><td class="memItemLeft" align="right" valign="top"><a class="el" href="group__pangommEnums.html#gad57530f0324d4fd9e8a2fcec904ab240">WrapMode</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classPango_1_1Layout.html#a0a3b9c241952bba854750471f91f983e">get_wrap</a> () const </td></tr>
<tr class="memdesc:a0a3b9c241952bba854750471f91f983e"><td class="mdescLeft"> </td><td class="mdescRight">Gets the wrap mode for the layout. <a href="#a0a3b9c241952bba854750471f91f983e">More...</a><br /></td></tr>
<tr class="separator:a0a3b9c241952bba854750471f91f983e"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:acc23cec27d04c9683e2838c51cf36cbd"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classPango_1_1Layout.html#acc23cec27d04c9683e2838c51cf36cbd">is_wrapped</a> () const </td></tr>
<tr class="memdesc:acc23cec27d04c9683e2838c51cf36cbd"><td class="mdescLeft"> </td><td class="mdescRight">Queries whether the layout had to wrap any paragraphs. <a href="#acc23cec27d04c9683e2838c51cf36cbd">More...</a><br /></td></tr>
<tr class="separator:acc23cec27d04c9683e2838c51cf36cbd"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad7e4ea552c0f5d6f3dd3744afde174c6"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classPango_1_1Layout.html#ad7e4ea552c0f5d6f3dd3744afde174c6">set_indent</a> (int indent)</td></tr>
<tr class="memdesc:ad7e4ea552c0f5d6f3dd3744afde174c6"><td class="mdescLeft"> </td><td class="mdescRight">Sets the width in <a class="el" href="namespacePango.html">Pango</a> units to indent each paragraph. <a href="#ad7e4ea552c0f5d6f3dd3744afde174c6">More...</a><br /></td></tr>
<tr class="separator:ad7e4ea552c0f5d6f3dd3744afde174c6"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aaf39e2d8d0473c08d47874dad90262b4"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="classPango_1_1Layout.html#aaf39e2d8d0473c08d47874dad90262b4">get_indent</a> () const </td></tr>
<tr class="memdesc:aaf39e2d8d0473c08d47874dad90262b4"><td class="mdescLeft"> </td><td class="mdescRight">Gets the paragraph indent width in <a class="el" href="namespacePango.html">Pango</a> units. <a href="#aaf39e2d8d0473c08d47874dad90262b4">More...</a><br /></td></tr>
<tr class="separator:aaf39e2d8d0473c08d47874dad90262b4"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa1d2006bc368b82e577f6afa97ae009a"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classPango_1_1Layout.html#aa1d2006bc368b82e577f6afa97ae009a">set_spacing</a> (int spacing)</td></tr>
<tr class="memdesc:aa1d2006bc368b82e577f6afa97ae009a"><td class="mdescLeft"> </td><td class="mdescRight">Sets the amount of spacing in <a class="el" href="namespacePango.html">Pango</a> unit between the lines of the layout. <a href="#aa1d2006bc368b82e577f6afa97ae009a">More...</a><br /></td></tr>
<tr class="separator:aa1d2006bc368b82e577f6afa97ae009a"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:acda5c0346b9a8de857f99769895a172c"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="classPango_1_1Layout.html#acda5c0346b9a8de857f99769895a172c">get_spacing</a> () const </td></tr>
<tr class="memdesc:acda5c0346b9a8de857f99769895a172c"><td class="mdescLeft"> </td><td class="mdescRight">Gets the amount of spacing between the lines of the layout. <a href="#acda5c0346b9a8de857f99769895a172c">More...</a><br /></td></tr>
<tr class="separator:acda5c0346b9a8de857f99769895a172c"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:acd2bc770cfd32ce24c4a1ab8425ae22b"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classPango_1_1Layout.html#acd2bc770cfd32ce24c4a1ab8425ae22b">set_justify</a> (bool justify=true)</td></tr>
<tr class="memdesc:acd2bc770cfd32ce24c4a1ab8425ae22b"><td class="mdescLeft"> </td><td class="mdescRight">Sets whether each complete line should be stretched to fill the entire width of the layout. <a href="#acd2bc770cfd32ce24c4a1ab8425ae22b">More...</a><br /></td></tr>
<tr class="separator:acd2bc770cfd32ce24c4a1ab8425ae22b"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a3321506b4252dec1eea17e31d6db2c4f"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classPango_1_1Layout.html#a3321506b4252dec1eea17e31d6db2c4f">get_justify</a> () const </td></tr>
<tr class="memdesc:a3321506b4252dec1eea17e31d6db2c4f"><td class="mdescLeft"> </td><td class="mdescRight">Gets whether each complete line should be stretched to fill the entire width of the layout. <a href="#a3321506b4252dec1eea17e31d6db2c4f">More...</a><br /></td></tr>
<tr class="separator:a3321506b4252dec1eea17e31d6db2c4f"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a77974dec0c584dac925186d69dfd24b3"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classPango_1_1Layout.html#a77974dec0c584dac925186d69dfd24b3">get_auto_dir</a> () const </td></tr>
<tr class="memdesc:a77974dec0c584dac925186d69dfd24b3"><td class="mdescLeft"> </td><td class="mdescRight">Gets whether to calculate the bidirectional base direction for the layout according to the contents of the layout. <a href="#a77974dec0c584dac925186d69dfd24b3">More...</a><br /></td></tr>
<tr class="separator:a77974dec0c584dac925186d69dfd24b3"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad69dbf5d3c9657f6c5030d0e33afb70f"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classPango_1_1Layout.html#ad69dbf5d3c9657f6c5030d0e33afb70f">set_auto_dir</a> (bool auto_dir=true)</td></tr>
<tr class="memdesc:ad69dbf5d3c9657f6c5030d0e33afb70f"><td class="mdescLeft"> </td><td class="mdescRight">Sets whether to calculate the bidirectional base direction for the layout according to the contents of the layout; when this flag is on (the default), then paragraphs in <em>layout</em> that begin with strong right-to-left characters (Arabic and Hebrew principally), will have right-to-left layout, paragraphs with letters from other scripts will have left-to-right layout. <a href="#ad69dbf5d3c9657f6c5030d0e33afb70f">More...</a><br /></td></tr>
<tr class="separator:ad69dbf5d3c9657f6c5030d0e33afb70f"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a716f87fa132357a35cc003c349e2dc54"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classPango_1_1Layout.html#a716f87fa132357a35cc003c349e2dc54">set_alignment</a> (<a class="el" href="group__pangommEnums.html#gaf6b8926663368e305380e01f8858caca">Alignment</a> alignment)</td></tr>
<tr class="memdesc:a716f87fa132357a35cc003c349e2dc54"><td class="mdescLeft"> </td><td class="mdescRight">Sets the alignment for the layout: how partial lines are positioned within the horizontal space available. <a href="#a716f87fa132357a35cc003c349e2dc54">More...</a><br /></td></tr>
<tr class="separator:a716f87fa132357a35cc003c349e2dc54"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a336b72587ce6af123db71ebddd975ab5"><td class="memItemLeft" align="right" valign="top"><a class="el" href="group__pangommEnums.html#gaf6b8926663368e305380e01f8858caca">Alignment</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classPango_1_1Layout.html#a336b72587ce6af123db71ebddd975ab5">get_alignment</a> () const </td></tr>
<tr class="memdesc:a336b72587ce6af123db71ebddd975ab5"><td class="mdescLeft"> </td><td class="mdescRight">Gets the alignment for the layout: how partial lines are positioned within the horizontal space available. <a href="#a336b72587ce6af123db71ebddd975ab5">More...</a><br /></td></tr>
<tr class="separator:a336b72587ce6af123db71ebddd975ab5"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:abef27924517817fbbf8dd2fc16af153d"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classPango_1_1Layout.html#abef27924517817fbbf8dd2fc16af153d">set_tabs</a> (<a class="el" href="classPango_1_1TabArray.html">TabArray</a>& tabs)</td></tr>
<tr class="memdesc:abef27924517817fbbf8dd2fc16af153d"><td class="mdescLeft"> </td><td class="mdescRight">Sets the tabs to use for <em>layout</em>, overriding the default tabs (by default, tabs are every 8 spaces). <a href="#abef27924517817fbbf8dd2fc16af153d">More...</a><br /></td></tr>
<tr class="separator:abef27924517817fbbf8dd2fc16af153d"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aef4c2311178427785ae176a77808e51f"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classPango_1_1TabArray.html">TabArray</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classPango_1_1Layout.html#aef4c2311178427785ae176a77808e51f">get_tabs</a> () const </td></tr>
<tr class="memdesc:aef4c2311178427785ae176a77808e51f"><td class="mdescLeft"> </td><td class="mdescRight">Get the current <a class="el" href="classPango_1_1TabArray.html" title="A Pango::TabArray contains an array of tab stops. ">Pango::TabArray</a> used by this layout. <a href="#aef4c2311178427785ae176a77808e51f">More...</a><br /></td></tr>
<tr class="separator:aef4c2311178427785ae176a77808e51f"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2e8b65d80e72b668112dc6e9d242bd30"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classPango_1_1Layout.html#a2e8b65d80e72b668112dc6e9d242bd30">set_single_paragraph_mode</a> (bool setting=true)</td></tr>
<tr class="memdesc:a2e8b65d80e72b668112dc6e9d242bd30"><td class="mdescLeft"> </td><td class="mdescRight">If <em>setting</em> is <code>true</code>, do not treat newlines and similar characters as paragraph separators; instead, keep all text in a single paragraph, and display a glyph for paragraph separator characters. <a href="#a2e8b65d80e72b668112dc6e9d242bd30">More...</a><br /></td></tr>
<tr class="separator:a2e8b65d80e72b668112dc6e9d242bd30"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a240e2b2f08a7328a3e411aa9f66d43a4"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classPango_1_1Layout.html#a240e2b2f08a7328a3e411aa9f66d43a4">get_single_paragraph_mode</a> () const </td></tr>
<tr class="memdesc:a240e2b2f08a7328a3e411aa9f66d43a4"><td class="mdescLeft"> </td><td class="mdescRight">Obtains the value set by <a class="el" href="classPango_1_1Layout.html#a2e8b65d80e72b668112dc6e9d242bd30" title="If setting is true, do not treat newlines and similar characters as paragraph separators; instead...">set_single_paragraph_mode()</a>. <a href="#a240e2b2f08a7328a3e411aa9f66d43a4">More...</a><br /></td></tr>
<tr class="separator:a240e2b2f08a7328a3e411aa9f66d43a4"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aec7d3c98d1b364b335aae67fa6cb144c"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classPango_1_1Layout.html#aec7d3c98d1b364b335aae67fa6cb144c">set_ellipsize</a> (<a class="el" href="group__pangommEnums.html#ga982cbecf0c4ee56766aab816a7f5ed0b">EllipsizeMode</a> ellipsize)</td></tr>
<tr class="memdesc:aec7d3c98d1b364b335aae67fa6cb144c"><td class="mdescLeft"> </td><td class="mdescRight">Sets the type of ellipsization being performed for <em>layout</em>. <a href="#aec7d3c98d1b364b335aae67fa6cb144c">More...</a><br /></td></tr>
<tr class="separator:aec7d3c98d1b364b335aae67fa6cb144c"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:adb91426e44e7f3c788d885d3ec6bdc52"><td class="memItemLeft" align="right" valign="top"><a class="el" href="group__pangommEnums.html#ga982cbecf0c4ee56766aab816a7f5ed0b">EllipsizeMode</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classPango_1_1Layout.html#adb91426e44e7f3c788d885d3ec6bdc52">get_ellipsize</a> () const </td></tr>
<tr class="memdesc:adb91426e44e7f3c788d885d3ec6bdc52"><td class="mdescLeft"> </td><td class="mdescRight">Gets the type of ellipsization being performed for <em>layout</em>. <a href="#adb91426e44e7f3c788d885d3ec6bdc52">More...</a><br /></td></tr>
<tr class="separator:adb91426e44e7f3c788d885d3ec6bdc52"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa4f9979faf774b502095cefafd5c7dd5"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classPango_1_1Layout.html#aa4f9979faf774b502095cefafd5c7dd5">is_ellipsized</a> () const </td></tr>
<tr class="memdesc:aa4f9979faf774b502095cefafd5c7dd5"><td class="mdescLeft"> </td><td class="mdescRight">Queries whether the layout had to ellipsize any paragraphs. <a href="#aa4f9979faf774b502095cefafd5c7dd5">More...</a><br /></td></tr>
<tr class="separator:aa4f9979faf774b502095cefafd5c7dd5"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5d471d494007d78a8409bbdf0f1e9616"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="classPango_1_1Layout.html#a5d471d494007d78a8409bbdf0f1e9616">get_unknown_glyphs_count</a> () const </td></tr>
<tr class="memdesc:a5d471d494007d78a8409bbdf0f1e9616"><td class="mdescLeft"> </td><td class="mdescRight">Counts the number unknown glyphs in <em>layout</em>. <a href="#a5d471d494007d78a8409bbdf0f1e9616">More...</a><br /></td></tr>
<tr class="separator:a5d471d494007d78a8409bbdf0f1e9616"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab78ccca32cb57798beb743ae6778e7a8"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classPango_1_1Layout.html#ab78ccca32cb57798beb743ae6778e7a8">context_changed</a> ()</td></tr>
<tr class="memdesc:ab78ccca32cb57798beb743ae6778e7a8"><td class="mdescLeft"> </td><td class="mdescRight">Forces recomputation of any state in the <a class="el" href="classPango_1_1Layout.html" title="A Pango::Layout represents an entire paragraph of text. ">Pango::Layout</a> that might depend on the layout's context. <a href="#ab78ccca32cb57798beb743ae6778e7a8">More...</a><br /></td></tr>
<tr class="separator:ab78ccca32cb57798beb743ae6778e7a8"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a014c042ee0ed2e9a72c3a23b1faa54fa"><td class="memItemLeft" align="right" valign="top">guint </td><td class="memItemRight" valign="bottom"><a class="el" href="classPango_1_1Layout.html#a014c042ee0ed2e9a72c3a23b1faa54fa">get_serial</a> () const </td></tr>
<tr class="memdesc:a014c042ee0ed2e9a72c3a23b1faa54fa"><td class="mdescLeft"> </td><td class="mdescRight">Returns the current serial number of <em>layout</em>. <a href="#a014c042ee0ed2e9a72c3a23b1faa54fa">More...</a><br /></td></tr>
<tr class="separator:a014c042ee0ed2e9a72c3a23b1faa54fa"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a7ebb87d469baffe9bbfe9a0cb2ab9bec"><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_1ArrayHandle.html">Glib::ArrayHandle</a>< <a class="el" href="namespacePango.html#ab0b3468a9efcaec7022885d46fd43d09">LogAttr</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classPango_1_1Layout.html#a7ebb87d469baffe9bbfe9a0cb2ab9bec">get_log_attrs</a> () const </td></tr>
<tr class="memdesc:a7ebb87d469baffe9bbfe9a0cb2ab9bec"><td class="mdescLeft"> </td><td class="mdescRight">Retrieve an array of logical attributes for each character in the layout. <a href="#a7ebb87d469baffe9bbfe9a0cb2ab9bec">More...</a><br /></td></tr>
<tr class="separator:a7ebb87d469baffe9bbfe9a0cb2ab9bec"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:adb188980ffa5191efc3f09db7ed364fb"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classPango_1_1Rectangle.html">Rectangle</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classPango_1_1Layout.html#adb188980ffa5191efc3f09db7ed364fb">index_to_pos</a> (int index) const </td></tr>
<tr class="memdesc:adb188980ffa5191efc3f09db7ed364fb"><td class="mdescLeft"> </td><td class="mdescRight">Convert from an index within the layout to the onscreen position corresponding to the grapheme at that index, which is represented as rectangle. <a href="#adb188980ffa5191efc3f09db7ed364fb">More...</a><br /></td></tr>
<tr class="separator:adb188980ffa5191efc3f09db7ed364fb"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab922db9bbe6a863a159d0ad40932145c"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classPango_1_1Layout.html#ab922db9bbe6a863a159d0ad40932145c">index_to_line_x</a> (int index_, bool trailing, int& line, int& x_pos) const </td></tr>
<tr class="memdesc:ab922db9bbe6a863a159d0ad40932145c"><td class="mdescLeft"> </td><td class="mdescRight">Converts from byte <em>index</em> within the <em>layout</em> to line and X position. <a href="#ab922db9bbe6a863a159d0ad40932145c">More...</a><br /></td></tr>
<tr class="separator:ab922db9bbe6a863a159d0ad40932145c"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac07d471345f868e9c115af24e93bf4fb"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classPango_1_1Layout.html#ac07d471345f868e9c115af24e93bf4fb">get_cursor_pos</a> (int index, <a class="el" href="classPango_1_1Rectangle.html">Rectangle</a>& strong_pos, <a class="el" href="classPango_1_1Rectangle.html">Rectangle</a>& weak_pos) const </td></tr>
<tr class="memdesc:ac07d471345f868e9c115af24e93bf4fb"><td class="mdescLeft"> </td><td class="mdescRight">Given an index within a layout, determines the positions that of the strong and weak cursors if the insertion point is at that index. <a href="#ac07d471345f868e9c115af24e93bf4fb">More...</a><br /></td></tr>
<tr class="separator:ac07d471345f868e9c115af24e93bf4fb"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad7da5d1aeec5d9141b572d4a853771d1"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classPango_1_1Rectangle.html">Rectangle</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classPango_1_1Layout.html#ad7da5d1aeec5d9141b572d4a853771d1">get_cursor_strong_pos</a> (int index) const </td></tr>
<tr class="memdesc:ad7da5d1aeec5d9141b572d4a853771d1"><td class="mdescLeft"> </td><td class="mdescRight">Given an index within the layout, determine the positions that of the strong cursors if the insertion point is at that index. <a href="#ad7da5d1aeec5d9141b572d4a853771d1">More...</a><br /></td></tr>
<tr class="separator:ad7da5d1aeec5d9141b572d4a853771d1"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1594bf5c94185ad06c3e675e1594b3ef"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classPango_1_1Rectangle.html">Rectangle</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classPango_1_1Layout.html#a1594bf5c94185ad06c3e675e1594b3ef">get_cursor_weak_pos</a> (int index) const </td></tr>
<tr class="memdesc:a1594bf5c94185ad06c3e675e1594b3ef"><td class="mdescLeft"> </td><td class="mdescRight">Given an index within the layout, determine the positions that of the weak cursors if the insertion point is at that index. <a href="#a1594bf5c94185ad06c3e675e1594b3ef">More...</a><br /></td></tr>
<tr class="separator:a1594bf5c94185ad06c3e675e1594b3ef"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:abb90721eddfadabdd10d84b49248284a"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classPango_1_1Layout.html#abb90721eddfadabdd10d84b49248284a">move_cursor_visually</a> (bool strong, int old_index, int old_trailing, int direction, int& new_index, int& new_trailing) const </td></tr>
<tr class="memdesc:abb90721eddfadabdd10d84b49248284a"><td class="mdescLeft"> </td><td class="mdescRight">Computes a new cursor position from an old position and a count of positions to move visually. <a href="#abb90721eddfadabdd10d84b49248284a">More...</a><br /></td></tr>
<tr class="separator:abb90721eddfadabdd10d84b49248284a"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a7281fe2d705ba6f60d8b5d7a04a324f3"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classPango_1_1Layout.html#a7281fe2d705ba6f60d8b5d7a04a324f3">xy_to_index</a> (int x, int y, int& index, int& trailing) const </td></tr>
<tr class="memdesc:a7281fe2d705ba6f60d8b5d7a04a324f3"><td class="mdescLeft"> </td><td class="mdescRight">Converts from X and Y position within a layout to the byte index to the character at that logical position. <a href="#a7281fe2d705ba6f60d8b5d7a04a324f3">More...</a><br /></td></tr>
<tr class="separator:a7281fe2d705ba6f60d8b5d7a04a324f3"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a7abfd3c4e4e655255923e819426cd47d"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classPango_1_1Layout.html#a7abfd3c4e4e655255923e819426cd47d">get_extents</a> (<a class="el" href="classPango_1_1Rectangle.html">Rectangle</a>& ink_rect, <a class="el" href="classPango_1_1Rectangle.html">Rectangle</a>& logical_rect) const </td></tr>
<tr class="memdesc:a7abfd3c4e4e655255923e819426cd47d"><td class="mdescLeft"> </td><td class="mdescRight">Compute the logical and ink extents of <em>layout</em>. <a href="#a7abfd3c4e4e655255923e819426cd47d">More...</a><br /></td></tr>
<tr class="separator:a7abfd3c4e4e655255923e819426cd47d"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac9271540fa4663d4cc65bfca1767edf1"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classPango_1_1Rectangle.html">Rectangle</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classPango_1_1Layout.html#ac9271540fa4663d4cc65bfca1767edf1">get_ink_extents</a> () const </td></tr>
<tr class="memdesc:ac9271540fa4663d4cc65bfca1767edf1"><td class="mdescLeft"> </td><td class="mdescRight">Compute the ink extents of layout. <a href="#ac9271540fa4663d4cc65bfca1767edf1">More...</a><br /></td></tr>
<tr class="separator:ac9271540fa4663d4cc65bfca1767edf1"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:afeea1e256a22ae1cdb31760572ecee62"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classPango_1_1Rectangle.html">Rectangle</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classPango_1_1Layout.html#afeea1e256a22ae1cdb31760572ecee62">get_logical_extents</a> () const </td></tr>
<tr class="memdesc:afeea1e256a22ae1cdb31760572ecee62"><td class="mdescLeft"> </td><td class="mdescRight">Compute the logical extents of layout. <a href="#afeea1e256a22ae1cdb31760572ecee62">More...</a><br /></td></tr>
<tr class="separator:afeea1e256a22ae1cdb31760572ecee62"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5aed2806ab714f655b46326a69924e3d"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classPango_1_1Layout.html#a5aed2806ab714f655b46326a69924e3d">get_pixel_extents</a> (<a class="el" href="classPango_1_1Rectangle.html">Rectangle</a>& ink_rect, <a class="el" href="classPango_1_1Rectangle.html">Rectangle</a>& logical_rect) const </td></tr>
<tr class="memdesc:a5aed2806ab714f655b46326a69924e3d"><td class="mdescLeft"> </td><td class="mdescRight">Compute the logical and ink extents of <em>layout</em> in device units. <a href="#a5aed2806ab714f655b46326a69924e3d">More...</a><br /></td></tr>
<tr class="separator:a5aed2806ab714f655b46326a69924e3d"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab578209672c171c60b2e6bb5ce062570"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classPango_1_1Rectangle.html">Rectangle</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classPango_1_1Layout.html#ab578209672c171c60b2e6bb5ce062570">get_pixel_ink_extents</a> () const </td></tr>
<tr class="memdesc:ab578209672c171c60b2e6bb5ce062570"><td class="mdescLeft"> </td><td class="mdescRight">Compute the ink extents of the layout in device units. <a href="#ab578209672c171c60b2e6bb5ce062570">More...</a><br /></td></tr>
<tr class="separator:ab578209672c171c60b2e6bb5ce062570"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1b97e487748a9221025c2d76a59d205a"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classPango_1_1Rectangle.html">Rectangle</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classPango_1_1Layout.html#a1b97e487748a9221025c2d76a59d205a">get_pixel_logical_extents</a> () const </td></tr>
<tr class="memdesc:a1b97e487748a9221025c2d76a59d205a"><td class="mdescLeft"> </td><td class="mdescRight">Compute the logical extents of the layout in device units. <a href="#a1b97e487748a9221025c2d76a59d205a">More...</a><br /></td></tr>
<tr class="separator:a1b97e487748a9221025c2d76a59d205a"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a568ce34e36d831764f5f66b223bd0f0b"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classPango_1_1Layout.html#a568ce34e36d831764f5f66b223bd0f0b">get_size</a> (int& width, int& height) const </td></tr>
<tr class="memdesc:a568ce34e36d831764f5f66b223bd0f0b"><td class="mdescLeft"> </td><td class="mdescRight">Determines the logical width and height of a <a class="el" href="classPango_1_1Layout.html" title="A Pango::Layout represents an entire paragraph of text. ">Pango::Layout</a> in <a class="el" href="namespacePango.html">Pango</a> units (device units scaled by <a class="el" href="namespacePango.html#a20d9629a369a6a5ab40ed9c01f879730">Pango::SCALE</a>). <a href="#a568ce34e36d831764f5f66b223bd0f0b">More...</a><br /></td></tr>
<tr class="separator:a568ce34e36d831764f5f66b223bd0f0b"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a655927f6258a67b1dcfea770baee4703"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classPango_1_1Layout.html#a655927f6258a67b1dcfea770baee4703">get_pixel_size</a> (int& width, int& height) const </td></tr>
<tr class="memdesc:a655927f6258a67b1dcfea770baee4703"><td class="mdescLeft"> </td><td class="mdescRight">Determines the logical width and height of a <a class="el" href="classPango_1_1Layout.html" title="A Pango::Layout represents an entire paragraph of text. ">Pango::Layout</a> in device units. <a href="#a655927f6258a67b1dcfea770baee4703">More...</a><br /></td></tr>
<tr class="separator:a655927f6258a67b1dcfea770baee4703"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a701fa3a4a90cb9ca00144ad2054dee7b"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="classPango_1_1Layout.html#a701fa3a4a90cb9ca00144ad2054dee7b">get_baseline</a> () const </td></tr>
<tr class="memdesc:a701fa3a4a90cb9ca00144ad2054dee7b"><td class="mdescLeft"> </td><td class="mdescRight">Gets the Y position of baseline of the first line in <em>layout</em>. <a href="#a701fa3a4a90cb9ca00144ad2054dee7b">More...</a><br /></td></tr>
<tr class="separator:a701fa3a4a90cb9ca00144ad2054dee7b"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a0c89a9842b8e814815a4bac25350f8df"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="classPango_1_1Layout.html#a0c89a9842b8e814815a4bac25350f8df">get_line_count</a> () const </td></tr>
<tr class="memdesc:a0c89a9842b8e814815a4bac25350f8df"><td class="mdescLeft"> </td><td class="mdescRight">Retrieves the count of lines for the <em>layout</em>. <a href="#a0c89a9842b8e814815a4bac25350f8df">More...</a><br /></td></tr>
<tr class="separator:a0c89a9842b8e814815a4bac25350f8df"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5326ffecf052eaed930287f060d7407c"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classPango_1_1LayoutLine.html">LayoutLine</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classPango_1_1Layout.html#a5326ffecf052eaed930287f060d7407c">get_line</a> (int line)</td></tr>
<tr class="memdesc:a5326ffecf052eaed930287f060d7407c"><td class="mdescLeft"> </td><td class="mdescRight">Retrieves a particular line from a <a class="el" href="classPango_1_1Layout.html" title="A Pango::Layout represents an entire paragraph of text. ">Pango::Layout</a>. <a href="#a5326ffecf052eaed930287f060d7407c">More...</a><br /></td></tr>
<tr class="separator:a5326ffecf052eaed930287f060d7407c"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a23bb10058921b4c7cb9e09477037720b"><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>< const <a class="el" href="classPango_1_1LayoutLine.html">LayoutLine</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classPango_1_1Layout.html#a23bb10058921b4c7cb9e09477037720b">get_line</a> (int line) const </td></tr>
<tr class="memdesc:a23bb10058921b4c7cb9e09477037720b"><td class="mdescLeft"> </td><td class="mdescRight">Retrieves a particular line from a <a class="el" href="classPango_1_1Layout.html" title="A Pango::Layout represents an entire paragraph of text. ">Pango::Layout</a>. <a href="#a23bb10058921b4c7cb9e09477037720b">More...</a><br /></td></tr>
<tr class="separator:a23bb10058921b4c7cb9e09477037720b"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2c0558852daeeec3bce52b905f4fdb9f"><td class="memItemLeft" align="right" valign="top"><a class="el" href="namespacePango.html#a1f636822a058f6e5da81377e7f8f6cc7">SListHandle_LayoutLine</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classPango_1_1Layout.html#a2c0558852daeeec3bce52b905f4fdb9f">get_lines</a> ()</td></tr>
<tr class="memdesc:a2c0558852daeeec3bce52b905f4fdb9f"><td class="mdescLeft"> </td><td class="mdescRight">Returns the lines of the <em>layout</em> as a list. <a href="#a2c0558852daeeec3bce52b905f4fdb9f">More...</a><br /></td></tr>
<tr class="separator:a2c0558852daeeec3bce52b905f4fdb9f"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1813059dc4f5c95e15618921c2777915"><td class="memItemLeft" align="right" valign="top"><a class="el" href="namespacePango.html#a0bbb7ae1485076ce063b20b7994275c3">SListHandle_ConstLayoutLine</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classPango_1_1Layout.html#a1813059dc4f5c95e15618921c2777915">get_lines</a> () const </td></tr>
<tr class="memdesc:a1813059dc4f5c95e15618921c2777915"><td class="mdescLeft"> </td><td class="mdescRight">Returns the lines of the <em>layout</em> as a list. <a href="#a1813059dc4f5c95e15618921c2777915">More...</a><br /></td></tr>
<tr class="separator:a1813059dc4f5c95e15618921c2777915"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab1bc0ca79b30c8f9f08255f9381726d2"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classPango_1_1Layout.html#ab1bc0ca79b30c8f9f08255f9381726d2">get_iter</a> (<a class="el" href="classPango_1_1LayoutIter.html">LayoutIter</a>& iter)</td></tr>
<tr class="memdesc:ab1bc0ca79b30c8f9f08255f9381726d2"><td class="mdescLeft"> </td><td class="mdescRight">Gets an iterator to iterate over the visual extents of the layout. <a href="#ab1bc0ca79b30c8f9f08255f9381726d2">More...</a><br /></td></tr>
<tr class="separator:ab1bc0ca79b30c8f9f08255f9381726d2"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a646f263f04eadb88db99351e102660a7"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classPango_1_1LayoutIter.html">LayoutIter</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classPango_1_1Layout.html#a646f263f04eadb88db99351e102660a7">get_iter</a> ()</td></tr>
<tr class="memdesc:a646f263f04eadb88db99351e102660a7"><td class="mdescLeft"> </td><td class="mdescRight">Gets an iterator to iterate over the visual extents of the layout. <a href="#a646f263f04eadb88db99351e102660a7">More...</a><br /></td></tr>
<tr class="separator:a646f263f04eadb88db99351e102660a7"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a712ff9c7e17b28c9a691992aa072cc4d"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classPango_1_1Layout.html#a712ff9c7e17b28c9a691992aa072cc4d">add_to_cairo_context</a> (const <a class="elRef" doxygen="cairomm-1.0.tag:http://www.cairographics.org/documentation/cairomm/reference/" href="http://www.cairographics.org/documentation/cairomm/reference/classCairo_1_1RefPtr.html">Cairo::RefPtr</a>< <a class="elRef" doxygen="cairomm-1.0.tag:http://www.cairographics.org/documentation/cairomm/reference/" href="http://www.cairographics.org/documentation/cairomm/reference/classCairo_1_1Context.html">Cairo::Context</a> >& context)</td></tr>
<tr class="memdesc:a712ff9c7e17b28c9a691992aa072cc4d"><td class="mdescLeft"> </td><td class="mdescRight">Adds the text in this <a class="el" href="classPango_1_1LayoutLine.html" title="A Pango::LayoutLine represents one of the lines resulting from laying out a paragraph via Pango::Layo...">LayoutLine</a> to the current path in the specified <a class="elRef" doxygen="cairomm-1.0.tag:http://www.cairographics.org/documentation/cairomm/reference/" href="http://www.cairographics.org/documentation/cairomm/reference/namespaceCairo.html">Cairo</a> <em>context</em>. <a href="#a712ff9c7e17b28c9a691992aa072cc4d">More...</a><br /></td></tr>
<tr class="separator:a712ff9c7e17b28c9a691992aa072cc4d"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4594ac585d306b6cf013e640184d5e89"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classPango_1_1Layout.html#a4594ac585d306b6cf013e640184d5e89">show_in_cairo_context</a> (const <a class="elRef" doxygen="cairomm-1.0.tag:http://www.cairographics.org/documentation/cairomm/reference/" href="http://www.cairographics.org/documentation/cairomm/reference/classCairo_1_1RefPtr.html">Cairo::RefPtr</a>< <a class="elRef" doxygen="cairomm-1.0.tag:http://www.cairographics.org/documentation/cairomm/reference/" href="http://www.cairographics.org/documentation/cairomm/reference/classCairo_1_1Context.html">Cairo::Context</a> >& context)</td></tr>
<tr class="memdesc:a4594ac585d306b6cf013e640184d5e89"><td class="mdescLeft"> </td><td class="mdescRight">Draws a <a class="el" href="classPango_1_1Layout.html" title="A Pango::Layout represents an entire paragraph of text. ">Layout</a> in the specified <a class="elRef" doxygen="cairomm-1.0.tag:http://www.cairographics.org/documentation/cairomm/reference/" href="http://www.cairographics.org/documentation/cairomm/reference/namespaceCairo.html">Cairo</a> <em>context</em>. <a href="#a4594ac585d306b6cf013e640184d5e89">More...</a><br /></td></tr>
<tr class="separator:a4594ac585d306b6cf013e640184d5e89"><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="pub-static-methods"></a>
Static Public Member Functions</h2></td></tr>
<tr class="memitem:a50715204eb8db84101bb623c6978f7c3"><td class="memItemLeft" align="right" valign="top">static GType </td><td class="memItemRight" valign="bottom"><a class="el" href="classPango_1_1Layout.html#a50715204eb8db84101bb623c6978f7c3">get_type</a> ()</td></tr>
<tr class="memdesc:a50715204eb8db84101bb623c6978f7c3"><td class="mdescLeft"> </td><td class="mdescRight">Get the GType for this class, for use with the underlying GObject type system. <a href="#a50715204eb8db84101bb623c6978f7c3">More...</a><br /></td></tr>
<tr class="separator:a50715204eb8db84101bb623c6978f7c3"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a563434509d35cab69c4e85b7549a7bf9"><td class="memItemLeft" align="right" valign="top">static <a 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="classPango_1_1Layout.html">Layout</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classPango_1_1Layout.html#a563434509d35cab69c4e85b7549a7bf9">create</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="classPango_1_1Context.html">Context</a> >& context)</td></tr>
<tr class="separator:a563434509d35cab69c4e85b7549a7bf9"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae0e8a32e79465fa38d2c59d0cbe482ae"><td class="memItemLeft" align="right" valign="top">static <a 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="classPango_1_1Layout.html">Layout</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classPango_1_1Layout.html#ae0e8a32e79465fa38d2c59d0cbe482ae">create</a> (const <a class="elRef" doxygen="cairomm-1.0.tag:http://www.cairographics.org/documentation/cairomm/reference/" href="http://www.cairographics.org/documentation/cairomm/reference/classCairo_1_1RefPtr.html">Cairo::RefPtr</a>< <a class="elRef" doxygen="cairomm-1.0.tag:http://www.cairographics.org/documentation/cairomm/reference/" href="http://www.cairographics.org/documentation/cairomm/reference/classCairo_1_1Context.html">Cairo::Context</a> >& context)</td></tr>
<tr class="memdesc:ae0e8a32e79465fa38d2c59d0cbe482ae"><td class="mdescLeft"> </td><td class="mdescRight">Creates a layout object set up to match the current transformation and target surface of the <a class="elRef" doxygen="cairomm-1.0.tag:http://www.cairographics.org/documentation/cairomm/reference/" href="http://www.cairographics.org/documentation/cairomm/reference/namespaceCairo.html">Cairo</a> context. <a href="#ae0e8a32e79465fa38d2c59d0cbe482ae">More...</a><br /></td></tr>
<tr class="separator:ae0e8a32e79465fa38d2c59d0cbe482ae"><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:a1886b8440b86d45845e9155e94081d15"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classPango_1_1Layout.html#a1886b8440b86d45845e9155e94081d15">Layout</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="classPango_1_1Context.html">Context</a> >& context)</td></tr>
<tr class="separator:a1886b8440b86d45845e9155e94081d15"><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:a2f16e9892cb8734c93056d6089af173b"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classPango_1_1Layout.html">Pango::Layout</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classPango_1_1Layout.html#a2f16e9892cb8734c93056d6089af173b">wrap</a> (PangoLayout* object, bool take_copy=false)</td></tr>
<tr class="memdesc:a2f16e9892cb8734c93056d6089af173b"><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="#a2f16e9892cb8734c93056d6089af173b">More...</a><br /></td></tr>
<tr class="separator:a2f16e9892cb8734c93056d6089af173b"><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>A <a class="el" href="classPango_1_1Layout.html" title="A Pango::Layout represents an entire paragraph of text. ">Pango::Layout</a> represents an entire paragraph of text. </p>
<p>It is initialized with a <a class="el" href="classPango_1_1Context.html" title="A Pango::Context stores global information used to control the itemization process. ">Pango::Context</a>, UTF-8 string and set of attributes for that string. Once that is done, the set of formatted lines can be extracted from the object, the layout can be rendered, and conversion between logical character positions within the layout's text, and the physical position of the resulting glyphs can be made. </p>
</div><h2 class="groupheader">Constructor & Destructor Documentation</h2>
<a class="anchor" id="a1221e6e10f8996dfe0377b628bfeee4b"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">Pango::Layout::Layout </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classPango_1_1Layout.html">Layout</a>&& </td>
<td class="paramname"><em>src</em></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">noexcept</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="a8cdc8bd805021e9c694f0f367a6bc320"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">Pango::Layout::~Layout </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">override</span><span class="mlabel">noexcept</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="a1886b8440b86d45845e9155e94081d15"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">Pango::Layout::Layout </td>
<td>(</td>
<td class="paramtype">const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classPango_1_1Context.html">Context</a> >& </td>
<td class="paramname"><em>context</em></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">explicit</span><span class="mlabel">protected</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<h2 class="groupheader">Member Function Documentation</h2>
<a class="anchor" id="a712ff9c7e17b28c9a691992aa072cc4d"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Pango::Layout::add_to_cairo_context </td>
<td>(</td>
<td class="paramtype">const <a class="elRef" doxygen="cairomm-1.0.tag:http://www.cairographics.org/documentation/cairomm/reference/" href="http://www.cairographics.org/documentation/cairomm/reference/classCairo_1_1RefPtr.html">Cairo::RefPtr</a>< <a class="elRef" doxygen="cairomm-1.0.tag:http://www.cairographics.org/documentation/cairomm/reference/" href="http://www.cairographics.org/documentation/cairomm/reference/classCairo_1_1Context.html">Cairo::Context</a> > & </td>
<td class="paramname"><em>context</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Adds the text in this <a class="el" href="classPango_1_1LayoutLine.html" title="A Pango::LayoutLine represents one of the lines resulting from laying out a paragraph via Pango::Layo...">LayoutLine</a> to the current path in the specified <a class="elRef" doxygen="cairomm-1.0.tag:http://www.cairographics.org/documentation/cairomm/reference/" href="http://www.cairographics.org/documentation/cairomm/reference/namespaceCairo.html">Cairo</a> <em>context</em>. </p>
<p>The origin of the glyphs (the left edge of the line) will be at the current point of the cairo context.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">context</td><td>A <a class="elRef" doxygen="cairomm-1.0.tag:http://www.cairographics.org/documentation/cairomm/reference/" href="http://www.cairographics.org/documentation/cairomm/reference/namespaceCairo.html">Cairo</a> context. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="ab78ccca32cb57798beb743ae6778e7a8"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Pango::Layout::context_changed </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Forces recomputation of any state in the <a class="el" href="classPango_1_1Layout.html" title="A Pango::Layout represents an entire paragraph of text. ">Pango::Layout</a> that might depend on the layout's context. </p>
<p>This function should be called if you make changes to the context subsequent to creating the layout. </p>
</div>
</div>
<a class="anchor" id="a0a01b7f479ddd32145f54ada48f37147"></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_1RefPtr.html">Glib::RefPtr</a><<a class="el" href="classPango_1_1Layout.html">Layout</a>> Pango::Layout::copy </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Does a deep copy-by-value of the <em>src</em> layout. </p>
<p>The attribute list, tab array, and text from the original layout are all copied by value.</p>
<dl class="section return"><dt>Returns</dt><dd>The newly allocated <a class="el" href="classPango_1_1Layout.html" title="A Pango::Layout represents an entire paragraph of text. ">Pango::Layout</a>, with a reference count of one, which should be freed with Glib::object_unref(). </dd></dl>
</div>
</div>
<a class="anchor" id="a563434509d35cab69c4e85b7549a7bf9"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">static <a 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="classPango_1_1Layout.html">Layout</a>> Pango::Layout::create </td>
<td>(</td>
<td class="paramtype">const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classPango_1_1Context.html">Context</a> >& </td>
<td class="paramname"><em>context</em></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="ae0e8a32e79465fa38d2c59d0cbe482ae"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">static <a 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="classPango_1_1Layout.html">Layout</a>> Pango::Layout::create </td>
<td>(</td>
<td class="paramtype">const <a class="elRef" doxygen="cairomm-1.0.tag:http://www.cairographics.org/documentation/cairomm/reference/" href="http://www.cairographics.org/documentation/cairomm/reference/classCairo_1_1RefPtr.html">Cairo::RefPtr</a>< <a class="elRef" doxygen="cairomm-1.0.tag:http://www.cairographics.org/documentation/cairomm/reference/" href="http://www.cairographics.org/documentation/cairomm/reference/classCairo_1_1Context.html">Cairo::Context</a> > & </td>
<td class="paramname"><em>context</em></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Creates a layout object set up to match the current transformation and target surface of the <a class="elRef" doxygen="cairomm-1.0.tag:http://www.cairographics.org/documentation/cairomm/reference/" href="http://www.cairographics.org/documentation/cairomm/reference/namespaceCairo.html">Cairo</a> context. </p>
<p>This layout can then be used for text measurement with functions like <a class="el" href="classPango_1_1Layout.html#a568ce34e36d831764f5f66b223bd0f0b" title="Determines the logical width and height of a Pango::Layout in Pango units (device units scaled by Pan...">get_size()</a> or drawing with methods like show_in_cairo_contet(). If you change the transformation or target surface for <em>context</em>, you need to call <a class="el" href="classPango_1_1Layout.html#a6706a92463a0df36eb3f86f8203413d7" title="Updates the private Pango Context of a Pango Layout created with create(const Cairo::RefPtr<Cairo::Co...">update_from_cairo_context()</a></p>
<p>This is the most convenient way to use <a class="elRef" doxygen="cairomm-1.0.tag:http://www.cairographics.org/documentation/cairomm/reference/" href="http://www.cairographics.org/documentation/cairomm/reference/namespaceCairo.html">Cairo</a> with <a class="el" href="namespacePango.html">Pango</a>. However it is slightly inefficient since it creates a separate <a class="el" href="namespacePango.html">Pango</a> <a class="el" href="classPango_1_1Context.html" title="A Pango::Context stores global information used to control the itemization process. ">Context</a> object for each layout. This might matter in an application that is laying out large amounts of text.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">context</td><td>A <a class="elRef" doxygen="cairomm-1.0.tag:http://www.cairographics.org/documentation/cairomm/reference/" href="http://www.cairographics.org/documentation/cairomm/reference/namespaceCairo.html">Cairo</a> context. </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>The newly created <a class="el" href="namespacePango.html">Pango</a> <a class="el" href="classPango_1_1Layout.html" title="A Pango::Layout represents an entire paragraph of text. ">Layout</a>. </dd></dl>
</div>
</div>
<a class="anchor" id="a336b72587ce6af123db71ebddd975ab5"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="group__pangommEnums.html#gaf6b8926663368e305380e01f8858caca">Alignment</a> Pango::Layout::get_alignment </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Gets the alignment for the layout: how partial lines are positioned within the horizontal space available. </p>
<dl class="section return"><dt>Returns</dt><dd>The alignment. </dd></dl>
</div>
</div>
<a class="anchor" id="a0d71716a2760d1f70810712aff139b9d"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classPango_1_1AttrList.html">AttrList</a> Pango::Layout::get_attributes </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Gets the attribute list for the layout, if any. </p>
<dl class="section return"><dt>Returns</dt><dd>A <a class="el" href="classPango_1_1AttrList.html" title="A Pango::AttrList represents a list of attributes that apply to a section of text. ">Pango::AttrList</a>. </dd></dl>
</div>
</div>
<a class="anchor" id="a77974dec0c584dac925186d69dfd24b3"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Pango::Layout::get_auto_dir </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Gets whether to calculate the bidirectional base direction for the layout according to the contents of the layout. </p>
<p>See <a class="el" href="classPango_1_1Layout.html#ad69dbf5d3c9657f6c5030d0e33afb70f" title="Sets whether to calculate the bidirectional base direction for the layout according to the contents o...">set_auto_dir()</a>.</p>
<dl class="since_1_4"><dt><b><a class="el" href="since_1_4.html#_since_1_4000003">Since pangomm 1.4:</a></b></dt><dd></dd></dl>
<dl class="section return"><dt>Returns</dt><dd><code>true</code> if the bidirectional base direction is computed from the layout's contents, <code>false</code> otherwise. </dd></dl>
</div>
</div>
<a class="anchor" id="a701fa3a4a90cb9ca00144ad2054dee7b"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">int Pango::Layout::get_baseline </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Gets the Y position of baseline of the first line in <em>layout</em>. </p>
<dl class="since_1_22"><dt><b><a class="el" href="since_1_22.html#_since_1_22000003">Since pangomm 1.22:</a></b></dt><dd></dd></dl>
<dl class="section return"><dt>Returns</dt><dd>Baseline of first line, from top of <em>layout</em>. </dd></dl>
</div>
</div>
<a class="anchor" id="a91e24eb0fb1d8c42b6ac935186b9939c"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">int Pango::Layout::get_character_count </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns the number of Unicode characters in the the text of <em>layout</em>. </p>
<dl class="since_1_30"><dt><b><a class="el" href="since_1_30.html#_since_1_30000001">Since pangomm 1.30:</a></b></dt><dd></dd></dl>
<dl class="section return"><dt>Returns</dt><dd>The number of Unicode characters in the text of <em>layout</em>. </dd></dl>
</div>
</div>
<a class="anchor" id="a93f926aa835611d1a3d3555271737d0e"></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_1RefPtr.html">Glib::RefPtr</a><<a class="el" href="classPango_1_1Context.html">Context</a>> Pango::Layout::get_context </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Retrieves the <a class="el" href="classPango_1_1Context.html" title="A Pango::Context stores global information used to control the itemization process. ">Pango::Context</a> used for this layout. </p>
<dl class="section return"><dt>Returns</dt><dd>The <a class="el" href="classPango_1_1Context.html" title="A Pango::Context stores global information used to control the itemization process. ">Pango::Context</a> for the layout. This does not have an additional refcount added, so if you want to keep a copy of this around, you must reference it yourself. </dd></dl>
</div>
</div>
<a class="anchor" id="ac07d471345f868e9c115af24e93bf4fb"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Pango::Layout::get_cursor_pos </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"><em>index</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="classPango_1_1Rectangle.html">Rectangle</a>& </td>
<td class="paramname"><em>strong_pos</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="classPango_1_1Rectangle.html">Rectangle</a>& </td>
<td class="paramname"><em>weak_pos</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Given an index within a layout, determines the positions that of the strong and weak cursors if the insertion point is at that index. </p>
<p>The position of each cursor is stored as a zero-width rectangle. The strong cursor location is the location where characters of the directionality equal to the base direction of the layout are inserted. The weak cursor location is the location where characters of the directionality opposite to the base direction of the layout are inserted.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">index</td><td>The byte index of the cursor. </td></tr>
<tr><td class="paramname">strong_pos</td><td>Location to store the strong cursor position (may be <code>nullptr</code>). </td></tr>
<tr><td class="paramname">weak_pos</td><td>Location to store the weak cursor position (may be <code>nullptr</code>). </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="ad7da5d1aeec5d9141b572d4a853771d1"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classPango_1_1Rectangle.html">Rectangle</a> Pango::Layout::get_cursor_strong_pos </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"><em>index</em></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Given an index within the layout, determine the positions that of the strong cursors if the insertion point is at that index. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">index</td><td>The byte index of the cursor. </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>The strong cursor position. </dd></dl>
</div>
</div>
<a class="anchor" id="a1594bf5c94185ad06c3e675e1594b3ef"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classPango_1_1Rectangle.html">Rectangle</a> Pango::Layout::get_cursor_weak_pos </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"><em>index</em></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Given an index within the layout, determine the positions that of the weak cursors if the insertion point is at that index. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">index</td><td>The byte index of the cursor. </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>The weak cursor position. </dd></dl>
</div>
</div>
<a class="anchor" id="adb91426e44e7f3c788d885d3ec6bdc52"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="group__pangommEnums.html#ga982cbecf0c4ee56766aab816a7f5ed0b">EllipsizeMode</a> Pango::Layout::get_ellipsize </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Gets the type of ellipsization being performed for <em>layout</em>. </p>
<p>See <a class="el" href="classPango_1_1Layout.html#aec7d3c98d1b364b335aae67fa6cb144c" title="Sets the type of ellipsization being performed for layout. ">set_ellipsize()</a></p>
<dl class="since_1_6"><dt><b><a class="el" href="since_1_6.html#_since_1_6000009">Since pangomm 1.6:</a></b></dt><dd></dd></dl>
<dl class="section return"><dt>Returns</dt><dd>The current ellipsization mode for <em>layout</em>.</dd></dl>
<p>Use <a class="el" href="classPango_1_1Layout.html#aa4f9979faf774b502095cefafd5c7dd5" title="Queries whether the layout had to ellipsize any paragraphs. ">is_ellipsized()</a> to query whether any paragraphs were actually ellipsized. </p>
</div>
</div>
<a class="anchor" id="a7abfd3c4e4e655255923e819426cd47d"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Pango::Layout::get_extents </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classPango_1_1Rectangle.html">Rectangle</a>& </td>
<td class="paramname"><em>ink_rect</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="classPango_1_1Rectangle.html">Rectangle</a>& </td>
<td class="paramname"><em>logical_rect</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Compute the logical and ink extents of <em>layout</em>. </p>
<p>Logical extents are usually what you want for positioning things. The extents are given in layout coordinates; layout coordinates begin at the top left corner of the layout.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">ink_rect</td><td><a class="el" href="classPango_1_1Rectangle.html" title="A Pango::Rectangle represents a rectangle. ">Rectangle</a> used to store the extents of the layout as drawn. </td></tr>
<tr><td class="paramname">logical_rect</td><td><a class="el" href="classPango_1_1Rectangle.html" title="A Pango::Rectangle represents a rectangle. ">Rectangle</a> used to store the logical extents of the layout. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a35294f71c289402beeffaa72b277c93e"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classPango_1_1FontDescription.html">FontDescription</a> Pango::Layout::get_font_description </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Gets the font description for the layout, if any. </p>
<dl class="since_1_8"><dt><b><a class="el" href="since_1_8.html#_since_1_8000003">Since pangomm 1.8:</a></b></dt><dd></dd></dl>
<dl class="section return"><dt>Returns</dt><dd>A pointer to the layout's font description, or <code>nullptr</code> if the font description from the layout's context is inherited. This value is owned by the layout and must not be modified or freed. </dd></dl>
</div>
</div>
<a class="anchor" id="ad744e2727889fa2fbf7adbd78429fe0e"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">int Pango::Layout::get_height </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Gets the height of layout used for ellipsization. </p>
<p>See <a class="el" href="classPango_1_1Layout.html#a70af01986a0a16fe1b2d29297949a161" title="Sets the height to which the Pango::Layout should be ellipsized at. ">set_height()</a> for details.</p>
<dl class="since_1_20"><dt><b><a class="el" href="since_1_20.html#_since_1_20000002">Since pangomm 1.20:</a></b></dt><dd></dd></dl>
<dl class="section return"><dt>Returns</dt><dd>The height, in <a class="el" href="namespacePango.html">Pango</a> units if positive, or number of lines if negative. </dd></dl>
</div>
</div>
<a class="anchor" id="aaf39e2d8d0473c08d47874dad90262b4"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">int Pango::Layout::get_indent </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Gets the paragraph indent width in <a class="el" href="namespacePango.html">Pango</a> units. </p>
<p>A negative value indicates a hanging indentation.</p>
<dl class="section return"><dt>Returns</dt><dd>The indent in <a class="el" href="namespacePango.html">Pango</a> units. </dd></dl>
</div>
</div>
<a class="anchor" id="ac9271540fa4663d4cc65bfca1767edf1"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classPango_1_1Rectangle.html">Rectangle</a> Pango::Layout::get_ink_extents </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Compute the ink extents of layout. </p>
<dl class="section return"><dt>Returns</dt><dd>The extents of the layout as drawn. </dd></dl>
</div>
</div>
<a class="anchor" id="ab1bc0ca79b30c8f9f08255f9381726d2"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Pango::Layout::get_iter </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classPango_1_1LayoutIter.html">LayoutIter</a>& </td>
<td class="paramname"><em>iter</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Gets an iterator to iterate over the visual extents of the layout. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">iter</td><td>Location to store the iterator.</td></tr>
</table>
</dd>
</dl>
<dl class="deprecated"><dt><b><a class="el" href="deprecated.html#_deprecated000003">Deprecated:</a></b></dt><dd>Use the <a class="el" href="classPango_1_1Layout.html#a646f263f04eadb88db99351e102660a7" title="Gets an iterator to iterate over the visual extents of the layout. ">get_iter()</a> that returns the <a class="el" href="classPango_1_1LayoutIter.html" title="A Pango::LayoutIter can be used to iterate over the visual extents of a Pango::Layout. ">LayoutIter</a> instead of using an output parameter. </dd></dl>
</div>
</div>
<a class="anchor" id="a646f263f04eadb88db99351e102660a7"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classPango_1_1LayoutIter.html">LayoutIter</a> Pango::Layout::get_iter </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Gets an iterator to iterate over the visual extents of the layout. </p>
<dl class="section return"><dt>Returns</dt><dd>The iterator.</dd></dl>
<dl class="since_2_28"><dt><b><a class="el" href="since_2_28.html#_since_2_28000001">Since pangomm 2.28:</a></b></dt><dd></dd></dl>
</div>
</div>
<a class="anchor" id="a3321506b4252dec1eea17e31d6db2c4f"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Pango::Layout::get_justify </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Gets whether each complete line should be stretched to fill the entire width of the layout. </p>
<dl class="section return"><dt>Returns</dt><dd>The justify. </dd></dl>
</div>
</div>
<a class="anchor" id="a5326ffecf052eaed930287f060d7407c"></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_1RefPtr.html">Glib::RefPtr</a><<a class="el" href="classPango_1_1LayoutLine.html">LayoutLine</a>> Pango::Layout::get_line </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"><em>line</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Retrieves a particular line from a <a class="el" href="classPango_1_1Layout.html" title="A Pango::Layout represents an entire paragraph of text. ">Pango::Layout</a>. </p>
<p>Use the faster get_line_readonly() if you do not plan to modify the contents of the line (glyphs, glyph widths, etc.).</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">line</td><td>The index of a line, which must be between 0 and <code>pango_layout_get_line_count(layout) - 1</code>, inclusive. </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>The requested <a class="el" href="classPango_1_1LayoutLine.html" title="A Pango::LayoutLine represents one of the lines resulting from laying out a paragraph via Pango::Layo...">Pango::LayoutLine</a>, or <code>nullptr</code> if the index is out of range. This layout line can be ref'ed and retained, but will become invalid if changes are made to the <a class="el" href="classPango_1_1Layout.html" title="A Pango::Layout represents an entire paragraph of text. ">Pango::Layout</a>. </dd></dl>
</div>
</div>
<a class="anchor" id="a23bb10058921b4c7cb9e09477037720b"></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_1RefPtr.html">Glib::RefPtr</a><const <a class="el" href="classPango_1_1LayoutLine.html">LayoutLine</a>> Pango::Layout::get_line </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"><em>line</em></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Retrieves a particular line from a <a class="el" href="classPango_1_1Layout.html" title="A Pango::Layout represents an entire paragraph of text. ">Pango::Layout</a>. </p>
<p>This is a faster alternative to <a class="el" href="classPango_1_1Layout.html#a5326ffecf052eaed930287f060d7407c" title="Retrieves a particular line from a Pango::Layout. ">get_line()</a>, but the user is not expected to modify the contents of the line (glyphs, glyph widths, etc.).</p>
<dl class="since_1_16"><dt><b><a class="el" href="since_1_16.html#_since_1_16000014">Since pangomm 1.16:</a></b></dt><dd></dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">line</td><td>The index of a line, which must be between 0 and <code>pango_layout_get_line_count(layout) - 1</code>, inclusive. </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>The requested <a class="el" href="classPango_1_1LayoutLine.html" title="A Pango::LayoutLine represents one of the lines resulting from laying out a paragraph via Pango::Layo...">Pango::LayoutLine</a>, or <code>nullptr</code> if the index is out of range. This layout line can be ref'ed and retained, but will become invalid if changes are made to the <a class="el" href="classPango_1_1Layout.html" title="A Pango::Layout represents an entire paragraph of text. ">Pango::Layout</a>. No changes should be made to the line. </dd></dl>
</div>
</div>
<a class="anchor" id="a0c89a9842b8e814815a4bac25350f8df"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">int Pango::Layout::get_line_count </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Retrieves the count of lines for the <em>layout</em>. </p>
<dl class="section return"><dt>Returns</dt><dd>The line count. </dd></dl>
</div>
</div>
<a class="anchor" id="a2c0558852daeeec3bce52b905f4fdb9f"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="namespacePango.html#a1f636822a058f6e5da81377e7f8f6cc7">SListHandle_LayoutLine</a> Pango::Layout::get_lines </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns the lines of the <em>layout</em> as a list. </p>
<p>Use the faster get_lines_readonly() if you do not plan to modify the contents of the lines (glyphs, glyph widths, etc.).</p>
<dl class="section return"><dt>Returns</dt><dd>A SList containing the lines in the layout. This points to internal data of the <a class="el" href="classPango_1_1Layout.html" title="A Pango::Layout represents an entire paragraph of text. ">Pango::Layout</a> and must be used with care. It will become invalid on any change to the layout's text or properties. </dd></dl>
</div>
</div>
<a class="anchor" id="a1813059dc4f5c95e15618921c2777915"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="namespacePango.html#a0bbb7ae1485076ce063b20b7994275c3">SListHandle_ConstLayoutLine</a> Pango::Layout::get_lines </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns the lines of the <em>layout</em> as a list. </p>
<p>This is a faster alternative to <a class="el" href="classPango_1_1Layout.html#a2c0558852daeeec3bce52b905f4fdb9f" title="Returns the lines of the layout as a list. ">get_lines()</a>, but the user is not expected to modify the contents of the lines (glyphs, glyph widths, etc.).</p>
<dl class="since_1_16"><dt><b><a class="el" href="since_1_16.html#_since_1_16000015">Since pangomm 1.16:</a></b></dt><dd></dd></dl>
<dl class="section return"><dt>Returns</dt><dd>A SList containing the lines in the layout. This points to internal data of the <a class="el" href="classPango_1_1Layout.html" title="A Pango::Layout represents an entire paragraph of text. ">Pango::Layout</a> and must be used with care. It will become invalid on any change to the layout's text or properties. No changes should be made to the lines. </dd></dl>
</div>
</div>
<a class="anchor" id="a7ebb87d469baffe9bbfe9a0cb2ab9bec"></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_1ArrayHandle.html">Glib::ArrayHandle</a><<a class="el" href="namespacePango.html#ab0b3468a9efcaec7022885d46fd43d09">LogAttr</a>> Pango::Layout::get_log_attrs </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Retrieve an array of logical attributes for each character in the layout. </p>
<dl class="section return"><dt>Returns</dt><dd>An array of logical attributes. </dd></dl>
</div>
</div>
<a class="anchor" id="afeea1e256a22ae1cdb31760572ecee62"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classPango_1_1Rectangle.html">Rectangle</a> Pango::Layout::get_logical_extents </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Compute the logical extents of layout. </p>
<dl class="section return"><dt>Returns</dt><dd>The logical extents of the layout. </dd></dl>
</div>
</div>
<a class="anchor" id="a5aed2806ab714f655b46326a69924e3d"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Pango::Layout::get_pixel_extents </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classPango_1_1Rectangle.html">Rectangle</a>& </td>
<td class="paramname"><em>ink_rect</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="classPango_1_1Rectangle.html">Rectangle</a>& </td>
<td class="paramname"><em>logical_rect</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Compute the logical and ink extents of <em>layout</em> in device units. </p>
<p>See <a class="el" href="classPango_1_1Layout.html#a7abfd3c4e4e655255923e819426cd47d" title="Compute the logical and ink extents of layout. ">get_extents()</a>; this function just calls <a class="el" href="classPango_1_1Layout.html#a7abfd3c4e4e655255923e819426cd47d" title="Compute the logical and ink extents of layout. ">get_extents()</a> and then converts the extents to pixels using the <a class="el" href="namespacePango.html#a20d9629a369a6a5ab40ed9c01f879730">Pango::SCALE</a> factor.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">ink_rect</td><td><a class="el" href="classPango_1_1Rectangle.html" title="A Pango::Rectangle represents a rectangle. ">Rectangle</a> used to store the extents of the layout as drawn. </td></tr>
<tr><td class="paramname">logical_rect</td><td><a class="el" href="classPango_1_1Rectangle.html" title="A Pango::Rectangle represents a rectangle. ">Rectangle</a> used to store the logical extents of the layout. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="ab578209672c171c60b2e6bb5ce062570"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classPango_1_1Rectangle.html">Rectangle</a> Pango::Layout::get_pixel_ink_extents </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Compute the ink extents of the layout in device units. </p>
<dl class="section return"><dt>Returns</dt><dd>The extents of the layout as drawn. </dd></dl>
</div>
</div>
<a class="anchor" id="a1b97e487748a9221025c2d76a59d205a"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classPango_1_1Rectangle.html">Rectangle</a> Pango::Layout::get_pixel_logical_extents </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Compute the logical extents of the layout in device units. </p>
<dl class="section return"><dt>Returns</dt><dd>The logical extents of the layout. </dd></dl>
</div>
</div>
<a class="anchor" id="a655927f6258a67b1dcfea770baee4703"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Pango::Layout::get_pixel_size </td>
<td>(</td>
<td class="paramtype">int & </td>
<td class="paramname"><em>width</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int & </td>
<td class="paramname"><em>height</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Determines the logical width and height of a <a class="el" href="classPango_1_1Layout.html" title="A Pango::Layout represents an entire paragraph of text. ">Pango::Layout</a> in device units. </p>
<p>(<a class="el" href="classPango_1_1Layout.html#a568ce34e36d831764f5f66b223bd0f0b" title="Determines the logical width and height of a Pango::Layout in Pango units (device units scaled by Pan...">get_size()</a> returns the width and height scaled by <a class="el" href="namespacePango.html#a20d9629a369a6a5ab40ed9c01f879730">Pango::SCALE</a>.) This is simply a convenience function around <a class="el" href="classPango_1_1Layout.html#a5aed2806ab714f655b46326a69924e3d" title="Compute the logical and ink extents of layout in device units. ">get_pixel_extents()</a>.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">width</td><td>Location to store the logical width, or <code>nullptr</code>. </td></tr>
<tr><td class="paramname">height</td><td>Location to store the logical height, or <code>nullptr</code>. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a014c042ee0ed2e9a72c3a23b1faa54fa"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">guint Pango::Layout::get_serial </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns the current serial number of <em>layout</em>. </p>
<p>The serial number is initialized to an small number larger than zero when a new layout is created and is increased whenever the layout is changed using any of the setter functions, or the <a class="el" href="classPango_1_1Context.html" title="A Pango::Context stores global information used to control the itemization process. ">Pango::Context</a> it uses has changed. The serial may wrap, but will never have the value 0. Since it can wrap, never compare it with "less than", always use "not equals".</p>
<p>This can be used to automatically detect changes to a <a class="el" href="classPango_1_1Layout.html" title="A Pango::Layout represents an entire paragraph of text. ">Pango::Layout</a>, and is useful for example to decide whether a layout needs redrawing. To force the serial to be increased, use <a class="el" href="classPango_1_1Layout.html#ab78ccca32cb57798beb743ae6778e7a8" title="Forces recomputation of any state in the Pango::Layout that might depend on the layout's context...">context_changed()</a>.</p>
<dl class="since_1_32_4"><dt><b><a class="el" href="since_1_32_4.html#_since_1_32_4000003">Since pangomm 1.32.4:</a></b></dt><dd></dd></dl>
<dl class="section return"><dt>Returns</dt><dd>The current serial number of <em>layout</em>. </dd></dl>
</div>
</div>
<a class="anchor" id="a240e2b2f08a7328a3e411aa9f66d43a4"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Pango::Layout::get_single_paragraph_mode </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Obtains the value set by <a class="el" href="classPango_1_1Layout.html#a2e8b65d80e72b668112dc6e9d242bd30" title="If setting is true, do not treat newlines and similar characters as paragraph separators; instead...">set_single_paragraph_mode()</a>. </p>
<dl class="section return"><dt>Returns</dt><dd><code>true</code> if the layout does not break paragraphs at paragraph separator characters, <code>false</code> otherwise. </dd></dl>
</div>
</div>
<a class="anchor" id="a568ce34e36d831764f5f66b223bd0f0b"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Pango::Layout::get_size </td>
<td>(</td>
<td class="paramtype">int & </td>
<td class="paramname"><em>width</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int & </td>
<td class="paramname"><em>height</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Determines the logical width and height of a <a class="el" href="classPango_1_1Layout.html" title="A Pango::Layout represents an entire paragraph of text. ">Pango::Layout</a> in <a class="el" href="namespacePango.html">Pango</a> units (device units scaled by <a class="el" href="namespacePango.html#a20d9629a369a6a5ab40ed9c01f879730">Pango::SCALE</a>). </p>
<p>This is simply a convenience function around <a class="el" href="classPango_1_1Layout.html#a7abfd3c4e4e655255923e819426cd47d" title="Compute the logical and ink extents of layout. ">get_extents()</a>.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">width</td><td>Location to store the logical width, or <code>nullptr</code>. </td></tr>
<tr><td class="paramname">height</td><td>Location to store the logical height, or <code>nullptr</code>. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="acda5c0346b9a8de857f99769895a172c"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">int Pango::Layout::get_spacing </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Gets the amount of spacing between the lines of the layout. </p>
<dl class="section return"><dt>Returns</dt><dd>The spacing in <a class="el" href="namespacePango.html">Pango</a> units. </dd></dl>
</div>
</div>
<a class="anchor" id="aef4c2311178427785ae176a77808e51f"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classPango_1_1TabArray.html">TabArray</a> Pango::Layout::get_tabs </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Get the current <a class="el" href="classPango_1_1TabArray.html" title="A Pango::TabArray contains an array of tab stops. ">Pango::TabArray</a> used by this layout. </p>
<p>If no <a class="el" href="classPango_1_1TabArray.html" title="A Pango::TabArray contains an array of tab stops. ">Pango::TabArray</a> has been set, then the default tabs are in use and an invalid instance is returned. Default tabs are every 8 spaces.</p>
<dl class="section return"><dt>Returns</dt><dd>A copy of the tabs for this layout. </dd></dl>
</div>
</div>
<a class="anchor" id="afe9e63119d19a3f9c6c786495137bc4a"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> Pango::Layout::get_text </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Gets the text in the layout. </p>
<p>The returned text should not be freed or modified.</p>
<dl class="section return"><dt>Returns</dt><dd>The text in the <em>layout</em>. </dd></dl>
</div>
</div>
<a class="anchor" id="a50715204eb8db84101bb623c6978f7c3"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">static GType Pango::Layout::get_type </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Get the GType for this class, for use with the underlying GObject type system. </p>
</div>
</div>
<a class="anchor" id="a5d471d494007d78a8409bbdf0f1e9616"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">int Pango::Layout::get_unknown_glyphs_count </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Counts the number unknown glyphs in <em>layout</em>. </p>
<p>That is, zero if glyphs for all characters in the layout text were found, or more than zero otherwise.</p>
<p>This function can be used to determine if there are any fonts available to render all characters in a certain string, or when used in combination with <a class="el" href="namespacePango.html#ga7b189818298629d43d4f2ee7ef5b52e1ae9a2a00227a218f5e6953f6d1c341567" title="Whether fallback is enabled (Pango::AttrInt). ">Pango::ATTR_FALLBACK</a>, to check if a certain font supports all the characters in the string.</p>
<dl class="since_1_16"><dt><b><a class="el" href="since_1_16.html#_since_1_16000013">Since pangomm 1.16:</a></b></dt><dd></dd></dl>
<dl class="section return"><dt>Returns</dt><dd>The number of unknown glyphs in <em>layout</em>. </dd></dl>
</div>
</div>
<a class="anchor" id="ab91e3097bcbff2882f2341cf35338dd2"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">int Pango::Layout::get_width </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Gets the width to which the lines of the <a class="el" href="classPango_1_1Layout.html" title="A Pango::Layout represents an entire paragraph of text. ">Pango::Layout</a> should wrap. </p>
<dl class="section return"><dt>Returns</dt><dd>The width in <a class="el" href="namespacePango.html">Pango</a> units, or -1 if no width set. </dd></dl>
</div>
</div>
<a class="anchor" id="a0a3b9c241952bba854750471f91f983e"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="group__pangommEnums.html#gad57530f0324d4fd9e8a2fcec904ab240">WrapMode</a> Pango::Layout::get_wrap </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Gets the wrap mode for the layout. </p>
<p>Use <a class="el" href="classPango_1_1Layout.html#acc23cec27d04c9683e2838c51cf36cbd" title="Queries whether the layout had to wrap any paragraphs. ">is_wrapped()</a> to query whether any paragraphs were actually wrapped.</p>
<dl class="section return"><dt>Returns</dt><dd>Active wrap mode. </dd></dl>
</div>
</div>
<a class="anchor" id="a3cf520f31292a32b7bd00fb70c6711fc"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">PangoLayout* Pango::Layout::gobj </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Provides access to the underlying C GObject. </p>
</div>
</div>
<a class="anchor" id="ab0f2b726ce4d783fd127aa42de3e255d"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">const PangoLayout* Pango::Layout::gobj </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Provides access to the underlying C GObject. </p>
</div>
</div>
<a class="anchor" id="af2ed59d8031ce7df4b2592fe996bb2be"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">PangoLayout* Pango::Layout::gobj_copy </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Provides access to the underlying C instance. The caller is responsible for unrefing it. Use when directly setting fields in structs. </p>
</div>
</div>
<a class="anchor" id="ab922db9bbe6a863a159d0ad40932145c"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Pango::Layout::index_to_line_x </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"><em>index_</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">bool </td>
<td class="paramname"><em>trailing</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int & </td>
<td class="paramname"><em>line</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int & </td>
<td class="paramname"><em>x_pos</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Converts from byte <em>index</em> within the <em>layout</em> to line and X position. </p>
<p>(X position is measured from the left edge of the line)</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">index</td><td>The byte index of a grapheme within the layout. </td></tr>
<tr><td class="paramname">trailing</td><td>An integer indicating the edge of the grapheme to retrieve the position of. If > 0, the trailing edge of the grapheme, if 0, the leading of the grapheme. </td></tr>
<tr><td class="paramname">line</td><td>Location to store resulting line index. (which will between 0 and pango_layout_get_line_count(layout) - 1), or <code>nullptr</code>. </td></tr>
<tr><td class="paramname">x_pos</td><td>Location to store resulting position within line (<a class="el" href="namespacePango.html#a20d9629a369a6a5ab40ed9c01f879730">Pango::SCALE</a> units per device unit), or <code>nullptr</code>. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="adb188980ffa5191efc3f09db7ed364fb"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classPango_1_1Rectangle.html">Rectangle</a> Pango::Layout::index_to_pos </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"><em>index</em></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Convert from an index within the layout to the onscreen position corresponding to the grapheme at that index, which is represented as rectangle. </p>
<p>Note that <em>x</em> in the returned rectangle is always the leading edge of the grapheme and <em>x</em> + <em>width</em> the trailing edge of the grapheme. If the directionality of the grapheme is right-to-left, then <em>width</em> will be negative. </p><dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">index</td><td>Byte index within layout. </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>The position of the grapheme. </dd></dl>
</div>
</div>
<a class="anchor" id="aa4f9979faf774b502095cefafd5c7dd5"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Pango::Layout::is_ellipsized </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Queries whether the layout had to ellipsize any paragraphs. </p>
<p>This returns <code>true</code> if the ellipsization mode for <em>layout</em> is not <a class="el" href="namespacePango.html#ga982cbecf0c4ee56766aab816a7f5ed0baf3313f29d40e4603c3d062f2a1e854b8" title="No ellipsization. ">Pango::ELLIPSIZE_NONE</a>, a positive width is set on <em>layout</em>, and there are paragraphs exceeding that width that have to be ellipsized.</p>
<dl class="since_1_16"><dt><b><a class="el" href="since_1_16.html#_since_1_16000012">Since pangomm 1.16:</a></b></dt><dd></dd></dl>
<dl class="section return"><dt>Returns</dt><dd><code>true</code> if any paragraphs had to be ellipsized, <code>false</code> otherwise. </dd></dl>
</div>
</div>
<a class="anchor" id="acc23cec27d04c9683e2838c51cf36cbd"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Pango::Layout::is_wrapped </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Queries whether the layout had to wrap any paragraphs. </p>
<p>This returns <code>true</code> if a positive width is set on <em>layout</em>, ellipsization mode of <em>layout</em> is set to <a class="el" href="namespacePango.html#ga982cbecf0c4ee56766aab816a7f5ed0baf3313f29d40e4603c3d062f2a1e854b8" title="No ellipsization. ">Pango::ELLIPSIZE_NONE</a>, and there are paragraphs exceeding the layout width that have to be wrapped.</p>
<dl class="since_1_16"><dt><b><a class="el" href="since_1_16.html#_since_1_16000011">Since pangomm 1.16:</a></b></dt><dd></dd></dl>
<dl class="section return"><dt>Returns</dt><dd><code>true</code> if any paragraphs had to be wrapped, <code>false</code> otherwise. </dd></dl>
</div>
</div>
<a class="anchor" id="abb90721eddfadabdd10d84b49248284a"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Pango::Layout::move_cursor_visually </td>
<td>(</td>
<td class="paramtype">bool </td>
<td class="paramname"><em>strong</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>old_index</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>old_trailing</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>direction</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int & </td>
<td class="paramname"><em>new_index</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int & </td>
<td class="paramname"><em>new_trailing</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Computes a new cursor position from an old position and a count of positions to move visually. </p>
<p>If <em>direction</em> is positive, then the new strong cursor position will be one position to the right of the old cursor position. If <em>direction</em> is negative, then the new strong cursor position will be one position to the left of the old cursor position.</p>
<p>In the presence of bidirectional text, the correspondence between logical and visual order will depend on the direction of the current run, and there may be jumps when the cursor is moved off of the end of a run.</p>
<p>Motion here is in cursor positions, not in characters, so a single call to <a class="el" href="classPango_1_1Layout.html#abb90721eddfadabdd10d84b49248284a" title="Computes a new cursor position from an old position and a count of positions to move visually...">move_cursor_visually()</a> may move the cursor over multiple characters when multiple characters combine to form a single grapheme.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">strong</td><td>Whether the moving cursor is the strong cursor or the weak cursor. The strong cursor is the cursor corresponding to text insertion in the base direction for the layout. </td></tr>
<tr><td class="paramname">old_index</td><td>The byte index of the grapheme for the old index. </td></tr>
<tr><td class="paramname">old_trailing</td><td>If 0, the cursor was at the leading edge of the grapheme indicated by <em>old_index</em>, if > 0, the cursor was at the trailing edge. </td></tr>
<tr><td class="paramname">direction</td><td>Direction to move cursor. A negative value indicates motion to the left. </td></tr>
<tr><td class="paramname">new_index</td><td>Location to store the new cursor byte index. A value of -1 indicates that the cursor has been moved off the beginning of the layout. A value of MAXINT indicates that the cursor has been moved off the end of the layout. </td></tr>
<tr><td class="paramname">new_trailing</td><td>Number of characters to move forward from the location returned for <em>new_index</em> to get the position where the cursor should be displayed. This allows distinguishing the position at the beginning of one line from the position at the end of the preceding line. <em>new_index</em> is always on the line where the cursor should be displayed. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a44227b8056bbe19769157d32c0c8d709"></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="classPango_1_1Layout.html">Layout</a>& Pango::Layout::operator= </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classPango_1_1Layout.html">Layout</a>&& </td>
<td class="paramname"><em>src</em></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">noexcept</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="a716f87fa132357a35cc003c349e2dc54"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Pango::Layout::set_alignment </td>
<td>(</td>
<td class="paramtype"><a class="el" href="group__pangommEnums.html#gaf6b8926663368e305380e01f8858caca">Alignment</a> </td>
<td class="paramname"><em>alignment</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets the alignment for the layout: how partial lines are positioned within the horizontal space available. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">alignment</td><td>The alignment. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a6b3292c3eff18aa061c4e9a6f5fa8d1a"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Pango::Layout::set_attributes </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classPango_1_1AttrList.html">AttrList</a>& </td>
<td class="paramname"><em>attrs</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets the text attributes for a layout object. </p>
<p>References <em>attrs</em>, so the caller can unref its reference.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">attrs</td><td>A <a class="el" href="classPango_1_1AttrList.html" title="A Pango::AttrList represents a list of attributes that apply to a section of text. ">Pango::AttrList</a>, can be <code>nullptr</code>. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="ad69dbf5d3c9657f6c5030d0e33afb70f"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Pango::Layout::set_auto_dir </td>
<td>(</td>
<td class="paramtype">bool </td>
<td class="paramname"><em>auto_dir</em> = <code>true</code></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets whether to calculate the bidirectional base direction for the layout according to the contents of the layout; when this flag is on (the default), then paragraphs in <em>layout</em> that begin with strong right-to-left characters (Arabic and Hebrew principally), will have right-to-left layout, paragraphs with letters from other scripts will have left-to-right layout. </p>
<p>Paragraphs with only neutral characters get their direction from the surrounding paragraphs.</p>
<p>When <code>false</code>, the choice between left-to-right and right-to-left layout is done according to the base direction of the layout's <a class="el" href="classPango_1_1Context.html" title="A Pango::Context stores global information used to control the itemization process. ">Pango::Context</a>. (See <a class="el" href="classPango_1_1Context.html#a2f2e234bb53c20eff53ed8f1e51e460f" title="Sets the base direction for the context. ">Pango::Context::set_base_dir()</a>).</p>
<p>When the auto-computed direction of a paragraph differs from the base direction of the context, the interpretation of <a class="el" href="namespacePango.html#gaf6b8926663368e305380e01f8858cacaa31dff6222562c255af8a033b44607f95" title="Put all available space on the right. ">Pango::ALIGN_LEFT</a> and <a class="el" href="namespacePango.html#gaf6b8926663368e305380e01f8858cacaabfd0c816990ffa47a62f66e54dc58c9f" title="Put all available space on the left. ">Pango::ALIGN_RIGHT</a> are swapped.</p>
<dl class="since_1_4"><dt><b><a class="el" href="since_1_4.html#_since_1_4000004">Since pangomm 1.4:</a></b></dt><dd></dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">auto_dir</td><td>If <code>true</code>, compute the bidirectional base direction from the layout's contents. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="aec7d3c98d1b364b335aae67fa6cb144c"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Pango::Layout::set_ellipsize </td>
<td>(</td>
<td class="paramtype"><a class="el" href="group__pangommEnums.html#ga982cbecf0c4ee56766aab816a7f5ed0b">EllipsizeMode</a> </td>
<td class="paramname"><em>ellipsize</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets the type of ellipsization being performed for <em>layout</em>. </p>
<p>Depending on the ellipsization mode <em>ellipsize</em> text is removed from the start, middle, or end of text so they fit within the width and height of layout set with <a class="el" href="classPango_1_1Layout.html#abb0b47950f32da332d6043c9de9b2b07" title="Sets the width to which the lines of the Pango::Layout should wrap or ellipsized. ...">set_width()</a> and <a class="el" href="classPango_1_1Layout.html#a70af01986a0a16fe1b2d29297949a161" title="Sets the height to which the Pango::Layout should be ellipsized at. ">set_height()</a>.</p>
<p>If the layout contains characters such as newlines that force it to be layed out in multiple paragraphs, then whether each paragraph is ellipsized separately or the entire layout is ellipsized as a whole depends on the set height of the layout. See <a class="el" href="classPango_1_1Layout.html#a70af01986a0a16fe1b2d29297949a161" title="Sets the height to which the Pango::Layout should be ellipsized at. ">set_height()</a> for details.</p>
<dl class="since_1_6"><dt><b><a class="el" href="since_1_6.html#_since_1_6000008">Since pangomm 1.6:</a></b></dt><dd></dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">ellipsize</td><td>The new ellipsization mode for <em>layout</em>. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="ac2193bc15c036f7322da333ddddef4be"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Pango::Layout::set_font_description </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classPango_1_1FontDescription.html">FontDescription</a>& </td>
<td class="paramname"><em>desc</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Set the default font description for the layout. </p>
<p>If no font description is set on the layout, the font description from the layout's context is used.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">desc</td><td>The new pango font description. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a70af01986a0a16fe1b2d29297949a161"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Pango::Layout::set_height </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"><em>height</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets the height to which the <a class="el" href="classPango_1_1Layout.html" title="A Pango::Layout represents an entire paragraph of text. ">Pango::Layout</a> should be ellipsized at. </p>
<p>There are two different behaviors, based on whether <em>height</em> is positive or negative.</p>
<p>If <em>height</em> is positive, it will be the maximum height of the layout. Only lines would be shown that would fit, and if there is any text omitted, an ellipsis added. At least one line is included in each paragraph regardless of how small the height value is. A value of zero will render exactly one line for the entire layout.</p>
<p>If <em>height</em> is negative, it will be the (negative of) maximum number of lines per paragraph. That is, the total number of lines shown may well be more than this value if the layout contains multiple paragraphs of text. The default value of -1 means that first line of each paragraph is ellipsized. This behvaior may be changed in the future to act per layout instead of per paragraph. File a bug against pango at <a href="http://bugzilla.gnome.org/">http://bugzilla.gnome.org/</a> if your code relies on this behavior.</p>
<p>Height setting only has effect if a positive width is set on <em>layout</em> and ellipsization mode of <em>layout</em> is not <a class="el" href="namespacePango.html#ga982cbecf0c4ee56766aab816a7f5ed0baf3313f29d40e4603c3d062f2a1e854b8" title="No ellipsization. ">Pango::ELLIPSIZE_NONE</a>. The behavior is undefined if a height other than -1 is set and ellipsization mode is set to <a class="el" href="namespacePango.html#ga982cbecf0c4ee56766aab816a7f5ed0baf3313f29d40e4603c3d062f2a1e854b8" title="No ellipsization. ">Pango::ELLIPSIZE_NONE</a>, and may change in the future.</p>
<dl class="since_1_20"><dt><b><a class="el" href="since_1_20.html#_since_1_20000001">Since pangomm 1.20:</a></b></dt><dd></dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">height</td><td>The desired height of the layout in <a class="el" href="namespacePango.html">Pango</a> units if positive, or desired number of lines if negative. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="ad7e4ea552c0f5d6f3dd3744afde174c6"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Pango::Layout::set_indent </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"><em>indent</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets the width in <a class="el" href="namespacePango.html">Pango</a> units to indent each paragraph. </p>
<p>A negative value of <em>indent</em> will produce a hanging indentation. That is, the first line will have the full width, and subsequent lines will be indented by the absolute value of <em>indent</em>.</p>
<p>The indent setting is ignored if layout alignment is set to <a class="el" href="namespacePango.html#gaf6b8926663368e305380e01f8858cacaaf7b9e3b7a53e2526ede1a28f2d0a6c8e" title="Center the line within the available space. ">Pango::ALIGN_CENTER</a>.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">indent</td><td>The amount by which to indent. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="acd2bc770cfd32ce24c4a1ab8425ae22b"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Pango::Layout::set_justify </td>
<td>(</td>
<td class="paramtype">bool </td>
<td class="paramname"><em>justify</em> = <code>true</code></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets whether each complete line should be stretched to fill the entire width of the layout. </p>
<p>This stretching is typically done by adding whitespace, but for some scripts (such as Arabic), the justification may be done in more complex ways, like extending the characters.</p>
<p>Note that this setting is not implemented and so is ignored in <a class="el" href="namespacePango.html">Pango</a> older than 1.18.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">justify</td><td>Whether the lines in the layout should be justified. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="af49842ef1724ac0e7a8afcb860e6bb1f"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Pango::Layout::set_markup </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>markup</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets the layout text and attribute list from marked-up text (see markup format). </p>
<p>Replaces the current text and attribute list. </p><dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">markup</td><td>Some marked-up text. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a466e0638cb285d7a38fe6ee79267bd89"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Pango::Layout::set_markup </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>markup</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">gunichar </td>
<td class="paramname"><em>accel_marker</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">gunichar & </td>
<td class="paramname"><em>accel_char</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets the layout text and attribute list from marked-up text (see markup format). </p>
<p>Replaces the current text and attribute list.</p>
<p>If <em>accel_marker</em> is nonzero, the given character will mark the character following it as an accelerator. For example, the accel marker might be an ampersand or underscore. All characters marked as an accelerator will receive a <a class="el" href="namespacePango.html#gabbd069e35161c1ad698b7f1fe70aec57a7275076788b41a06935c12e0187ce732" title="A single underline should be drawn at a position beneath the ink extents of the text being underlined...">Pango::UNDERLINE_LOW</a> attribute, and the first character so marked will be returned in <em>accel_char</em>. Two <em>accel_marker</em> characters following each other produce a single literal <em>accel_marker</em> character. </p><dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">markup</td><td>Some marked-up text. </td></tr>
<tr><td class="paramname">accel_marker</td><td>Marker for accelerators in the text. </td></tr>
<tr><td class="paramname">accel_char</td><td>Return location for any located accelerators. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a2e8b65d80e72b668112dc6e9d242bd30"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Pango::Layout::set_single_paragraph_mode </td>
<td>(</td>
<td class="paramtype">bool </td>
<td class="paramname"><em>setting</em> = <code>true</code></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>If <em>setting</em> is <code>true</code>, do not treat newlines and similar characters as paragraph separators; instead, keep all text in a single paragraph, and display a glyph for paragraph separator characters. </p>
<p>Used when you want to allow editing of newlines on a single text line.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">setting</td><td>New setting. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="aa1d2006bc368b82e577f6afa97ae009a"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Pango::Layout::set_spacing </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"><em>spacing</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets the amount of spacing in <a class="el" href="namespacePango.html">Pango</a> unit between the lines of the layout. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">spacing</td><td>The amount of spacing. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="abef27924517817fbbf8dd2fc16af153d"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Pango::Layout::set_tabs </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classPango_1_1TabArray.html">TabArray</a>& </td>
<td class="paramname"><em>tabs</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets the tabs to use for <em>layout</em>, overriding the default tabs (by default, tabs are every 8 spaces). </p>
<p>If <em>tabs</em> is <code>nullptr</code>, the default tabs are reinstated. <em>tabs</em> is copied into the layout; you must free your copy of <em>tabs</em> yourself.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">tabs</td><td>A <a class="el" href="classPango_1_1TabArray.html" title="A Pango::TabArray contains an array of tab stops. ">Pango::TabArray</a>, or <code>nullptr</code>. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a981012a0af40936591f8d39aa169a6fd"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Pango::Layout::set_text </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>text</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Set the text of the layout. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">text</td><td>The text for the layout. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="abb0b47950f32da332d6043c9de9b2b07"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Pango::Layout::set_width </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"><em>width</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets the width to which the lines of the <a class="el" href="classPango_1_1Layout.html" title="A Pango::Layout represents an entire paragraph of text. ">Pango::Layout</a> should wrap or ellipsized. </p>
<p>The default value is -1: no width set.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">width</td><td>The desired width in <a class="el" href="namespacePango.html">Pango</a> units, or -1 to indicate that no wrapping or ellipsization should be performed. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="acf55858919f4dffd56f41d936f9d3bfb"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Pango::Layout::set_wrap </td>
<td>(</td>
<td class="paramtype"><a class="el" href="group__pangommEnums.html#gad57530f0324d4fd9e8a2fcec904ab240">WrapMode</a> </td>
<td class="paramname"><em>wrap</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets the wrap mode; the wrap mode only has effect if a width is set on the layout with <a class="el" href="classPango_1_1Layout.html#abb0b47950f32da332d6043c9de9b2b07" title="Sets the width to which the lines of the Pango::Layout should wrap or ellipsized. ...">set_width()</a>. </p>
<p>To turn off wrapping, set the width to -1.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">wrap</td><td>The wrap mode. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a4594ac585d306b6cf013e640184d5e89"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Pango::Layout::show_in_cairo_context </td>
<td>(</td>
<td class="paramtype">const <a class="elRef" doxygen="cairomm-1.0.tag:http://www.cairographics.org/documentation/cairomm/reference/" href="http://www.cairographics.org/documentation/cairomm/reference/classCairo_1_1RefPtr.html">Cairo::RefPtr</a>< <a class="elRef" doxygen="cairomm-1.0.tag:http://www.cairographics.org/documentation/cairomm/reference/" href="http://www.cairographics.org/documentation/cairomm/reference/classCairo_1_1Context.html">Cairo::Context</a> > & </td>
<td class="paramname"><em>context</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Draws a <a class="el" href="classPango_1_1Layout.html" title="A Pango::Layout represents an entire paragraph of text. ">Layout</a> in the specified <a class="elRef" doxygen="cairomm-1.0.tag:http://www.cairographics.org/documentation/cairomm/reference/" href="http://www.cairographics.org/documentation/cairomm/reference/namespaceCairo.html">Cairo</a> <em>context</em>. </p>
<p>The top-left corner of the <a class="el" href="classPango_1_1Layout.html" title="A Pango::Layout represents an entire paragraph of text. ">Layout</a> will be drawn at the current point of the cairo context.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">context</td><td>A <a class="elRef" doxygen="cairomm-1.0.tag:http://www.cairographics.org/documentation/cairomm/reference/" href="http://www.cairographics.org/documentation/cairomm/reference/namespaceCairo.html">Cairo</a> context.</td></tr>
</table>
</dd>
</dl>
<dl class="since_2_16"><dt><b><a class="el" href="since_2_16.html#_since_2_16000001">Since pangomm 2.16:</a></b></dt><dd></dd></dl>
</div>
</div>
<a class="anchor" id="ad808c80347d1a4b9d9d5836b6c92e4d0"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Pango::Layout::unset_font_description </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="a6706a92463a0df36eb3f86f8203413d7"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Pango::Layout::update_from_cairo_context </td>
<td>(</td>
<td class="paramtype">const <a class="elRef" doxygen="cairomm-1.0.tag:http://www.cairographics.org/documentation/cairomm/reference/" href="http://www.cairographics.org/documentation/cairomm/reference/classCairo_1_1RefPtr.html">Cairo::RefPtr</a>< <a class="elRef" doxygen="cairomm-1.0.tag:http://www.cairographics.org/documentation/cairomm/reference/" href="http://www.cairographics.org/documentation/cairomm/reference/classCairo_1_1Context.html">Cairo::Context</a> > & </td>
<td class="paramname"><em>context</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Updates the private <a class="el" href="namespacePango.html">Pango</a> <a class="el" href="classPango_1_1Context.html" title="A Pango::Context stores global information used to control the itemization process. ">Context</a> of a <a class="el" href="namespacePango.html">Pango</a> <a class="el" href="classPango_1_1Layout.html" title="A Pango::Layout represents an entire paragraph of text. ">Layout</a> created with <a class="el" href="classPango_1_1Layout.html#ae0e8a32e79465fa38d2c59d0cbe482ae" title="Creates a layout object set up to match the current transformation and target surface of the Cairo co...">create(const Cairo::RefPtr<Cairo::Context>&)</a> to match the current transformation and target surface of a <a class="elRef" doxygen="cairomm-1.0.tag:http://www.cairographics.org/documentation/cairomm/reference/" href="http://www.cairographics.org/documentation/cairomm/reference/namespaceCairo.html">Cairo</a> <a class="el" href="classPango_1_1Context.html" title="A Pango::Context stores global information used to control the itemization process. ">Context</a>. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">context</td><td>A <a class="elRef" doxygen="cairomm-1.0.tag:http://www.cairographics.org/documentation/cairomm/reference/" href="http://www.cairographics.org/documentation/cairomm/reference/namespaceCairo.html">Cairo</a> context. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a7281fe2d705ba6f60d8b5d7a04a324f3"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Pango::Layout::xy_to_index </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"><em>x</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>y</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int & </td>
<td class="paramname"><em>index</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int & </td>
<td class="paramname"><em>trailing</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Converts from X and Y position within a layout to the byte index to the character at that logical position. </p>
<p>If the Y position is not inside the layout, the closest position is chosen (the position will be clamped inside the layout). If the X position is not within the layout, then the start or the end of the line is chosen as described for <a class="el" href="classPango_1_1LayoutLine.html#af77f966e3d31f3ab51b9e70b394f48db" title="Converts from x offset to the byte index of the corresponding character within the text of the layout...">Pango::LayoutLine::x_to_index()</a>. If either the X or Y positions were not inside the layout, then the function returns <code>false</code>; on an exact hit, it returns <code>true</code>.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">x</td><td>The X offset (in <a class="el" href="namespacePango.html">Pango</a> units) from the left edge of the layout. </td></tr>
<tr><td class="paramname">y</td><td>The Y offset (in <a class="el" href="namespacePango.html">Pango</a> units) from the top edge of the layout. </td></tr>
<tr><td class="paramname">index</td><td>Location to store calculated byte index. </td></tr>
<tr><td class="paramname">trailing</td><td>Location to store a integer indicating where in the grapheme the user clicked. It will either be zero, or the number of characters in the grapheme. 0 represents the leading edge of the grapheme. </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd><code>true</code> if the coordinates were inside text, <code>false</code> otherwise. </dd></dl>
</div>
</div>
<h2 class="groupheader">Friends And Related Function Documentation</h2>
<a class="anchor" id="a2f16e9892cb8734c93056d6089af173b"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classPango_1_1Layout.html">Pango::Layout</a> > wrap </td>
<td>(</td>
<td class="paramtype">PangoLayout * </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>
</div><!-- contents -->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated on Fri Aug 19 2016 15:59:16 for pangomm by  <a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.8.9.1
</small></address>
</body>
</html>
|