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
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta content="text/html; charset=ISO-8859-1"
http-equiv="content-type">
<title>GTK+ Foundation Classes</title>
<link href="gfc.css" rel="stylesheet" type="text/css">
<meta content="The GFC Development Team" name="author">
<meta content="Core Library Reference Manual" name="description">
</head>
<body style="color: rgb(0, 0, 0); background-color: rgb(243, 244, 248);"
alink="#000099" link="#000099" vlink="#990099">
<table style="text-align: left; width: 1227px; height: 117px;"
border="0" cellpadding="0" cellspacing="0">
<tbody>
<tr>
<td
style="text-align: center; background-color: rgb(255, 255, 255); width: 220px; vertical-align: top;"><img
alt="GFC Logo" src="../images/gfc.png"
style="width: 207px; height: 92px;"></td>
<td
style="text-align: center; background-color: rgb(87, 107, 152); vertical-align: middle;"><img
alt="GFC Title Logo" src="../images/gfc-title.png"
style="width: 418px; height: 76px;"><br>
</td>
</tr>
<tr>
<td
style="text-align: center; background-color: rgb(65, 77, 104); vertical-align: middle;"><big><span
style="color: rgb(255, 255, 153); font-weight: bold;">Reference Manual</span></big><br>
</td>
<td
style="text-align: center; background-color: rgb(148, 164, 200); vertical-align: middle;"><small
style="font-family: helvetica,arial,sans-serif;"><a
href="../html/index.html">Main Page</a> | <a
href="../html/namespaces.html">Namespace List</a> | <a
href="classes.html">Alphabetical List</a> | <a
href="../html/annotated.html">Class List</a> | <a
href="../html/files.html">File List</a></small><br>
</td>
</tr>
</tbody>
</table>
<small> </small>
</body>
</html>
<!-- Generated by Doxygen 1.3.8 -->
<h1></h1>The C++ framework for the <a class="el" href="namespaceGFC_1_1Pango.html">Pango</a> text handling library.
<a href="#_details">More...</a>
<p>
<h2>Classes</h2>
<ul>
<li>class <a class="el" href="classGFC_1_1Pango_1_1Attribute.html">GFC::Pango::Attribute</a>
<dl class="el"><dd class="mdescRight">A PangoAttriubte C++ wrapper class. <a href="classGFC_1_1Pango_1_1Attribute.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Pango_1_1AttrString.html">GFC::Pango::AttrString</a>
<dl class="el"><dd class="mdescRight">A PangoAttrString C++ wrapper class. <a href="classGFC_1_1Pango_1_1AttrString.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Pango_1_1AttrLanguage.html">GFC::Pango::AttrLanguage</a>
<dl class="el"><dd class="mdescRight">A PangoAttrLanguage C++ wrapper class. <a href="classGFC_1_1Pango_1_1AttrLanguage.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Pango_1_1AttrFamily.html">GFC::Pango::AttrFamily</a>
<dl class="el"><dd class="mdescRight"><a class="el" href="namespaceGFC_1_1Pango.html">Pango</a> font family name C++ wrapper class. <a href="classGFC_1_1Pango_1_1AttrFamily.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Pango_1_1AttrColor.html">GFC::Pango::AttrColor</a>
<dl class="el"><dd class="mdescRight">A PangoAttrColor C++ wrapper class. <a href="classGFC_1_1Pango_1_1AttrColor.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Pango_1_1AttrForeground.html">GFC::Pango::AttrForeground</a>
<dl class="el"><dd class="mdescRight"><a class="el" href="namespaceGFC_1_1Pango.html">Pango</a> foreground color C++ wrapper class. <a href="classGFC_1_1Pango_1_1AttrForeground.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Pango_1_1AttrBackground.html">GFC::Pango::AttrBackground</a>
<dl class="el"><dd class="mdescRight">A <a class="el" href="namespaceGFC_1_1Pango.html">Pango</a> background color C++ wrapper class. <a href="classGFC_1_1Pango_1_1AttrBackground.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Pango_1_1AttrInt.html">GFC::Pango::AttrInt</a>
<dl class="el"><dd class="mdescRight">A PangoAttrInt C++ wrapper class. <a href="classGFC_1_1Pango_1_1AttrInt.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Pango_1_1AttrSize.html">GFC::Pango::AttrSize</a>
<dl class="el"><dd class="mdescRight"><a class="el" href="namespaceGFC_1_1Pango.html">Pango</a> size C++ wrapper class. <a href="classGFC_1_1Pango_1_1AttrSize.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Pango_1_1AttrStyle.html">GFC::Pango::AttrStyle</a>
<dl class="el"><dd class="mdescRight"><a class="el" href="namespaceGFC_1_1Pango.html">Pango</a> style C++ wrapper class. <a href="classGFC_1_1Pango_1_1AttrStyle.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Pango_1_1AttrWeight.html">GFC::Pango::AttrWeight</a>
<dl class="el"><dd class="mdescRight"><a class="el" href="namespaceGFC_1_1Pango.html">Pango</a> weight C++ wrapper class. <a href="classGFC_1_1Pango_1_1AttrWeight.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Pango_1_1AttrVariant.html">GFC::Pango::AttrVariant</a>
<dl class="el"><dd class="mdescRight"><a class="el" href="namespaceGFC_1_1Pango.html">Pango</a> variant C++ wrapper class. <a href="classGFC_1_1Pango_1_1AttrVariant.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Pango_1_1AttrStretch.html">GFC::Pango::AttrStretch</a>
<dl class="el"><dd class="mdescRight"><a class="el" href="namespaceGFC_1_1Pango.html">Pango</a> stretch C++ wrapper class. <a href="classGFC_1_1Pango_1_1AttrStretch.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Pango_1_1AttrUnderline.html">GFC::Pango::AttrUnderline</a>
<dl class="el"><dd class="mdescRight"><a class="el" href="namespaceGFC_1_1Pango.html">Pango</a> underline C++ wrapper class. <a href="classGFC_1_1Pango_1_1AttrUnderline.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Pango_1_1AttrStrikethrough.html">GFC::Pango::AttrStrikethrough</a>
<dl class="el"><dd class="mdescRight"><a class="el" href="namespaceGFC_1_1Pango.html">Pango</a> strikethrough C++ wrapper class. <a href="classGFC_1_1Pango_1_1AttrStrikethrough.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Pango_1_1AttrRise.html">GFC::Pango::AttrRise</a>
<dl class="el"><dd class="mdescRight"><a class="el" href="namespaceGFC_1_1Pango.html">Pango</a> rise C++ wrapper class. <a href="classGFC_1_1Pango_1_1AttrRise.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Pango_1_1AttrFontDesc.html">GFC::Pango::AttrFontDesc</a>
<dl class="el"><dd class="mdescRight">A PangoAttrFontDesc C++ wrapper class. <a href="classGFC_1_1Pango_1_1AttrFontDesc.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Pango_1_1AttrShape.html">GFC::Pango::AttrShape</a>
<dl class="el"><dd class="mdescRight">A PangoAttrShape C++ wrapper class. <a href="classGFC_1_1Pango_1_1AttrShape.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Pango_1_1AttrFloat.html">GFC::Pango::AttrFloat</a>
<dl class="el"><dd class="mdescRight">A PangoAttrFloat C++ wrapper class. <a href="classGFC_1_1Pango_1_1AttrFloat.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Pango_1_1AttrScale.html">GFC::Pango::AttrScale</a>
<dl class="el"><dd class="mdescRight"><a class="el" href="namespaceGFC_1_1Pango.html">Pango</a> scale C++ wrapper class. <a href="classGFC_1_1Pango_1_1AttrScale.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Pango_1_1AttrFallback.html">GFC::Pango::AttrFallback</a>
<dl class="el"><dd class="mdescRight"><a class="el" href="namespaceGFC_1_1Pango.html">Pango</a> fallback C++ wrapper class. <a href="classGFC_1_1Pango_1_1AttrFallback.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Pango_1_1AttrStipple.html">GFC::Pango::AttrStipple</a>
<dl class="el"><dd class="mdescRight">A GdkPangoAttrStipple C++ wrapper class. <a href="classGFC_1_1Pango_1_1AttrStipple.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Pango_1_1AttrEmbossed.html">GFC::Pango::AttrEmbossed</a>
<dl class="el"><dd class="mdescRight">A GdkPangoAttrEmbossed C++ wrapper class. <a href="classGFC_1_1Pango_1_1AttrEmbossed.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Pango_1_1AttrIterator.html">GFC::Pango::AttrIterator</a>
<dl class="el"><dd class="mdescRight">A PangoAttrIterator C++ wrapper class. <a href="classGFC_1_1Pango_1_1AttrIterator.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Pango_1_1AttrList.html">GFC::Pango::AttrList</a>
<dl class="el"><dd class="mdescRight">A PangoAttrList C++ wrapper class. <a href="classGFC_1_1Pango_1_1AttrList.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Pango_1_1LogAttr.html">GFC::Pango::LogAttr</a>
<dl class="el"><dd class="mdescRight">A PangoLogAttr C++ wrapper class. <a href="classGFC_1_1Pango_1_1LogAttr.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Pango_1_1Context.html">GFC::Pango::Context</a>
<dl class="el"><dd class="mdescRight">A PangoLogAttr C++ wrapper class. <a href="classGFC_1_1Pango_1_1Context.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Pango_1_1Coverage.html">GFC::Pango::Coverage</a>
<dl class="el"><dd class="mdescRight">A PangoCoverage C++ wrapper class. <a href="classGFC_1_1Pango_1_1Coverage.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Pango_1_1FontDescription.html">GFC::Pango::FontDescription</a>
<dl class="el"><dd class="mdescRight">A PangoFontDescription C++ wrapper class. <a href="classGFC_1_1Pango_1_1FontDescription.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Pango_1_1FontMetrics.html">GFC::Pango::FontMetrics</a>
<dl class="el"><dd class="mdescRight">A PangoFontMetrics C++ wrapper class. <a href="classGFC_1_1Pango_1_1FontMetrics.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Pango_1_1FontFace.html">GFC::Pango::FontFace</a>
<dl class="el"><dd class="mdescRight">A PangoFontFace C++ wrapper class. <a href="classGFC_1_1Pango_1_1FontFace.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Pango_1_1FontFamily.html">GFC::Pango::FontFamily</a>
<dl class="el"><dd class="mdescRight">A PangoFontFamily C++ wrapper class. <a href="classGFC_1_1Pango_1_1FontFamily.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Pango_1_1Font.html">GFC::Pango::Font</a>
<dl class="el"><dd class="mdescRight">A PangoFont C++ wrapper class. <a href="classGFC_1_1Pango_1_1Font.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Pango_1_1FontMap.html">GFC::Pango::FontMap</a>
<dl class="el"><dd class="mdescRight">A PangoFontMap C++ wrapper class. <a href="classGFC_1_1Pango_1_1FontMap.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Pango_1_1Fontset.html">GFC::Pango::Fontset</a>
<dl class="el"><dd class="mdescRight">A PangoFontset C++ wrapper class. <a href="classGFC_1_1Pango_1_1Fontset.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Pango_1_1GlyphGeometry.html">GFC::Pango::GlyphGeometry</a>
<dl class="el"><dd class="mdescRight">A PangoGlyphGeometry C++ wrapper class. <a href="classGFC_1_1Pango_1_1GlyphGeometry.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Pango_1_1GlyphVisAttr.html">GFC::Pango::GlyphVisAttr</a>
<dl class="el"><dd class="mdescRight">A PangoGlyphVisAttr C++ wrapper class. <a href="classGFC_1_1Pango_1_1GlyphVisAttr.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Pango_1_1GlyphInfo.html">GFC::Pango::GlyphInfo</a>
<dl class="el"><dd class="mdescRight">A PangoGlyphInfo C++ wrapper class. <a href="classGFC_1_1Pango_1_1GlyphInfo.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Pango_1_1GlyphString.html">GFC::Pango::GlyphString</a>
<dl class="el"><dd class="mdescRight">A PangoGlyphString C++ wrapper class. <a href="classGFC_1_1Pango_1_1GlyphString.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Pango_1_1Analysis.html">GFC::Pango::Analysis</a>
<dl class="el"><dd class="mdescRight">A PangoAnalysis C++ wrapper class. <a href="classGFC_1_1Pango_1_1Analysis.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Pango_1_1Item.html">GFC::Pango::Item</a>
<dl class="el"><dd class="mdescRight">A PangoItem C++ wrapper class. <a href="classGFC_1_1Pango_1_1Item.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Pango_1_1LayoutRun.html">GFC::Pango::LayoutRun</a>
<dl class="el"><dd class="mdescRight">A PangoLayoutRun C++ wrapper class. <a href="classGFC_1_1Pango_1_1LayoutRun.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Pango_1_1LayoutLine.html">GFC::Pango::LayoutLine</a>
<dl class="el"><dd class="mdescRight">A PangoLayoutLine C++ wrapper class. <a href="classGFC_1_1Pango_1_1LayoutLine.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Pango_1_1LayoutIter.html">GFC::Pango::LayoutIter</a>
<dl class="el"><dd class="mdescRight">A PangoLayoutIter C++ wrapper class. <a href="classGFC_1_1Pango_1_1LayoutIter.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Pango_1_1Layout.html">GFC::Pango::Layout</a>
<dl class="el"><dd class="mdescRight">A PangoLayout C++ wrapper class. <a href="classGFC_1_1Pango_1_1Layout.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Pango_1_1ScriptIter.html">GFC::Pango::ScriptIter</a>
<dl class="el"><dd class="mdescRight">A PangoScriptIter C++ wrapper class. <a href="classGFC_1_1Pango_1_1ScriptIter.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Pango_1_1TabArray.html">GFC::Pango::TabArray</a>
<dl class="el"><dd class="mdescRight">A PangoTabArray C++ wrapper class. <a href="classGFC_1_1Pango_1_1TabArray.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Pango_1_1Rectangle.html">GFC::Pango::Rectangle</a>
<dl class="el"><dd class="mdescRight">A PangoRectangle C++ wrapper class. <a href="classGFC_1_1Pango_1_1Rectangle.html#_details">More...</a><br></dl></ul>
<h2>Rendering Methods</h2>
<ul>
<li>void <a class="el" href="namespaceGFC_1_1Pango.html#a124">break_text</a> (const <a class="elRef" doxygen="gfccore.tag:" href="classGFC_1_1String.html">String</a> &text, const <a class="el" href="classGFC_1_1Pango_1_1Analysis.html">Analysis</a> &analysis, std::vector< <a class="el" href="classGFC_1_1Pango_1_1LogAttr.html">LogAttr</a> > &attrs)
<dl class="el"><dd class="mdescRight">Determines possible line, word, and character breaks for a string of Unicode text. <a href="#a124"></a><br></dl><li>void <a class="el" href="namespaceGFC_1_1Pango.html#a125">find_paragraph_boundary</a> (const <a class="elRef" doxygen="gfccore.tag:" href="classGFC_1_1String.html">String</a> &text, int *paragraph_delimiter_index, int *next_paragraph_start)
<dl class="el"><dd class="mdescRight">Locates a paragraph boundary in text. <a href="#a125"></a><br></dl><li>void <a class="el" href="namespaceGFC_1_1Pango.html#a126">get_log_attrs</a> (const <a class="elRef" doxygen="gfccore.tag:" href="classGFC_1_1String.html">String</a> &text, PangoLanguage *language, std::vector< <a class="el" href="classGFC_1_1Pango_1_1LogAttr.html">LogAttr</a> > &attrs, int level=-1)
<dl class="el"><dd class="mdescRight">Computes a <a class="el" href="classGFC_1_1Pango_1_1LogAttr.html">LogAttr</a> for each character in <em>text</em>. <a href="#a126"></a><br></dl></ul>
<h2>Item methods</h2>
<ul>
<li>std::vector< <a class="elRef" doxygen="gfccore.tag:" href="classGFC_1_1Pointer.html">Pointer</a>< <a class="el" href="classGFC_1_1Pango_1_1Item.html">Item</a> > > <a class="el" href="namespaceGFC_1_1Pango.html#a127">reorder_items</a> (const std::vector< <a class="elRef" doxygen="gfccore.tag:" href="classGFC_1_1Pointer.html">Pointer</a>< <a class="el" href="classGFC_1_1Pango_1_1Item.html">Item</a> > > &logical_items)
<dl class="el"><dd class="mdescRight">From a list of items in logical order and the associated directional levels, produce a list in visual order (the original list is unmodified). <a href="#a127"></a><br></dl></ul>
<h2>Script Methods</h2>
<ul>
<li><a class="el" href="namespaceGFC_1_1Pango.html#a143">Script</a> <a class="el" href="namespaceGFC_1_1Pango.html#a128">script_for_unichar</a> (<a class="elRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Unichar.html">G::Unichar</a> ch)
<dl class="el"><dd class="mdescRight">Looks up the <a class="el" href="namespaceGFC_1_1Pango.html#a143">Pango::Script</a> for a particular character (as defined by Unicode Technical report 24). <a href="#a128"></a><br></dl><li>PangoLanguage * <a class="el" href="namespaceGFC_1_1Pango.html#a129">script_get_sample_language</a> (<a class="el" href="namespaceGFC_1_1Pango.html#a143">Script</a> script)
<dl class="el"><dd class="mdescRight">Given a script, finds a language tag that is reasonably representative of that script. <a href="#a129"></a><br></dl><li>bool <a class="el" href="namespaceGFC_1_1Pango.html#a130">language_includes_script</a> (PangoLanguage *language, <a class="el" href="namespaceGFC_1_1Pango.html#a143">Script</a> script)
<dl class="el"><dd class="mdescRight">Determines if <em>script</em> is one of the scripts used to write <em>language</em>. <a href="#a130"></a><br></dl></ul>
<h2>Direction Methods</h2>
<ul>
<li><a class="el" href="namespaceGFC_1_1Pango.html#a145">Direction</a> <a class="el" href="namespaceGFC_1_1Pango.html#a131">unichar_direction</a> (<a class="elRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Unichar.html">G::Unichar</a> ch)
<dl class="el"><dd class="mdescRight">Determines the direction of a character; either <a class="el" href="namespaceGFC_1_1Pango.html#a145a117">Pango::DIRECTION_LTR</a>, <a class="el" href="namespaceGFC_1_1Pango.html#a145a117">Pango::DIRECTION_LTR</a>, or <a class="el" href="namespaceGFC_1_1Pango.html#a145a123">Pango::DIRECTION_NEUTRAL</a>. <a href="#a131"></a><br></dl><li><a class="el" href="namespaceGFC_1_1Pango.html#a145">Direction</a> <a class="el" href="namespaceGFC_1_1Pango.html#a132">find_base_dir</a> (const char *text, int length=-1)
<dl class="el"><dd class="mdescRight">Searches a string for the first character that has a strong direction, according to the Unicode bidirectional algorithm. <a href="#a132"></a><br></dl></ul>
<h2>Typedefs</h2>
<ul>
<li><a class="anchor" name="a26" doxytag="GFC::Pango::FontMaskField" ></a>
typedef unsigned int <a class="el" href="namespaceGFC_1_1Pango.html#a26">FontMaskField</a>
<dl class="el"><dd class="mdescRight">FontMaskField holds one or more values from the <a class="el" href="namespaceGFC_1_1Pango.html#a140">Pango::FontMask</a> enumeration OR'd together. <br></dl><li>typedef PangoGlyphUnit <a class="el" href="namespaceGFC_1_1Pango.html#a53">GlyphUnit</a>
<dl class="el"><dd class="mdescRight">GlyphUnit is a convenient typedef for PangoGlyphUnit. <a href="#a53"></a><br></dl><li>typedef PangoGlyph <a class="el" href="namespaceGFC_1_1Pango.html#a116">Glyph</a>
<dl class="el"><dd class="mdescRight">Glyph is a convenient typedef for PangoGlyph. <a href="#a116"></a><br></dl></ul>
<h2>Enumerations</h2>
<ul>
<li>enum <a class="el" href="namespaceGFC_1_1Pango.html#a133">Underline</a> { <br>
<a class="el" href="namespaceGFC_1_1Pango.html#a133a0">UNDERLINE_NONE</a> = PANGO_UNDERLINE_NONE,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a133a1">UNDERLINE_SINGLE</a> = PANGO_UNDERLINE_SINGLE,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a133a2">UNDERLINE_DOUBLE</a> = PANGO_UNDERLINE_DOUBLE,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a133a3">UNDERLINE_LOW</a> = PANGO_UNDERLINE_LOW,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a133a4">UNDERLINE_ERROR</a> = PANGO_UNDERLINE_ERROR
<br>
}
<dl class="el"><dd class="mdescRight">Underline is used to specify whether text should be underlined, and if so, the type of underlining. <a href="#a133">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Pango.html#a134">AttrType</a> { <br>
<a class="el" href="namespaceGFC_1_1Pango.html#a134a5">ATTR_INVALID</a> = PANGO_ATTR_INVALID,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a134a6">ATTR_LANGUAGE</a> = PANGO_ATTR_LANGUAGE,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a134a7">ATTR_FAMILY</a> = PANGO_ATTR_FAMILY,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a134a8">ATTR_STYLE</a> = PANGO_ATTR_STYLE,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a134a9">ATTR_WEIGHT</a> = PANGO_ATTR_WEIGHT,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a134a10">ATTR_VARIANT</a> = PANGO_ATTR_VARIANT,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a134a11">ATTR_STRETCH</a> = PANGO_ATTR_STRETCH,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a134a12">ATTR_SIZE</a> = PANGO_ATTR_SIZE,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a134a13">ATTR_FONT_DESC</a> = PANGO_ATTR_FONT_DESC,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a134a14">ATTR_FOREGROUND</a> = PANGO_ATTR_FOREGROUND,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a134a15">ATTR_BACKGROUND</a> = PANGO_ATTR_BACKGROUND,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a134a16">ATTR_UNDERLINE</a> = PANGO_ATTR_UNDERLINE,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a134a17">ATTR_STRIKETHROUGH</a> = PANGO_ATTR_STRIKETHROUGH,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a134a18">ATTR_RISE</a> = PANGO_ATTR_RISE,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a134a19">ATTR_SHAPE</a> = PANGO_ATTR_SHAPE,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a134a20">ATTR_SCALE</a> = PANGO_ATTR_SCALE,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a134a21">ATTR_FALLBACK</a> = PANGO_ATTR_FALLBACK
<br>
}
<dl class="el"><dd class="mdescRight">Distinguishes between different types of attributes. <a href="#a134">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Pango.html#a135">CoverageLevel</a> { <br>
<a class="el" href="namespaceGFC_1_1Pango.html#a135a22">COVERAGE_NONE</a> = PANGO_COVERAGE_NONE,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a135a23">COVERAGE_FALLBACK</a> = PANGO_COVERAGE_FALLBACK,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a135a24">COVERAGE_APPROXIMATE</a> = PANGO_COVERAGE_APPROXIMATE,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a135a25">COVERAGE_EXACT</a> = PANGO_COVERAGE_EXACT
<br>
}
<dl class="el"><dd class="mdescRight">Used to indicate how well a font can represent a particular ISO 10646 character point for a particular script. <a href="#a135">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Pango.html#a136">Style</a> { <br>
<a class="el" href="namespaceGFC_1_1Pango.html#a136a27">STYLE_NORMAL</a> = PANGO_STYLE_NORMAL,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a136a28">STYLE_OBLIQUE</a> = PANGO_STYLE_OBLIQUE,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a136a29">STYLE_ITALIC</a> = PANGO_STYLE_ITALIC
<br>
}
<dl class="el"><dd class="mdescRight">Specifies the various slant styles possible for a font. <a href="#a136">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Pango.html#a137">Variant</a> { <br>
<a class="el" href="namespaceGFC_1_1Pango.html#a137a30">VARIANT_NORMAL</a> = PANGO_VARIANT_NORMAL,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a137a31">VARIANT_SMALL_CAPS</a> = PANGO_VARIANT_SMALL_CAPS
<br>
}
<dl class="el"><dd class="mdescRight">Specifies the capitalization variant of the font. <a href="#a137">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Pango.html#a138">Weight</a> { <br>
<a class="el" href="namespaceGFC_1_1Pango.html#a138a32">WEIGHT_ULTALIGHT</a> = PANGO_WEIGHT_ULTRALIGHT,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a138a33">WEIGHT_LIGHT</a> = PANGO_WEIGHT_LIGHT,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a138a34">WEIGHT_NORMAL</a> = PANGO_WEIGHT_NORMAL,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a138a35">WEIGHT_BOLD</a> = PANGO_WEIGHT_BOLD,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a138a36">WEIGHT_ULTRABOLD</a> = PANGO_WEIGHT_ULTRABOLD,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a138a37">WEIGHT_HEAVY</a> = PANGO_WEIGHT_HEAVY
<br>
}
<dl class="el"><dd class="mdescRight">Specifies the weight (boldness) of a font. <a href="#a138">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Pango.html#a139">Stretch</a> { <br>
<a class="el" href="namespaceGFC_1_1Pango.html#a139a38">STRETCH_UTLRA_CONDENSED</a> = PANGO_STRETCH_ULTRA_CONDENSED,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a139a39">STRETCH_EXTRA_CONDENSED</a> = PANGO_STRETCH_EXTRA_CONDENSED,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a139a40">STRETCH_CONDENSED</a> = PANGO_STRETCH_CONDENSED,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a139a41">STRETCH_SEMI_CONDENSED</a> = PANGO_STRETCH_SEMI_CONDENSED,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a139a42">STRETCH_NORMAL</a> = PANGO_STRETCH_NORMAL,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a139a43">STRETCH_SEMI_EXPANDED</a> = PANGO_STRETCH_SEMI_EXPANDED,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a139a44">STRETCH_EXPANDED</a> = PANGO_STRETCH_EXPANDED,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a139a45">STRETCH_EXTRA_EXPANDED</a> = PANGO_STRETCH_EXTRA_EXPANDED,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a139a46">STRETCH_ULTRA_EXPANDED</a> = PANGO_STRETCH_ULTRA_EXPANDED
<br>
}
<dl class="el"><dd class="mdescRight">Specifies the width of the font relative to other designs within a family. <a href="#a139">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Pango.html#a140">FontMask</a> { <br>
<a class="el" href="namespaceGFC_1_1Pango.html#a140a47">FONT_MASK_FAMILY</a> = PANGO_FONT_MASK_FAMILY,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a140a48">FONT_MASK_STYLE</a> = PANGO_FONT_MASK_STYLE,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a140a49">FONT_MASK_VARIANT</a> = PANGO_FONT_MASK_VARIANT,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a140a50">FONT_MASK_WEIGHT</a> = PANGO_FONT_MASK_WEIGHT,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a140a51">FONT_MASK_STRETCH</a> = PANGO_FONT_MASK_STRETCH,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a140a52">FONT_MASK_SIZE</a> = PANGO_FONT_MASK_SIZE
<br>
}
<dl class="el"><dd class="mdescRight">The bit flags in a FontMask correspond to fields in a FontDescription that have been set. <a href="#a140">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Pango.html#a141">Alignment</a> { <br>
<a class="el" href="namespaceGFC_1_1Pango.html#a141a54">ALIGN_LEFT</a> = PANGO_ALIGN_LEFT,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a141a55">ALIGN_CENTER</a> = PANGO_ALIGN_CENTER,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a141a56">ALIGN_RIGHT</a> = PANGO_ALIGN_RIGHT
<br>
}
<dl class="el"><dd class="mdescRight">Describes how to align the lines of a Layout within the available space. <a href="#a141">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Pango.html#a142">WrapMode</a> { <br>
<a class="el" href="namespaceGFC_1_1Pango.html#a142a57">WRAP_WORD</a> = PANGO_WRAP_WORD,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a142a58">WRAP_CHAR</a> = PANGO_WRAP_CHAR,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a142a59">WRAP_WORD_CHAR</a> = PANGO_WRAP_WORD_CHAR
<br>
}
<li>enum <a class="el" href="namespaceGFC_1_1Pango.html#a143">Script</a> { <br>
<a class="el" href="namespaceGFC_1_1Pango.html#a143a60">SCRIPT_INVALID_CODE</a> = PANGO_SCRIPT_INVALID_CODE,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a143a61">SCRIPT_COMMON</a> = PANGO_SCRIPT_COMMON,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a143a62">SCRIPT_INHERITED</a> = PANGO_SCRIPT_INHERITED,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a143a63">SCRIPT_ARABIC</a> = PANGO_SCRIPT_ARABIC,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a143a64">SCRIPT_ARMENIAN</a> = PANGO_SCRIPT_ARMENIAN,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a143a65">SCRIPT_BENGALI</a> = PANGO_SCRIPT_BENGALI,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a143a66">SCRIPT_BOPOMOFO</a> = PANGO_SCRIPT_BOPOMOFO,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a143a67">SCRIPT_CHEROKEE</a> = PANGO_SCRIPT_CHEROKEE,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a143a68">SCRIPT_COPTIC</a> = PANGO_SCRIPT_COPTIC,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a143a69">SCRIPT_CYRILLIC</a> = PANGO_SCRIPT_CYRILLIC,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a143a70">SCRIPT_DESERET</a> = PANGO_SCRIPT_DESERET,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a143a71">SCRIPT_DEVANAGARI</a> = PANGO_SCRIPT_DEVANAGARI,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a143a72">SCRIPT_ETHIOPIC</a> = PANGO_SCRIPT_ETHIOPIC,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a143a73">SCRIPT_GEORGIAN</a> = PANGO_SCRIPT_GEORGIAN,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a143a74">SCRIPT_GOTHIC</a> = PANGO_SCRIPT_GOTHIC,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a143a75">SCRIPT_GREEK</a> = PANGO_SCRIPT_GREEK,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a143a76">SCRIPT_GUJARATI</a> = PANGO_SCRIPT_GUJARATI,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a143a77">SCRIPT_GURMUKHI</a> = PANGO_SCRIPT_GURMUKHI,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a143a78">SCRIPT_HAN</a> = PANGO_SCRIPT_HAN,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a143a79">SCRIPT_HANGUL</a> = PANGO_SCRIPT_HANGUL,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a143a80">SCRIPT_HEBREW</a> = PANGO_SCRIPT_HEBREW,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a143a81">SCRIPT_HIRAGANAPANGO_SCRIPT_HIRAGANA</a>,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a143a82">SCRIPT_KANNADA</a> = PANGO_SCRIPT_KANNADA,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a143a83">SCRIPT_KATAKANA</a> = PANGO_SCRIPT_KATAKANA,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a143a84">SCRIPT_KHMER</a> = PANGO_SCRIPT_KHMER,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a143a85">SCRIPT_LAO</a> = PANGO_SCRIPT_LAO,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a143a86">SCRIPT_LATIN</a> = PANGO_SCRIPT_LATIN,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a143a87">SCRIPT_MALAYALAM</a> = PANGO_SCRIPT_MALAYALAM,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a143a88">SCRIPT_MONGOLIAN</a> = PANGO_SCRIPT_MONGOLIAN,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a143a89">SCRIPT_MYANMAR</a> = PANGO_SCRIPT_MYANMAR,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a143a90">SCRIPT_OGHAM</a> = PANGO_SCRIPT_OGHAM,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a143a91">SCRIPT_OLD_ITALIC</a> = PANGO_SCRIPT_OLD_ITALIC,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a143a92">SCRIPT_ORIYA</a> = PANGO_SCRIPT_ORIYA,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a143a93">SCRIPT_RUNIC</a> = PANGO_SCRIPT_RUNIC,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a143a94">SCRIPT_SINHALA</a> = PANGO_SCRIPT_SINHALA,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a143a95">SCRIPT_SYRIAC</a> = PANGO_SCRIPT_SYRIAC,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a143a96">SCRIPT_TAMIL</a> = PANGO_SCRIPT_TAMIL,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a143a97">SCRIPT_TELUGU</a> = PANGO_SCRIPT_TELUGU,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a143a98">SCRIPT_THAANA</a> = PANGO_SCRIPT_THAANA,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a143a99">SCRIPT_THAI</a> = PANGO_SCRIPT_THAI,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a143a100">SCRIPT_TIBETAN</a> = PANGO_SCRIPT_TIBETAN,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a143a101">SCRIPT_CANADIAN_ABORIGINAL</a> = PANGO_SCRIPT_CANADIAN_ABORIGINAL,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a143a102">SCRIPT_YI</a> = PANGO_SCRIPT_YI,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a143a103">SCRIPT_TAGALOG</a> = PANGO_SCRIPT_TAGALOG,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a143a104">SCRIPT_HANUNOO</a> = PANGO_SCRIPT_HANUNOO,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a143a105">SCRIPT_BUHID</a> = PANGO_SCRIPT_BUHID,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a143a106">SCRIPT_TAGBANWA</a> = PANGO_SCRIPT_TAGBANWA,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a143a107">SCRIPT_BRAILLE</a> = PANGO_SCRIPT_BRAILLE,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a143a108">SCRIPT_CYPRIOTPANGO_SCRIPT_CYPRIOT</a>,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a143a109">SCRIPT_LIMBUPANGO_SCRIPT_LIMBU</a>,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a143a110">SCRIPT_OSMANYA</a> = PANGO_SCRIPT_OSMANYA,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a143a111">SCRIPT_SHAVIAN</a> = PANGO_SCRIPT_SHAVIAN,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a143a112">SCRIPT_LINEAR_B</a> = PANGO_SCRIPT_LINEAR_B,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a143a113">SCRIPT_TAI_LE</a> = PANGO_SCRIPT_TAI_LE,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a143a114">SCRIPT_UGARITIC</a> = PANGO_SCRIPT_UGARITIC
<br>
}
<dl class="el"><dd class="mdescRight">Identifies different writing systems. <a href="#a143">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Pango.html#a144">TabAlign</a> { <a class="el" href="namespaceGFC_1_1Pango.html#a144a115">TAB_LEFT</a> = PANGO_TAB_LEFT
}
<dl class="el"><dd class="mdescRight">Specifies where a tab stop appears relative to the text. <a href="#a144">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Pango.html#a145">Direction</a> { <br>
<a class="el" href="namespaceGFC_1_1Pango.html#a145a117">DIRECTION_LTR</a> = PANGO_DIRECTION_LTR,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a145a118">DIRECTION_RTL</a> = PANGO_DIRECTION_RTL,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a145a119">DIRECTION_TTB_LTR</a> = PANGO_DIRECTION_TTB_LTR,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a145a120">DIRECTION_TTB_RTL</a> = PANGO_DIRECTION_TTB_RTL,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a145a121">DIRECTION_WEAK_LTR</a> = PANGO_DIRECTION_WEAK_LTR,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a145a122">DIRECTION_WEAK_RTL</a> = PANGO_DIRECTION_WEAK_RTL,
<br>
<a class="el" href="namespaceGFC_1_1Pango.html#a145a123">DIRECTION_NEUTRAL</a> = PANGO_DIRECTION_NEUTRAL
<br>
}
<dl class="el"><dd class="mdescRight">The Direction type represents the direction of writing for unicode bidirectional text. <a href="#a145">More...</a><br></dl></ul>
<hr><a name="_details"></a><h2>Detailed Description</h2>
The C++ framework for the <a class="el" href="namespaceGFC_1_1Pango.html">Pango</a> text handling library.
<p>
<a class="el" href="namespaceGFC_1_1Pango.html">Pango</a> is a library for internationalized text handling. It centers around the <a class="el" href="classGFC_1_1Pango_1_1Layout.html">Pango::Layout</a> object, representing a paragraph of text. <a class="el" href="namespaceGFC_1_1Pango.html">Pango</a> provides the engine for <a class="el" href="classGFC_1_1Gtk_1_1TextView.html">Gtk::TextView</a>, <a class="el" href="classGFC_1_1Gtk_1_1Label.html">Gtk::Label</a>, <a class="el" href="classGFC_1_1Gtk_1_1Entry.html">Gtk::Entry</a> and other widgets that display text.
<p>
<hr><h2>Typedef Documentation</h2>
<a class="anchor" name="a116" doxytag="GFC::Pango::Glyph" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> typedef PangoGlyph <a class="el" href="namespaceGFC_1_1Pango.html#a116">GFC::Pango::Glyph</a> </td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Glyph is a convenient typedef for PangoGlyph.
<p>
Glyph structure represents a single glyph in the output form of a glyph string. </td>
</tr>
</table>
<a class="anchor" name="a53" doxytag="GFC::Pango::GlyphUnit" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> typedef PangoGlyphUnit <a class="el" href="namespaceGFC_1_1Pango.html#a53">GFC::Pango::GlyphUnit</a> </td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
GlyphUnit is a convenient typedef for PangoGlyphUnit.
<p>
The GlyphUnit type is used to store dimensions within <a class="el" href="namespaceGFC_1_1Pango.html">Pango</a>. Dimensions are stored in 1/PANGO_SCALE of a device unit. (A device unit might be a pixel for screen display, or a point on a printer.) PANGO_SCALE is currently 1024, and is unlikely to change, but you should not depend on its exact value. The PANGO_PIXELS() macro can be used to convert from glyph units into device units with correct rounding. </td>
</tr>
</table>
<hr><h2>Enumeration Type Documentation</h2>
<a class="anchor" name="a141" doxytag="GFC::Pango::Alignment" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> enum <a class="el" href="namespaceGFC_1_1Pango.html#a141">Alignment</a> </td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Describes how to align the lines of a <a class="el" href="classGFC_1_1Pango_1_1Layout.html">Layout</a> within the available space.
<p>
If the PangoLayout is set to justify using <a class="el" href="classGFC_1_1Pango_1_1Layout.html#z1197_12">Pango::Layout::set_justify()</a>, then this only has an effect for partial lines. <dl compact><dt><b>Enumeration values: </b></dt><dd>
<table border=0 cellspacing=2 cellpadding=0>
<tr><td valign=top><em><a class="anchor" name="a141a54" doxytag="ALIGN_LEFT" ></a>ALIGN_LEFT</em> </td><td>
Put all available space on the right. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a141a55" doxytag="ALIGN_CENTER" ></a>ALIGN_CENTER</em> </td><td>
Center the line within the available space. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a141a56" doxytag="ALIGN_RIGHT" ></a>ALIGN_RIGHT</em> </td><td>
Put all available space on the left. </td></tr>
</table>
</dl>
</td>
</tr>
</table>
<a class="anchor" name="a134" doxytag="GFC::Pango::AttrType" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> enum <a class="el" href="namespaceGFC_1_1Pango.html#a134">AttrType</a> </td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Distinguishes between different types of attributes.
<p>
Along with the predefined values, it is possible to allocate additional values for custom attributes using pango_attr_register_type(). The predefined values are given below. The type of class used to store the attribute is listed in parentheses after the description. <dl compact><dt><b>Enumeration values: </b></dt><dd>
<table border=0 cellspacing=2 cellpadding=0>
<tr><td valign=top><em><a class="anchor" name="a134a5" doxytag="ATTR_INVALID" ></a>ATTR_INVALID</em> </td><td>
Invalid. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a134a6" doxytag="ATTR_LANGUAGE" ></a>ATTR_LANGUAGE</em> </td><td>
Language (<a class="el" href="classGFC_1_1Pango_1_1AttrLanguage.html">AttrLanguage</a>). </td></tr>
<tr><td valign=top><em><a class="anchor" name="a134a7" doxytag="ATTR_FAMILY" ></a>ATTR_FAMILY</em> </td><td>
<a class="el" href="classGFC_1_1Pango_1_1Font.html">Font</a> family name list (<a class="el" href="classGFC_1_1Pango_1_1AttrString.html">AttrString</a>). </td></tr>
<tr><td valign=top><em><a class="anchor" name="a134a8" doxytag="ATTR_STYLE" ></a>ATTR_STYLE</em> </td><td>
<a class="el" href="classGFC_1_1Pango_1_1Font.html">Font</a> slant style (<a class="el" href="classGFC_1_1Pango_1_1AttrInt.html">AttrInt</a>). </td></tr>
<tr><td valign=top><em><a class="anchor" name="a134a9" doxytag="ATTR_WEIGHT" ></a>ATTR_WEIGHT</em> </td><td>
<a class="el" href="classGFC_1_1Pango_1_1Font.html">Font</a> weight (<a class="el" href="classGFC_1_1Pango_1_1AttrInt.html">AttrInt</a>). </td></tr>
<tr><td valign=top><em><a class="anchor" name="a134a10" doxytag="ATTR_VARIANT" ></a>ATTR_VARIANT</em> </td><td>
<a class="el" href="classGFC_1_1Pango_1_1Font.html">Font</a> variant (normal or small caps) (<a class="el" href="classGFC_1_1Pango_1_1AttrInt.html">AttrInt</a>). </td></tr>
<tr><td valign=top><em><a class="anchor" name="a134a11" doxytag="ATTR_STRETCH" ></a>ATTR_STRETCH</em> </td><td>
<a class="el" href="classGFC_1_1Pango_1_1Font.html">Font</a> stretch (<a class="el" href="classGFC_1_1Pango_1_1AttrInt.html">AttrInt</a>). </td></tr>
<tr><td valign=top><em><a class="anchor" name="a134a12" doxytag="ATTR_SIZE" ></a>ATTR_SIZE</em> </td><td>
<a class="el" href="classGFC_1_1Pango_1_1Font.html">Font</a> size in points divided by PANGO_SCALE (<a class="el" href="classGFC_1_1Pango_1_1AttrInt.html">AttrInt</a>). </td></tr>
<tr><td valign=top><em><a class="anchor" name="a134a13" doxytag="ATTR_FONT_DESC" ></a>ATTR_FONT_DESC</em> </td><td>
<a class="el" href="classGFC_1_1Pango_1_1Font.html">Font</a> description (<a class="el" href="classGFC_1_1Pango_1_1AttrFontDesc.html">AttrFontDesc</a>). </td></tr>
<tr><td valign=top><em><a class="anchor" name="a134a14" doxytag="ATTR_FOREGROUND" ></a>ATTR_FOREGROUND</em> </td><td>
Foreground color (<a class="el" href="classGFC_1_1Pango_1_1AttrColor.html">AttrColor</a>). </td></tr>
<tr><td valign=top><em><a class="anchor" name="a134a15" doxytag="ATTR_BACKGROUND" ></a>ATTR_BACKGROUND</em> </td><td>
Background color (<a class="el" href="classGFC_1_1Pango_1_1AttrColor.html">AttrColor</a>). </td></tr>
<tr><td valign=top><em><a class="anchor" name="a134a16" doxytag="ATTR_UNDERLINE" ></a>ATTR_UNDERLINE</em> </td><td>
Whether the text has an underline (<a class="el" href="classGFC_1_1Pango_1_1AttrInt.html">AttrInt</a>). </td></tr>
<tr><td valign=top><em><a class="anchor" name="a134a17" doxytag="ATTR_STRIKETHROUGH" ></a>ATTR_STRIKETHROUGH</em> </td><td>
Whether the text is struck-through (<a class="el" href="classGFC_1_1Pango_1_1AttrInt.html">AttrInt</a>). </td></tr>
<tr><td valign=top><em><a class="anchor" name="a134a18" doxytag="ATTR_RISE" ></a>ATTR_RISE</em> </td><td>
Baseline displacement (<a class="el" href="classGFC_1_1Pango_1_1AttrInt.html">AttrInt</a>). </td></tr>
<tr><td valign=top><em><a class="anchor" name="a134a19" doxytag="ATTR_SHAPE" ></a>ATTR_SHAPE</em> </td><td>
Shape (<a class="el" href="classGFC_1_1Pango_1_1AttrShape.html">AttrShape</a>). </td></tr>
<tr><td valign=top><em><a class="anchor" name="a134a20" doxytag="ATTR_SCALE" ></a>ATTR_SCALE</em> </td><td>
<a class="el" href="classGFC_1_1Pango_1_1Font.html">Font</a> size scale factor (<a class="el" href="classGFC_1_1Pango_1_1AttrScale.html">AttrScale</a>). </td></tr>
<tr><td valign=top><em><a class="anchor" name="a134a21" doxytag="ATTR_FALLBACK" ></a>ATTR_FALLBACK</em> </td><td>
Whether fallback is enabled (<a class="el" href="classGFC_1_1Pango_1_1AttrInt.html">AttrInt</a>). </td></tr>
</table>
</dl>
</td>
</tr>
</table>
<a class="anchor" name="a135" doxytag="GFC::Pango::CoverageLevel" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> enum <a class="el" href="namespaceGFC_1_1Pango.html#a135">CoverageLevel</a> </td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Used to indicate how well a font can represent a particular ISO 10646 character point for a particular script.
<p>
<dl compact><dt><b>Enumeration values: </b></dt><dd>
<table border=0 cellspacing=2 cellpadding=0>
<tr><td valign=top><em><a class="anchor" name="a135a22" doxytag="COVERAGE_NONE" ></a>COVERAGE_NONE</em> </td><td>
The character is not representable with the font. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a135a23" doxytag="COVERAGE_FALLBACK" ></a>COVERAGE_FALLBACK</em> </td><td>
The character is represented in a way that may be comprehensible but is not the correct graphical form; for instance, a Hangul character represented as a a sequence of Jamos, or a Latin transliteration of a Cyrillic word. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a135a24" doxytag="COVERAGE_APPROXIMATE" ></a>COVERAGE_APPROXIMATE</em> </td><td>
The character is represented as basically the correct graphical form, but with a stylistic variant inappropriate for the current script. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a135a25" doxytag="COVERAGE_EXACT" ></a>COVERAGE_EXACT</em> </td><td>
The character is represented as the correct graphical form. </td></tr>
</table>
</dl>
</td>
</tr>
</table>
<a class="anchor" name="a145" doxytag="GFC::Pango::Direction" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> enum <a class="el" href="namespaceGFC_1_1Pango.html#a145">Direction</a> </td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
The Direction type represents the direction of writing for unicode bidirectional text.
<p>
<b>Note:</b> Not every value in this enumeration makes sense for every usage of <a class="el" href="namespaceGFC_1_1Pango.html#a145">Pango::Direction</a>. <dl compact><dt><b>Enumeration values: </b></dt><dd>
<table border=0 cellspacing=2 cellpadding=0>
<tr><td valign=top><em><a class="anchor" name="a145a117" doxytag="DIRECTION_LTR" ></a>DIRECTION_LTR</em> </td><td>
The text is written left-to-right. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a145a118" doxytag="DIRECTION_RTL" ></a>DIRECTION_RTL</em> </td><td>
The text is written right-to-left. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a145a119" doxytag="DIRECTION_TTB_LTR" ></a>DIRECTION_TTB_LTR</em> </td><td>
The text is written vertically top-to-bottom, with the rows ordered from left to right. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a145a120" doxytag="DIRECTION_TTB_RTL" ></a>DIRECTION_TTB_RTL</em> </td><td>
The text is written vertically top-to-bottom, with the rows ordered from right to left. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a145a121" doxytag="DIRECTION_WEAK_LTR" ></a>DIRECTION_WEAK_LTR</em> </td><td>
A weak left-to-right direction. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a145a122" doxytag="DIRECTION_WEAK_RTL" ></a>DIRECTION_WEAK_RTL</em> </td><td>
A weak right-to-left direction . </td></tr>
<tr><td valign=top><em><a class="anchor" name="a145a123" doxytag="DIRECTION_NEUTRAL" ></a>DIRECTION_NEUTRAL</em> </td><td>
No direction specified. </td></tr>
</table>
</dl>
</td>
</tr>
</table>
<a class="anchor" name="a140" doxytag="GFC::Pango::FontMask" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> enum <a class="el" href="namespaceGFC_1_1Pango.html#a140">FontMask</a> </td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
The bit flags in a FontMask correspond to fields in a <a class="el" href="classGFC_1_1Pango_1_1FontDescription.html">FontDescription</a> that have been set.
<p>
<dl compact><dt><b>Enumeration values: </b></dt><dd>
<table border=0 cellspacing=2 cellpadding=0>
<tr><td valign=top><em><a class="anchor" name="a140a47" doxytag="FONT_MASK_FAMILY" ></a>FONT_MASK_FAMILY</em> </td><td>
The font family is specified. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a140a48" doxytag="FONT_MASK_STYLE" ></a>FONT_MASK_STYLE</em> </td><td>
The font style is specified. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a140a49" doxytag="FONT_MASK_VARIANT" ></a>FONT_MASK_VARIANT</em> </td><td>
T font variant is specified. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a140a50" doxytag="FONT_MASK_WEIGHT" ></a>FONT_MASK_WEIGHT</em> </td><td>
The font weight is specified. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a140a51" doxytag="FONT_MASK_STRETCH" ></a>FONT_MASK_STRETCH</em> </td><td>
The font stretch is specified. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a140a52" doxytag="FONT_MASK_SIZE" ></a>FONT_MASK_SIZE</em> </td><td>
The font size is specified. </td></tr>
</table>
</dl>
</td>
</tr>
</table>
<a class="anchor" name="a143" doxytag="GFC::Pango::Script" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> enum <a class="el" href="namespaceGFC_1_1Pango.html#a143">Script</a> </td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Identifies different writing systems.
<p>
The values correspond to the names defined in the Unicode standard (see Unicode Standard Annex 24: Script names). <dl compact><dt><b>Enumeration values: </b></dt><dd>
<table border=0 cellspacing=2 cellpadding=0>
<tr><td valign=top><em><a class="anchor" name="a143a60" doxytag="SCRIPT_INVALID_CODE" ></a>SCRIPT_INVALID_CODE</em> </td><td>
A value never used for any unicode character. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a143a61" doxytag="SCRIPT_COMMON" ></a>SCRIPT_COMMON</em> </td><td>
Zyyy; a character used by multiple different scripts. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a143a62" doxytag="SCRIPT_INHERITED" ></a>SCRIPT_INHERITED</em> </td><td>
Qaai; a mark glyph that takes its script from the base glyph to which it is attached. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a143a63" doxytag="SCRIPT_ARABIC" ></a>SCRIPT_ARABIC</em> </td><td>
Arab. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a143a64" doxytag="SCRIPT_ARMENIAN" ></a>SCRIPT_ARMENIAN</em> </td><td>
Armn. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a143a65" doxytag="SCRIPT_BENGALI" ></a>SCRIPT_BENGALI</em> </td><td>
Beng. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a143a66" doxytag="SCRIPT_BOPOMOFO" ></a>SCRIPT_BOPOMOFO</em> </td><td>
Bopo. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a143a67" doxytag="SCRIPT_CHEROKEE" ></a>SCRIPT_CHEROKEE</em> </td><td>
Cher. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a143a68" doxytag="SCRIPT_COPTIC" ></a>SCRIPT_COPTIC</em> </td><td>
Qaac. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a143a69" doxytag="SCRIPT_CYRILLIC" ></a>SCRIPT_CYRILLIC</em> </td><td>
Cyrl (Cyrs). </td></tr>
<tr><td valign=top><em><a class="anchor" name="a143a70" doxytag="SCRIPT_DESERET" ></a>SCRIPT_DESERET</em> </td><td>
Dsrt. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a143a71" doxytag="SCRIPT_DEVANAGARI" ></a>SCRIPT_DEVANAGARI</em> </td><td>
Deva. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a143a72" doxytag="SCRIPT_ETHIOPIC" ></a>SCRIPT_ETHIOPIC</em> </td><td>
Ethi. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a143a73" doxytag="SCRIPT_GEORGIAN" ></a>SCRIPT_GEORGIAN</em> </td><td>
Geor (Geon, Geoa). </td></tr>
<tr><td valign=top><em><a class="anchor" name="a143a74" doxytag="SCRIPT_GOTHIC" ></a>SCRIPT_GOTHIC</em> </td><td>
Goth. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a143a75" doxytag="SCRIPT_GREEK" ></a>SCRIPT_GREEK</em> </td><td>
Grek. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a143a76" doxytag="SCRIPT_GUJARATI" ></a>SCRIPT_GUJARATI</em> </td><td>
Gujr. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a143a77" doxytag="SCRIPT_GURMUKHI" ></a>SCRIPT_GURMUKHI</em> </td><td>
Guru. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a143a78" doxytag="SCRIPT_HAN" ></a>SCRIPT_HAN</em> </td><td>
Hani. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a143a79" doxytag="SCRIPT_HANGUL" ></a>SCRIPT_HANGUL</em> </td><td>
Hang. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a143a80" doxytag="SCRIPT_HEBREW" ></a>SCRIPT_HEBREW</em> </td><td>
Hebr. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a143a81" doxytag="SCRIPT_HIRAGANAPANGO_SCRIPT_HIRAGANA" ></a>SCRIPT_HIRAGANAPANGO_SCRIPT_HIRAGANA</em> </td><td>
Hira. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a143a82" doxytag="SCRIPT_KANNADA" ></a>SCRIPT_KANNADA</em> </td><td>
Knda. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a143a83" doxytag="SCRIPT_KATAKANA" ></a>SCRIPT_KATAKANA</em> </td><td>
Kana. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a143a84" doxytag="SCRIPT_KHMER" ></a>SCRIPT_KHMER</em> </td><td>
Khmr. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a143a85" doxytag="SCRIPT_LAO" ></a>SCRIPT_LAO</em> </td><td>
Laoo. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a143a86" doxytag="SCRIPT_LATIN" ></a>SCRIPT_LATIN</em> </td><td>
Latn (Latf, Latg). </td></tr>
<tr><td valign=top><em><a class="anchor" name="a143a87" doxytag="SCRIPT_MALAYALAM" ></a>SCRIPT_MALAYALAM</em> </td><td>
Mlym. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a143a88" doxytag="SCRIPT_MONGOLIAN" ></a>SCRIPT_MONGOLIAN</em> </td><td>
Mong. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a143a89" doxytag="SCRIPT_MYANMAR" ></a>SCRIPT_MYANMAR</em> </td><td>
Mymr. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a143a90" doxytag="SCRIPT_OGHAM" ></a>SCRIPT_OGHAM</em> </td><td>
Ogam. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a143a91" doxytag="SCRIPT_OLD_ITALIC" ></a>SCRIPT_OLD_ITALIC</em> </td><td>
Ital. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a143a92" doxytag="SCRIPT_ORIYA" ></a>SCRIPT_ORIYA</em> </td><td>
Orya. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a143a93" doxytag="SCRIPT_RUNIC" ></a>SCRIPT_RUNIC</em> </td><td>
Runr. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a143a94" doxytag="SCRIPT_SINHALA" ></a>SCRIPT_SINHALA</em> </td><td>
Sinh. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a143a95" doxytag="SCRIPT_SYRIAC" ></a>SCRIPT_SYRIAC</em> </td><td>
Syrc (Syrj, Syrn, Syre). </td></tr>
<tr><td valign=top><em><a class="anchor" name="a143a96" doxytag="SCRIPT_TAMIL" ></a>SCRIPT_TAMIL</em> </td><td>
Taml. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a143a97" doxytag="SCRIPT_TELUGU" ></a>SCRIPT_TELUGU</em> </td><td>
Telu. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a143a98" doxytag="SCRIPT_THAANA" ></a>SCRIPT_THAANA</em> </td><td>
Thaa. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a143a99" doxytag="SCRIPT_THAI" ></a>SCRIPT_THAI</em> </td><td>
Thai. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a143a100" doxytag="SCRIPT_TIBETAN" ></a>SCRIPT_TIBETAN</em> </td><td>
Tibt. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a143a101" doxytag="SCRIPT_CANADIAN_ABORIGINAL" ></a>SCRIPT_CANADIAN_ABORIGINAL</em> </td><td>
Cans. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a143a102" doxytag="SCRIPT_YI" ></a>SCRIPT_YI</em> </td><td>
Yiii. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a143a103" doxytag="SCRIPT_TAGALOG" ></a>SCRIPT_TAGALOG</em> </td><td>
Tglg. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a143a104" doxytag="SCRIPT_HANUNOO" ></a>SCRIPT_HANUNOO</em> </td><td>
Hano. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a143a105" doxytag="SCRIPT_BUHID" ></a>SCRIPT_BUHID</em> </td><td>
Buhd. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a143a106" doxytag="SCRIPT_TAGBANWA" ></a>SCRIPT_TAGBANWA</em> </td><td>
Tagb. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a143a107" doxytag="SCRIPT_BRAILLE" ></a>SCRIPT_BRAILLE</em> </td><td>
Brai. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a143a108" doxytag="SCRIPT_CYPRIOTPANGO_SCRIPT_CYPRIOT" ></a>SCRIPT_CYPRIOTPANGO_SCRIPT_CYPRIOT</em> </td><td>
Cprt. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a143a109" doxytag="SCRIPT_LIMBUPANGO_SCRIPT_LIMBU" ></a>SCRIPT_LIMBUPANGO_SCRIPT_LIMBU</em> </td><td>
Limb. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a143a110" doxytag="SCRIPT_OSMANYA" ></a>SCRIPT_OSMANYA</em> </td><td>
Osma. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a143a111" doxytag="SCRIPT_SHAVIAN" ></a>SCRIPT_SHAVIAN</em> </td><td>
Shaw. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a143a112" doxytag="SCRIPT_LINEAR_B" ></a>SCRIPT_LINEAR_B</em> </td><td>
Linb. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a143a113" doxytag="SCRIPT_TAI_LE" ></a>SCRIPT_TAI_LE</em> </td><td>
Tale. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a143a114" doxytag="SCRIPT_UGARITIC" ></a>SCRIPT_UGARITIC</em> </td><td>
Ugar. </td></tr>
</table>
</dl>
</td>
</tr>
</table>
<a class="anchor" name="a139" doxytag="GFC::Pango::Stretch" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> enum <a class="el" href="namespaceGFC_1_1Pango.html#a139">Stretch</a> </td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Specifies the width of the font relative to other designs within a family.
<p>
<dl compact><dt><b>Enumeration values: </b></dt><dd>
<table border=0 cellspacing=2 cellpadding=0>
<tr><td valign=top><em><a class="anchor" name="a139a38" doxytag="STRETCH_UTLRA_CONDENSED" ></a>STRETCH_UTLRA_CONDENSED</em> </td><td>
Ultra condensed width. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a139a39" doxytag="STRETCH_EXTRA_CONDENSED" ></a>STRETCH_EXTRA_CONDENSED</em> </td><td>
Extra condensed width. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a139a40" doxytag="STRETCH_CONDENSED" ></a>STRETCH_CONDENSED</em> </td><td>
Condensed width. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a139a41" doxytag="STRETCH_SEMI_CONDENSED" ></a>STRETCH_SEMI_CONDENSED</em> </td><td>
Semi condensed width. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a139a42" doxytag="STRETCH_NORMAL" ></a>STRETCH_NORMAL</em> </td><td>
Normal width. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a139a43" doxytag="STRETCH_SEMI_EXPANDED" ></a>STRETCH_SEMI_EXPANDED</em> </td><td>
Semi expanded width. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a139a44" doxytag="STRETCH_EXPANDED" ></a>STRETCH_EXPANDED</em> </td><td>
Expanded width. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a139a45" doxytag="STRETCH_EXTRA_EXPANDED" ></a>STRETCH_EXTRA_EXPANDED</em> </td><td>
Extra expanded width. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a139a46" doxytag="STRETCH_ULTRA_EXPANDED" ></a>STRETCH_ULTRA_EXPANDED</em> </td><td>
Ultra expanded width. </td></tr>
</table>
</dl>
</td>
</tr>
</table>
<a class="anchor" name="a136" doxytag="GFC::Pango::Style" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> enum <a class="el" href="namespaceGFC_1_1Pango.html#a136">Style</a> </td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Specifies the various slant styles possible for a font.
<p>
<dl compact><dt><b>Enumeration values: </b></dt><dd>
<table border=0 cellspacing=2 cellpadding=0>
<tr><td valign=top><em><a class="anchor" name="a136a27" doxytag="STYLE_NORMAL" ></a>STYLE_NORMAL</em> </td><td>
The font is upright. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a136a28" doxytag="STYLE_OBLIQUE" ></a>STYLE_OBLIQUE</em> </td><td>
The font is slanted, but in a roman style. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a136a29" doxytag="STYLE_ITALIC" ></a>STYLE_ITALIC</em> </td><td>
The font is slanted in an italic style. </td></tr>
</table>
</dl>
</td>
</tr>
</table>
<a class="anchor" name="a144" doxytag="GFC::Pango::TabAlign" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> enum <a class="el" href="namespaceGFC_1_1Pango.html#a144">TabAlign</a> </td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Specifies where a tab stop appears relative to the text.
<p>
Currently there is only TAB_LEFT, but TAB_RIGHT, TAB_CENTER and TAB_NUMERIC may be supported in the future. <dl compact><dt><b>Enumeration values: </b></dt><dd>
<table border=0 cellspacing=2 cellpadding=0>
<tr><td valign=top><em><a class="anchor" name="a144a115" doxytag="TAB_LEFT" ></a>TAB_LEFT</em> </td><td>
The tab stop appears to the left of the text. </td></tr>
</table>
</dl>
</td>
</tr>
</table>
<a class="anchor" name="a133" doxytag="GFC::Pango::Underline" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> enum <a class="el" href="namespaceGFC_1_1Pango.html#a133">Underline</a> </td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Underline is used to specify whether text should be underlined, and if so, the type of underlining.
<p>
<dl compact><dt><b>Enumeration values: </b></dt><dd>
<table border=0 cellspacing=2 cellpadding=0>
<tr><td valign=top><em><a class="anchor" name="a133a0" doxytag="UNDERLINE_NONE" ></a>UNDERLINE_NONE</em> </td><td>
No underline should be drawn. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a133a1" doxytag="UNDERLINE_SINGLE" ></a>UNDERLINE_SINGLE</em> </td><td>
A single underline should be drawn. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a133a2" doxytag="UNDERLINE_DOUBLE" ></a>UNDERLINE_DOUBLE</em> </td><td>
A double underline should be drawn. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a133a3" doxytag="UNDERLINE_LOW" ></a>UNDERLINE_LOW</em> </td><td>
A single underline should be drawn at a position beneath the ink extents of the text being underlined; this should be used only for underlining single characters, such as for keyboard accelerators; UNDERLINE_SINGLE should be used for extended portions of text. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a133a4" doxytag="UNDERLINE_ERROR" ></a>UNDERLINE_ERROR</em> </td><td>
A wavy underline should be drawn below; this underline is typically used to indicate an error such as a possilble mispelling; in some cases an contrasting color may automatically be used. </td></tr>
</table>
</dl>
</td>
</tr>
</table>
<a class="anchor" name="a137" doxytag="GFC::Pango::Variant" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> enum <a class="el" href="namespaceGFC_1_1Pango.html#a137">Variant</a> </td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Specifies the capitalization variant of the font.
<p>
<dl compact><dt><b>Enumeration values: </b></dt><dd>
<table border=0 cellspacing=2 cellpadding=0>
<tr><td valign=top><em><a class="anchor" name="a137a30" doxytag="VARIANT_NORMAL" ></a>VARIANT_NORMAL</em> </td><td>
A normal font. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a137a31" doxytag="VARIANT_SMALL_CAPS" ></a>VARIANT_SMALL_CAPS</em> </td><td>
A font with the lower case characters replaced by smaller variants of the capital characters. </td></tr>
</table>
</dl>
</td>
</tr>
</table>
<a class="anchor" name="a138" doxytag="GFC::Pango::Weight" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> enum <a class="el" href="namespaceGFC_1_1Pango.html#a138">Weight</a> </td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Specifies the weight (boldness) of a font.
<p>
This is a numerical value ranging from 100 to 900, but there are some predefined values: <dl compact><dt><b>Enumeration values: </b></dt><dd>
<table border=0 cellspacing=2 cellpadding=0>
<tr><td valign=top><em><a class="anchor" name="a138a32" doxytag="WEIGHT_ULTALIGHT" ></a>WEIGHT_ULTALIGHT</em> </td><td>
The ultralight weight (= 200). </td></tr>
<tr><td valign=top><em><a class="anchor" name="a138a33" doxytag="WEIGHT_LIGHT" ></a>WEIGHT_LIGHT</em> </td><td>
The light weight (=300). </td></tr>
<tr><td valign=top><em><a class="anchor" name="a138a34" doxytag="WEIGHT_NORMAL" ></a>WEIGHT_NORMAL</em> </td><td>
The default weight (= 400). </td></tr>
<tr><td valign=top><em><a class="anchor" name="a138a35" doxytag="WEIGHT_BOLD" ></a>WEIGHT_BOLD</em> </td><td>
The bold weight (= 700). </td></tr>
<tr><td valign=top><em><a class="anchor" name="a138a36" doxytag="WEIGHT_ULTRABOLD" ></a>WEIGHT_ULTRABOLD</em> </td><td>
The ultrabold weight (= 800). </td></tr>
<tr><td valign=top><em><a class="anchor" name="a138a37" doxytag="WEIGHT_HEAVY" ></a>WEIGHT_HEAVY</em> </td><td>
The heavy weight (= 900). </td></tr>
</table>
</dl>
</td>
</tr>
</table>
<a class="anchor" name="a142" doxytag="GFC::Pango::WrapMode" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> enum <a class="el" href="namespaceGFC_1_1Pango.html#a142">WrapMode</a> </td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
<dl compact><dt><b>Enumeration values: </b></dt><dd>
<table border=0 cellspacing=2 cellpadding=0>
<tr><td valign=top><em><a class="anchor" name="a142a57" doxytag="WRAP_WORD" ></a>WRAP_WORD</em> </td><td>
Wrap lines at word boundaries. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a142a58" doxytag="WRAP_CHAR" ></a>WRAP_CHAR</em> </td><td>
Wrap lines at character boundaries. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a142a59" doxytag="WRAP_WORD_CHAR" ></a>WRAP_WORD_CHAR</em> </td><td>
Wrap lines at word boundaries, but fall back to character boundaries if there is not enought space for a full word. </td></tr>
</table>
</dl>
</td>
</tr>
</table>
<hr><h2>Function Documentation</h2>
<a class="anchor" name="a124" doxytag="GFC::Pango::break_text" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> void break_text </td>
<td class="md" valign="top">( </td>
<td class="md" nowrap valign="top">const String & </td>
<td class="mdname" nowrap> <em>text</em>, </td>
</tr>
<tr>
<td class="md" nowrap align="right"></td>
<td></td>
<td class="md" nowrap>const Analysis & </td>
<td class="mdname" nowrap> <em>analysis</em>, </td>
</tr>
<tr>
<td class="md" nowrap align="right"></td>
<td></td>
<td class="md" nowrap>std::vector< LogAttr > & </td>
<td class="mdname" nowrap> <em>attrs</em></td>
</tr>
<tr>
<td></td>
<td class="md">) </td>
<td class="md" colspan="2"></td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Determines possible line, word, and character breaks for a string of Unicode text.
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td></td><td valign=top><em>text</em> </td><td>The text to process. </td></tr>
<tr><td></td><td valign=top><em>analysis</em> </td><td>An <a class="el" href="classGFC_1_1Pango_1_1Analysis.html">Analysis</a> structure from <a class="el" href="classGFC_1_1Pango_1_1Context.html#z1149_6">Pango::Context::itemize()</a>. </td></tr>
<tr><td></td><td valign=top><em>attrs</em> </td><td>A vector of <a class="el" href="classGFC_1_1Pango_1_1LogAttr.html">LogAttr</a> to store the character information in. </td></tr>
</table>
</dl>
</td>
</tr>
</table>
<a class="anchor" name="a132" doxytag="GFC::Pango::find_base_dir" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> <a class="el" href="namespaceGFC_1_1Pango.html#a145">Direction</a> find_base_dir </td>
<td class="md" valign="top">( </td>
<td class="md" nowrap valign="top">const char * </td>
<td class="mdname" nowrap> <em>text</em>, </td>
</tr>
<tr>
<td class="md" nowrap align="right"></td>
<td></td>
<td class="md" nowrap>int </td>
<td class="mdname" nowrap> <em>length</em> = <code>-1</code></td>
</tr>
<tr>
<td></td>
<td class="md">) </td>
<td class="md" colspan="2"></td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Searches a string for the first character that has a strong direction, according to the Unicode bidirectional algorithm.
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td></td><td valign=top><em>text</em> </td><td>The text to process. </td></tr>
<tr><td></td><td valign=top><em>length</em> </td><td>The length of text in bytes, or -1 if text is null-terminated. </td></tr>
</table>
</dl>
<dl compact><dt><b>Returns:</b></dt><dd>The direction corresponding to the first strong character.</dd></dl>
<br>
If no such character is found, then <a class="el" href="namespaceGFC_1_1Pango.html#a145a123">Pango::DIRECTION_NEUTRAL</a> is returned. </td>
</tr>
</table>
<a class="anchor" name="a125" doxytag="GFC::Pango::find_paragraph_boundary" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> void find_paragraph_boundary </td>
<td class="md" valign="top">( </td>
<td class="md" nowrap valign="top">const String & </td>
<td class="mdname" nowrap> <em>text</em>, </td>
</tr>
<tr>
<td class="md" nowrap align="right"></td>
<td></td>
<td class="md" nowrap>int * </td>
<td class="mdname" nowrap> <em>paragraph_delimiter_index</em>, </td>
</tr>
<tr>
<td class="md" nowrap align="right"></td>
<td></td>
<td class="md" nowrap>int * </td>
<td class="mdname" nowrap> <em>next_paragraph_start</em></td>
</tr>
<tr>
<td></td>
<td class="md">) </td>
<td class="md" colspan="2"></td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Locates a paragraph boundary in text.
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td></td><td valign=top><em>text</em> </td><td>The UTF-8 text. </td></tr>
<tr><td></td><td valign=top><em>paragraph_delimiter_index</em> </td><td>The return location for index of delimiter. </td></tr>
<tr><td></td><td valign=top><em>next_paragraph_start</em> </td><td>The return location for start of next paragraph.</td></tr>
</table>
</dl>
<br>
A boundary is caused by delimiter characters, such as a newline, carriage return, carriage return-newline pair, or Unicode paragraph separator character. The index of the run of delimiters is returned in paragraph_delimiter_index. The index of the start of the paragraph (index after all delimiters) is stored in next_paragraph_start. If no delimiters are found, both paragraph_delimiter_index and next_paragraph_start are filled with the length of text (an index one off the end). </td>
</tr>
</table>
<a class="anchor" name="a126" doxytag="GFC::Pango::get_log_attrs" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> void get_log_attrs </td>
<td class="md" valign="top">( </td>
<td class="md" nowrap valign="top">const String & </td>
<td class="mdname" nowrap> <em>text</em>, </td>
</tr>
<tr>
<td class="md" nowrap align="right"></td>
<td></td>
<td class="md" nowrap>PangoLanguage * </td>
<td class="mdname" nowrap> <em>language</em>, </td>
</tr>
<tr>
<td class="md" nowrap align="right"></td>
<td></td>
<td class="md" nowrap>std::vector< LogAttr > & </td>
<td class="mdname" nowrap> <em>attrs</em>, </td>
</tr>
<tr>
<td class="md" nowrap align="right"></td>
<td></td>
<td class="md" nowrap>int </td>
<td class="mdname" nowrap> <em>level</em> = <code>-1</code></td>
</tr>
<tr>
<td></td>
<td class="md">) </td>
<td class="md" colspan="2"></td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Computes a <a class="el" href="classGFC_1_1Pango_1_1LogAttr.html">LogAttr</a> for each character in <em>text</em>.
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td></td><td valign=top><em>text</em> </td><td>The text to process. </td></tr>
<tr><td></td><td valign=top><em>language</em> </td><td>The language tag. </td></tr>
<tr><td></td><td valign=top><em>attrs</em> </td><td>A vector of <a class="el" href="classGFC_1_1Pango_1_1LogAttr.html">LogAttr</a> with one <a class="el" href="classGFC_1_1Pango_1_1LogAttr.html">LogAttr</a> per character in text, plus one extra, to be filled in. </td></tr>
<tr><td></td><td valign=top><em>level</em> </td><td>The embedding level, or -1 if unknown.</td></tr>
</table>
</dl>
<br>
The <em>log_attrs</em> vector must have one <a class="el" href="classGFC_1_1Pango_1_1LogAttr.html">LogAttr</a> for each position in <em>text</em>; if text contains N characters, it has N+1 positions, including the last position at the end of the text. text should be an entire paragraph; logical attributes can't be computed without context (for example you need to see spaces on either side of a word to know the word is a word). </td>
</tr>
</table>
<a class="anchor" name="a130" doxytag="GFC::Pango::language_includes_script" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> bool language_includes_script </td>
<td class="md" valign="top">( </td>
<td class="md" nowrap valign="top">PangoLanguage * </td>
<td class="mdname" nowrap> <em>language</em>, </td>
</tr>
<tr>
<td class="md" nowrap align="right"></td>
<td></td>
<td class="md" nowrap><a class="el" href="namespaceGFC_1_1Pango.html#a143">Script</a> </td>
<td class="mdname" nowrap> <em>script</em></td>
</tr>
<tr>
<td></td>
<td class="md">) </td>
<td class="md" colspan="2"></td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Determines if <em>script</em> is one of the scripts used to write <em>language</em>.
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td></td><td valign=top><em>language</em> </td><td>A PangoLanguage. </td></tr>
<tr><td></td><td valign=top><em>script</em> </td><td>A <a class="el" href="namespaceGFC_1_1Pango.html#a143">Pango::Script</a> </td></tr>
</table>
</dl>
<dl compact><dt><b>Returns:</b></dt><dd><em>true</em> if <em>script</em> is one of the scripts used to write <em>language</em>, or if nothing is known about <em>language</em>.</dd></dl>
<br>
The returned value is conservative; if nothing is known about the language tag <em>language</em>, true will be returned, since, as far as <a class="el" href="namespaceGFC_1_1Pango.html">Pango</a> knows, <em>script</em> might be used to write <em>language</em>.<p>
This routine is used in Pango's itemization process when determining if a supplied language tag is relevant to a particular section of text. It probably is not useful for applications in most circumstances. </td>
</tr>
</table>
<a class="anchor" name="a127" doxytag="GFC::Pango::reorder_items" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> std::vector<<a class="elRef" doxygen="gfccore.tag:" href="classGFC_1_1Pointer.html">Pointer</a><<a class="el" href="classGFC_1_1Pango_1_1Item.html">Item</a>> > reorder_items </td>
<td class="md" valign="top">( </td>
<td class="md" nowrap valign="top">const std::vector< Pointer< Item > > & </td>
<td class="mdname1" valign="top" nowrap> <em>logical_items</em> </td>
<td class="md" valign="top"> ) </td>
<td class="md" nowrap></td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
From a list of items in logical order and the associated directional levels, produce a list in visual order (the original list is unmodified).
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td></td><td valign=top><em>logical_items</em> </td><td>A vector of Pointer<Item> in logical order. </td></tr>
</table>
</dl>
<dl compact><dt><b>Returns:</b></dt><dd>A vector of Pointer<Item> in visual order.</dd></dl>
<br>
Please mail <a href="mailto:otaylor@redhat.com">otaylor@redhat.com</a> if you use this method. It is not a particularly convenient interface, and the code is duplicated elsewhere in <a class="el" href="namespaceGFC_1_1Pango.html">Pango</a> for that reason. </td>
</tr>
</table>
<a class="anchor" name="a128" doxytag="GFC::Pango::script_for_unichar" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> <a class="el" href="namespaceGFC_1_1Pango.html#a143">Script</a> script_for_unichar </td>
<td class="md" valign="top">( </td>
<td class="md" nowrap valign="top">G::Unichar </td>
<td class="mdname1" valign="top" nowrap> <em>ch</em> </td>
<td class="md" valign="top"> ) </td>
<td class="md" nowrap></td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Looks up the <a class="el" href="namespaceGFC_1_1Pango.html#a143">Pango::Script</a> for a particular character (as defined by Unicode Technical report 24).
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td></td><td valign=top><em>ch</em> </td><td>A unicode character </td></tr>
</table>
</dl>
<dl compact><dt><b>Returns:</b></dt><dd>The PangoScript for the character.</dd></dl>
<br>
No check is made for <em>ch</em> being valid unicode character; if you pass in an invalid character, the result is undefined. </td>
</tr>
</table>
<a class="anchor" name="a129" doxytag="GFC::Pango::script_get_sample_language" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> PangoLanguage* script_get_sample_language </td>
<td class="md" valign="top">( </td>
<td class="md" nowrap valign="top"><a class="el" href="namespaceGFC_1_1Pango.html#a143">Script</a> </td>
<td class="mdname1" valign="top" nowrap> <em>script</em> </td>
<td class="md" valign="top"> ) </td>
<td class="md" nowrap></td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Given a script, finds a language tag that is reasonably representative of that script.
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td></td><td valign=top><em>script</em> </td><td>A <a class="el" href="namespaceGFC_1_1Pango.html#a143">Pango::Script</a> </td></tr>
</table>
</dl>
<dl compact><dt><b>Returns:</b></dt><dd>A PangoLanguage that is representative of the script, or null if no such language exists.</dd></dl>
<br>
This will usually be the most widely spoken or used language written in that script: for instance, the sample language for <a class="el" href="namespaceGFC_1_1Pango.html#a143a69">Pango::SCRIPT_CYRILLIC</a> is ru (Russian), the sample lanugage for <a class="el" href="namespaceGFC_1_1Pango.html#a143a63">Pango::SCRIPT_ARABIC</a> is ar. For some scripts, no sample language will be returned because there is no language that is sufficiently representative. The best example of this is <a class="el" href="namespaceGFC_1_1Pango.html#a143a78">Pango::SCRIPT_HAN</a>, where various different variants of written Chinese, Japanese, and Korean all use significantly different sets of Han characters and forms of shared characters. No sample language can be provided for many historical scripts as well. </td>
</tr>
</table>
<a class="anchor" name="a131" doxytag="GFC::Pango::unichar_direction" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> <a class="el" href="namespaceGFC_1_1Pango.html#a145">Direction</a> unichar_direction </td>
<td class="md" valign="top">( </td>
<td class="md" nowrap valign="top">G::Unichar </td>
<td class="mdname1" valign="top" nowrap> <em>ch</em> </td>
<td class="md" valign="top"> ) </td>
<td class="md" nowrap></td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Determines the direction of a character; either <a class="el" href="namespaceGFC_1_1Pango.html#a145a117">Pango::DIRECTION_LTR</a>, <a class="el" href="namespaceGFC_1_1Pango.html#a145a117">Pango::DIRECTION_LTR</a>, or <a class="el" href="namespaceGFC_1_1Pango.html#a145a123">Pango::DIRECTION_NEUTRAL</a>.
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td></td><td valign=top><em>ch</em> </td><td>The character to examine. </td></tr>
</table>
</dl>
<dl compact><dt><b>Returns:</b></dt><dd>The direction of a the character, as used in the Unicode bidirectional algorithm. </dd></dl>
</td>
</tr>
</table>
<hr size="1"><address style="align: right;"><small>Generated on Tue Aug 24 00:34:45 2004 for GFC-UI by
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border=0 ></a> 1.3.8 </small></address>
</body>
</html>
|