1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
<title>gtkmm 2.4: New API in gtkmm 2.4</title>
<link href="doxygen.css" rel="stylesheet" type="text/css">
</head>
<body bgcolor="#ffffff">
<table border="0" width="100%">
<tr>
<td width="10%" height="40"><img src="../../images/gtkmm_logo.gif" alt="logo" border="0" width="100%" height="100%"/></td>
<td width="90%" height="40"><img src="../../images/top.gif" alt="top" width="100%" height="40"/></td>
</tr>
</table>
<center>
<a class="qindex" href="../../index.html">Main Page</a>
<a href="group__Widgets.html">Widgets</a>
<a class="qindex" href="namespaces.html"> Namespaces</a>
<a href="../../tutorial/html/index.html"> Book</a>
</center>
<hr width="100%"/>
<!-- begin main content -->
<div id="content">
<!-- Generated by Doxygen 1.5.1 -->
<h1><a class="anchor" name="newin2p4s">New API in gtkmm 2.4</a></h1><a class="anchor" name="_newin2p4s000021"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1Action.html#00af03175043e1a41ada3f0f18723674">Gtk::Action::activate</a> () </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000033"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1Action.html#6104b752c4657305709c88d9fa620900">Gtk::Action::block_activate_from</a> (Widget& proxy) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000029"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1Action.html#98aff2a881a326b2d477d060e6ff0de7">Gtk::Action::connect_accelerator</a> () </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000025"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1Action.html#1c582068bd962a1f47f6f9b7378e57ac">Gtk::Action::connect_proxy</a> (Widget& proxy) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000022"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1Action.html#4955afbc214b9a1685cd02b44bc3bc1c">Gtk::Action::create_icon</a> (IconSize icon_size) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000023"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1Action.html#2900998d5d0adb5249393f0f919c2e21">Gtk::Action::create_menu_item</a> () </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000024"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1Action.html#995de6ff14f60319bc7c9fe52dcc811d">Gtk::Action::create_tool_item</a> () </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000030"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1Action.html#eb9d3535d153b859162a1db21fec1ca5">Gtk::Action::disconnect_accelerator</a> () </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000026"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1Action.html#d2fe45f73b68b4e8456be902a4af54d0">Gtk::Action::disconnect_proxy</a> (Widget& proxy) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000016"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1Action.html#044f10a802fc1c5f1f5b35789abe552c">Gtk::Action::get_name</a> () const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000028"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1Action.html#91d8a8d7d53b50d32679928ee0a7c5a5">Gtk::Action::get_proxies</a> () const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000027"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1Action.html#a2dab1b6ed33063196581c747b1ea313">Gtk::Action::get_proxies</a> () </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000018"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1Action.html#90dafd6fa1932da9033ade9bb158ef76">Gtk::Action::get_sensitive</a> () const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000020"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1Action.html#e4fc84186aa150989a43353fb27f6907">Gtk::Action::get_visible</a> () const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000017"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1Action.html#5b7792000cb9a52f5effd8416e94c8e5">Gtk::Action::is_sensitive</a> () const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000019"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1Action.html#238ef883e03e732b1a987b7d9b7a304e">Gtk::Action::is_visible</a> () const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000032"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1Action.html#6bbd1d31aac64ef53be04c115a78dc03">Gtk::Action::set_accel_group</a> (const Glib::RefPtr<AccelGroup>& accel_group) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000031"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1Action.html#59e3390e4a456553a97536bcae625ff1">Gtk::Action::set_accel_path</a> (const <a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1ustring.html">Glib::ustring</a>& accel_path) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000034"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1Action.html#f5748d57d9ca574a087df31b406510f4">Gtk::Action::unblock_activate_from</a> (Widget& proxy) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000041"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1ActionGroup.html#aa752fda3c18a96067201ad9ac9b5da5">Gtk::ActionGroup::get_action</a> (const <a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1ustring.html">Glib::ustring</a>& action_name) const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000040"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1ActionGroup.html#93162c945b633f535f7723be49c5c097">Gtk::ActionGroup::get_action</a> (const <a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1ustring.html">Glib::ustring</a>& action_name) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000043"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1ActionGroup.html#e28d8cb9830c7411721e496a02f53eec">Gtk::ActionGroup::get_actions</a> () const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000042"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1ActionGroup.html#a5e87941229cdec91a292b06d6ed563d">Gtk::ActionGroup::get_actions</a> () </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000035"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1ActionGroup.html#0439cfbac0cdd10bc5521a651bfd052b">Gtk::ActionGroup::get_name</a> () const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000036"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1ActionGroup.html#fe52a05685c517a4a3823cbe035d1d6a">Gtk::ActionGroup::get_sensitive</a> () const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000038"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1ActionGroup.html#3fb7b54f6eaeff19b79462b9b1d1ee08">Gtk::ActionGroup::get_visible</a> () const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000044"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1ActionGroup.html#852c2224a3944042d4977c4064ab835a">Gtk::ActionGroup::remove</a> (const Glib::RefPtr<Action>& action) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000037"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1ActionGroup.html#3debf72a544aeb48a2c53679316e4f44">Gtk::ActionGroup::set_sensitive</a> (bool sensitive=true) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000039"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1ActionGroup.html#1c16118f646707ac642800d797b57fab">Gtk::ActionGroup::set_visible</a> (bool visible=true) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000046"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1Alignment.html#c39fb7517548f3f54d4a854721a447f9">Gtk::Alignment::get_padding</a> (guint& padding_top, guint& padding_bottom, guint& padding_left, guint& padding_right) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000045"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1Alignment.html#a0b23d97c47609dc87b3ca7dc006ff26">Gtk::Alignment::set_padding</a> (guint padding_top, guint padding_bottom, guint padding_left, guint padding_right) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000050"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1Button.html#5077c50492734651ff9669f7ef1c8d47">Gtk::Button::get_alignment</a> (float& xalign, float& yalign) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000048"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1Button.html#696caf5d893b15f76e18e2cea0479500">Gtk::Button::get_focus_on_click</a> () const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000049"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1Button.html#7b204372b3ee1395290cfad7033c08fb">Gtk::Button::set_alignment</a> (float xalign, float yalign) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000047"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1Button.html#ab691cee055c3e2850dcb968f7bf94c9">Gtk::Button::set_focus_on_click</a> (bool focus_on_click=true) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000051"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1ButtonBox.html#e182588398c39b8c578e241bc2d5bf2f">Gtk::ButtonBox::get_child_secondary</a> (const <a class="el" href="classGtk_1_1Widget.html">Gtk::Widget</a>& child) const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000053"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1Calendar.html#b1530d38d5ec2862ac2078595d473420">Gtk::Calendar::get_display_options</a> () const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000052"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1Calendar.html#e58391c81deeec0bd7addccef24085b7">Gtk::Calendar::set_display_options</a> (CalendarDisplayOptions flags) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000057"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1CellLayout.html#e1e828ee890b1a27ea8992e67a43faa8">Gtk::CellLayout::add_attribute</a> (CellRenderer& cell, const <a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1ustring.html">Glib::ustring</a>& attribute, int column) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000056"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1CellLayout.html#b87faf407763c4df8985ac7ff985fad8">Gtk::CellLayout::clear</a> () </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000058"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1CellLayout.html#f6f996cbf2f5f5a447b3f3a3f7399512">Gtk::CellLayout::clear_attributes</a> (CellRenderer& cell) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000055"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1CellLayout.html#83e9262b85ca69cd513a110b1d5af4bc">Gtk::CellLayout::pack_end</a> (CellRenderer& cell, bool expand=true) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000054"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1CellLayout.html#9bf15a714d0740e6f3e76e2b0223ddf7">Gtk::CellLayout::pack_start</a> (CellRenderer& cell, bool expand=true) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000059"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1CellLayout.html#e29bdb7e0a9944c2ce45a70f43bcb5fc">Gtk::CellLayout::reorder</a> (CellRenderer& cell, int position) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000060"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1CellRenderer.html#9aaef65d7b80a4ad7378b20f76ef4760">Gtk::CellRenderer::editing_canceled</a> () </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000062"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1CheckMenuItem.html#d8f9331f74ba7ef40a6957d68ffd189c">Gtk::CheckMenuItem::get_draw_as_radio</a> () const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000061"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1CheckMenuItem.html#6bc19fef98ea18c634398a654062e4c4">Gtk::CheckMenuItem::set_draw_as_radio</a> (bool draw_as_radio=true) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000063"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1Clipboard.html#e3be3a0d85849117a284f8a1cbfdb98e">Gtk::Clipboard::request_targets</a> (const SlotTargetsReceived& slot) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000064"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1Clipboard.html#78e60f35e79ab11e6d013085bc8e1613">Gtk::Clipboard::wait_for_targets</a> () const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000065"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1ColorButton.html#c12239750b35f3cd2594563d479eda6f">Gtk::ColorButton::ColorButton</a> () </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000066"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1ColorButton.html#76b6f88db3cdab453e0782a33fc9e94e">Gtk::ColorButton::ColorButton</a> (const <a class="el" href="classGdk_1_1Color.html">Gdk::Color</a>& color) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000070"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1ColorButton.html#b0144603e20c99d3b715a7ccc7a85bb7">Gtk::ColorButton::get_alpha</a> () const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000069"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1ColorButton.html#f0c6a88c87ab5da62fb1532fd7197402">Gtk::ColorButton::get_color</a> () const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000074"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1ColorButton.html#d8710f9d4d0b18112f62d955d74040fb">Gtk::ColorButton::get_title</a> () const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000072"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1ColorButton.html#54dfb197ed0b2ee0746cb12dc9073cca">Gtk::ColorButton::get_use_alpha</a> () const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000068"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1ColorButton.html#ed363cb1e704dd6b364b03b55e6f49c7">Gtk::ColorButton::set_alpha</a> (guint16 alpha) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000067"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1ColorButton.html#bdebef43488848096b3beb48437a253b">Gtk::ColorButton::set_color</a> (const <a class="el" href="classGdk_1_1Color.html">Gdk::Color</a>& color) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000073"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1ColorButton.html#6fb0f55e86936a07c6c062113b0e323d">Gtk::ColorButton::set_title</a> (const <a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1ustring.html">Glib::ustring</a>& title) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000071"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1ColorButton.html#817d20b6c2ca8ab10ec06177eebedebb">Gtk::ColorButton::set_use_alpha</a> (bool use_alpha=true) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000078"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1ComboBox.html#5c531be01729f9371a4858344434c7a9">Gtk::ComboBox::get_active_row_number</a> () const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000082"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1ComboBox.html#959e76003161dd8d130dc955af5aaa5e">Gtk::ComboBox::get_model</a> () const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000081"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1ComboBox.html#d96804e98737c72feb05f8b1968a7941">Gtk::ComboBox::get_model</a> () </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000085"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1ComboBox.html#51606c9fc18bf392baa98bf1f762923e">Gtk::ComboBox::popdown</a> () </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000084"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1ComboBox.html#3bb98e5a20c570f1de50153a848e1542">Gtk::ComboBox::popup</a> () </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000080"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1ComboBox.html#699cc8d026e92175f54ddfe1812e83cd">Gtk::ComboBox::set_active</a> (const TreeModel::iterator& iter) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000079"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1ComboBox.html#4f23cf08e85733d23f120935b235096d">Gtk::ComboBox::set_active</a> (int index) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000077"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1ComboBox.html#321c575d9d75d527168b06d6f8bd5122">Gtk::ComboBox::set_column_span_column</a> (int column_span) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000083"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1ComboBox.html#b0b1ad19e9ffb50b04eb04431aaa3fd2">Gtk::ComboBox::set_model</a> (const Glib::RefPtr<TreeModel>& model) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000076"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1ComboBox.html#7bc7717c3ad6a7ee9e7de907691e39f5">Gtk::ComboBox::set_row_span_column</a> (int row_span) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000075"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1ComboBox.html#320ba39253e225c63979b2d41342068c">Gtk::ComboBox::set_wrap_width</a> (int width) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000088"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1ComboBoxEntry.html#19d583f81caf3456c8237359debc73cc">Gtk::ComboBoxEntry::get_text_column</a> () const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000087"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1ComboBoxEntry.html#84e6b02d215a9ea16b89d37a8a1b1ae8">Gtk::ComboBoxEntry::set_text_column</a> (int text_column) const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000086"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1ComboBoxEntry.html#3e62a5252cc9cfcda3e486c635bec6b3">Gtk::ComboBoxEntry::set_text_column</a> (const TreeModelColumnBase& text_column) const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000002"></a> <dl>
<dt>Member <a class="el" href="classGdk_1_1Display.html#0b8fa8a05a7208f9b717000fe1b74aa6">Gdk::Display::flush</a> () </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000005"></a> <dl>
<dt>Member <a class="el" href="classGdk_1_1Display.html#5d77d8a3b316a6553f4de3ec84b14f20">Gdk::Display::get_default_cursor_size</a> () const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000008"></a> <dl>
<dt>Member <a class="el" href="classGdk_1_1Display.html#7dfe5bc396faaa5f17f6a835e2d840d6">Gdk::Display::get_default_group</a> () const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000007"></a> <dl>
<dt>Member <a class="el" href="classGdk_1_1Display.html#15fbecbe204a75e0788b6df41d555d00">Gdk::Display::get_default_group</a> () </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000006"></a> <dl>
<dt>Member <a class="el" href="classGdk_1_1Display.html#9f80dfeaece806cca2eae5e4fa5e2c5f">Gdk::Display::get_maximal_cursor_size</a> (guint& width, guint& height) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000001"></a> <dl>
<dt>Member <a class="el" href="classGdk_1_1Display.html#f7f3d567cbc742ea19dba76043fd6038">Gdk::Display::set_double_click_distance</a> (guint distance) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000003"></a> <dl>
<dt>Member <a class="el" href="classGdk_1_1Display.html#28a6b385e3c5b1c02f6dc1819b3ccbdb">Gdk::Display::supports_cursor_alpha</a> () const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000004"></a> <dl>
<dt>Member <a class="el" href="classGdk_1_1Display.html#c88ccd7afb2389114cfc0691cc525bf2">Gdk::Display::supports_cursor_color</a> () const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000091"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1Entry.html#06141f856a0b5174e6aa38b0c1669e6c">Gtk::Entry::get_alignment</a> () const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000094"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1Entry.html#1419ea543a156bd6d9fe9b6b4f62c290">Gtk::Entry::get_completion</a> () const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000093"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1Entry.html#bf8ba2fcb257fc8d5c39020d71aecf68">Gtk::Entry::get_completion</a> () </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000090"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1Entry.html#a1b6d43887a31990faf261443548f5c3">Gtk::Entry::set_alignment</a> (AlignmentEnum xalign) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000089"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1Entry.html#0bf8a000d06a5754d734ea2b0f1a424e">Gtk::Entry::set_alignment</a> (float xalign) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000092"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1Entry.html#ea2c754b7d893aeb0fc1e702e282d34c">Gtk::Entry::set_completion</a> (const Glib::RefPtr<EntryCompletion>& completion) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000102"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1EntryCompletion.html#5a9467a0ca886addbdd0b2c9de3db9a3">Gtk::EntryCompletion::complete</a> () </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000103"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1EntryCompletion.html#f991b1aa16a2329ccb7b8c4a155649ca">Gtk::EntryCompletion::delete_action</a> (int index=0) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000096"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1EntryCompletion.html#4e36db0ff1aad9e22e35793968948a68">Gtk::EntryCompletion::get_entry</a> () const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000095"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1EntryCompletion.html#86ab303d750df98bafcb3b3ea25aa824">Gtk::EntryCompletion::get_entry</a> () </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000101"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1EntryCompletion.html#0c355578f10b84ef7f4f267d6bb33e87">Gtk::EntryCompletion::get_minimum_key_length</a> () const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000099"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1EntryCompletion.html#1c2098bf00f851421f18e3a8d4309a73">Gtk::EntryCompletion::get_model</a> () const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000098"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1EntryCompletion.html#3347e85ad5aba5f71647825259377fe2">Gtk::EntryCompletion::get_model</a> () </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000100"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1EntryCompletion.html#8c3f31fe0b5044d89f80b5c7a3b711f7">Gtk::EntryCompletion::set_minimum_key_length</a> (int length) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000097"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1EntryCompletion.html#ce78afcde83713f12c20c97ad6185034">Gtk::EntryCompletion::set_model</a> (const Glib::RefPtr<TreeModel>& model) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000105"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1EntryCompletion.html#b36e1610db2c556b2c9c171c385c9ac4">Gtk::EntryCompletion::set_text_column</a> (int column) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000104"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1EntryCompletion.html#caedfc73d239405d868342b14a0963f0">Gtk::EntryCompletion::set_text_column</a> (const TreeModelColumnBase& column) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000108"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1EventBox.html#5058353f7deaf535c6782bccee40a82c">Gtk::EventBox::get_above_child</a> () const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000106"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1EventBox.html#99a5dd481ed795f18fc6f0a3aaa91ed7">Gtk::EventBox::get_visible_window</a> () const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000109"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1EventBox.html#2aaaf3ecfb6ddd5425ae4c557d48b459">Gtk::EventBox::set_above_child</a> (bool above_child=true) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000107"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1EventBox.html#ed330de64eb6d3aa26ce54dc1d262ef5">Gtk::EventBox::set_visible_window</a> (bool visible_window=true) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000110"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1Expander.html#3877a08bffa14ecdfadc41fd8ff64a19">Gtk::Expander::Expander</a> () </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000111"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1Expander.html#7a4e41ba79a7ee0358cb0423b1689fb0">Gtk::Expander::Expander</a> (const <a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1ustring.html">Glib::ustring</a>& label, bool mnemonic=false) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000113"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1Expander.html#7c180998ccf18327f8c13cc08630e483">Gtk::Expander::get_expanded</a> () const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000117"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1Expander.html#dc5acdf515bb50c002de91147cfd016a">Gtk::Expander::get_label</a> () const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000124"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1Expander.html#4bd716ac3124b116b3c1bd027092b86b">Gtk::Expander::get_label_widget</a> () const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000123"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1Expander.html#581e4df4d76acbb7e9ba2403e1874bf2">Gtk::Expander::get_label_widget</a> () </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000115"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1Expander.html#9040b81232f831e0be42f7bdec755eaf">Gtk::Expander::get_spacing</a> () const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000121"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1Expander.html#3c073016a8a52479a15a89e450d83f0e">Gtk::Expander::get_use_markup</a> () const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000119"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1Expander.html#a99a7a64790e7884f0eee0451c6518f0">Gtk::Expander::get_use_underline</a> () const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000112"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1Expander.html#fefd2219b8385f091716c4b4f6696ef9">Gtk::Expander::set_expanded</a> (bool expanded=true) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000116"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1Expander.html#213463dfcd03e4fe73174b0300481b8c">Gtk::Expander::set_label</a> (const <a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1ustring.html">Glib::ustring</a>& label) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000122"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1Expander.html#c15bd816f9c79e061a2b7825c3d91096">Gtk::Expander::set_label_widget</a> (Widget& label_widget) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000114"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1Expander.html#5a52d24f053bcbfa05e445e529604e4e">Gtk::Expander::set_spacing</a> (int spacing) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000120"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1Expander.html#2604bd9768c8119f29629e2b02c79392">Gtk::Expander::set_use_markup</a> (bool use_markup=true) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000118"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1Expander.html#bbb4c979dacbda70d9e9368d0349ce76">Gtk::Expander::set_use_underline</a> (bool use_underline=true) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000154"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1FileChooser.html#f02ec2b5004b16fc0e65c96603087597">Gtk::FileChooser::add_filter</a> (const FileFilter& filter) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000161"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1FileChooser.html#1a88e632ea457b0d06af1cc7bebc5524">Gtk::FileChooser::add_shortcut_folder</a> (const <a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1ustring.html">Glib::ustring</a>& folder) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000164"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1FileChooser.html#41dca19b1ac57dec854ad7466e36a853">Gtk::FileChooser::add_shortcut_folder_uri</a> (const <a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1ustring.html">Glib::ustring</a>& uri) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000126"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1FileChooser.html#ade6c3f9b03bb54267ff68070bfd920c">Gtk::FileChooser::get_action</a> () const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000139"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1FileChooser.html#953e1dc018798f2992be33e69511e9cc">Gtk::FileChooser::get_current_folder</a> () const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000153"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1FileChooser.html#d8b141c96ed7ab18e12ef5f8c46def0b">Gtk::FileChooser::get_extra_widget</a> () const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000152"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1FileChooser.html#a8639bb8a1ed6f3b55ff9a06f273c9ea">Gtk::FileChooser::get_extra_widget</a> () </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000137"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1FileChooser.html#a8dbe05175a1b548242097d6f5c65adf">Gtk::FileChooser::get_filenames</a> () const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000160"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1FileChooser.html#e409ccaef3fd4a74983ec98292f66049">Gtk::FileChooser::get_filter</a> () const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000159"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1FileChooser.html#eea6e73bd8e0ffef1ecbe6e58f8156b7">Gtk::FileChooser::get_filter</a> () </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000128"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1FileChooser.html#4c3d162295f196d6a23afabc33f7f889">Gtk::FileChooser::get_local_only</a> () const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000147"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1FileChooser.html#7c46d4e0fe769d6ce6a6f42922a60791">Gtk::FileChooser::get_preview_widget</a> () </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000146"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1FileChooser.html#edcd855cf01201059739ab9e21619651">Gtk::FileChooser::get_preview_widget</a> () const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000149"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1FileChooser.html#57cc1911cd68da7924a5eda9157daf0c">Gtk::FileChooser::get_preview_widget_active</a> () const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000130"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1FileChooser.html#5c01a09606c1ab0354168a6e64f3d2e1">Gtk::FileChooser::get_select_multiple</a> () const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000143"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1FileChooser.html#9ef36886bf215140980bb127faedad56">Gtk::FileChooser::get_uris</a> () const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000157"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1FileChooser.html#068e824fa59890733f008b55978cb821">Gtk::FileChooser::list_filters</a> () const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000156"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1FileChooser.html#4f6111fa49a47d0a4ab3847afd097ab3">Gtk::FileChooser::list_filters</a> () </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000166"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1FileChooser.html#556eb41c9f47a637c63167c785a28d35">Gtk::FileChooser::list_shortcut_folder_uris</a> () const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000163"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1FileChooser.html#93a5e02937374f83f7ca5c94b15c5ca6">Gtk::FileChooser::list_shortcut_folders</a> () const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000155"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1FileChooser.html#8d09b7c28b4d70ef37d9ac588059c722">Gtk::FileChooser::remove_filter</a> (const FileFilter& filter) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000162"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1FileChooser.html#c536b8d8bc18e89cb9d7b766e76381a6">Gtk::FileChooser::remove_shortcut_folder</a> (const <a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1ustring.html">Glib::ustring</a>& folder) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000165"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1FileChooser.html#13f83decdc5392b471e10a965686db24">Gtk::FileChooser::remove_shortcut_folder_uri</a> (const <a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1ustring.html">Glib::ustring</a>& uri) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000135"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1FileChooser.html#78d9251b8491b943042c8606004cdccc">Gtk::FileChooser::select_all</a> () </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000133"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1FileChooser.html#e4a1007bda51f75dcc3a574d03412f71">Gtk::FileChooser::select_filename</a> (const <a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1ustring.html">Glib::ustring</a>& filename) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000141"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1FileChooser.html#dd9302d8afe9eefd9d36b01ba750c130">Gtk::FileChooser::select_uri</a> (const <a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1ustring.html">Glib::ustring</a>& uri) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000125"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1FileChooser.html#c455a88d080c044c03abb343c46b38db">Gtk::FileChooser::set_action</a> (FileChooserAction action) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000138"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1FileChooser.html#39d0acf778a3a5ec2e7ccef5880376ac">Gtk::FileChooser::set_current_folder</a> (const <a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1ustring.html">Glib::ustring</a>& filename) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000144"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1FileChooser.html#2b422aaf13cecbe7793bb8231f181718">Gtk::FileChooser::set_current_folder_uri</a> (const <a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1ustring.html">Glib::ustring</a>& uri) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000131"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1FileChooser.html#5c01937980edceb0f5d12bc0d4d593bc">Gtk::FileChooser::set_current_name</a> (const <a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1ustring.html">Glib::ustring</a>& name) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000151"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1FileChooser.html#cd125cf970163062d82d60e029aa2273">Gtk::FileChooser::set_extra_widget</a> (<a class="el" href="classGtk_1_1Widget.html">Gtk::Widget</a>& extra_widget) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000132"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1FileChooser.html#e93bd541fc3524074242475d392d53b7">Gtk::FileChooser::set_filename</a> (const <a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1ustring.html">Glib::ustring</a>& filename) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000158"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1FileChooser.html#08737a0d7bc8bb3c662dcd2fa125eb51">Gtk::FileChooser::set_filter</a> (const FileFilter& filter) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000127"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1FileChooser.html#f80900d7204e232521e852b7c113b800">Gtk::FileChooser::set_local_only</a> (bool local_only=true) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000145"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1FileChooser.html#c6f584f8ded58ab1926457928018fac4">Gtk::FileChooser::set_preview_widget</a> (<a class="el" href="classGtk_1_1Widget.html">Gtk::Widget</a>& preview_widget) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000148"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1FileChooser.html#1702c9cc877c1b652d598057e1de1ed8">Gtk::FileChooser::set_preview_widget_active</a> (bool active=true) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000129"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1FileChooser.html#30a13c0df47fab50c93ad8f38db0c88c">Gtk::FileChooser::set_select_multiple</a> (bool select_multiple=true) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000140"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1FileChooser.html#b65ce92c84b9b9aef77fdb26e7c8a6bb">Gtk::FileChooser::set_uri</a> (const <a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1ustring.html">Glib::ustring</a>& uri) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000150"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1FileChooser.html#5a0bfa0c278521cf1dc4b2040ff42311">Gtk::FileChooser::set_use_preview_label</a> (bool use_label=true) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000136"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1FileChooser.html#046f98cd7217b750840d19476c26c6ef">Gtk::FileChooser::unselect_all</a> () </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000134"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1FileChooser.html#efe08c1f8cdcb9c9aeef070dedb869f5">Gtk::FileChooser::unselect_filename</a> (const <a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1ustring.html">Glib::ustring</a>& filename) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000142"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1FileChooser.html#09d6d6f9aae123e933e8c266b447cd79">Gtk::FileChooser::unselect_uri</a> (const <a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1ustring.html">Glib::ustring</a>& uri) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000167"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1FileChooserWidget.html#0dd6f3c40fac3f9f9e9b7e099dd9578a">Gtk::FileChooserWidget::FileChooserWidget</a> (FileChooserAction action) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000170"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1FileFilter.html#f0a289b2b4576672f4ce46de1a84f0be">Gtk::FileFilter::add_mime_type</a> (const <a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1ustring.html">Glib::ustring</a>& mime_type) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000171"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1FileFilter.html#9b49e4a03afffc2806d17abf33b26cad">Gtk::FileFilter::add_pattern</a> (const <a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1ustring.html">Glib::ustring</a>& pattern) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000169"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1FileFilter.html#17fb0bcf626466804207387311bea5e6">Gtk::FileFilter::get_name</a> () const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000172"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1FileFilter.html#3ecc5530bde6a3ec0da99f6e7810229d">Gtk::FileFilter::get_needed</a> () const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000168"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1FileFilter.html#c192ae4b6a0d24ab00c2d2d434550813">Gtk::FileFilter::set_name</a> (const <a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1ustring.html">Glib::ustring</a>& name) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000179"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1FontButton.html#28cb00368bc7341711ab3dd277c5015f">Gtk::FontButton::get_font_name</a> () const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000183"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1FontButton.html#a2ba1a4365225de536ac2c0958de6e27">Gtk::FontButton::get_show_size</a> () const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000181"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1FontButton.html#2f44a93b4bb73004483599c42123a5f4">Gtk::FontButton::get_show_style</a> () const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000173"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1FontButton.html#2de1d85e57585b41551f13088c352d3c">Gtk::FontButton::get_title</a> () const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000175"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1FontButton.html#e5936572507530b1a1b94d35c083e0b1">Gtk::FontButton::get_use_font</a> () const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000177"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1FontButton.html#dc8448451286869e2a98fe3eb1d7dc9c">Gtk::FontButton::get_use_size</a> () const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000180"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1FontButton.html#2ce58b006c28bb76f85af6cf214c377d">Gtk::FontButton::set_font_name</a> (const <a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1ustring.html">Glib::ustring</a>& fontname) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000184"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1FontButton.html#13ba2de4e1b49ef97658dd6b37dcc9c3">Gtk::FontButton::set_show_size</a> (bool show_size=true) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000182"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1FontButton.html#0488a869b2bb30b741e6c3f1e765672f">Gtk::FontButton::set_show_style</a> (bool show_style=true) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000174"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1FontButton.html#a9242c9a2f46ae3847f3310e6d0eeeea">Gtk::FontButton::set_title</a> (const <a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1ustring.html">Glib::ustring</a>& title) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000176"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1FontButton.html#8d5c246629a904f077fa8ceeab803dc0">Gtk::FontButton::set_use_font</a> (bool use_font=true) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000178"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1FontButton.html#b0fbd6f5cec6c568cbf3b74516837426">Gtk::FontButton::set_use_size</a> (bool use_size=true) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000185"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1IconInfo.html#45fac9ff4cf091ae33c8a790b7de827a">Gtk::IconInfo::get_base_size</a> () const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000189"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1IconInfo.html#febc5a3309645498ebefa511a8cd9586">Gtk::IconInfo::get_display_name</a> () const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000188"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1IconInfo.html#7c16fd44e0f45cafc701ab9193eadc43">Gtk::IconInfo::get_embedded_rect</a> (<a class="el" href="classGdk_1_1Rectangle.html">Gdk::Rectangle</a>& rectangle) const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000186"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1IconInfo.html#67db2d40395d444cf33683f915be06d5">Gtk::IconInfo::load_icon</a> () const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000187"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1IconInfo.html#529c4c1e8729c18e7c7b43feaaf63d67">Gtk::IconInfo::set_raw_coordinates</a> (bool raw_coordinates=true) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000202"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1IconTheme.html#ec6f8962cf59343dbc30e1ba40bc5e72">Gtk::IconTheme::add_builtin_icon</a> (const <a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1ustring.html">Glib::ustring</a>& icon_name, int size, const Glib::RefPtr<Gdk::Pixbuf>& pixbuf) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000193"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1IconTheme.html#6d3cb198791d11293b53a6d72e86dd71">Gtk::IconTheme::append_search_path</a> (const <a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1ustring.html">Glib::ustring</a>& path) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000190"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1IconTheme.html#3afdba1b52bd99e26cffae6bdc7746f2">Gtk::IconTheme::get_default</a> () </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000200"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1IconTheme.html#cff837773e9ededc9e5c10fc338918c0">Gtk::IconTheme::get_example_icon_name</a> () const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000191"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1IconTheme.html#e345ef63d7ae954bfc290fb9ed708bbd">Gtk::IconTheme::get_for_screen</a> (const Glib::RefPtr<Gdk::Screen>& screen) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000196"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1IconTheme.html#691b94570379d42ffb74e9842f4f9bc7">Gtk::IconTheme::has_icon</a> (const <a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1ustring.html">Glib::ustring</a>& icon_name) const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000199"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1IconTheme.html#4cfb1a51a33a4e1389ece519b7980dc3">Gtk::IconTheme::list_icons</a> (const <a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1ustring.html">Glib::ustring</a>& context) const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000198"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1IconTheme.html#abe2d013b7dbc0369dd57897b83831f3">Gtk::IconTheme::load_icon</a> (const <a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1ustring.html">Glib::ustring</a>& icon_name, int size, IconLookupFlags flags) const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000197"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1IconTheme.html#3dcf12542301c1bf6a4d3e0befdec134">Gtk::IconTheme::lookup_icon</a> (const <a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1ustring.html">Glib::ustring</a>& icon_name, int size, IconLookupFlags flags) const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000194"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1IconTheme.html#3a7691445c999cf3f49fff52e6ef62b1">Gtk::IconTheme::prepend_search_path</a> (const <a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1ustring.html">Glib::ustring</a>& path) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000201"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1IconTheme.html#5cb5c0e2c62d565995a4142ca93b65ed">Gtk::IconTheme::rescan_if_needed</a> () </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000195"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1IconTheme.html#cddc42b5b8c9731c3647953c5ab5196b">Gtk::IconTheme::set_custom_theme</a> (const <a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1ustring.html">Glib::ustring</a>& theme_name) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000192"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1IconTheme.html#101e27ca111105f250a7dccaa0407b52">Gtk::IconTheme::set_screen</a> (const Glib::RefPtr<Gdk::Screen>& screen) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000203"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1Menu.html#553a507018a5b411c6e839d710cd5805">Gtk::Menu::attach</a> (<a class="el" href="classGtk_1_1Widget.html">Gtk::Widget</a>& child, guint left_attach, guint right_attach, guint top_attach, guint bottom_attach) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000204"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1Menu.html#3a407327705ee7a135674fb7d75732a4">Gtk::Menu::set_monitor</a> (int monitor_num) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000205"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1MenuShell.html#bc8e49ce84e81319c81bdc58020245c0">Gtk::MenuShell::cancel</a> () </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000206"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1MessageDialog.html#ae83c9c8501dcd04103eb5d995c1c752">Gtk::MessageDialog::set_markup</a> (const <a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1ustring.html">Glib::ustring</a>& str) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000208"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1Paned.html#53bbfa4d0d320cad6c31814b4d0cb456">Gtk::Paned::get_child1</a> () const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000207"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1Paned.html#1a401412a5cb15b5a3960e86d8ea6a2d">Gtk::Paned::get_child1</a> () </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000210"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1Paned.html#6bc65a1a34efd2c93a9a76454fc82125">Gtk::Paned::get_child2</a> () const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000209"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1Paned.html#56e37214c27467eee0f1e537f3bb5086">Gtk::Paned::get_child2</a> () </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000212"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1RadioAction.html#abcf3a1fc2c19c436c7737e1b0aeafae">Gtk::RadioAction::get_current_value</a> () const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000211"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1RadioAction.html#e98b88fbe693802dd730e7515265bda0">Gtk::RadioAction::get_group</a> () </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000213"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1RadioToolButton.html#6891c4ee666eb5b29558336c11703caa">Gtk::RadioToolButton::RadioToolButton</a> () </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000214"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1RadioToolButton.html#0559147d581372caf8829c8df0129949">Gtk::RadioToolButton::RadioToolButton</a> (Group& group, const <a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1ustring.html">Glib::ustring</a>& label=Glibustring()) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000215"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1RadioToolButton.html#5f060c736c30cee3bb10cfc48baa29e8">Gtk::RadioToolButton::RadioToolButton</a> (Group& group, const <a class="el" href="classGtk_1_1StockID.html">Gtk::StockID</a>& stock_id) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000216"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1RadioToolButton.html#9e5c6709dedb6e4637e50289309fbab0">Gtk::RadioToolButton::RadioToolButton</a> (Widget& icon_widget, const <a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1ustring.html">Glib::ustring</a>& label=Glibustring()) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000217"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1RadioToolButton.html#6052cada6eab7b6210ae06cdbca344b3">Gtk::RadioToolButton::get_group</a> () </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000218"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1RadioToolButton.html#ccc692b2e3ba892de86f2ccb67df690d">Gtk::RadioToolButton::set_group</a> (Group& group) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000219"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1RC.html#ef24a5f7a3af74a9eaf179e85cf3952e">Gtk::RC::reset_styles</a> (const Glib::RefPtr<Settings>& settings) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000221"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1Scale.html#0d2c34bdc902171422f9afa7848fa0d2">Gtk::Scale::get_layout</a> () const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000220"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1Scale.html#dcba211aa3877294cb9fef98cb35d8b9">Gtk::Scale::get_layout</a> () </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000222"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1Scale.html#4d5b0dfaf0202a80bb5eee86767b7be0">Gtk::Scale::get_layout_offsets</a> (int& x, int& y) const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000223"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1TextBuffer.html#88b0a4096add7e8ea77098ffa5973a7f">Gtk::TextBuffer::select_range</a> (const iterator& ins, const iterator& bound) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000229"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1TextIter.html#3ff24ef7f2c58692eb320365cd0d8001">Gtk::TextIter::backward_visible_cursor_position</a> () </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000231"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1TextIter.html#455e4560fbd1fa19a6f8caea4348255f">Gtk::TextIter::backward_visible_cursor_positions</a> (int count) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000225"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1TextIter.html#9e1afad7efe043ebf9f8c8a0aa6b8034">Gtk::TextIter::backward_visible_word_start</a> () </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000227"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1TextIter.html#432ef8da68c876335cb020e24b5880d4">Gtk::TextIter::backward_visible_word_starts</a> (int count) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000228"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1TextIter.html#647f1e0b30b3ad9470d67f8d42108d6a">Gtk::TextIter::forward_visible_cursor_position</a> () </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000230"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1TextIter.html#770ab9cd1f2dd86d586567cb19f8d9a4">Gtk::TextIter::forward_visible_cursor_positions</a> (int count) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000224"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1TextIter.html#c79bd3e6c8cd7ccdc45b8ed8064986e8">Gtk::TextIter::forward_visible_word_end</a> () </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000226"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1TextIter.html#d9a7521c3392d07d24790702433cd1ff">Gtk::TextIter::forward_visible_word_ends</a> (int count) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000235"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1TextView.html#6dde8bda7d3f7c28450f4e59359c947d">Gtk::TextView::get_accepts_tab</a> () const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000233"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1TextView.html#0c5279558bf1260ce4a92ff15bf6345e">Gtk::TextView::get_overwrite</a> () const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000234"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1TextView.html#9e683ecc969533dbdf5efbc2452de83a">Gtk::TextView::set_accepts_tab</a> (bool accepts_tab=true) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000232"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1TextView.html#d03c80210645fb840edd03b89cd54acb">Gtk::TextView::set_overwrite</a> (bool overwrite=true) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000238"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1ToggleAction.html#4ec6ce04effa1aaed32d2488a5a2a842">Gtk::ToggleAction::get_active</a> () const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000240"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1ToggleAction.html#4700bc76ae50a99c6455a20fcfedfd17">Gtk::ToggleAction::get_draw_as_radio</a> () const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000237"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1ToggleAction.html#44ae541b7dbb01f6679063a456b2b221">Gtk::ToggleAction::set_active</a> (bool is_active=true) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000239"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1ToggleAction.html#3fd94b6647e22cec855f95977682f2d4">Gtk::ToggleAction::set_draw_as_radio</a> (bool draw_as_radio=true) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000236"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1ToggleAction.html#2dc5245f6db31890070afd3d589ad813">Gtk::ToggleAction::toggled</a> () </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000242"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1ToggleToolButton.html#fb559cdce8f97c4725e32d7f05e45d8a">Gtk::ToggleToolButton::get_active</a> () const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000241"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1ToggleToolButton.html#b1704b77fd0bbde1d8e6cf3818c750a8">Gtk::ToggleToolButton::set_active</a> (bool is_active=true) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000251"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1Toolbar.html#614455e2a7df645012e18230ba0544c8">Gtk::Toolbar::get_drop_index</a> (int x, int y) const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000244"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1Toolbar.html#a3c0dffdaea7fc77682a6a8a6ccf4dc6">Gtk::Toolbar::get_item_index</a> (const ToolItem& item) const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000245"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1Toolbar.html#d0ba318e88a319fb4438a487e39ed5d1">Gtk::Toolbar::get_n_items</a> () const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000247"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1Toolbar.html#e1deff5795a6ece195e25d36445c4b74">Gtk::Toolbar::get_nth_item</a> (int n) const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000246"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1Toolbar.html#f792a4de69bf535452007a02b8697ff9">Gtk::Toolbar::get_nth_item</a> (int n) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000250"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1Toolbar.html#e6e8dedd4fb40f1b47023e1bba938d70">Gtk::Toolbar::get_relief_style</a> () const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000248"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1Toolbar.html#5b330fd16ff9a511ea799487fd3aacec">Gtk::Toolbar::get_show_arrow</a> () const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000243"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1Toolbar.html#144535564a88cf4525c574a6ee37baaf">Gtk::Toolbar::insert</a> (ToolItem& item, int pos) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000252"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1Toolbar.html#d50cb5a127f98cb359f0210a15effdf6">Gtk::Toolbar::set_drop_highlight_item</a> (ToolItem& tool_item, int index) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000249"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1Toolbar.html#8b884595c2d858a2c93d09a19252ad8e">Gtk::Toolbar::set_show_arrow</a> (bool show_arrow=true) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000260"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1ToolButton.html#1f31662eca07cbda1fcff14425d337b9">Gtk::ToolButton::get_icon_widget</a> () const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000259"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1ToolButton.html#e3750678c98bab7a24eaa3c5928aea6a">Gtk::ToolButton::get_icon_widget</a> () </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000254"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1ToolButton.html#2e6b66995090c9c5c6063c758a9b272a">Gtk::ToolButton::get_label</a> () const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000263"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1ToolButton.html#e4b1a1c1e8b3b69c7e32fbfddee0da8e">Gtk::ToolButton::get_label_widget</a> () const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000262"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1ToolButton.html#9f23282892f0030fb5751c81a454a185">Gtk::ToolButton::get_label_widget</a> () </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000257"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1ToolButton.html#a4b003e56c6a73a97b1b162260bed5cd">Gtk::ToolButton::get_stock_id</a> () const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000256"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1ToolButton.html#7aeb5387acbaa8b28fda7f9de6294020">Gtk::ToolButton::get_use_underline</a> () const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000258"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1ToolButton.html#b809b19b75cee54a2fc4b904f9a591e1">Gtk::ToolButton::set_icon_widget</a> (Widget& icon_widget) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000253"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1ToolButton.html#9efe83b5048f641fdd35921e72ccb2f5">Gtk::ToolButton::set_label</a> (const <a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1ustring.html">Glib::ustring</a>& label) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000261"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1ToolButton.html#aadad39193ddfe3f23524ae889c8b9ad">Gtk::ToolButton::set_label_widget</a> (Widget& label_widget) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000255"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1ToolButton.html#149c499f50a89eb0554af47e7fe9a97d">Gtk::ToolButton::set_use_underline</a> (bool use_underline=true) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000267"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1ToolItem.html#e8a9e2fb6948ad508e8014db65a91dee">Gtk::ToolItem::get_expand</a> () const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000265"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1ToolItem.html#5d13e445e3e85d44a94fde8f5ed870a4">Gtk::ToolItem::get_homogeneous</a> () const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000277"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1ToolItem.html#7bd728c7e51e9fa1e56486bffc72f5e1">Gtk::ToolItem::get_icon_size</a> () const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000275"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1ToolItem.html#d4cb29d2bd25a1efd5624f6ffaa53f1f">Gtk::ToolItem::get_is_important</a> () const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000278"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1ToolItem.html#8c76329297c9623da751b283392b3d47">Gtk::ToolItem::get_orientation</a> () const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000284"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1ToolItem.html#edc2aa93828aa0ce8e4dba1861efa40a">Gtk::ToolItem::get_proxy_menu_item</a> (const <a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1ustring.html">Glib::ustring</a>& menu_item_id) const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000283"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1ToolItem.html#6477f6a307d97bf1435c6c1bb718131c">Gtk::ToolItem::get_proxy_menu_item</a> (const <a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1ustring.html">Glib::ustring</a>& menu_item_id) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000280"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1ToolItem.html#1bc0a71ff47b8a2d8055cd17841f7195">Gtk::ToolItem::get_relief_style</a> () const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000279"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1ToolItem.html#920bde19e4ba1188bfcb00c104115cbb">Gtk::ToolItem::get_toolbar_style</a> () const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000270"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1ToolItem.html#7d01fdf301e996f10f23ebd96bec7483">Gtk::ToolItem::get_use_drag_window</a> () const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000272"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1ToolItem.html#52c1c319ffd10109b21c5500e57d5ee5">Gtk::ToolItem::get_visible_horizontal</a> () const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000274"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1ToolItem.html#bde84c05902a3e4ba7c6bcf79f7713e1">Gtk::ToolItem::get_visible_vertical</a> () const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000282"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1ToolItem.html#6a655de3e5929bc6f4f9a8e27882bdda">Gtk::ToolItem::retrieve_proxy_menu_item</a> () const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000281"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1ToolItem.html#5486d9d0bd8a4cbb4345aed9a99a50bc">Gtk::ToolItem::retrieve_proxy_menu_item</a> () </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000266"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1ToolItem.html#1c18c67797b1e635b0f8b7e55b2fdcea">Gtk::ToolItem::set_expand</a> (bool expand=true) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000264"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1ToolItem.html#64552ea9654a10a45a053a45a8593659">Gtk::ToolItem::set_homogeneous</a> (bool homogeneous=true) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000276"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1ToolItem.html#a33895835f121fdf68fd02726a626ecf">Gtk::ToolItem::set_is_important</a> (bool is_important=true) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000285"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1ToolItem.html#722227699766190dd162d8db5eedf817">Gtk::ToolItem::set_proxy_menu_item</a> (const <a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1ustring.html">Glib::ustring</a>& menu_item_id, Widget& menu_item) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000268"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1ToolItem.html#eabf9f4f654dfedbc40d0b7b9bc3eacc">Gtk::ToolItem::set_tooltip</a> (Tooltips& tooltips, const <a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1ustring.html">Glib::ustring</a>& tip_text, const <a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1ustring.html">Glib::ustring</a>& tip_private=Glibustring()) </dt>
<dd><p>
</dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000269"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1ToolItem.html#da08f867c3bb0abd2f8041925782b9cc">Gtk::ToolItem::set_use_drag_window</a> (bool use_drag_window=true) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000271"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1ToolItem.html#f98afa328d870e51fe18ac58b3cc0416">Gtk::ToolItem::set_visible_horizontal</a> (bool visible_horizontal=true) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000273"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1ToolItem.html#95438159f6778816285bc27f8737997b">Gtk::ToolItem::set_visible_vertical</a> (bool visible_vertical=true) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000295"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1TreeModelFilter.html#19c5a6d665017908ae5723d1d2dfa10d">Gtk::TreeModelFilter::clear_cache</a> () </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000292"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1TreeModelFilter.html#e38feced72a218395cc8fa7a7df5f47f">Gtk::TreeModelFilter::convert_child_path_to_path</a> (const Path& child_path) const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000290"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1TreeModelFilter.html#0a63732c0a5c08c010489ae707790561">Gtk::TreeModelFilter::convert_child_path_to_path</a> (const Path& child_path) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000293"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1TreeModelFilter.html#8bc4fe893efac9c3d690d22da330bd6f">Gtk::TreeModelFilter::convert_path_to_child_path</a> (const Path& filter_path) const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000291"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1TreeModelFilter.html#d0ebeafdbb46411bf176d909d9a645a7">Gtk::TreeModelFilter::convert_path_to_child_path</a> (const Path& filter_path) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000289"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1TreeModelFilter.html#804af36b2ac9d35102e9b8a38a147e6c">Gtk::TreeModelFilter::get_model</a> () const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000288"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1TreeModelFilter.html#841f5c3d099a9ef542352dc3ad2248e8">Gtk::TreeModelFilter::get_model</a> () </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000294"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1TreeModelFilter.html#00565675a42f714a76e9340894e29126">Gtk::TreeModelFilter::refilter</a> () </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000287"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1TreeModelFilter.html#4a9b8e778e54a0e384b883daf2268340">Gtk::TreeModelFilter::set_visible_column</a> (int column) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000286"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1TreeModelFilter.html#78f4cc1a7d58261716ac51619316a45e">Gtk::TreeModelFilter::set_visible_column</a> (const TreeModelColumnBase& column) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000297"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1TreeViewColumn.html#c4e06804b688df1e599a9f817413b590">Gtk::TreeViewColumn::get_expand</a> () const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000296"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1TreeViewColumn.html#1de1f0cbd818083b9077b101250389c5">Gtk::TreeViewColumn::set_expand</a> (bool expand=true) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000298"></a> <dl>
<dt>Class <a class="el" href="classGtk_1_1UIManager.html">Gtk::UIManager</a> </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000314"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1UIManager.html#d1377c506a357a7587d5e2bb5377881c">Gtk::UIManager::add_ui_from_file</a> (const <a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1ustring.html">Glib::ustring</a>& filename) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000313"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1UIManager.html#403582b15c37408abaa868692d6a7abd">Gtk::UIManager::add_ui_from_string</a> (const <a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1ustring.html">Glib::ustring</a>& buffer) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000315"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1UIManager.html#19b05ae50b353b39b60f467008c0c827">Gtk::UIManager::add_ui_separator</a> (ui_merge_id merge_id, const <a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1ustring.html">Glib::ustring</a>& path, const <a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1ustring.html">Glib::ustring</a>& name="", UIManagerItemType type=GtkUI_MANAGER_AUTO, bool top=true) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000318"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1UIManager.html#a3a3f4e8bdd7488eab875e9bbfd2ae15">Gtk::UIManager::ensure_update</a> () </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000306"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1UIManager.html#16a553de551b2c12717691eb6d1ef97d">Gtk::UIManager::get_accel_group</a> () const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000305"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1UIManager.html#56f55fb4e8428dbc65c49cf1229775c4">Gtk::UIManager::get_accel_group</a> () </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000312"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1UIManager.html#4f7a48f5c97e147363d4477b878fbc1f">Gtk::UIManager::get_action</a> (const <a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1ustring.html">Glib::ustring</a>& path) const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000311"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1UIManager.html#5486fde7529fd2f6e0cfbea2780e5d32">Gtk::UIManager::get_action</a> (const <a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1ustring.html">Glib::ustring</a>& path) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000304"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1UIManager.html#71c51950f822f06cec1eccf144e11d14">Gtk::UIManager::get_action_groups</a> () const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000303"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1UIManager.html#b0fcfc16bf3763645b083848d5f5f33b">Gtk::UIManager::get_action_groups</a> () </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000300"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1UIManager.html#2f1357b84ffedff06b1110c6034792b0">Gtk::UIManager::get_add_tearoffs</a> () const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000310"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1UIManager.html#287a0c3fb6d458595eaf223e04461246">Gtk::UIManager::get_toplevels</a> (UIManagerItemType types) const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000309"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1UIManager.html#af34fa7155944190cf80432e7bccbd52">Gtk::UIManager::get_toplevels</a> (UIManagerItemType types) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000317"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1UIManager.html#88c007b1bba2216ef2930be00fdaaca8">Gtk::UIManager::get_ui</a> () const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000308"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1UIManager.html#8fc846746c07b3cec644f40017800af8">Gtk::UIManager::get_widget</a> (const <a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1ustring.html">Glib::ustring</a>& path) const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000307"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1UIManager.html#93357a4791e1740610fadb0ba088cbf3">Gtk::UIManager::get_widget</a> (const <a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1ustring.html">Glib::ustring</a>& path) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000301"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1UIManager.html#50cc8ee94cb48ddef6516883a0dd9047">Gtk::UIManager::insert_action_group</a> (const Glib::RefPtr<ActionGroup>& action_group, int pos=0) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000319"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1UIManager.html#c5cb767d3ba718492972e7f9c5f02fb7">Gtk::UIManager::new_merge_id</a> () </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000302"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1UIManager.html#13551c32d6aa054c8c6771086727c576">Gtk::UIManager::remove_action_group</a> (const Glib::RefPtr<ActionGroup>& action_group) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000316"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1UIManager.html#0611594aa9d4df6febe90dbb9fe2fd21">Gtk::UIManager::remove_ui</a> (ui_merge_id merge_id) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000299"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1UIManager.html#aaa2dd331a1a300e21e8b61b1e9f6c46">Gtk::UIManager::set_add_tearoffs</a> (bool add_tearoffs=true) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000322"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1Widget.html#dccc7e5666cb846546d0fa74e4a9a6a5">Gtk::Widget::add_mnemonic_label</a> (Widget& label) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000325"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1Widget.html#84154ca2d0ae7f35a784471e1c9ce80d">Gtk::Widget::get_no_show_all</a> () const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000321"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1Widget.html#41e234c73cd9fd19f84916790daa62db">Gtk::Widget::list_mnemonic_labels</a> () const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000320"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1Widget.html#d51a2172aed03f55a03c26591a9b2273">Gtk::Widget::list_mnemonic_labels</a> () </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000324"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1Widget.html#a6b83d447bd58b0a99d4a3f0206a1fa7">Gtk::Widget::queue_resize_no_redraw</a> () </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000323"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1Widget.html#ae9b5c7d8815bfb16114a2796a4513b0">Gtk::Widget::remove_mnemonic_label</a> (Widget& label) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000326"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1Widget.html#806bd24b81722743c330d0c8fa5bf647">Gtk::Widget::set_no_show_all</a> (bool no_show_all=true) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000010"></a> <dl>
<dt>Member <a class="el" href="classGdk_1_1Window.html#6883057f08db91041599adcf8aba7d44">Gdk::Window::get_group</a> () const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000009"></a> <dl>
<dt>Member <a class="el" href="classGdk_1_1Window.html#d151acb64c1a34158cd3ace71889f260">Gdk::Window::get_group</a> () </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000013"></a> <dl>
<dt>Member <a class="el" href="classGdk_1_1Window.html#cb1d7d6cbd6691a38b699a39d2eecc30">Gdk::Window::set_accept_focus</a> (bool accept_focus=true) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000011"></a> <dl>
<dt>Member <a class="el" href="classGdk_1_1Window.html#2e961a8cba7b796e7787ab1857340ded">Gdk::Window::set_keep_above</a> (bool setting=true) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000012"></a> <dl>
<dt>Member <a class="el" href="classGdk_1_1Window.html#1e740ff027fc23170a1fd3cd12cbd3d0">Gdk::Window::set_keep_below</a> (bool setting=true) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000328"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1Window.html#f502edb93c1d6766da34abb7b03cee9b">Gtk::Window::get_accept_focus</a> () const </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000327"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1Window.html#9fc2a01d8aa1ab126060d9f363b5d8c5">Gtk::Window::set_accept_focus</a> (bool setting=true) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000329"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1Window.html#355e4704d6b2f24de627f182946f8782">Gtk::Window::set_default_icon</a> (const Glib::RefPtr<Gdk::Pixbuf>& icon) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000330"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1Window.html#1233d35c8c1108ed4446c4b0c8d97e35">Gtk::Window::set_keep_above</a> (bool setting=true) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000331"></a> <dl>
<dt>Member <a class="el" href="classGtk_1_1Window.html#d671b4dcca5e8e659b9126e0deed74f2">Gtk::Window::set_keep_below</a> (bool setting=true) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000014"></a> <dl>
<dt>Member <a class="el" href="namespaceGtk_1_1AccelMap.html#ab88799290240d3b9f95ea5a8db296a0">Gtk::AccelMap::lock_path</a> (const std::string& accel_path) </dt>
<dd></dd>
</dl>
<p>
<a class="anchor" name="_newin2p4s000015"></a> <dl>
<dt>Member <a class="el" href="namespaceGtk_1_1AccelMap.html#34e0669e9f2eb96abeaba309d751f535">Gtk::AccelMap::unlock_path</a> (const std::string& accel_path) </dt>
<dd></dd>
</dl>
</div>
<!-- end main content -->
<hr><address><small>
Generated for gtkmm 2.4 by <a href="http://www.doxygen.org/index.html">
Doxygen</a> 1.5.1 © 1997-2001</small></address>
</body>
</html>
|