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
|
<!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 ATK Accessibility Toolkit.
<a href="#_details">More...</a>
<p>
<h2>Classes</h2>
<ul>
<li>class <a class="el" href="classGFC_1_1Atk_1_1Action.html">GFC::Atk::Action</a>
<dl class="el"><dd class="mdescRight">An AtkAction C++ wrapper class. <a href="classGFC_1_1Atk_1_1Action.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Atk_1_1Component.html">GFC::Atk::Component</a>
<dl class="el"><dd class="mdescRight">An AtkComponent C++ wrapper class. <a href="classGFC_1_1Atk_1_1Component.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Atk_1_1Document.html">GFC::Atk::Document</a>
<dl class="el"><dd class="mdescRight">An AtkDocument C++ wrapper class. <a href="classGFC_1_1Atk_1_1Document.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Atk_1_1EditableText.html">GFC::Atk::EditableText</a>
<dl class="el"><dd class="mdescRight">A AtkEditableText C++ wrapper class. <a href="classGFC_1_1Atk_1_1EditableText.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Atk_1_1GObjectAccessible.html">GFC::Atk::GObjectAccessible</a>
<dl class="el"><dd class="mdescRight">An AtkGObjectAccessible C++ wrapper class. <a href="classGFC_1_1Atk_1_1GObjectAccessible.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Atk_1_1Hyperlink.html">GFC::Atk::Hyperlink</a>
<dl class="el"><dd class="mdescRight">An AtkHyperlink C++ wrapper class. <a href="classGFC_1_1Atk_1_1Hyperlink.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Atk_1_1HyperlinkSignals.html">GFC::Atk::HyperlinkSignals</a>
<dl class="el"><dd class="mdescRight">Abstract base class that implements the virtual signal handlers for <a class="el" href="classGFC_1_1Atk_1_1Hyperlink.html">Atk::Hyperlink</a>. <a href="classGFC_1_1Atk_1_1HyperlinkSignals.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Atk_1_1Hypertext.html">GFC::Atk::Hypertext</a>
<dl class="el"><dd class="mdescRight">An AtkHypertext C++ wrapper class. <a href="classGFC_1_1Atk_1_1Hypertext.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Atk_1_1HypertextSignals.html">GFC::Atk::HypertextSignals</a>
<dl class="el"><dd class="mdescRight">Abstract base class that implements the virtual signal handlers for <a class="el" href="classGFC_1_1Atk_1_1Hypertext.html">Atk::Hypertext</a>. <a href="classGFC_1_1Atk_1_1HypertextSignals.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Atk_1_1Image.html">GFC::Atk::Image</a>
<dl class="el"><dd class="mdescRight">An AtkImage C++ wrapper class. <a href="classGFC_1_1Atk_1_1Image.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Atk_1_1Implementor.html">GFC::Atk::Implementor</a>
<dl class="el"><dd class="mdescRight">An AtkImplementor C++ wrapper class. <a href="classGFC_1_1Atk_1_1Implementor.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Atk_1_1Object.html">GFC::Atk::Object</a>
<dl class="el"><dd class="mdescRight">An AtkObject C++ wrapper class. <a href="classGFC_1_1Atk_1_1Object.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Atk_1_1ObjectFactory.html">GFC::Atk::ObjectFactory</a>
<dl class="el"><dd class="mdescRight">An AtkObjectFactory C++ wrapper class. <a href="classGFC_1_1Atk_1_1ObjectFactory.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Atk_1_1ObjectSignals.html">GFC::Atk::ObjectSignals</a>
<dl class="el"><dd class="mdescRight">Abstract base class that implements the virtual signal handlers for <a class="el" href="classGFC_1_1Atk_1_1Object.html">Atk::Object</a>. <a href="classGFC_1_1Atk_1_1ObjectSignals.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Atk_1_1Registry.html">GFC::Atk::Registry</a>
<dl class="el"><dd class="mdescRight">An AtkRegistry C++ wrapper class. <a href="classGFC_1_1Atk_1_1Registry.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Atk_1_1Relation.html">GFC::Atk::Relation</a>
<dl class="el"><dd class="mdescRight">An AtkRelation C++ wrapper class. <a href="classGFC_1_1Atk_1_1Relation.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Atk_1_1RelationSet.html">GFC::Atk::RelationSet</a>
<dl class="el"><dd class="mdescRight">An AtkRelationSet C++ wrapper class. <a href="classGFC_1_1Atk_1_1RelationSet.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Atk_1_1Selection.html">GFC::Atk::Selection</a>
<dl class="el"><dd class="mdescRight">An AtkSelection C++ wrapper class. <a href="classGFC_1_1Atk_1_1Selection.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Atk_1_1SelectionSignals.html">GFC::Atk::SelectionSignals</a>
<dl class="el"><dd class="mdescRight">Abstract base class that implements the virtual signal handlers for <a class="el" href="classGFC_1_1Atk_1_1Selection.html">Atk::Selection</a>. <a href="classGFC_1_1Atk_1_1SelectionSignals.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Atk_1_1StateSet.html">GFC::Atk::StateSet</a>
<dl class="el"><dd class="mdescRight">An AtkStateSet C++ wrapper class. <a href="classGFC_1_1Atk_1_1StateSet.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Atk_1_1StreamableContent.html">GFC::Atk::StreamableContent</a>
<dl class="el"><dd class="mdescRight">An AtkStreamableContent C++ wrapper class. <a href="classGFC_1_1Atk_1_1StreamableContent.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Atk_1_1Table.html">GFC::Atk::Table</a>
<dl class="el"><dd class="mdescRight">An AtkTable C++ wrapper class. <a href="classGFC_1_1Atk_1_1Table.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Atk_1_1TableSignals.html">GFC::Atk::TableSignals</a>
<dl class="el"><dd class="mdescRight">Abstract base class that implements the virtual signal handlers for <a class="el" href="classGFC_1_1Atk_1_1Table.html">Atk::Table</a>. <a href="classGFC_1_1Atk_1_1TableSignals.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Atk_1_1Attribute.html">GFC::Atk::Attribute</a>
<dl class="el"><dd class="mdescRight">A AtkAttribute C++ wrapper class. <a href="classGFC_1_1Atk_1_1Attribute.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Atk_1_1TextRectangle.html">GFC::Atk::TextRectangle</a>
<dl class="el"><dd class="mdescRight">An AtkTextRectangle C++ wrapper class. <a href="classGFC_1_1Atk_1_1TextRectangle.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Atk_1_1TextRange.html">GFC::Atk::TextRange</a>
<dl class="el"><dd class="mdescRight">A AtkTextRange C++ wrapper class. <a href="classGFC_1_1Atk_1_1TextRange.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Atk_1_1Text.html">GFC::Atk::Text</a>
<dl class="el"><dd class="mdescRight">A AtkText C++ wrapper class. <a href="classGFC_1_1Atk_1_1Text.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Atk_1_1TextSignals.html">GFC::Atk::TextSignals</a>
<dl class="el"><dd class="mdescRight">Abstract base class that implements the virtual signal handlers for <a class="el" href="classGFC_1_1Atk_1_1Text.html">Atk::Text</a>. <a href="classGFC_1_1Atk_1_1TextSignals.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Atk_1_1Value.html">GFC::Atk::Value</a>
<dl class="el"><dd class="mdescRight">An AtkValue C++ wrapper class. <a href="classGFC_1_1Atk_1_1Value.html#_details">More...</a><br></dl></ul>
<h2>Role Methods</h2>
<ul>
<li><a class="el" href="namespaceGFC_1_1Atk.html#a195">Role</a> <a class="el" href="namespaceGFC_1_1Atk.html#a176">role_register</a> (const <a class="elRef" doxygen="gfccore.tag:" href="classGFC_1_1String.html">String</a> &name)
<dl class="el"><dd class="mdescRight">Registers the role specified by name. <a href="#a176"></a><br></dl><li><a class="elRef" doxygen="gfccore.tag:" href="classGFC_1_1String.html">String</a> <a class="el" href="namespaceGFC_1_1Atk.html#a177">role_get_name</a> (<a class="el" href="namespaceGFC_1_1Atk.html#a195">Role</a> role)
<dl class="el"><dd class="mdescRight">Gets the description string describing the Role <em>role</em>. <a href="#a177"></a><br></dl><li><a class="elRef" doxygen="gfccore.tag:" href="classGFC_1_1String.html">String</a> <a class="el" href="namespaceGFC_1_1Atk.html#a178">role_get_localized_name</a> (<a class="el" href="namespaceGFC_1_1Atk.html#a195">Role</a> role)
<dl class="el"><dd class="mdescRight">Gets the localized description string describing the Role <em>role</em>. <a href="#a178"></a><br></dl><li><a class="el" href="namespaceGFC_1_1Atk.html#a195">Role</a> <a class="el" href="namespaceGFC_1_1Atk.html#a179">role_for_name</a> (const <a class="elRef" doxygen="gfccore.tag:" href="classGFC_1_1String.html">String</a> &name)
<dl class="el"><dd class="mdescRight">Get the Role type corresponding to a role <em>name</em>. <a href="#a179"></a><br></dl></ul>
<h2>StateType Methods</h2>
<ul>
<li><a class="el" href="namespaceGFC_1_1Atk.html#a196">StateType</a> <a class="el" href="namespaceGFC_1_1Atk.html#a180">state_type_register</a> (const <a class="elRef" doxygen="gfccore.tag:" href="classGFC_1_1String.html">String</a> &name)
<dl class="el"><dd class="mdescRight">Register a new object state. <a href="#a180"></a><br></dl><li><a class="elRef" doxygen="gfccore.tag:" href="classGFC_1_1String.html">String</a> <a class="el" href="namespaceGFC_1_1Atk.html#a181">state_type_get_name</a> (<a class="el" href="namespaceGFC_1_1Atk.html#a196">StateType</a> type)
<dl class="el"><dd class="mdescRight">Gets the description string describing the StateType <em>type</em>. <a href="#a181"></a><br></dl><li><a class="el" href="namespaceGFC_1_1Atk.html#a196">StateType</a> <a class="el" href="namespaceGFC_1_1Atk.html#a182">state_type_for_name</a> (const <a class="elRef" doxygen="gfccore.tag:" href="classGFC_1_1String.html">String</a> &name)
<dl class="el"><dd class="mdescRight">Gets the StateType corresponding to the description string name. <a href="#a182"></a><br></dl></ul>
<h2>TextAttibute Methods</h2>
<ul>
<li><a class="el" href="namespaceGFC_1_1Atk.html#a197">TextAttribute</a> <a class="el" href="namespaceGFC_1_1Atk.html#a183">text_attribute_register</a> (const <a class="elRef" doxygen="gfccore.tag:" href="classGFC_1_1String.html">String</a> &name)
<dl class="el"><dd class="mdescRight">Associate name with a new TextAttribute. <a href="#a183"></a><br></dl><li><a class="elRef" doxygen="gfccore.tag:" href="classGFC_1_1String.html">String</a> <a class="el" href="namespaceGFC_1_1Atk.html#a184">text_attribute_get_name</a> (<a class="el" href="namespaceGFC_1_1Atk.html#a197">TextAttribute</a> attr)
<dl class="el"><dd class="mdescRight">Gets the name corresponding to the TextAttribute. <a href="#a184"></a><br></dl><li><a class="el" href="namespaceGFC_1_1Atk.html#a197">TextAttribute</a> <a class="el" href="namespaceGFC_1_1Atk.html#a185">text_attribute_for_name</a> (const <a class="elRef" doxygen="gfccore.tag:" href="classGFC_1_1String.html">String</a> &name)
<dl class="el"><dd class="mdescRight">Get the TextAttribute type corresponding to a text attribute <em>name</em>. <a href="#a185"></a><br></dl><li><a class="elRef" doxygen="gfccore.tag:" href="classGFC_1_1String.html">String</a> <a class="el" href="namespaceGFC_1_1Atk.html#a186">text_attribute_get_value</a> (<a class="el" href="namespaceGFC_1_1Atk.html#a197">TextAttribute</a> attr, int index)
<dl class="el"><dd class="mdescRight">Gets the value for the index of the text attribute <em>attr</em>. <a href="#a186"></a><br></dl></ul>
<h2>RelationType Methods</h2>
<ul>
<li><a class="el" href="namespaceGFC_1_1Atk.html#a202">RelationType</a> <a class="el" href="namespaceGFC_1_1Atk.html#a187">relation_type_register</a> (const <a class="elRef" doxygen="gfccore.tag:" href="classGFC_1_1String.html">String</a> &name)
<dl class="el"><dd class="mdescRight">Associate name with a new RelationType. <a href="#a187"></a><br></dl><li><a class="elRef" doxygen="gfccore.tag:" href="classGFC_1_1String.html">String</a> <a class="el" href="namespaceGFC_1_1Atk.html#a188">relation_type_get_name</a> (<a class="el" href="namespaceGFC_1_1Atk.html#a202">RelationType</a> type)
<dl class="el"><dd class="mdescRight">Gets the description string describing the RelationType <em>type</em>. <a href="#a188"></a><br></dl><li><a class="el" href="namespaceGFC_1_1Atk.html#a202">RelationType</a> <a class="el" href="namespaceGFC_1_1Atk.html#a189">relation_type_for_name</a> (const <a class="elRef" doxygen="gfccore.tag:" href="classGFC_1_1String.html">String</a> &name)
<dl class="el"><dd class="mdescRight">Get the RelationType type corresponding to a relation name. <a href="#a189"></a><br></dl></ul>
<h2>Toolkit Methods</h2>
<ul>
<li><a class="anchor" name="a190" doxytag="GFC::Atk::get_root" ></a>
<a class="el" href="classGFC_1_1Atk_1_1Object.html">Object</a> * <a class="el" href="namespaceGFC_1_1Atk.html#a190">get_root</a> ()
<dl class="el"><dd class="mdescRight">Returns the root accessible container for the current application. <br></dl><li><a class="el" href="classGFC_1_1Atk_1_1Object.html">Object</a> * <a class="el" href="namespaceGFC_1_1Atk.html#a191">get_focus_object</a> ()
<dl class="el"><dd class="mdescRight">Gets the currently focused accessible object. <a href="#a191"></a><br></dl><li><a class="anchor" name="a192" doxytag="GFC::Atk::get_toolkit_name" ></a>
<a class="elRef" doxygen="gfccore.tag:" href="classGFC_1_1String.html">String</a> <a class="el" href="namespaceGFC_1_1Atk.html#a192">get_toolkit_name</a> ()
<dl class="el"><dd class="mdescRight">Returns the name string for the GUI toolkit implementing ATK for this application. <br></dl><li><a class="anchor" name="a193" doxytag="GFC::Atk::get_toolkit_version" ></a>
<a class="elRef" doxygen="gfccore.tag:" href="classGFC_1_1String.html">String</a> <a class="el" href="namespaceGFC_1_1Atk.html#a193">get_toolkit_version</a> ()
<dl class="el"><dd class="mdescRight">Returns the version string for the GUI toolkit implementing ATK for this application. <br></dl></ul>
<h2>Typedefs</h2>
<ul>
<li><a class="anchor" name="a0" doxytag="GFC::Atk::HyperlinkStateFlagsField" ></a>
typedef unsigned int <a class="el" href="namespaceGFC_1_1Atk.html#a0">HyperlinkStateFlagsField</a>
<dl class="el"><dd class="mdescRight">HyperlinkStateFlagsField holds one or more values from the <a class="el" href="namespaceGFC_1_1Atk.html#a194">Atk::HyperlinkStateFlags</a> enumeration OR'd together. <br></dl><li><a class="anchor" name="a151" doxytag="GFC::Atk::State" ></a>
typedef AtkState <a class="el" href="namespaceGFC_1_1Atk.html#a151">State</a>
<dl class="el"><dd class="mdescRight">State is a typedef for AtkState. <br></dl></ul>
<h2>Enumerations</h2>
<ul>
<li>enum <a class="el" href="namespaceGFC_1_1Atk.html#a194">HyperlinkStateFlags</a> { <a class="el" href="namespaceGFC_1_1Atk.html#a194a1">HYPERLINK_IS_INLINE</a> = ATK_HYPERLINK_IS_INLINE
}
<dl class="el"><dd class="mdescRight">Describes the type of link. <a href="#a194">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Atk.html#a195">Role</a> { <br>
<a class="el" href="namespaceGFC_1_1Atk.html#a195a2">ROLE_INVALID</a> = ATK_ROLE_INVALID,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a195a3">ROLE_ACCEL_LABEL</a> = ATK_ROLE_ACCEL_LABEL,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a195a4">ROLE_ALERT</a> = ATK_ROLE_ALERT,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a195a5">ROLE_ANIMATION</a> = ATK_ROLE_ANIMATION,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a195a6">ROLE_ARROW</a> = ATK_ROLE_ARROW,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a195a7">ROLE_CALENDAR</a> = ATK_ROLE_CALENDAR,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a195a8">ROLE_CANVAS</a> = ATK_ROLE_CANVAS,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a195a9">ROLE_CHECK_BOX</a> = ATK_ROLE_CHECK_BOX,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a195a10">ROLE_CHECK_MENU_ITEM</a> = ATK_ROLE_CHECK_MENU_ITEM,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a195a11">ROLE_COLOR_CHOOSER</a> = ATK_ROLE_COLOR_CHOOSER,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a195a12">ROLE_COLUMN_HEADER</a> = ATK_ROLE_COLUMN_HEADER,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a195a13">ROLE_COMBO_BOX</a> = ATK_ROLE_COMBO_BOX,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a195a14">ROLE_DATE_EDITOR</a> = ATK_ROLE_DATE_EDITOR,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a195a15">ROLE_DESKTOP_ICON</a> = ATK_ROLE_DESKTOP_ICON,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a195a16">ROLE_DESKTOP_FRAME</a> = ATK_ROLE_DESKTOP_FRAME,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a195a17">ROLE_DIAL</a> = ATK_ROLE_DIAL,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a195a18">ROLE_DIALOG</a> = ATK_ROLE_DIALOG,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a195a19">ROLE_DIRECTORY_PANE</a> = ATK_ROLE_DIRECTORY_PANE,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a195a20">ROLE_DRAWING_AREA</a> = ATK_ROLE_DRAWING_AREA,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a195a21">ROLE_FILE_CHOOSER</a> = ATK_ROLE_FILE_CHOOSER,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a195a22">ROLE_FILLER</a> = ATK_ROLE_FILLER,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a195a23">ROLE_FONT_CHOOSER</a> = ATK_ROLE_FONT_CHOOSER,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a195a24">ROLE_FRAME</a> = ATK_ROLE_FRAME,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a195a25">ROLE_GLASS_PANE</a> = ATK_ROLE_GLASS_PANE,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a195a26">ROLE_HTML_CONTAINER</a> = ATK_ROLE_HTML_CONTAINER,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a195a27">ROLE_ICON</a> = ATK_ROLE_ICON,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a195a28">ROLE_IMAGE</a> = ATK_ROLE_IMAGE,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a195a29">ROLE_INTERNAL_FRAME</a> = ATK_ROLE_INTERNAL_FRAME,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a195a30">ROLE_LABEL</a> = ATK_ROLE_LABEL,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a195a31">ROLE_LAYERED_PANE</a> = ATK_ROLE_LAYERED_PANE,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a195a32">ROLE_LIST</a> = ATK_ROLE_LIST,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a195a33">ROLE_LIST_ITEM</a> = ATK_ROLE_LIST_ITEM,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a195a34">ROLE_MENU</a> = ATK_ROLE_MENU,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a195a35">ROLE_MENU_BAR</a> = ATK_ROLE_MENU_BAR,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a195a36">ROLE_MENU_ITEM</a> = ATK_ROLE_MENU_ITEM,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a195a37">ROLE_OPTION_PANE</a> = ATK_ROLE_OPTION_PANE,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a195a38">ROLE_PAGE_TAB</a> = ATK_ROLE_PAGE_TAB,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a195a39">ROLE_PAGE_TAB_LIST</a> = ATK_ROLE_PAGE_TAB_LIST,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a195a40">ROLE_PANEL</a> = ATK_ROLE_PANEL,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a195a41">ROLE_PASSWORD_TEXT</a> = ATK_ROLE_PASSWORD_TEXT,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a195a42">ROLE_POPUP_MENU</a> = ATK_ROLE_POPUP_MENU,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a195a43">ROLE_PROGRESS_BAR</a> = ATK_ROLE_PROGRESS_BAR,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a195a44">ROLE_PUSH_BUTTON</a> = ATK_ROLE_PUSH_BUTTON,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a195a45">ROLE_RADIO_BUTTON</a> = ATK_ROLE_RADIO_BUTTON,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a195a46">ROLE_RADIO_MENU_ITEM</a> = ATK_ROLE_RADIO_MENU_ITEM,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a195a47">OLE_ROOT_PANE</a> = ATK_ROLE_ROOT_PANE,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a195a48">ROLE_ROW_HEADER</a> = ATK_ROLE_ROW_HEADER,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a195a49">ROLE_SCROLL_BAR</a> = ATK_ROLE_SCROLL_BAR,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a195a50">ROLE_SCROLL_PANE</a> = ATK_ROLE_SCROLL_PANE,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a195a51">ROLE_SEPARATOR</a> = ATK_ROLE_SEPARATOR,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a195a52">ROLE_SLIDER</a> = ATK_ROLE_SLIDER,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a195a53">ROLE_SPLIT_PANE</a> = ATK_ROLE_SPLIT_PANE,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a195a54">ROLE_SPIN_BUTTON</a> = ATK_ROLE_SPIN_BUTTON,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a195a55">ROLE_STATUSBAR</a> = ATK_ROLE_STATUSBAR,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a195a56">ROLE_TABLE</a> = ATK_ROLE_TABLE,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a195a57">ROLE_TABLE_CELL</a> = ATK_ROLE_TABLE_CELL,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a195a58">ROLE_TABLE_COLUMN_HEADER</a> = ATK_ROLE_TABLE_COLUMN_HEADER,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a195a59">ROLE_TABLE_ROW_HEADER</a> = ATK_ROLE_TABLE_ROW_HEADER,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a195a60">ROLE_TEAR_OFF_MENU_ITEM</a> = ATK_ROLE_TEAR_OFF_MENU_ITEM,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a195a61">ROLE_TERMINAL</a> = ATK_ROLE_TERMINAL,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a195a62">ROLE_TEXT</a> = ATK_ROLE_TEXT,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a195a63">ROLE_TOGGLE_BUTTON</a> = ATK_ROLE_TOGGLE_BUTTON,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a195a64">ROLE_TOOL_BAR</a> = ATK_ROLE_TOOL_BAR,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a195a65">ROLE_TOOL_TIP</a> = ATK_ROLE_TOOL_TIP,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a195a66">ROLE_TREE</a> = ATK_ROLE_TREE,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a195a67">ROLE_TREE_TABLE</a> = ATK_ROLE_TREE_TABLE,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a195a68">ROLE_UNKNOWN</a> = ATK_ROLE_UNKNOWN,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a195a69">ROLE_VIEWPORT</a> = ATK_ROLE_VIEWPORT,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a195a70">ROLE_WINDOW</a> = ATK_ROLE_WINDOW,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a195a71">ROLE_HEADER</a> = ATK_ROLE_HEADER,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a195a72">ROLE_FOOTER</a> = ATK_ROLE_FOOTER,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a195a73">ROLE_PARAGRAPH</a> = ATK_ROLE_PARAGRAPH,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a195a74">ROLE_RULER</a> = ATK_ROLE_RULER,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a195a75">ROLE_APPLICATION</a> = ATK_ROLE_APPLICATION,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a195a76">ROLE_AUTOCOMPLETE</a> = ATK_ROLE_AUTOCOMPLETE,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a195a77">ROLE_EDITBAR</a> = ATK_ROLE_EDITBAR,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a195a78">ROLE_LAST_DEFINED</a> = ATK_ROLE_LAST_DEFINED
<br>
}
<dl class="el"><dd class="mdescRight">Describes the role of an object. <a href="#a195">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Atk.html#a196">StateType</a> { <br>
<a class="el" href="namespaceGFC_1_1Atk.html#a196a79">STATE_INVALID</a> = ATK_STATE_INVALID,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a196a80">STATE_ACTIVE</a> = ATK_STATE_ACTIVE,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a196a81">STATE_ARMED</a> = ATK_STATE_ARMED,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a196a82">STATE_BUSY</a> = ATK_STATE_BUSY,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a196a83">STATE_CHECKED</a> = ATK_STATE_CHECKED,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a196a84">STATE_DEFUNCT</a> = ATK_STATE_DEFUNCT,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a196a85">STATE_EDITABLE</a> = ATK_STATE_EDITABLE,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a196a86">STATE_ENABLED</a> = ATK_STATE_ENABLED,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a196a87">STATE_EXPANDABLE</a> = ATK_STATE_EXPANDABLE,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a196a88">STATE_EXPANDED</a> = ATK_STATE_EXPANDED,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a196a89">STATE_FOCUSABLE</a> = ATK_STATE_FOCUSABLE,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a196a90">STATE_FOCUSED</a> = ATK_STATE_FOCUSED,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a196a91">STATE_HORIZONTAL</a> = ATK_STATE_HORIZONTAL,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a196a92">STATE_ICONIFIED</a> = ATK_STATE_ICONIFIED,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a196a93">STATE_MODAL</a> = ATK_STATE_MODAL,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a196a94">STATE_MULTI_LINE</a> = ATK_STATE_MULTI_LINE,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a196a95">STATE_MULTISELECTABLE</a> = ATK_STATE_MULTISELECTABLE,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a196a96">STATE_OPAQUE</a> = ATK_STATE_OPAQUE,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a196a97">STATE_PRESSED</a> = ATK_STATE_PRESSED,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a196a98">STATE_RESIZABLE</a> = ATK_STATE_RESIZABLE,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a196a99">STATE_SELECTABLE</a> = ATK_STATE_SELECTABLE,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a196a100">STATE_SELECTED</a> = ATK_STATE_SELECTED,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a196a101">STATE_SENSITIVE</a> = ATK_STATE_SENSITIVE,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a196a102">STATE_SHOWING</a> = ATK_STATE_SHOWING,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a196a103">STATE_SINGLE_LINE</a> = ATK_STATE_SINGLE_LINE,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a196a104">STATE_STALE</a> = ATK_STATE_STALE,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a196a105">STATE_TRANSIENT</a> = ATK_STATE_TRANSIENT,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a196a106">STATE_VERTICAL</a> = ATK_STATE_VERTICAL,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a196a107">STATE_VISIBLE</a> = ATK_STATE_VISIBLE,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a196a108">STATE_MANAGES_DESCENDANTS</a> = ATK_STATE_MANAGES_DESCENDANTS,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a196a109">STATE_INDETERMINATE</a> = ATK_STATE_INDETERMINATE,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a196a110">STATE_LAST_DEFINED</a> = ATK_STATE_LAST_DEFINED
<br>
}
<dl class="el"><dd class="mdescRight">The possible types of states of an object. <a href="#a196">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Atk.html#a197">TextAttribute</a> { <br>
<a class="el" href="namespaceGFC_1_1Atk.html#a197a111">TEXT_ATTR_INVALID</a> = ATK_TEXT_ATTR_INVALID,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a197a112">TEXT_ATTR_LEFT_MARGIN</a> = ATK_TEXT_ATTR_LEFT_MARGIN,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a197a113">TEXT_ATTR_RIGHT_MARGIN</a> = ATK_TEXT_ATTR_RIGHT_MARGIN,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a197a114">TEXT_ATTR_INDENT</a> = ATK_TEXT_ATTR_INDENT,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a197a115">TEXT_ATTR_INVISIBLE</a> = ATK_TEXT_ATTR_INVISIBLE,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a197a116">TEXT_ATTR_EDITABLE</a> = ATK_TEXT_ATTR_EDITABLE,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a197a117">TEXT_ATTR_PIXELS_ABOVE_LINES</a> = ATK_TEXT_ATTR_PIXELS_ABOVE_LINES,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a197a118">TEXT_ATTR_PIXELS_BELOW_LINES</a> = ATK_TEXT_ATTR_PIXELS_BELOW_LINES,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a197a119">TEXT_ATTR_PIXELS_INSIDE_WRAP</a> = ATK_TEXT_ATTR_PIXELS_INSIDE_WRAP,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a197a120">TEXT_ATTR_BG_FULL_HEIGHT</a> = ATK_TEXT_ATTR_BG_FULL_HEIGHT,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a197a121">TEXT_ATTR_RISE</a> = ATK_TEXT_ATTR_RISE,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a197a122">TEXT_ATTR_UNDERLINE</a> = ATK_TEXT_ATTR_UNDERLINE,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a197a123">TEXT_ATTR_STRIKETHROUGH</a> = ATK_TEXT_ATTR_STRIKETHROUGH,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a197a124">TEXT_ATTR_SIZE</a> = ATK_TEXT_ATTR_SIZE,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a197a125">TEXT_ATTR_SCALE</a> = ATK_TEXT_ATTR_SCALE,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a197a126">TEXT_ATTR_WEIGHT</a> = ATK_TEXT_ATTR_WEIGHT,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a197a127">TEXT_ATTR_LANGUAGE</a> = ATK_TEXT_ATTR_LANGUAGE,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a197a128">TEXT_ATTR_FAMILY_NAME</a> = ATK_TEXT_ATTR_FAMILY_NAME,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a197a129">TEXT_ATTR_BG_COLOR</a> = ATK_TEXT_ATTR_BG_COLOR,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a197a130">TEXT_ATTR_FG_COLOR</a> = ATK_TEXT_ATTR_FG_COLOR,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a197a131">TEXT_ATTR_BG_STIPPLE</a> = ATK_TEXT_ATTR_BG_STIPPLE,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a197a132">TEXT_ATTR_FG_STIPPLE</a> = ATK_TEXT_ATTR_FG_STIPPLE,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a197a133">TEXT_ATTR_WRAP_MODE</a> = ATK_TEXT_ATTR_WRAP_MODE,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a197a134">TEXT_ATTR_DIRECTION</a> = ATK_TEXT_ATTR_DIRECTION,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a197a135">TEXT_ATTR_JUSTIFICATION</a> = ATK_TEXT_ATTR_JUSTIFICATION,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a197a136">TEXT_ATTR_STRETCH</a> = ATK_TEXT_ATTR_STRETCH,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a197a137">TEXT_ATTR_VARIANT</a> = ATK_TEXT_ATTR_VARIANT,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a197a138">TEXT_ATTR_STYLE</a> = ATK_TEXT_ATTR_STYLE,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a197a139">TEXT_ATTR_LAST_DEFINED</a> = ATK_TEXT_ATTR_LAST_DEFINED
<br>
}
<dl class="el"><dd class="mdescRight">Describes the text attributes supported. <a href="#a197">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Atk.html#a198">TextBoundary</a> { <br>
<a class="el" href="namespaceGFC_1_1Atk.html#a198a140">TEXT_BOUNDARY_CHAR</a> = ATK_TEXT_BOUNDARY_CHAR,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a198a141">TEXT_BOUNDARY_WORD_START</a> = ATK_TEXT_BOUNDARY_WORD_START,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a198a142">TEXT_BOUNDARY_WORD_END</a> = ATK_TEXT_BOUNDARY_WORD_END,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a198a143">TEXT_BOUNDARY_SENTENCE_START</a> = ATK_TEXT_BOUNDARY_SENTENCE_START,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a198a144">TEXT_BOUNDARY_SENTENCE_END</a> = ATK_TEXT_BOUNDARY_SENTENCE_END,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a198a145">TEXT_BOUNDARY_LINE_START</a> = ATK_TEXT_BOUNDARY_LINE_START,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a198a146">TEXT_BOUNDARY_LINE_END</a> = ATK_TEXT_BOUNDARY_LINE_END
<br>
}
<dl class="el"><dd class="mdescRight">Specifies text boundary types to use when retrieving regions of text with get_text_after_offset(), get_text_at_offset() and get_text_before_offset(). <a href="#a198">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Atk.html#a199">TextClipType</a> { <br>
<a class="el" href="namespaceGFC_1_1Atk.html#a199a147">TEXT_CLIP_NONE</a> = ATK_TEXT_CLIP_NONE,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a199a148">TEXT_CLIP_MIN</a> = ATK_TEXT_CLIP_MIN,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a199a149">TEXT_CLIP_MAX</a> = ATK_TEXT_CLIP_MAX,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a199a150">ATK_TEXT_CLIP_BOTH</a> = TEXT_CLIP_MAX
<br>
}
<dl class="el"><dd class="mdescRight">Describes the type of clipping required. <a href="#a199">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Atk.html#a200">CoordType</a> { <br>
<a class="el" href="namespaceGFC_1_1Atk.html#a200a152">XY_SCREEN</a> = ATK_XY_SCREEN,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a200a153">XY_WINDOW</a> = ATK_XY_WINDOW
<br>
}
<dl class="el"><dd class="mdescRight">Specifies how xy coordinates are to be interpreted. <a href="#a200">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Atk.html#a201">Layer</a> { <br>
<a class="el" href="namespaceGFC_1_1Atk.html#a201a154">LAYER_INVALID</a> = ATK_LAYER_INVALID,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a201a155">LAYER_BACKGROUND</a> = ATK_LAYER_BACKGROUND,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a201a156">LAYER_CANVAS</a> = ATK_LAYER_CANVAS,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a201a157">LAYER_WIDGET</a> = ATK_LAYER_WIDGET,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a201a158">LAYER_MDI</a> = ATK_LAYER_MDI,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a201a159">LAYER_POPUP</a> = ATK_LAYER_POPUP,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a201a160">LAYER_OVERLAY</a> = ATK_LAYER_OVERLAY,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a201a161">LAYER_WINDOW</a> = ATK_LAYER_WINDOW
<br>
}
<dl class="el"><dd class="mdescRight">Describes the layer of a component. <a href="#a201">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Atk.html#a202">RelationType</a> { <br>
<a class="el" href="namespaceGFC_1_1Atk.html#a202a162">RELATION_NULL</a> = ATK_RELATION_NULL,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a202a163">RELATION_CONTROLLED_BY</a> = ATK_RELATION_CONTROLLED_BY,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a202a164">RELATION_CONTROLLER_FOR</a> = ATK_RELATION_CONTROLLER_FOR,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a202a165">RELATION_LABEL_FOR</a> = ATK_RELATION_LABEL_FOR,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a202a166">RELATION_LABELLED_BY</a> = ATK_RELATION_LABELLED_BY,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a202a167">RELATION_MEMBER_OF</a> = ATK_RELATION_MEMBER_OF,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a202a168">RELATION_NODE_CHILD_OF</a> = ATK_RELATION_NODE_CHILD_OF,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a202a169">RELATION_FLOWS_TO</a> = ATK_RELATION_FLOWS_TO,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a202a170">RELATION_FLOWS_FROM</a> = ATK_RELATION_FLOWS_FROM,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a202a171">RELATION_SUBWINDOW_OF</a> = ATK_RELATION_SUBWINDOW_OF,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a202a172">RELATION_EMBEDS</a> = ATK_RELATION_EMBEDS,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a202a173">RELATION_EMBEDDED_BY</a> = ATK_RELATION_EMBEDDED_BY,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a202a174">RELATION_POPUP_FOR</a> = ATK_RELATION_POPUP_FOR,
<br>
<a class="el" href="namespaceGFC_1_1Atk.html#a202a175">RELATION_LAST_DEFINED</a> = ATK_RELATION_LAST_DEFINED
<br>
}
<dl class="el"><dd class="mdescRight">Describes the type of the relation. <a href="#a202">More...</a><br></dl></ul>
<hr><a name="_details"></a><h2>Detailed Description</h2>
The C++ framework for the ATK Accessibility Toolkit.
<p>
Provides a set of generic interfaces allowing accessibility technologies to interact with a graphical user interface. For example, a screen reader uses ATK to discover the text in an interface and read it to blind users. GTK+ widgets have built-in support for accessibility using the ATK framework.
<p>
<hr><h2>Enumeration Type Documentation</h2>
<a class="anchor" name="a200" doxytag="GFC::Atk::CoordType" ></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_1Atk.html#a200">CoordType</a> </td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Specifies how xy coordinates are to be interpreted.
<p>
Used by functions such as <a class="el" href="classGFC_1_1Atk_1_1Component.html#z5_4">Atk::Component::get_position()</a> and <a class="el" href="classGFC_1_1Atk_1_1Text.html#z89_8">Atk::Text::get_character_extents()</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="a200a152" doxytag="XY_SCREEN" ></a>XY_SCREEN</em> </td><td>
Specifies xy coordinates relative to the screen. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a200a153" doxytag="XY_WINDOW" ></a>XY_WINDOW</em> </td><td>
Specifies xy coordinates relative to the widget's. </td></tr>
</table>
</dl>
</td>
</tr>
</table>
<a class="anchor" name="a194" doxytag="GFC::Atk::HyperlinkStateFlags" ></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_1Atk.html#a194">HyperlinkStateFlags</a> </td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Describes the type of link.
<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="a194a1" doxytag="HYPERLINK_IS_INLINE" ></a>HYPERLINK_IS_INLINE</em> </td><td>
The link is inline. </td></tr>
</table>
</dl>
</td>
</tr>
</table>
<a class="anchor" name="a201" doxytag="GFC::Atk::Layer" ></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_1Atk.html#a201">Layer</a> </td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Describes the layer of a component.
<p>
The enumerated "layer values" are used when determining which UI rendering layer a component is drawn into, which can help in making determinations of when components occlude one another. <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="a201a154" doxytag="LAYER_INVALID" ></a>LAYER_INVALID</em> </td><td>
The object does not have a layer. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a201a155" doxytag="LAYER_BACKGROUND" ></a>LAYER_BACKGROUND</em> </td><td>
This layer is reserved for the desktop background. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a201a156" doxytag="LAYER_CANVAS" ></a>LAYER_CANVAS</em> </td><td>
This layer is used for Canvas components. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a201a157" doxytag="LAYER_WIDGET" ></a>LAYER_WIDGET</em> </td><td>
This layer is normally used for components. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a201a158" doxytag="LAYER_MDI" ></a>LAYER_MDI</em> </td><td>
This layer is used for layered components. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a201a159" doxytag="LAYER_POPUP" ></a>LAYER_POPUP</em> </td><td>
This layer is used for popup components, such as menus. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a201a160" doxytag="LAYER_OVERLAY" ></a>LAYER_OVERLAY</em> </td><td>
This layer is reserved for future use. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a201a161" doxytag="LAYER_WINDOW" ></a>LAYER_WINDOW</em> </td><td>
This layer is used for toplevel windows. </td></tr>
</table>
</dl>
</td>
</tr>
</table>
<a class="anchor" name="a202" doxytag="GFC::Atk::RelationType" ></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_1Atk.html#a202">RelationType</a> </td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Describes the type of the relation.
<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="a202a162" doxytag="RELATION_NULL" ></a>RELATION_NULL</em> </td><td>
No relation. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a202a163" doxytag="RELATION_CONTROLLED_BY" ></a>RELATION_CONTROLLED_BY</em> </td><td>
Indicates an object controlled by one or more target objects. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a202a164" doxytag="RELATION_CONTROLLER_FOR" ></a>RELATION_CONTROLLER_FOR</em> </td><td>
Indicates an object is an controller for one or more target objects. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a202a165" doxytag="RELATION_LABEL_FOR" ></a>RELATION_LABEL_FOR</em> </td><td>
Indicates an object is a label for one or more target objects. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a202a166" doxytag="RELATION_LABELLED_BY" ></a>RELATION_LABELLED_BY</em> </td><td>
Indicates an object is labelled by one or more target objects. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a202a167" doxytag="RELATION_MEMBER_OF" ></a>RELATION_MEMBER_OF</em> </td><td>
Indicates an object is a member of a group of one or more target objects. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a202a168" doxytag="RELATION_NODE_CHILD_OF" ></a>RELATION_NODE_CHILD_OF</em> </td><td>
Indicates an object is a cell in a treetable which is displayed because a cell in the same column is expanded and identifies that cell. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a202a169" doxytag="RELATION_FLOWS_TO" ></a>RELATION_FLOWS_TO</em> </td><td>
Indicates that the object has content that flows logically to another <a class="el" href="classGFC_1_1Atk_1_1Object.html">Atk::Object</a> in a sequential way, (for instance text-flow). </td></tr>
<tr><td valign=top><em><a class="anchor" name="a202a170" doxytag="RELATION_FLOWS_FROM" ></a>RELATION_FLOWS_FROM</em> </td><td>
Indicates that the object has content that flows logically from another <a class="el" href="classGFC_1_1Atk_1_1Object.html">Atk::Object</a> in a sequential way, (for instance text-flow). </td></tr>
<tr><td valign=top><em><a class="anchor" name="a202a171" doxytag="RELATION_SUBWINDOW_OF" ></a>RELATION_SUBWINDOW_OF</em> </td><td>
[not sure about this one] </td></tr>
<tr><td valign=top><em><a class="anchor" name="a202a172" doxytag="RELATION_EMBEDS" ></a>RELATION_EMBEDS</em> </td><td>
Indicates that the object visually embeds another object's content, that is this object's content flows around another's content. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a202a173" doxytag="RELATION_EMBEDDED_BY" ></a>RELATION_EMBEDDED_BY</em> </td><td>
Inverse of ATK_RELATION_EMBEDS, indicates that this object's content is visualy embedded in another object. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a202a174" doxytag="RELATION_POPUP_FOR" ></a>RELATION_POPUP_FOR</em> </td><td>
Indicates that an object is a popup for another object. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a202a175" doxytag="RELATION_LAST_DEFINED" ></a>RELATION_LAST_DEFINED</em> </td><td>
Not a valid relation, used for finding end of the enumeration. </td></tr>
</table>
</dl>
</td>
</tr>
</table>
<a class="anchor" name="a195" doxytag="GFC::Atk::Role" ></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_1Atk.html#a195">Role</a> </td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Describes the role of an object.
<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="a195a2" doxytag="ROLE_INVALID" ></a>ROLE_INVALID</em> </td><td>
Invalid role. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a195a3" doxytag="ROLE_ACCEL_LABEL" ></a>ROLE_ACCEL_LABEL</em> </td><td>
A label which represents an accelerator. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a195a4" doxytag="ROLE_ALERT" ></a>ROLE_ALERT</em> </td><td>
An object which is an alert to the user. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a195a5" doxytag="ROLE_ANIMATION" ></a>ROLE_ANIMATION</em> </td><td>
An object which is an animated image. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a195a6" doxytag="ROLE_ARROW" ></a>ROLE_ARROW</em> </td><td>
An arrow in one of the four cardinal directions. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a195a7" doxytag="ROLE_CALENDAR" ></a>ROLE_CALENDAR</em> </td><td>
An object that displays a calendar and allows the user to select a date. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a195a8" doxytag="ROLE_CANVAS" ></a>ROLE_CANVAS</em> </td><td>
An object that can be drawn into and is used to trap events. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a195a9" doxytag="ROLE_CHECK_BOX" ></a>ROLE_CHECK_BOX</em> </td><td>
A choice that can be checked or unchecked and provides a separate indicator for the current state. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a195a10" doxytag="ROLE_CHECK_MENU_ITEM" ></a>ROLE_CHECK_MENU_ITEM</em> </td><td>
A menu item with a check box. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a195a11" doxytag="ROLE_COLOR_CHOOSER" ></a>ROLE_COLOR_CHOOSER</em> </td><td>
A specialized dialog that lets the user choose a color. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a195a12" doxytag="ROLE_COLUMN_HEADER" ></a>ROLE_COLUMN_HEADER</em> </td><td>
The header for a column of data. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a195a13" doxytag="ROLE_COMBO_BOX" ></a>ROLE_COMBO_BOX</em> </td><td>
A list of choices the user can select from. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a195a14" doxytag="ROLE_DATE_EDITOR" ></a>ROLE_DATE_EDITOR</em> </td><td>
An object whose purpose is to allow a user to edit a date. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a195a15" doxytag="ROLE_DESKTOP_ICON" ></a>ROLE_DESKTOP_ICON</em> </td><td>
An inconifed internal frame within a DESKTOP_PANE. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a195a16" doxytag="ROLE_DESKTOP_FRAME" ></a>ROLE_DESKTOP_FRAME</em> </td><td>
A pane that supports internal frames and iconified versions of those internal frames. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a195a17" doxytag="ROLE_DIAL" ></a>ROLE_DIAL</em> </td><td>
An object whose purpose is to allow a user to set a value. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a195a18" doxytag="ROLE_DIALOG" ></a>ROLE_DIALOG</em> </td><td>
A top level window with title bar and a border. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a195a19" doxytag="ROLE_DIRECTORY_PANE" ></a>ROLE_DIRECTORY_PANE</em> </td><td>
A pane that allows the user to navigate through and select the contents of a directory. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a195a20" doxytag="ROLE_DRAWING_AREA" ></a>ROLE_DRAWING_AREA</em> </td><td>
An object used for drawing custom user interface elements. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a195a21" doxytag="ROLE_FILE_CHOOSER" ></a>ROLE_FILE_CHOOSER</em> </td><td>
A specialized dialog that lets the user choose a file. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a195a22" doxytag="ROLE_FILLER" ></a>ROLE_FILLER</em> </td><td>
A object that fills up space in a user interface. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a195a23" doxytag="ROLE_FONT_CHOOSER" ></a>ROLE_FONT_CHOOSER</em> </td><td>
A specialized dialog that lets the user choose a font. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a195a24" doxytag="ROLE_FRAME" ></a>ROLE_FRAME</em> </td><td>
A top level window with a title bar, border, menubar, etc. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a195a25" doxytag="ROLE_GLASS_PANE" ></a>ROLE_GLASS_PANE</em> </td><td>
A pane that is guaranteed to be painted on top of all panes beneath it. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a195a26" doxytag="ROLE_HTML_CONTAINER" ></a>ROLE_HTML_CONTAINER</em> </td><td>
A document container for HTML, whose children represent the document content. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a195a27" doxytag="ROLE_ICON" ></a>ROLE_ICON</em> </td><td>
A small fixed size picture, typically used to decorate components. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a195a28" doxytag="ROLE_IMAGE" ></a>ROLE_IMAGE</em> </td><td>
An object whose primary purpose is to display an image. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a195a29" doxytag="ROLE_INTERNAL_FRAME" ></a>ROLE_INTERNAL_FRAME</em> </td><td>
A frame-like object that is clipped by a desktop pane. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a195a30" doxytag="ROLE_LABEL" ></a>ROLE_LABEL</em> </td><td>
An object used to present an icon or short string in an interface. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a195a31" doxytag="ROLE_LAYERED_PANE" ></a>ROLE_LAYERED_PANE</em> </td><td>
A specialized pane that allows its children to be drawn in layers, providing a form of stacking order. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a195a32" doxytag="ROLE_LIST" ></a>ROLE_LIST</em> </td><td>
An object that presents a list of objects to the user and allows the user to select one or more of them. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a195a33" doxytag="ROLE_LIST_ITEM" ></a>ROLE_LIST_ITEM</em> </td><td>
An object that represents an element of a list. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a195a34" doxytag="ROLE_MENU" ></a>ROLE_MENU</em> </td><td>
An object usually found inside a menu bar that contains a list of actions the user can choose from. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a195a35" doxytag="ROLE_MENU_BAR" ></a>ROLE_MENU_BAR</em> </td><td>
An object usually drawn at the top of the primary dialog box of an application that contains a list of menus the user can choose from. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a195a36" doxytag="ROLE_MENU_ITEM" ></a>ROLE_MENU_ITEM</em> </td><td>
An object usually contained in a menu that presents an action the user can choose. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a195a37" doxytag="ROLE_OPTION_PANE" ></a>ROLE_OPTION_PANE</em> </td><td>
A specialized pane whose primary use is inside a DIALOG. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a195a38" doxytag="ROLE_PAGE_TAB" ></a>ROLE_PAGE_TAB</em> </td><td>
An object that is a child of a page tab list. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a195a39" doxytag="ROLE_PAGE_TAB_LIST" ></a>ROLE_PAGE_TAB_LIST</em> </td><td>
An object that presents a series of panels (or page tabs), one at a time, through some mechanism provided by the object. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a195a40" doxytag="ROLE_PANEL" ></a>ROLE_PANEL</em> </td><td>
A generic container that is often used to group objects. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a195a41" doxytag="ROLE_PASSWORD_TEXT" ></a>ROLE_PASSWORD_TEXT</em> </td><td>
A text object uses for passwords, or other places where the text content is not shown visibly to the user. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a195a42" doxytag="ROLE_POPUP_MENU" ></a>ROLE_POPUP_MENU</em> </td><td>
A temporary window that is usually used to offer the user a list of choices, and then hides when the user selects one of those choices. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a195a43" doxytag="ROLE_PROGRESS_BAR" ></a>ROLE_PROGRESS_BAR</em> </td><td>
An object used to indicate how much of a task has been completed. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a195a44" doxytag="ROLE_PUSH_BUTTON" ></a>ROLE_PUSH_BUTTON</em> </td><td>
An object the user can manipulate to tell the application to do something. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a195a45" doxytag="ROLE_RADIO_BUTTON" ></a>ROLE_RADIO_BUTTON</em> </td><td>
A specialized check box that will cause other radio buttons in the same group to become unchecked when this one is checked. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a195a46" doxytag="ROLE_RADIO_MENU_ITEM" ></a>ROLE_RADIO_MENU_ITEM</em> </td><td>
A check menu item which belongs to a group; at each instant exactly one of the radio menu items from a group is selected. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a195a47" doxytag="OLE_ROOT_PANE" ></a>OLE_ROOT_PANE</em> </td><td>
A specialized pane that has a glass pane and a layered pane as its children. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a195a48" doxytag="ROLE_ROW_HEADER" ></a>ROLE_ROW_HEADER</em> </td><td>
The header for a row of data. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a195a49" doxytag="ROLE_SCROLL_BAR" ></a>ROLE_SCROLL_BAR</em> </td><td>
An object usually used to allow a user to incrementally view a large amount of data. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a195a50" doxytag="ROLE_SCROLL_PANE" ></a>ROLE_SCROLL_PANE</em> </td><td>
An object that allows a user to incrementally view a large amount of information. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a195a51" doxytag="ROLE_SEPARATOR" ></a>ROLE_SEPARATOR</em> </td><td>
An object usually contained in a menu to provide a visible and logical separation of the contents in a menu. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a195a52" doxytag="ROLE_SLIDER" ></a>ROLE_SLIDER</em> </td><td>
An object that allows the user to select from a bounded range. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a195a53" doxytag="ROLE_SPLIT_PANE" ></a>ROLE_SPLIT_PANE</em> </td><td>
A specialized panel that presents two other panels at the same time. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a195a54" doxytag="ROLE_SPIN_BUTTON" ></a>ROLE_SPIN_BUTTON</em> </td><td>
An object used to get an integer or floating point number from the user. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a195a55" doxytag="ROLE_STATUSBAR" ></a>ROLE_STATUSBAR</em> </td><td>
An object which reports messages of minor importance to the user. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a195a56" doxytag="ROLE_TABLE" ></a>ROLE_TABLE</em> </td><td>
An object used to represent information in terms of rows and columns. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a195a57" doxytag="ROLE_TABLE_CELL" ></a>ROLE_TABLE_CELL</em> </td><td>
A cell in a table. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a195a58" doxytag="ROLE_TABLE_COLUMN_HEADER" ></a>ROLE_TABLE_COLUMN_HEADER</em> </td><td>
The header for a column of a table. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a195a59" doxytag="ROLE_TABLE_ROW_HEADER" ></a>ROLE_TABLE_ROW_HEADER</em> </td><td>
The header for a row of a table. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a195a60" doxytag="ROLE_TEAR_OFF_MENU_ITEM" ></a>ROLE_TEAR_OFF_MENU_ITEM</em> </td><td>
A menu item used to tear off and reattach its menu. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a195a61" doxytag="ROLE_TERMINAL" ></a>ROLE_TERMINAL</em> </td><td>
An object that represents an accessible terminal. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a195a62" doxytag="ROLE_TEXT" ></a>ROLE_TEXT</em> </td><td>
An object that presents text to the user. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a195a63" doxytag="ROLE_TOGGLE_BUTTON" ></a>ROLE_TOGGLE_BUTTON</em> </td><td>
A specialized push button that can be checked or unchecked, but does not provide a separate indicator for the current state. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a195a64" doxytag="ROLE_TOOL_BAR" ></a>ROLE_TOOL_BAR</em> </td><td>
A bar or palette usually composed of push buttons or toggle buttons. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a195a65" doxytag="ROLE_TOOL_TIP" ></a>ROLE_TOOL_TIP</em> </td><td>
An object that provides information about another object. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a195a66" doxytag="ROLE_TREE" ></a>ROLE_TREE</em> </td><td>
An object used to represent hierarchical information to the user. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a195a67" doxytag="ROLE_TREE_TABLE" ></a>ROLE_TREE_TABLE</em> </td><td>
An object capable of expanding and collapsing rows as well as showing multiple columns of data. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a195a68" doxytag="ROLE_UNKNOWN" ></a>ROLE_UNKNOWN</em> </td><td>
The object contains some Accessible information, but its role is not known. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a195a69" doxytag="ROLE_VIEWPORT" ></a>ROLE_VIEWPORT</em> </td><td>
An object usually used in a scroll pane. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a195a70" doxytag="ROLE_WINDOW" ></a>ROLE_WINDOW</em> </td><td>
A top level window with no title or border. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a195a71" doxytag="ROLE_HEADER" ></a>ROLE_HEADER</em> </td><td>
An object that serves as a document header. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a195a72" doxytag="ROLE_FOOTER" ></a>ROLE_FOOTER</em> </td><td>
An object that serves as a document footer. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a195a73" doxytag="ROLE_PARAGRAPH" ></a>ROLE_PARAGRAPH</em> </td><td>
An object which is contains a paragraph of text content. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a195a74" doxytag="ROLE_RULER" ></a>ROLE_RULER</em> </td><td>
An object which describes margins and tab stops for text objects which it controls (should have CONTROLLER_FOR relation to such). </td></tr>
<tr><td valign=top><em><a class="anchor" name="a195a75" doxytag="ROLE_APPLICATION" ></a>ROLE_APPLICATION</em> </td><td>
The object is an application object, which may contain ROLE_FRAME objects or other types of accessibles. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a195a76" doxytag="ROLE_AUTOCOMPLETE" ></a>ROLE_AUTOCOMPLETE</em> </td><td>
The object is a dialog or list containing items for insertion into an entry widget, for instance a list of words for completion of a text entry. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a195a77" doxytag="ROLE_EDITBAR" ></a>ROLE_EDITBAR</em> </td><td>
The object is an editable text object in a toolbar. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a195a78" doxytag="ROLE_LAST_DEFINED" ></a>ROLE_LAST_DEFINED</em> </td><td>
Not a valid role, used for finding end of the enumeration. </td></tr>
</table>
</dl>
</td>
</tr>
</table>
<a class="anchor" name="a196" doxytag="GFC::Atk::StateType" ></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_1Atk.html#a196">StateType</a> </td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
The possible types of states of an object.
<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="a196a79" doxytag="STATE_INVALID" ></a>STATE_INVALID</em> </td><td>
Indicates an invalid state. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a196a80" doxytag="STATE_ACTIVE" ></a>STATE_ACTIVE</em> </td><td>
Indicates a window is currently the active window. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a196a81" doxytag="STATE_ARMED" ></a>STATE_ARMED</em> </td><td>
Indicates that the object is armed. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a196a82" doxytag="STATE_BUSY" ></a>STATE_BUSY</em> </td><td>
Indicates the current object is busy. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a196a83" doxytag="STATE_CHECKED" ></a>STATE_CHECKED</em> </td><td>
Indicates this object is currently checked. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a196a84" doxytag="STATE_DEFUNCT" ></a>STATE_DEFUNCT</em> </td><td>
Indicates the user interface object corresponding to this object no longer exists. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a196a85" doxytag="STATE_EDITABLE" ></a>STATE_EDITABLE</em> </td><td>
Indicates the user can change the contents of this object. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a196a86" doxytag="STATE_ENABLED" ></a>STATE_ENABLED</em> </td><td>
Indicates that this object is enabled. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a196a87" doxytag="STATE_EXPANDABLE" ></a>STATE_EXPANDABLE</em> </td><td>
Indicates this object allows progressive disclosure of its children. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a196a88" doxytag="STATE_EXPANDED" ></a>STATE_EXPANDED</em> </td><td>
Indicates this object its expanded. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a196a89" doxytag="STATE_FOCUSABLE" ></a>STATE_FOCUSABLE</em> </td><td>
Indicates this object can accept keyboard focus, which means all events resulting from typing on the keyboard will normally be passed to it when it has focus. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a196a90" doxytag="STATE_FOCUSED" ></a>STATE_FOCUSED</em> </td><td>
Indicates this object currently has the keyboard focus. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a196a91" doxytag="STATE_HORIZONTAL" ></a>STATE_HORIZONTAL</em> </td><td>
Indicates the orientation of this object is horizontal. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a196a92" doxytag="STATE_ICONIFIED" ></a>STATE_ICONIFIED</em> </td><td>
Indicates this object is minimized and is represented only by an icon. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a196a93" doxytag="STATE_MODAL" ></a>STATE_MODAL</em> </td><td>
Indicates something must be done with this object before the user can interact with an object in a different window. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a196a94" doxytag="STATE_MULTI_LINE" ></a>STATE_MULTI_LINE</em> </td><td>
Indicates this (text) object can contain multiple lines of text. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a196a95" doxytag="STATE_MULTISELECTABLE" ></a>STATE_MULTISELECTABLE</em> </td><td>
Indicates this object allows more than one of its children to be selected at the same time. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a196a96" doxytag="STATE_OPAQUE" ></a>STATE_OPAQUE</em> </td><td>
Indicates this object paints every pixel within its rectangular region. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a196a97" doxytag="STATE_PRESSED" ></a>STATE_PRESSED</em> </td><td>
Indicates this object is currently pressed. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a196a98" doxytag="STATE_RESIZABLE" ></a>STATE_RESIZABLE</em> </td><td>
Indicates the size of this object is not fixed. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a196a99" doxytag="STATE_SELECTABLE" ></a>STATE_SELECTABLE</em> </td><td>
Indicates this object is the child of an object that allows its children to be selected and that this child is one of those children that can be selected. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a196a100" doxytag="STATE_SELECTED" ></a>STATE_SELECTED</em> </td><td>
Indicates this object is the child of an object that allows its children to be selected and that this child is one of those children that has been selected. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a196a101" doxytag="STATE_SENSITIVE" ></a>STATE_SENSITIVE</em> </td><td>
Indicates this object is sensitive. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a196a102" doxytag="STATE_SHOWING" ></a>STATE_SHOWING</em> </td><td>
Indicates this object, the object's parent, the object's parent's parent, and so on, are all visible. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a196a103" doxytag="STATE_SINGLE_LINE" ></a>STATE_SINGLE_LINE</em> </td><td>
Indicates this (text) object can contain only a single line of text. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a196a104" doxytag="STATE_STALE" ></a>STATE_STALE</em> </td><td>
Indicates that the index associated with this object has changed since the user accessed the object. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a196a105" doxytag="STATE_TRANSIENT" ></a>STATE_TRANSIENT</em> </td><td>
Indicates this object is transient. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a196a106" doxytag="STATE_VERTICAL" ></a>STATE_VERTICAL</em> </td><td>
Indicates the orientation of this object is vertical. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a196a107" doxytag="STATE_VISIBLE" ></a>STATE_VISIBLE</em> </td><td>
Indicates this object is visible. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a196a108" doxytag="STATE_MANAGES_DESCENDANTS" ></a>STATE_MANAGES_DESCENDANTS</em> </td><td>
Indicates that "active-descendant-changed" event is sent when children become 'active' (that is, are selected or navigated to onscreen); used to prevent the need to enumerate all children in very large containers, like tables. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a196a109" doxytag="STATE_INDETERMINATE" ></a>STATE_INDETERMINATE</em> </td><td>
Indicates that a check box is in a state other than checked or not checked. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a196a110" doxytag="STATE_LAST_DEFINED" ></a>STATE_LAST_DEFINED</em> </td><td>
Not a valid role, used for finding end of enumeration. </td></tr>
</table>
</dl>
</td>
</tr>
</table>
<a class="anchor" name="a197" doxytag="GFC::Atk::TextAttribute" ></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_1Atk.html#a197">TextAttribute</a> </td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Describes the text attributes supported.
<p>
Where appropriate each TextAttribute type lists all the possible values, in index order. The first value is 0, the second value is 1, and so on. This is the index you need to specify when constructing an <a class="el" href="classGFC_1_1Atk_1_1Attribute.html">Attribute</a>. For example, for boolean values "false" is 0 and "true" is 1. For wrap mode "none" is 0, "char" is 1, and "word" is 2. You should be able to work the rest out. <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="a197a111" doxytag="TEXT_ATTR_INVALID" ></a>TEXT_ATTR_INVALID</em> </td><td>
Invalid attribute. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a197a112" doxytag="TEXT_ATTR_LEFT_MARGIN" ></a>TEXT_ATTR_LEFT_MARGIN</em> </td><td>
The pixel width of the left margin. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a197a113" doxytag="TEXT_ATTR_RIGHT_MARGIN" ></a>TEXT_ATTR_RIGHT_MARGIN</em> </td><td>
The pixel width of the right margin. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a197a114" doxytag="TEXT_ATTR_INDENT" ></a>TEXT_ATTR_INDENT</em> </td><td>
The number of pixels that the text is indented. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a197a115" doxytag="TEXT_ATTR_INVISIBLE" ></a>TEXT_ATTR_INVISIBLE</em> </td><td>
Either "false" or "true" indicating whether text is visible or not. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a197a116" doxytag="TEXT_ATTR_EDITABLE" ></a>TEXT_ATTR_EDITABLE</em> </td><td>
Either "false" or "true" indicating whether text is editable or not. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a197a117" doxytag="TEXT_ATTR_PIXELS_ABOVE_LINES" ></a>TEXT_ATTR_PIXELS_ABOVE_LINES</em> </td><td>
Pixels of blank space to leave above each newline-terminated line. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a197a118" doxytag="TEXT_ATTR_PIXELS_BELOW_LINES" ></a>TEXT_ATTR_PIXELS_BELOW_LINES</em> </td><td>
Pixels of blank space to leave below each newline-terminated line. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a197a119" doxytag="TEXT_ATTR_PIXELS_INSIDE_WRAP" ></a>TEXT_ATTR_PIXELS_INSIDE_WRAP</em> </td><td>
Pixels of blank space to leave between wrapped lines inside the same newline-terminated line (paragraph). </td></tr>
<tr><td valign=top><em><a class="anchor" name="a197a120" doxytag="TEXT_ATTR_BG_FULL_HEIGHT" ></a>TEXT_ATTR_BG_FULL_HEIGHT</em> </td><td>
Either false" or "true" indicating whether to make the background color for each character the height of the highest font used on the current line, or the height of the font used for the current character. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a197a121" doxytag="TEXT_ATTR_RISE" ></a>TEXT_ATTR_RISE</em> </td><td>
Number of pixels that the characters are risen above the baseline. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a197a122" doxytag="TEXT_ATTR_UNDERLINE" ></a>TEXT_ATTR_UNDERLINE</em> </td><td>
The underline style, either "none", "single", "double" or "low". </td></tr>
<tr><td valign=top><em><a class="anchor" name="a197a123" doxytag="TEXT_ATTR_STRIKETHROUGH" ></a>TEXT_ATTR_STRIKETHROUGH</em> </td><td>
Either "false" or "true" indicating whether the text is struck-through. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a197a124" doxytag="TEXT_ATTR_SIZE" ></a>TEXT_ATTR_SIZE</em> </td><td>
The size of the characters. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a197a125" doxytag="TEXT_ATTR_SCALE" ></a>TEXT_ATTR_SCALE</em> </td><td>
A string representation of a double indicating the scale of the characters. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a197a126" doxytag="TEXT_ATTR_WEIGHT" ></a>TEXT_ATTR_WEIGHT</em> </td><td>
The weight of the characters. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a197a127" doxytag="TEXT_ATTR_LANGUAGE" ></a>TEXT_ATTR_LANGUAGE</em> </td><td>
The language used. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a197a128" doxytag="TEXT_ATTR_FAMILY_NAME" ></a>TEXT_ATTR_FAMILY_NAME</em> </td><td>
The font family name. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a197a129" doxytag="TEXT_ATTR_BG_COLOR" ></a>TEXT_ATTR_BG_COLOR</em> </td><td>
The background color; an RGB value of the format "%u,%u,%u". </td></tr>
<tr><td valign=top><em><a class="anchor" name="a197a130" doxytag="TEXT_ATTR_FG_COLOR" ></a>TEXT_ATTR_FG_COLOR</em> </td><td>
The foreground color; an RGB value of the format "%u,%u,%u". </td></tr>
<tr><td valign=top><em><a class="anchor" name="a197a131" doxytag="TEXT_ATTR_BG_STIPPLE" ></a>TEXT_ATTR_BG_STIPPLE</em> </td><td>
Either "false" or "true" indicating if a <a class="el" href="classGFC_1_1Gdk_1_1Bitmap.html">Gdk::Bitmap</a> is set for stippling the background color. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a197a132" doxytag="TEXT_ATTR_FG_STIPPLE" ></a>TEXT_ATTR_FG_STIPPLE</em> </td><td>
Either "false" or "true" indicating if a <a class="el" href="classGFC_1_1Gdk_1_1Bitmap.html">Gdk::Bitmap</a> is set for stippling the foreground color. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a197a133" doxytag="TEXT_ATTR_WRAP_MODE" ></a>TEXT_ATTR_WRAP_MODE</em> </td><td>
The wrap mode of the text, if any; possible values are "none", "char" or "word". </td></tr>
<tr><td valign=top><em><a class="anchor" name="a197a134" doxytag="TEXT_ATTR_DIRECTION" ></a>TEXT_ATTR_DIRECTION</em> </td><td>
The direction of the text, if set; possible values are "none", "ltr" or "rtl". </td></tr>
<tr><td valign=top><em><a class="anchor" name="a197a135" doxytag="TEXT_ATTR_JUSTIFICATION" ></a>TEXT_ATTR_JUSTIFICATION</em> </td><td>
The justification of the text, if set; possible values are "left", "right", "center" or "fill". </td></tr>
<tr><td valign=top><em><a class="anchor" name="a197a136" doxytag="TEXT_ATTR_STRETCH" ></a>TEXT_ATTR_STRETCH</em> </td><td>
The stretch of the text, if set; possible values are "ultra_condensed", "extra_condensed", "condensed", "semi_condensed", "normal", "semi_expanded", "expanded", "extra_expanded" or "ultra_expanded". </td></tr>
<tr><td valign=top><em><a class="anchor" name="a197a137" doxytag="TEXT_ATTR_VARIANT" ></a>TEXT_ATTR_VARIANT</em> </td><td>
The capitalization variant of the text, if set; possible values are "normal" or "small_caps". </td></tr>
<tr><td valign=top><em><a class="anchor" name="a197a138" doxytag="TEXT_ATTR_STYLE" ></a>TEXT_ATTR_STYLE</em> </td><td>
The slant style of the text, if set; possible values are "normal", "oblique" or "italic". </td></tr>
<tr><td valign=top><em><a class="anchor" name="a197a139" doxytag="TEXT_ATTR_LAST_DEFINED" ></a>TEXT_ATTR_LAST_DEFINED</em> </td><td>
Not a valid text attribute, used for finding the end of the enumeration. </td></tr>
</table>
</dl>
</td>
</tr>
</table>
<a class="anchor" name="a198" doxytag="GFC::Atk::TextBoundary" ></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_1Atk.html#a198">TextBoundary</a> </td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Specifies text boundary types to use when retrieving regions of text with get_text_after_offset(), get_text_at_offset() and get_text_before_offset().
<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="a198a140" doxytag="TEXT_BOUNDARY_CHAR" ></a>TEXT_BOUNDARY_CHAR</em> </td><td>
Use character boundaries. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a198a141" doxytag="TEXT_BOUNDARY_WORD_START" ></a>TEXT_BOUNDARY_WORD_START</em> </td><td>
Use word start boundaries. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a198a142" doxytag="TEXT_BOUNDARY_WORD_END" ></a>TEXT_BOUNDARY_WORD_END</em> </td><td>
Use word end boundaries. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a198a143" doxytag="TEXT_BOUNDARY_SENTENCE_START" ></a>TEXT_BOUNDARY_SENTENCE_START</em> </td><td>
Use sentence start boundaries. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a198a144" doxytag="TEXT_BOUNDARY_SENTENCE_END" ></a>TEXT_BOUNDARY_SENTENCE_END</em> </td><td>
Use sentence end boundaries. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a198a145" doxytag="TEXT_BOUNDARY_LINE_START" ></a>TEXT_BOUNDARY_LINE_START</em> </td><td>
Use line start boundaries. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a198a146" doxytag="TEXT_BOUNDARY_LINE_END" ></a>TEXT_BOUNDARY_LINE_END</em> </td><td>
Use line end boundaries. </td></tr>
</table>
</dl>
</td>
</tr>
</table>
<a class="anchor" name="a199" doxytag="GFC::Atk::TextClipType" ></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_1Atk.html#a199">TextClipType</a> </td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Describes the type of clipping required.
<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="a199a147" doxytag="TEXT_CLIP_NONE" ></a>TEXT_CLIP_NONE</em> </td><td>
No clipping to be done. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a199a148" doxytag="TEXT_CLIP_MIN" ></a>TEXT_CLIP_MIN</em> </td><td>
<a class="el" href="classGFC_1_1Atk_1_1Text.html">Text</a> clipped by min coordinate is omitted. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a199a149" doxytag="TEXT_CLIP_MAX" ></a>TEXT_CLIP_MAX</em> </td><td>
<a class="el" href="classGFC_1_1Atk_1_1Text.html">Text</a> clipped by max coordinate is omitted. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a199a150" doxytag="ATK_TEXT_CLIP_BOTH" ></a>ATK_TEXT_CLIP_BOTH</em> </td><td>
Only text fully within mix/max bound is retained. </td></tr>
</table>
</dl>
</td>
</tr>
</table>
<hr><h2>Function Documentation</h2>
<a class="anchor" name="a191" doxytag="GFC::Atk::get_focus_object" ></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="classGFC_1_1Atk_1_1Object.html">Object</a>* get_focus_object </td>
<td class="md" valign="top">( </td>
<td class="mdname1" valign="top" nowrap> </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>
Gets the currently focused accessible object.
<p>
<dl compact><dt><b>Returns:</b></dt><dd>The currently focused accessible object for the current application. </dd></dl>
</td>
</tr>
</table>
<a class="anchor" name="a189" doxytag="GFC::Atk::relation_type_for_name" ></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_1Atk.html#a202">RelationType</a> relation_type_for_name </td>
<td class="md" valign="top">( </td>
<td class="md" nowrap valign="top">const String & </td>
<td class="mdname1" valign="top" nowrap> <em>name</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>
Get the RelationType type corresponding to a relation name.
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td></td><td valign=top><em>name</em> </td><td>A string which is the (non-localized) name of an ATK relation type. </td></tr>
</table>
</dl>
<dl compact><dt><b>Returns:</b></dt><dd>The RelationType corresponding to the specified name, or RELATION_NULL if no matching relation type is found. </dd></dl>
</td>
</tr>
</table>
<a class="anchor" name="a188" doxytag="GFC::Atk::relation_type_get_name" ></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="elRef" doxygen="gfccore.tag:" href="classGFC_1_1String.html">String</a> relation_type_get_name </td>
<td class="md" valign="top">( </td>
<td class="md" nowrap valign="top"><a class="el" href="namespaceGFC_1_1Atk.html#a202">RelationType</a> </td>
<td class="mdname1" valign="top" nowrap> <em>type</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>
Gets the description string describing the RelationType <em>type</em>.
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td></td><td valign=top><em>type</em> </td><td>The RelationType whose name is required. </td></tr>
</table>
</dl>
<dl compact><dt><b>Returns:</b></dt><dd>The string describing the RelationType. </dd></dl>
</td>
</tr>
</table>
<a class="anchor" name="a187" doxytag="GFC::Atk::relation_type_register" ></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_1Atk.html#a202">RelationType</a> relation_type_register </td>
<td class="md" valign="top">( </td>
<td class="md" nowrap valign="top">const String & </td>
<td class="mdname1" valign="top" nowrap> <em>name</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>
Associate name with a new RelationType.
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td></td><td valign=top><em>name</em> </td><td>A name string. </td></tr>
</table>
</dl>
<dl compact><dt><b>Returns:</b></dt><dd>A RelationType associated with <em>name</em>. </dd></dl>
</td>
</tr>
</table>
<a class="anchor" name="a179" doxytag="GFC::Atk::role_for_name" ></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_1Atk.html#a195">Role</a> role_for_name </td>
<td class="md" valign="top">( </td>
<td class="md" nowrap valign="top">const String & </td>
<td class="mdname1" valign="top" nowrap> <em>name</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>
Get the Role type corresponding to a role <em>name</em>.
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td></td><td valign=top><em>name</em> </td><td>A string which is the (non-localized) name of an ATK role. </td></tr>
</table>
</dl>
<dl compact><dt><b>Returns:</b></dt><dd>The Role type corresponding to the specified name, or ROLE_INVALID if no matching role is found. </dd></dl>
</td>
</tr>
</table>
<a class="anchor" name="a178" doxytag="GFC::Atk::role_get_localized_name" ></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="elRef" doxygen="gfccore.tag:" href="classGFC_1_1String.html">String</a> role_get_localized_name </td>
<td class="md" valign="top">( </td>
<td class="md" nowrap valign="top"><a class="el" href="namespaceGFC_1_1Atk.html#a195">Role</a> </td>
<td class="mdname1" valign="top" nowrap> <em>role</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>
Gets the localized description string describing the Role <em>role</em>.
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td></td><td valign=top><em>role</em> </td><td>The Role whose localized name is required. </td></tr>
</table>
</dl>
<dl compact><dt><b>Returns:</b></dt><dd>A localized string describing the <em>role</em>. </dd></dl>
</td>
</tr>
</table>
<a class="anchor" name="a177" doxytag="GFC::Atk::role_get_name" ></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="elRef" doxygen="gfccore.tag:" href="classGFC_1_1String.html">String</a> role_get_name </td>
<td class="md" valign="top">( </td>
<td class="md" nowrap valign="top"><a class="el" href="namespaceGFC_1_1Atk.html#a195">Role</a> </td>
<td class="mdname1" valign="top" nowrap> <em>role</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>
Gets the description string describing the Role <em>role</em>.
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td></td><td valign=top><em>role</em> </td><td>The Role whose name is required. </td></tr>
</table>
</dl>
<dl compact><dt><b>Returns:</b></dt><dd>A string describing the <em>role</em>. </dd></dl>
</td>
</tr>
</table>
<a class="anchor" name="a176" doxytag="GFC::Atk::role_register" ></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_1Atk.html#a195">Role</a> role_register </td>
<td class="md" valign="top">( </td>
<td class="md" nowrap valign="top">const String & </td>
<td class="mdname1" valign="top" nowrap> <em>name</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>
Registers the role specified by name.
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td></td><td valign=top><em>name</em> </td><td>A character string describing the new role. </td></tr>
</table>
</dl>
<dl compact><dt><b>Returns:</b></dt><dd>A Role for the new role. </dd></dl>
</td>
</tr>
</table>
<a class="anchor" name="a182" doxytag="GFC::Atk::state_type_for_name" ></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_1Atk.html#a196">StateType</a> state_type_for_name </td>
<td class="md" valign="top">( </td>
<td class="md" nowrap valign="top">const String & </td>
<td class="mdname1" valign="top" nowrap> <em>name</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>
Gets the StateType corresponding to the description string name.
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td></td><td valign=top><em>name</em> </td><td>A character string state name. </td></tr>
</table>
</dl>
<dl compact><dt><b>Returns:</b></dt><dd>A StateType corresponding to <em>name</em>. </dd></dl>
</td>
</tr>
</table>
<a class="anchor" name="a181" doxytag="GFC::Atk::state_type_get_name" ></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="elRef" doxygen="gfccore.tag:" href="classGFC_1_1String.html">String</a> state_type_get_name </td>
<td class="md" valign="top">( </td>
<td class="md" nowrap valign="top"><a class="el" href="namespaceGFC_1_1Gtk.html#a340">StateType</a> </td>
<td class="mdname1" valign="top" nowrap> <em>type</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>
Gets the description string describing the StateType <em>type</em>.
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td></td><td valign=top><em>type</em> </td><td>The StateType whose name is required. </td></tr>
</table>
</dl>
<dl compact><dt><b>Returns:</b></dt><dd>A string describing the StateType. </dd></dl>
</td>
</tr>
</table>
<a class="anchor" name="a180" doxytag="GFC::Atk::state_type_register" ></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_1Atk.html#a196">StateType</a> state_type_register </td>
<td class="md" valign="top">( </td>
<td class="md" nowrap valign="top">const String & </td>
<td class="mdname1" valign="top" nowrap> <em>name</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>
Register a new object state.
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td></td><td valign=top><em>name</em> </td><td>A character string describing the new state. </td></tr>
</table>
</dl>
<dl compact><dt><b>Returns:</b></dt><dd>A State value for the new state. </dd></dl>
</td>
</tr>
</table>
<a class="anchor" name="a185" doxytag="GFC::Atk::text_attribute_for_name" ></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_1Atk.html#a197">TextAttribute</a> text_attribute_for_name </td>
<td class="md" valign="top">( </td>
<td class="md" nowrap valign="top">const String & </td>
<td class="mdname1" valign="top" nowrap> <em>name</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>
Get the TextAttribute type corresponding to a text attribute <em>name</em>.
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td></td><td valign=top><em>name</em> </td><td>A string which is the (non-localized) name of a TextAttribute. </td></tr>
</table>
</dl>
<dl compact><dt><b>Returns:</b></dt><dd>The TextAttribute enumerated type corresponding to the specified name, or TEXT_ATTR_INVALID if no matching text attribute is found. </dd></dl>
</td>
</tr>
</table>
<a class="anchor" name="a184" doxytag="GFC::Atk::text_attribute_get_name" ></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="elRef" doxygen="gfccore.tag:" href="classGFC_1_1String.html">String</a> text_attribute_get_name </td>
<td class="md" valign="top">( </td>
<td class="md" nowrap valign="top"><a class="el" href="namespaceGFC_1_1Atk.html#a197">TextAttribute</a> </td>
<td class="mdname1" valign="top" nowrap> <em>attr</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>
Gets the name corresponding to the TextAttribute.
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td></td><td valign=top><em>attr</em> </td><td>The TextAttribute whose name is required. </td></tr>
</table>
</dl>
<dl compact><dt><b>Returns:</b></dt><dd>A string containing the name. </dd></dl>
</td>
</tr>
</table>
<a class="anchor" name="a186" doxytag="GFC::Atk::text_attribute_get_value" ></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="elRef" doxygen="gfccore.tag:" href="classGFC_1_1String.html">String</a> text_attribute_get_value </td>
<td class="md" valign="top">( </td>
<td class="md" nowrap valign="top"><a class="el" href="namespaceGFC_1_1Atk.html#a197">TextAttribute</a> </td>
<td class="mdname" nowrap> <em>attr</em>, </td>
</tr>
<tr>
<td class="md" nowrap align="right"></td>
<td></td>
<td class="md" nowrap>int </td>
<td class="mdname" nowrap> <em>index</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>
Gets the value for the index of the text attribute <em>attr</em>.
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td></td><td valign=top><em>attr</em> </td><td>The TextAttribute for which a value is required. </td></tr>
<tr><td></td><td valign=top><em>index</em> </td><td>The index of the required value. </td></tr>
</table>
</dl>
<dl compact><dt><b>Returns:</b></dt><dd>A <a class="elRef" doxygen="gfccore.tag:" href="classGFC_1_1String.html">String</a> containing the value, or a null <a class="elRef" doxygen="gfccore.tag:" href="classGFC_1_1String.html">String</a> if there are no values maintained for <em>attr</em>. </dd></dl>
</td>
</tr>
</table>
<a class="anchor" name="a183" doxytag="GFC::Atk::text_attribute_register" ></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_1Atk.html#a197">TextAttribute</a> text_attribute_register </td>
<td class="md" valign="top">( </td>
<td class="md" nowrap valign="top">const String & </td>
<td class="mdname1" valign="top" nowrap> <em>name</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>
Associate name with a new TextAttribute.
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td></td><td valign=top><em>name</em> </td><td>A name string. </td></tr>
</table>
</dl>
<dl compact><dt><b>Returns:</b></dt><dd>The new TextAttribute associated with <em>name</em>. </dd></dl>
</td>
</tr>
</table>
<hr size="1"><address style="align: right;"><small>Generated on Tue Aug 24 00:34:34 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>
|