1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" content="Doxygen 1.8.11"/>
<title>gtkmm: Gtk::Window Class Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectalign" style="padding-left: 0.5em;">
<div id="projectname">gtkmm
 <span id="projectnumber">2.24.4</span>
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.11 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main Page</span></a></li>
<li><a href="pages.html"><span>Related Pages</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li><a href="namespaces.html"><span>Namespaces</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class List</span></a></li>
<li><a href="classes.html"><span>Class Index</span></a></li>
<li><a href="inherits.html"><span>Class Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><a class="el" href="namespaceGtk.html">Gtk</a></li><li class="navelem"><a class="el" href="classGtk_1_1Window.html">Window</a></li> </ul>
</div>
</div><!-- top -->
<div class="header">
<div class="summary">
<a href="#pub-methods">Public Member Functions</a> |
<a href="#pub-static-methods">Static Public Member Functions</a> |
<a href="#pro-methods">Protected Member Functions</a> |
<a href="#related">Related Functions</a> |
<a href="classGtk_1_1Window-members.html">List of all members</a> </div>
<div class="headertitle">
<div class="title">Gtk::Window Class Reference<div class="ingroups"><a class="el" href="group__Widgets.html">Widgets</a></div></div> </div>
</div><!--header-->
<div class="contents">
<p>Toplevel <a class="el" href="classGtk_1_1Window.html" title="Toplevel Window This represents all widgets which are physical windows controlled by the window manag...">Window</a> This represents all widgets which are physical windows controlled by the window manager.
<a href="classGtk_1_1Window.html#details">More...</a></p>
<div class="dynheader">
Inheritance diagram for Gtk::Window:</div>
<div class="dyncontent">
<div class="center"><img src="classGtk_1_1Window__inherit__graph.png" border="0" usemap="#Gtk_1_1Window_inherit__map" alt="Inheritance graph"/></div>
<map name="Gtk_1_1Window_inherit__map" id="Gtk_1_1Window_inherit__map">
<area shape="rect" id="node11" href="classGtk_1_1Assistant.html" title="A widget used to guide users through multi-step operations. " alt="" coords="1214,183,1315,209"/>
<area shape="rect" id="node12" href="classGtk_1_1Dialog.html" title="Create popup windows. " alt="" coords="1222,233,1307,260"/>
<area shape="rect" id="node23" href="classGtk_1_1OffscreenWindow.html" title="A top-level container widget used to manage offscreen rendering of child widgets. ..." alt="" coords="1191,284,1339,311"/>
<area shape="rect" id="node24" href="classGtk_1_1Plug.html" title="Gtk::Plug" alt="" coords="1227,335,1302,361"/>
<area shape="rect" id="node2" href="classGtk_1_1Bin.html" title="A container with just one child. " alt="" coords="932,259,1000,285"/>
<area shape="rect" id="node3" href="classGtk_1_1Container.html" title="Abstract container class. " alt="" coords="780,259,884,285"/>
<area shape="rect" id="node4" href="classGtk_1_1Widget.html" title="Abstract Widget (Base class for all widgets) " alt="" coords="643,259,732,285"/>
<area shape="rect" id="node5" href="classGtk_1_1Object.html" title="Gtk::Object is the base class for all widgets, and for a few non-widget objects such as Gtk::Adjustme..." alt="" coords="491,233,578,260"/>
<area shape="rect" id="node6" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html" title="Glib::Object" alt="" coords="331,233,420,260"/>
<area shape="rect" id="node7" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html" title="Glib::ObjectBase" alt="" coords="157,259,276,285"/>
<area shape="rect" id="node10" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Interface.html" title="Glib::Interface" alt="" coords="324,284,427,311"/>
<area shape="rect" id="node8" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html" title="sigc::trackable" alt="" coords="5,259,109,285"/>
<area shape="rect" id="node9" doxygen="atkmm-1.6.tag:http://library.gnome.org/devel/atkmm/unstable/" href="http://library.gnome.org/devel/atkmm/unstable/classAtk_1_1Implementor.html" title="Atk::Implementor" alt="" coords="475,284,595,311"/>
<area shape="rect" id="node13" href="classGtk_1_1AboutDialog.html" title="The AboutDialog offers a simple way to display information about a program like its logo..." alt="" coords="1415,5,1533,32"/>
<area shape="rect" id="node14" href="classGtk_1_1ColorSelectionDialog.html" title="This dialog allows the user to select a color. " alt="" coords="1389,56,1559,83"/>
<area shape="rect" id="node15" href="classGtk_1_1FileChooserDialog.html" title="Convenient file chooser window. " alt="" coords="1397,107,1551,133"/>
<area shape="rect" id="node16" href="classGtk_1_1FileSelection.html" title="Prompt the user for a file or directory name. " alt="" coords="1412,157,1536,184"/>
<area shape="rect" id="node17" href="classGtk_1_1FontSelectionDialog.html" title="A dialog box for selecting fonts. " alt="" coords="1391,208,1557,235"/>
<area shape="rect" id="node18" href="classGtk_1_1InputDialog.html" title="Gtk::InputDialog" alt="" coords="1417,259,1531,285"/>
<area shape="rect" id="node19" href="classGtk_1_1MessageDialog.html" title="Convenient message window. " alt="" coords="1406,309,1542,336"/>
<area shape="rect" id="node20" href="classGtk_1_1PageSetupUnixDialog.html" title="PageSetupUnixDialog implements a page setup dialog for platforms which don't provide a native page se..." alt="" coords="1387,360,1561,387"/>
<area shape="rect" id="node21" href="classGtk_1_1PrintUnixDialog.html" title="PrintUnixDialog implements a print dialog for platforms which don't provide a native print dialog..." alt="" coords="1405,411,1543,437"/>
<area shape="rect" id="node22" href="classGtk_1_1RecentChooserDialog.html" title="RecentChooserDialog is a dialog box suitable for displaying the recently used documents. " alt="" coords="1387,461,1561,488"/>
</map>
<center><span class="legend">[<a href="graph_legend.html">legend</a>]</span></center></div>
<div class="dynheader">
Collaboration diagram for Gtk::Window:</div>
<div class="dyncontent">
<div class="center"><img src="classGtk_1_1Window__coll__graph.png" border="0" usemap="#Gtk_1_1Window_coll__map" alt="Collaboration graph"/></div>
<map name="Gtk_1_1Window_coll__map" id="Gtk_1_1Window_coll__map">
<area shape="rect" id="node2" href="classGtk_1_1Bin.html" title="A container with just one child. " alt="" coords="79,453,147,480"/>
<area shape="rect" id="node3" href="classGtk_1_1Container.html" title="Abstract container class. " alt="" coords="61,379,165,405"/>
<area shape="rect" id="node4" href="classGtk_1_1Widget.html" title="Abstract Widget (Base class for all widgets) " alt="" coords="68,304,157,331"/>
<area shape="rect" id="node5" href="classGtk_1_1Object.html" title="Gtk::Object is the base class for all widgets, and for a few non-widget objects such as Gtk::Adjustme..." alt="" coords="5,229,92,256"/>
<area shape="rect" id="node6" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html" title="Glib::Object" alt="" coords="5,155,95,181"/>
<area shape="rect" id="node7" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html" title="Glib::ObjectBase" alt="" coords="51,80,169,107"/>
<area shape="rect" id="node10" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Interface.html" title="Glib::Interface" alt="" coords="123,155,225,181"/>
<area shape="rect" id="node8" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html" title="sigc::trackable" alt="" coords="58,5,162,32"/>
<area shape="rect" id="node9" doxygen="atkmm-1.6.tag:http://library.gnome.org/devel/atkmm/unstable/" href="http://library.gnome.org/devel/atkmm/unstable/classAtk_1_1Implementor.html" title="Atk::Implementor" alt="" coords="117,229,237,256"/>
</map>
<center><span class="legend">[<a href="graph_legend.html">legend</a>]</span></center></div>
<table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-methods"></a>
Public Member Functions</h2></td></tr>
<tr class="memitem:a00a05cbd643be38f2f231e1712c8c6d2"><td class="memItemLeft" align="right" valign="top">virtual </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a00a05cbd643be38f2f231e1712c8c6d2">~Window</a> ()</td></tr>
<tr class="separator:a00a05cbd643be38f2f231e1712c8c6d2"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a467102527550b51eb4036390caeedb5c"><td class="memItemLeft" align="right" valign="top">GtkWindow* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a467102527550b51eb4036390caeedb5c">gobj</a> ()</td></tr>
<tr class="memdesc:a467102527550b51eb4036390caeedb5c"><td class="mdescLeft"> </td><td class="mdescRight">Provides access to the underlying C GtkObject. <a href="#a467102527550b51eb4036390caeedb5c">More...</a><br /></td></tr>
<tr class="separator:a467102527550b51eb4036390caeedb5c"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:afe314a1e65505be026688060dc98ad3a"><td class="memItemLeft" align="right" valign="top">const GtkWindow* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#afe314a1e65505be026688060dc98ad3a">gobj</a> () const </td></tr>
<tr class="memdesc:afe314a1e65505be026688060dc98ad3a"><td class="mdescLeft"> </td><td class="mdescRight">Provides access to the underlying C GtkObject. <a href="#afe314a1e65505be026688060dc98ad3a">More...</a><br /></td></tr>
<tr class="separator:afe314a1e65505be026688060dc98ad3a"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa3273081166e86df1850738a17ecdb09"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#aa3273081166e86df1850738a17ecdb09">Window</a> (<a class="el" href="group__gtkmmEnums.html#ga8c724168aabf37953fbb194b35ad250f">WindowType</a> type=<a class="el" href="group__gtkmmEnums.html#gga8c724168aabf37953fbb194b35ad250fa755ae9e09ad10c7da7b3bc6131522a05">WINDOW_TOPLEVEL</a>)</td></tr>
<tr class="separator:aa3273081166e86df1850738a17ecdb09"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab9cdc2523019726b09d820d9592d859a"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< <a class="el" href="group__gtkmmEnums.html#ga8c724168aabf37953fbb194b35ad250f">WindowType</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#ab9cdc2523019726b09d820d9592d859a">property_type</a> () const </td></tr>
<tr class="memdesc:ab9cdc2523019726b09d820d9592d859a"><td class="mdescLeft"> </td><td class="mdescRight">The type of the window. <a href="#ab9cdc2523019726b09d820d9592d859a">More...</a><br /></td></tr>
<tr class="separator:ab9cdc2523019726b09d820d9592d859a"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5e2f6d0cb6222820b76e66ea3ffc9d2e"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a5e2f6d0cb6222820b76e66ea3ffc9d2e">property_title</a> ()</td></tr>
<tr class="memdesc:a5e2f6d0cb6222820b76e66ea3ffc9d2e"><td class="mdescLeft"> </td><td class="mdescRight">The title of the window. <a href="#a5e2f6d0cb6222820b76e66ea3ffc9d2e">More...</a><br /></td></tr>
<tr class="separator:a5e2f6d0cb6222820b76e66ea3ffc9d2e"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a0f9533eef8c793e72df15f97d9a01b6c"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a0f9533eef8c793e72df15f97d9a01b6c">property_title</a> () const </td></tr>
<tr class="memdesc:a0f9533eef8c793e72df15f97d9a01b6c"><td class="mdescLeft"> </td><td class="mdescRight">The title of the window. <a href="#a0f9533eef8c793e72df15f97d9a01b6c">More...</a><br /></td></tr>
<tr class="separator:a0f9533eef8c793e72df15f97d9a01b6c"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae475322dcbef74f5e6c6b110c95df951"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__WriteOnly.html">Glib::PropertyProxy_WriteOnly</a>< <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#ae475322dcbef74f5e6c6b110c95df951">property_startup_id</a> ()</td></tr>
<tr class="memdesc:ae475322dcbef74f5e6c6b110c95df951"><td class="mdescLeft"> </td><td class="mdescRight">Unique startup identifier for the window used by startup-notification. <a href="#ae475322dcbef74f5e6c6b110c95df951">More...</a><br /></td></tr>
<tr class="separator:ae475322dcbef74f5e6c6b110c95df951"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a6ffd6f3bfbde26f6be8887684e299e9a"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< bool > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a6ffd6f3bfbde26f6be8887684e299e9a">property_allow_shrink</a> ()</td></tr>
<tr class="memdesc:a6ffd6f3bfbde26f6be8887684e299e9a"><td class="mdescLeft"> </td><td class="mdescRight">If TRUE, the window has no mimimum size. <a href="#a6ffd6f3bfbde26f6be8887684e299e9a">More...</a><br /></td></tr>
<tr class="separator:a6ffd6f3bfbde26f6be8887684e299e9a"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad69bb271b136c49dece0277145d1aac9"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< bool > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#ad69bb271b136c49dece0277145d1aac9">property_allow_shrink</a> () const </td></tr>
<tr class="memdesc:ad69bb271b136c49dece0277145d1aac9"><td class="mdescLeft"> </td><td class="mdescRight">If TRUE, the window has no mimimum size. <a href="#ad69bb271b136c49dece0277145d1aac9">More...</a><br /></td></tr>
<tr class="separator:ad69bb271b136c49dece0277145d1aac9"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2da64701781034fabdafea50122cca1b"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< bool > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a2da64701781034fabdafea50122cca1b">property_allow_grow</a> ()</td></tr>
<tr class="memdesc:a2da64701781034fabdafea50122cca1b"><td class="mdescLeft"> </td><td class="mdescRight">If TRUE, users can expand the window beyond its minimum size. <a href="#a2da64701781034fabdafea50122cca1b">More...</a><br /></td></tr>
<tr class="separator:a2da64701781034fabdafea50122cca1b"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a19898e90c753c3310e46d4fb3a0ea1b1"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< bool > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a19898e90c753c3310e46d4fb3a0ea1b1">property_allow_grow</a> () const </td></tr>
<tr class="memdesc:a19898e90c753c3310e46d4fb3a0ea1b1"><td class="mdescLeft"> </td><td class="mdescRight">If TRUE, users can expand the window beyond its minimum size. <a href="#a19898e90c753c3310e46d4fb3a0ea1b1">More...</a><br /></td></tr>
<tr class="separator:a19898e90c753c3310e46d4fb3a0ea1b1"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aff0e464d74986442844442b6e4d3457d"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< bool > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#aff0e464d74986442844442b6e4d3457d">property_resizable</a> ()</td></tr>
<tr class="memdesc:aff0e464d74986442844442b6e4d3457d"><td class="mdescLeft"> </td><td class="mdescRight">If TRUE, users can resize the window. <a href="#aff0e464d74986442844442b6e4d3457d">More...</a><br /></td></tr>
<tr class="separator:aff0e464d74986442844442b6e4d3457d"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a322035ace7ae2664f4bf0d31741840a2"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< bool > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a322035ace7ae2664f4bf0d31741840a2">property_resizable</a> () const </td></tr>
<tr class="memdesc:a322035ace7ae2664f4bf0d31741840a2"><td class="mdescLeft"> </td><td class="mdescRight">If TRUE, users can resize the window. <a href="#a322035ace7ae2664f4bf0d31741840a2">More...</a><br /></td></tr>
<tr class="separator:a322035ace7ae2664f4bf0d31741840a2"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af0b2dadb08e50d80aa6ddabba7c87194"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< bool > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#af0b2dadb08e50d80aa6ddabba7c87194">property_modal</a> ()</td></tr>
<tr class="memdesc:af0b2dadb08e50d80aa6ddabba7c87194"><td class="mdescLeft"> </td><td class="mdescRight">If TRUE, the window is modal (other windows are not usable while this one is up). <a href="#af0b2dadb08e50d80aa6ddabba7c87194">More...</a><br /></td></tr>
<tr class="separator:af0b2dadb08e50d80aa6ddabba7c87194"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1885c856bd379d4752c274853127e54d"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< bool > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a1885c856bd379d4752c274853127e54d">property_modal</a> () const </td></tr>
<tr class="memdesc:a1885c856bd379d4752c274853127e54d"><td class="mdescLeft"> </td><td class="mdescRight">If TRUE, the window is modal (other windows are not usable while this one is up). <a href="#a1885c856bd379d4752c274853127e54d">More...</a><br /></td></tr>
<tr class="separator:a1885c856bd379d4752c274853127e54d"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a94ee36871572c82c3cd9c46e0b4fb735"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< <a class="el" href="group__gtkmmEnums.html#gabfa67443f852c48477b2d55b15982e21">WindowPosition</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a94ee36871572c82c3cd9c46e0b4fb735">property_window_position</a> ()</td></tr>
<tr class="memdesc:a94ee36871572c82c3cd9c46e0b4fb735"><td class="mdescLeft"> </td><td class="mdescRight">The initial position of the window. <a href="#a94ee36871572c82c3cd9c46e0b4fb735">More...</a><br /></td></tr>
<tr class="separator:a94ee36871572c82c3cd9c46e0b4fb735"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9623d6475b7556945877a240f3b8cff8"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< <a class="el" href="group__gtkmmEnums.html#gabfa67443f852c48477b2d55b15982e21">WindowPosition</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a9623d6475b7556945877a240f3b8cff8">property_window_position</a> () const </td></tr>
<tr class="memdesc:a9623d6475b7556945877a240f3b8cff8"><td class="mdescLeft"> </td><td class="mdescRight">The initial position of the window. <a href="#a9623d6475b7556945877a240f3b8cff8">More...</a><br /></td></tr>
<tr class="separator:a9623d6475b7556945877a240f3b8cff8"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5ff52412ac909b78d61534670ccbaf83"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< int > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a5ff52412ac909b78d61534670ccbaf83">property_default_width</a> ()</td></tr>
<tr class="memdesc:a5ff52412ac909b78d61534670ccbaf83"><td class="mdescLeft"> </td><td class="mdescRight">The default width of the window, used when initially showing the window. <a href="#a5ff52412ac909b78d61534670ccbaf83">More...</a><br /></td></tr>
<tr class="separator:a5ff52412ac909b78d61534670ccbaf83"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac755ae54409172b3ee34b8454647a56f"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< int > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#ac755ae54409172b3ee34b8454647a56f">property_default_width</a> () const </td></tr>
<tr class="memdesc:ac755ae54409172b3ee34b8454647a56f"><td class="mdescLeft"> </td><td class="mdescRight">The default width of the window, used when initially showing the window. <a href="#ac755ae54409172b3ee34b8454647a56f">More...</a><br /></td></tr>
<tr class="separator:ac755ae54409172b3ee34b8454647a56f"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a316a5b09a17727844dafd176db341ee0"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< int > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a316a5b09a17727844dafd176db341ee0">property_default_height</a> ()</td></tr>
<tr class="memdesc:a316a5b09a17727844dafd176db341ee0"><td class="mdescLeft"> </td><td class="mdescRight">The default height of the window, used when initially showing the window. <a href="#a316a5b09a17727844dafd176db341ee0">More...</a><br /></td></tr>
<tr class="separator:a316a5b09a17727844dafd176db341ee0"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4f2f47a6c544818da89fbc149c21091c"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< int > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a4f2f47a6c544818da89fbc149c21091c">property_default_height</a> () const </td></tr>
<tr class="memdesc:a4f2f47a6c544818da89fbc149c21091c"><td class="mdescLeft"> </td><td class="mdescRight">The default height of the window, used when initially showing the window. <a href="#a4f2f47a6c544818da89fbc149c21091c">More...</a><br /></td></tr>
<tr class="separator:a4f2f47a6c544818da89fbc149c21091c"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad2441478aabc311118d0bbb7247e96cd"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< bool > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#ad2441478aabc311118d0bbb7247e96cd">property_destroy_with_parent</a> ()</td></tr>
<tr class="memdesc:ad2441478aabc311118d0bbb7247e96cd"><td class="mdescLeft"> </td><td class="mdescRight">If this window should be destroyed when the parent is destroyed. <a href="#ad2441478aabc311118d0bbb7247e96cd">More...</a><br /></td></tr>
<tr class="separator:ad2441478aabc311118d0bbb7247e96cd"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:afaad843d2a00c9772125626ba5513c9c"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< bool > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#afaad843d2a00c9772125626ba5513c9c">property_destroy_with_parent</a> () const </td></tr>
<tr class="memdesc:afaad843d2a00c9772125626ba5513c9c"><td class="mdescLeft"> </td><td class="mdescRight">If this window should be destroyed when the parent is destroyed. <a href="#afaad843d2a00c9772125626ba5513c9c">More...</a><br /></td></tr>
<tr class="separator:afaad843d2a00c9772125626ba5513c9c"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a6f815ca5a742d06b5f636d2db481774c"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGdk_1_1Pixbuf.html">Gdk::Pixbuf</a> > > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a6f815ca5a742d06b5f636d2db481774c">property_icon</a> ()</td></tr>
<tr class="memdesc:a6f815ca5a742d06b5f636d2db481774c"><td class="mdescLeft"> </td><td class="mdescRight">Icon for this window. <a href="#a6f815ca5a742d06b5f636d2db481774c">More...</a><br /></td></tr>
<tr class="separator:a6f815ca5a742d06b5f636d2db481774c"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a27b6b9ec07d45a7901f59ecb41df3549"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGdk_1_1Pixbuf.html">Gdk::Pixbuf</a> > > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a27b6b9ec07d45a7901f59ecb41df3549">property_icon</a> () const </td></tr>
<tr class="memdesc:a27b6b9ec07d45a7901f59ecb41df3549"><td class="mdescLeft"> </td><td class="mdescRight">Icon for this window. <a href="#a27b6b9ec07d45a7901f59ecb41df3549">More...</a><br /></td></tr>
<tr class="separator:a27b6b9ec07d45a7901f59ecb41df3549"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a10ca629f2b9835f8b060727e5f8c217a"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< bool > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a10ca629f2b9835f8b060727e5f8c217a">property_mnemonics_visible</a> ()</td></tr>
<tr class="memdesc:a10ca629f2b9835f8b060727e5f8c217a"><td class="mdescLeft"> </td><td class="mdescRight">Whether mnemonics are currently visible in this window. <a href="#a10ca629f2b9835f8b060727e5f8c217a">More...</a><br /></td></tr>
<tr class="separator:a10ca629f2b9835f8b060727e5f8c217a"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad4657287025b18d3dbe68be2a69c34c9"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< bool > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#ad4657287025b18d3dbe68be2a69c34c9">property_mnemonics_visible</a> () const </td></tr>
<tr class="memdesc:ad4657287025b18d3dbe68be2a69c34c9"><td class="mdescLeft"> </td><td class="mdescRight">Whether mnemonics are currently visible in this window. <a href="#ad4657287025b18d3dbe68be2a69c34c9">More...</a><br /></td></tr>
<tr class="separator:ad4657287025b18d3dbe68be2a69c34c9"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a61b485e2dfcfd60a129c258ab1a78820"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a61b485e2dfcfd60a129c258ab1a78820">property_icon_name</a> ()</td></tr>
<tr class="memdesc:a61b485e2dfcfd60a129c258ab1a78820"><td class="mdescLeft"> </td><td class="mdescRight">Name of the themed icon for this window. <a href="#a61b485e2dfcfd60a129c258ab1a78820">More...</a><br /></td></tr>
<tr class="separator:a61b485e2dfcfd60a129c258ab1a78820"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2acea03c44c7780255f2f364e3d4a8da"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a2acea03c44c7780255f2f364e3d4a8da">property_icon_name</a> () const </td></tr>
<tr class="memdesc:a2acea03c44c7780255f2f364e3d4a8da"><td class="mdescLeft"> </td><td class="mdescRight">Name of the themed icon for this window. <a href="#a2acea03c44c7780255f2f364e3d4a8da">More...</a><br /></td></tr>
<tr class="separator:a2acea03c44c7780255f2f364e3d4a8da"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a02775b4be90428c53359834fbc1d6d6f"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGdk_1_1Screen.html">Gdk::Screen</a> > > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a02775b4be90428c53359834fbc1d6d6f">property_screen</a> ()</td></tr>
<tr class="memdesc:a02775b4be90428c53359834fbc1d6d6f"><td class="mdescLeft"> </td><td class="mdescRight">The screen where this window will be displayed. <a href="#a02775b4be90428c53359834fbc1d6d6f">More...</a><br /></td></tr>
<tr class="separator:a02775b4be90428c53359834fbc1d6d6f"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a46d4ec8b50289a45c488e856177c9126"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGdk_1_1Screen.html">Gdk::Screen</a> > > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a46d4ec8b50289a45c488e856177c9126">property_screen</a> () const </td></tr>
<tr class="memdesc:a46d4ec8b50289a45c488e856177c9126"><td class="mdescLeft"> </td><td class="mdescRight">The screen where this window will be displayed. <a href="#a46d4ec8b50289a45c488e856177c9126">More...</a><br /></td></tr>
<tr class="separator:a46d4ec8b50289a45c488e856177c9126"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a180c39b4df322786aeb19cfb3fed03c3"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< bool > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a180c39b4df322786aeb19cfb3fed03c3">property_is_active</a> () const </td></tr>
<tr class="memdesc:a180c39b4df322786aeb19cfb3fed03c3"><td class="mdescLeft"> </td><td class="mdescRight">Whether the toplevel is the current active window. <a href="#a180c39b4df322786aeb19cfb3fed03c3">More...</a><br /></td></tr>
<tr class="separator:a180c39b4df322786aeb19cfb3fed03c3"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5c94024a3804f7db63095fceae06c352"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< bool > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a5c94024a3804f7db63095fceae06c352">property_has_toplevel_focus</a> () const </td></tr>
<tr class="memdesc:a5c94024a3804f7db63095fceae06c352"><td class="mdescLeft"> </td><td class="mdescRight">Whether the input focus is within this GtkWindow. <a href="#a5c94024a3804f7db63095fceae06c352">More...</a><br /></td></tr>
<tr class="separator:a5c94024a3804f7db63095fceae06c352"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:abe5ff8be0ba9f36b3f4ec223abfb159a"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< GdkWindowTypeHint > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#abe5ff8be0ba9f36b3f4ec223abfb159a">property_type_hint</a> ()</td></tr>
<tr class="memdesc:abe5ff8be0ba9f36b3f4ec223abfb159a"><td class="mdescLeft"> </td><td class="mdescRight">Hint to help the desktop environment understand what kind of window this is and how to treat it. <a href="#abe5ff8be0ba9f36b3f4ec223abfb159a">More...</a><br /></td></tr>
<tr class="separator:abe5ff8be0ba9f36b3f4ec223abfb159a"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:adffd6d7dc6a689be7bb19a030e7433ef"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< GdkWindowTypeHint > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#adffd6d7dc6a689be7bb19a030e7433ef">property_type_hint</a> () const </td></tr>
<tr class="memdesc:adffd6d7dc6a689be7bb19a030e7433ef"><td class="mdescLeft"> </td><td class="mdescRight">Hint to help the desktop environment understand what kind of window this is and how to treat it. <a href="#adffd6d7dc6a689be7bb19a030e7433ef">More...</a><br /></td></tr>
<tr class="separator:adffd6d7dc6a689be7bb19a030e7433ef"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a7d287695f11f4d799bbfe0880e072eef"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< bool > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a7d287695f11f4d799bbfe0880e072eef">property_skip_taskbar_hint</a> ()</td></tr>
<tr class="memdesc:a7d287695f11f4d799bbfe0880e072eef"><td class="mdescLeft"> </td><td class="mdescRight">TRUE if the window should not be in the task bar. <a href="#a7d287695f11f4d799bbfe0880e072eef">More...</a><br /></td></tr>
<tr class="separator:a7d287695f11f4d799bbfe0880e072eef"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac769938b37a8d07a65ee7357a51c9634"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< bool > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#ac769938b37a8d07a65ee7357a51c9634">property_skip_taskbar_hint</a> () const </td></tr>
<tr class="memdesc:ac769938b37a8d07a65ee7357a51c9634"><td class="mdescLeft"> </td><td class="mdescRight">TRUE if the window should not be in the task bar. <a href="#ac769938b37a8d07a65ee7357a51c9634">More...</a><br /></td></tr>
<tr class="separator:ac769938b37a8d07a65ee7357a51c9634"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5508330bacabc91f9998b7ac3a4330fc"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< bool > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a5508330bacabc91f9998b7ac3a4330fc">property_skip_pager_hint</a> ()</td></tr>
<tr class="memdesc:a5508330bacabc91f9998b7ac3a4330fc"><td class="mdescLeft"> </td><td class="mdescRight">TRUE if the window should not be in the pager. <a href="#a5508330bacabc91f9998b7ac3a4330fc">More...</a><br /></td></tr>
<tr class="separator:a5508330bacabc91f9998b7ac3a4330fc"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4bd5f8b67bc56ca12bb96e4729b31ba3"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< bool > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a4bd5f8b67bc56ca12bb96e4729b31ba3">property_skip_pager_hint</a> () const </td></tr>
<tr class="memdesc:a4bd5f8b67bc56ca12bb96e4729b31ba3"><td class="mdescLeft"> </td><td class="mdescRight">TRUE if the window should not be in the pager. <a href="#a4bd5f8b67bc56ca12bb96e4729b31ba3">More...</a><br /></td></tr>
<tr class="separator:a4bd5f8b67bc56ca12bb96e4729b31ba3"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2c0a56242e0dbe8838b519f5046d1709"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a2c0a56242e0dbe8838b519f5046d1709">property_role</a> ()</td></tr>
<tr class="memdesc:a2c0a56242e0dbe8838b519f5046d1709"><td class="mdescLeft"> </td><td class="mdescRight">Unique identifier for the window to be used when restoring a session. <a href="#a2c0a56242e0dbe8838b519f5046d1709">More...</a><br /></td></tr>
<tr class="separator:a2c0a56242e0dbe8838b519f5046d1709"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aba1252b76120a76ab321a4a9e71a83ba"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#aba1252b76120a76ab321a4a9e71a83ba">property_role</a> () const </td></tr>
<tr class="memdesc:aba1252b76120a76ab321a4a9e71a83ba"><td class="mdescLeft"> </td><td class="mdescRight">Unique identifier for the window to be used when restoring a session. <a href="#aba1252b76120a76ab321a4a9e71a83ba">More...</a><br /></td></tr>
<tr class="separator:aba1252b76120a76ab321a4a9e71a83ba"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a72e77120d08be8eaa56e6e62bf15a318"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< bool > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a72e77120d08be8eaa56e6e62bf15a318">property_decorated</a> ()</td></tr>
<tr class="memdesc:a72e77120d08be8eaa56e6e62bf15a318"><td class="mdescLeft"> </td><td class="mdescRight">Whether the window should be decorated by the window manager. <a href="#a72e77120d08be8eaa56e6e62bf15a318">More...</a><br /></td></tr>
<tr class="separator:a72e77120d08be8eaa56e6e62bf15a318"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a33662ef7416395bf5d87284206c64438"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< bool > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a33662ef7416395bf5d87284206c64438">property_decorated</a> () const </td></tr>
<tr class="memdesc:a33662ef7416395bf5d87284206c64438"><td class="mdescLeft"> </td><td class="mdescRight">Whether the window should be decorated by the window manager. <a href="#a33662ef7416395bf5d87284206c64438">More...</a><br /></td></tr>
<tr class="separator:a33662ef7416395bf5d87284206c64438"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac82f2a69edb1708bfd776df7d69d8272"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< <a class="el" href="group__gdkmmEnums.html#ga1bb9235871d434d3c55411d8261b075e">Gdk::Gravity</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#ac82f2a69edb1708bfd776df7d69d8272">property_gravity</a> ()</td></tr>
<tr class="memdesc:ac82f2a69edb1708bfd776df7d69d8272"><td class="mdescLeft"> </td><td class="mdescRight">The window gravity of the window. <a href="#ac82f2a69edb1708bfd776df7d69d8272">More...</a><br /></td></tr>
<tr class="separator:ac82f2a69edb1708bfd776df7d69d8272"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a7ed9fca2d6e4c811b0c48c073d163bbd"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< <a class="el" href="group__gdkmmEnums.html#ga1bb9235871d434d3c55411d8261b075e">Gdk::Gravity</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a7ed9fca2d6e4c811b0c48c073d163bbd">property_gravity</a> () const </td></tr>
<tr class="memdesc:a7ed9fca2d6e4c811b0c48c073d163bbd"><td class="mdescLeft"> </td><td class="mdescRight">The window gravity of the window. <a href="#a7ed9fca2d6e4c811b0c48c073d163bbd">More...</a><br /></td></tr>
<tr class="separator:a7ed9fca2d6e4c811b0c48c073d163bbd"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a47a1c6980a498888612d6cf60445cb2d"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< <a class="el" href="classGtk_1_1Window.html">Window</a>* > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a47a1c6980a498888612d6cf60445cb2d">property_transient_for</a> ()</td></tr>
<tr class="memdesc:a47a1c6980a498888612d6cf60445cb2d"><td class="mdescLeft"> </td><td class="mdescRight">The transient parent of the dialog. <a href="#a47a1c6980a498888612d6cf60445cb2d">More...</a><br /></td></tr>
<tr class="separator:a47a1c6980a498888612d6cf60445cb2d"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac0acaffdddbe5941ac5661e551ef5b3b"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< <a class="el" href="classGtk_1_1Window.html">Window</a>* > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#ac0acaffdddbe5941ac5661e551ef5b3b">property_transient_for</a> () const </td></tr>
<tr class="memdesc:ac0acaffdddbe5941ac5661e551ef5b3b"><td class="mdescLeft"> </td><td class="mdescRight">The transient parent of the dialog. <a href="#ac0acaffdddbe5941ac5661e551ef5b3b">More...</a><br /></td></tr>
<tr class="separator:ac0acaffdddbe5941ac5661e551ef5b3b"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a23830cf899967c6bc42933410a8556f1"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< double > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a23830cf899967c6bc42933410a8556f1">property_opacity</a> ()</td></tr>
<tr class="memdesc:a23830cf899967c6bc42933410a8556f1"><td class="mdescLeft"> </td><td class="mdescRight">The opacity of the window, from 0 to 1. <a href="#a23830cf899967c6bc42933410a8556f1">More...</a><br /></td></tr>
<tr class="separator:a23830cf899967c6bc42933410a8556f1"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:adf27a44ecc5687df5e6083ba2511de98"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< double > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#adf27a44ecc5687df5e6083ba2511de98">property_opacity</a> () const </td></tr>
<tr class="memdesc:adf27a44ecc5687df5e6083ba2511de98"><td class="mdescLeft"> </td><td class="mdescRight">The opacity of the window, from 0 to 1. <a href="#adf27a44ecc5687df5e6083ba2511de98">More...</a><br /></td></tr>
<tr class="separator:adf27a44ecc5687df5e6083ba2511de98"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae5a26cc9f2c4eb79f84cc0289fea8e99"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< bool > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#ae5a26cc9f2c4eb79f84cc0289fea8e99">property_urgency_hint</a> ()</td></tr>
<tr class="memdesc:ae5a26cc9f2c4eb79f84cc0289fea8e99"><td class="mdescLeft"> </td><td class="mdescRight">TRUE if the window should be brought to the user's attention. <a href="#ae5a26cc9f2c4eb79f84cc0289fea8e99">More...</a><br /></td></tr>
<tr class="separator:ae5a26cc9f2c4eb79f84cc0289fea8e99"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a99dd2fad04c6953dcc0a24196c622f2d"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< bool > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a99dd2fad04c6953dcc0a24196c622f2d">property_urgency_hint</a> () const </td></tr>
<tr class="memdesc:a99dd2fad04c6953dcc0a24196c622f2d"><td class="mdescLeft"> </td><td class="mdescRight">TRUE if the window should be brought to the user's attention. <a href="#a99dd2fad04c6953dcc0a24196c622f2d">More...</a><br /></td></tr>
<tr class="separator:a99dd2fad04c6953dcc0a24196c622f2d"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:afbbfb9c240f9a124cd28e5b69f41b3f5"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< bool > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#afbbfb9c240f9a124cd28e5b69f41b3f5">property_accept_focus</a> ()</td></tr>
<tr class="memdesc:afbbfb9c240f9a124cd28e5b69f41b3f5"><td class="mdescLeft"> </td><td class="mdescRight">TRUE if the window should receive the input focus. <a href="#afbbfb9c240f9a124cd28e5b69f41b3f5">More...</a><br /></td></tr>
<tr class="separator:afbbfb9c240f9a124cd28e5b69f41b3f5"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1f25cd02ae126874409a4910ebe8d459"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< bool > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a1f25cd02ae126874409a4910ebe8d459">property_accept_focus</a> () const </td></tr>
<tr class="memdesc:a1f25cd02ae126874409a4910ebe8d459"><td class="mdescLeft"> </td><td class="mdescRight">TRUE if the window should receive the input focus. <a href="#a1f25cd02ae126874409a4910ebe8d459">More...</a><br /></td></tr>
<tr class="separator:a1f25cd02ae126874409a4910ebe8d459"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:adfc55532fd732782aedfe59ed653e87b"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< bool > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#adfc55532fd732782aedfe59ed653e87b">property_focus_on_map</a> ()</td></tr>
<tr class="memdesc:adfc55532fd732782aedfe59ed653e87b"><td class="mdescLeft"> </td><td class="mdescRight">TRUE if the window should receive the input focus when mapped. <a href="#adfc55532fd732782aedfe59ed653e87b">More...</a><br /></td></tr>
<tr class="separator:adfc55532fd732782aedfe59ed653e87b"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9caa021260c6e0306629de3249aa9f57"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< bool > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a9caa021260c6e0306629de3249aa9f57">property_focus_on_map</a> () const </td></tr>
<tr class="memdesc:a9caa021260c6e0306629de3249aa9f57"><td class="mdescLeft"> </td><td class="mdescRight">TRUE if the window should receive the input focus when mapped. <a href="#a9caa021260c6e0306629de3249aa9f57">More...</a><br /></td></tr>
<tr class="separator:a9caa021260c6e0306629de3249aa9f57"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae103a1bd1fb5196aea4f613bce33ee05"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< bool > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#ae103a1bd1fb5196aea4f613bce33ee05">property_deletable</a> ()</td></tr>
<tr class="memdesc:ae103a1bd1fb5196aea4f613bce33ee05"><td class="mdescLeft"> </td><td class="mdescRight">Whether the window frame should have a close button. <a href="#ae103a1bd1fb5196aea4f613bce33ee05">More...</a><br /></td></tr>
<tr class="separator:ae103a1bd1fb5196aea4f613bce33ee05"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:acdb07fd2f4afab4483fb752368e5795e"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< bool > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#acdb07fd2f4afab4483fb752368e5795e">property_deletable</a> () const </td></tr>
<tr class="memdesc:acdb07fd2f4afab4483fb752368e5795e"><td class="mdescLeft"> </td><td class="mdescRight">Whether the window frame should have a close button. <a href="#acdb07fd2f4afab4483fb752368e5795e">More...</a><br /></td></tr>
<tr class="separator:acdb07fd2f4afab4483fb752368e5795e"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a932b1c81b9c0559a60ba2b8c2b1ce179"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a932b1c81b9c0559a60ba2b8c2b1ce179">is_toplevel</a> () const </td></tr>
<tr class="separator:a932b1c81b9c0559a60ba2b8c2b1ce179"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a24dc3ad6da6c8342ba5ca0fd87d2340e"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a24dc3ad6da6c8342ba5ca0fd87d2340e">is_popup</a> () const </td></tr>
<tr class="separator:a24dc3ad6da6c8342ba5ca0fd87d2340e"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5f8db9bfe5bd90300152272692a6b0d6"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGdk_1_1Window.html">Gdk::Window</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a5f8db9bfe5bd90300152272692a6b0d6">get_frame</a> ()</td></tr>
<tr class="separator:a5f8db9bfe5bd90300152272692a6b0d6"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5d2bf8f0f11ab1aff43cfba8e083d4bf"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< const <a class="el" href="classGdk_1_1Window.html">Gdk::Window</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a5d2bf8f0f11ab1aff43cfba8e083d4bf">get_frame</a> () const </td></tr>
<tr class="separator:a5d2bf8f0f11ab1aff43cfba8e083d4bf"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a86312ebdff9e22fa5aad6a7f8fe17396"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< void, <a class="el" href="classGtk_1_1Widget.html">Widget</a>* > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a86312ebdff9e22fa5aad6a7f8fe17396">signal_set_focus</a> ()</td></tr>
<tr class="separator:a86312ebdff9e22fa5aad6a7f8fe17396"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac47ffcba20791cf3f696f300d913377c"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< bool, GdkEvent* > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#ac47ffcba20791cf3f696f300d913377c">signal_frame_event</a> ()</td></tr>
<tr class="separator:ac47ffcba20791cf3f696f300d913377c"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a10c072ee6b41d5eea0002d986aa03c07"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a10c072ee6b41d5eea0002d986aa03c07">set_title</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>& title)</td></tr>
<tr class="memdesc:a10c072ee6b41d5eea0002d986aa03c07"><td class="mdescLeft"> </td><td class="mdescRight">Sets the title of the <a class="el" href="classGtk_1_1Window.html" title="Toplevel Window This represents all widgets which are physical windows controlled by the window manag...">Gtk::Window</a>. <a href="#a10c072ee6b41d5eea0002d986aa03c07">More...</a><br /></td></tr>
<tr class="separator:a10c072ee6b41d5eea0002d986aa03c07"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aaf6a808dccae2fc202e2a3cb2d57210d"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#aaf6a808dccae2fc202e2a3cb2d57210d">get_title</a> () const </td></tr>
<tr class="memdesc:aaf6a808dccae2fc202e2a3cb2d57210d"><td class="mdescLeft"> </td><td class="mdescRight">Retrieves the title of the window. <a href="#aaf6a808dccae2fc202e2a3cb2d57210d">More...</a><br /></td></tr>
<tr class="separator:aaf6a808dccae2fc202e2a3cb2d57210d"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac6a7119c34bcfc31fdc27a8061a6f8f1"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#ac6a7119c34bcfc31fdc27a8061a6f8f1">set_wmclass</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>& wmclass_name, const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>& wmclass_class)</td></tr>
<tr class="memdesc:ac6a7119c34bcfc31fdc27a8061a6f8f1"><td class="mdescLeft"> </td><td class="mdescRight">Don't use this function. <a href="#ac6a7119c34bcfc31fdc27a8061a6f8f1">More...</a><br /></td></tr>
<tr class="separator:ac6a7119c34bcfc31fdc27a8061a6f8f1"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a0bc20c48120eb7ea4fc5e6170da050db"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a0bc20c48120eb7ea4fc5e6170da050db">set_role</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>& role)</td></tr>
<tr class="memdesc:a0bc20c48120eb7ea4fc5e6170da050db"><td class="mdescLeft"> </td><td class="mdescRight">This function is only useful on X11, not with other GTK+ targets. <a href="#a0bc20c48120eb7ea4fc5e6170da050db">More...</a><br /></td></tr>
<tr class="separator:a0bc20c48120eb7ea4fc5e6170da050db"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a68ab33adf52b35794667839954a6460e"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a68ab33adf52b35794667839954a6460e">get_role</a> () const </td></tr>
<tr class="memdesc:a68ab33adf52b35794667839954a6460e"><td class="mdescLeft"> </td><td class="mdescRight">Returns the role of the window. <a href="#a68ab33adf52b35794667839954a6460e">More...</a><br /></td></tr>
<tr class="separator:a68ab33adf52b35794667839954a6460e"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad15a4530150d8464ee06bb2218e582e9"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#ad15a4530150d8464ee06bb2218e582e9">add_accel_group</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGtk_1_1AccelGroup.html">AccelGroup</a> >& accel_group)</td></tr>
<tr class="memdesc:ad15a4530150d8464ee06bb2218e582e9"><td class="mdescLeft"> </td><td class="mdescRight">Associate <em>accel_group</em> with <em>window</em>, such that calling gtk_accel_groups_activate() on <em>window</em> will activate accelerators in <em>accel_group</em>. <a href="#ad15a4530150d8464ee06bb2218e582e9">More...</a><br /></td></tr>
<tr class="separator:ad15a4530150d8464ee06bb2218e582e9"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:afe7b9acac2c46e63948aa0bdf719dce2"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#afe7b9acac2c46e63948aa0bdf719dce2">remove_accel_group</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGtk_1_1AccelGroup.html">AccelGroup</a> >& accel_group)</td></tr>
<tr class="memdesc:afe7b9acac2c46e63948aa0bdf719dce2"><td class="mdescLeft"> </td><td class="mdescRight">Reverses the effects of <a class="el" href="classGtk_1_1Window.html#ad15a4530150d8464ee06bb2218e582e9" title="Associate accel_group with window, such that calling gtk_accel_groups_activate() on window will activ...">add_accel_group()</a>. <a href="#afe7b9acac2c46e63948aa0bdf719dce2">More...</a><br /></td></tr>
<tr class="separator:afe7b9acac2c46e63948aa0bdf719dce2"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ace2f64d36b5c1574073fc7c6e03df7a3"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#ace2f64d36b5c1574073fc7c6e03df7a3">set_position</a> (<a class="el" href="group__gtkmmEnums.html#gabfa67443f852c48477b2d55b15982e21">WindowPosition</a> position)</td></tr>
<tr class="memdesc:ace2f64d36b5c1574073fc7c6e03df7a3"><td class="mdescLeft"> </td><td class="mdescRight">Sets a position constraint for this window. <a href="#ace2f64d36b5c1574073fc7c6e03df7a3">More...</a><br /></td></tr>
<tr class="separator:ace2f64d36b5c1574073fc7c6e03df7a3"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aae55e31e4dc2925ae813c31aeddfcbe4"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#aae55e31e4dc2925ae813c31aeddfcbe4">activate_focus</a> ()</td></tr>
<tr class="memdesc:aae55e31e4dc2925ae813c31aeddfcbe4"><td class="mdescLeft"> </td><td class="mdescRight">Activates the current focused widget within the window. <a href="#aae55e31e4dc2925ae813c31aeddfcbe4">More...</a><br /></td></tr>
<tr class="separator:aae55e31e4dc2925ae813c31aeddfcbe4"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a8589880384bc7cd7b39c5bcfa6d2932a"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a8589880384bc7cd7b39c5bcfa6d2932a">set_focus</a> (<a class="el" href="classGtk_1_1Widget.html">Gtk::Widget</a>& focus)</td></tr>
<tr class="memdesc:a8589880384bc7cd7b39c5bcfa6d2932a"><td class="mdescLeft"> </td><td class="mdescRight">If <em>focus</em> is not the current focus widget, and is focusable, sets it as the focus widget for the window. <a href="#a8589880384bc7cd7b39c5bcfa6d2932a">More...</a><br /></td></tr>
<tr class="separator:a8589880384bc7cd7b39c5bcfa6d2932a"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a8dbaf6fd2f692b1dda1e9eb2d7fb9edf"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a8dbaf6fd2f692b1dda1e9eb2d7fb9edf">unset_focus</a> ()</td></tr>
<tr class="separator:a8dbaf6fd2f692b1dda1e9eb2d7fb9edf"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1997d080c805ba2e2e6821781992c54b"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGtk_1_1Widget.html">Widget</a>* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a1997d080c805ba2e2e6821781992c54b">get_focus</a> ()</td></tr>
<tr class="memdesc:a1997d080c805ba2e2e6821781992c54b"><td class="mdescLeft"> </td><td class="mdescRight">Retrieves the current focused widget within the window. <a href="#a1997d080c805ba2e2e6821781992c54b">More...</a><br /></td></tr>
<tr class="separator:a1997d080c805ba2e2e6821781992c54b"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a7e697a9060ae5994631f5e00762304cf"><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classGtk_1_1Widget.html">Widget</a>* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a7e697a9060ae5994631f5e00762304cf">get_focus</a> () const </td></tr>
<tr class="memdesc:a7e697a9060ae5994631f5e00762304cf"><td class="mdescLeft"> </td><td class="mdescRight">Retrieves the current focused widget within the window. <a href="#a7e697a9060ae5994631f5e00762304cf">More...</a><br /></td></tr>
<tr class="separator:a7e697a9060ae5994631f5e00762304cf"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a8a5fcf84b5222de8d4dea390b79969de"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a8a5fcf84b5222de8d4dea390b79969de">set_default</a> (<a class="el" href="classGtk_1_1Widget.html">Gtk::Widget</a>& default_widget)</td></tr>
<tr class="memdesc:a8a5fcf84b5222de8d4dea390b79969de"><td class="mdescLeft"> </td><td class="mdescRight">The default widget is the widget that's activated when the user presses Enter in a dialog (for example). <a href="#a8a5fcf84b5222de8d4dea390b79969de">More...</a><br /></td></tr>
<tr class="separator:a8a5fcf84b5222de8d4dea390b79969de"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad17e8ca434b1284ee2778daaddc3f5b3"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#ad17e8ca434b1284ee2778daaddc3f5b3">unset_default</a> ()</td></tr>
<tr class="separator:ad17e8ca434b1284ee2778daaddc3f5b3"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1ddd9d6b107a250a921140159bd90cb3"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a1ddd9d6b107a250a921140159bd90cb3">activate_default</a> ()</td></tr>
<tr class="memdesc:a1ddd9d6b107a250a921140159bd90cb3"><td class="mdescLeft"> </td><td class="mdescRight">Activates the default widget for the window, unless the current focused widget has been configured to receive the default action (see <a class="el" href="classGtk_1_1Widget.html#a781389940fbd7baa528eee5ed6108ac5" title="Specifies whether widget will be treated as the default widget within its toplevel when it has the fo...">Gtk::Widget::set_receives_default()</a>), in which case the focused widget is activated. <a href="#a1ddd9d6b107a250a921140159bd90cb3">More...</a><br /></td></tr>
<tr class="separator:a1ddd9d6b107a250a921140159bd90cb3"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4dc2db7c44546300a7843314cfa21bc8"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a4dc2db7c44546300a7843314cfa21bc8">set_transient_for</a> (<a class="el" href="classGtk_1_1Window.html">Window</a>& parent)</td></tr>
<tr class="memdesc:a4dc2db7c44546300a7843314cfa21bc8"><td class="mdescLeft"> </td><td class="mdescRight"><a class="el" href="classGtk_1_1Dialog.html" title="Create popup windows. ">Dialog</a> windows should be set transient for the main application window they were spawned from. <a href="#a4dc2db7c44546300a7843314cfa21bc8">More...</a><br /></td></tr>
<tr class="separator:a4dc2db7c44546300a7843314cfa21bc8"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a8765c60eaa06575d86d877cd5ba75d6d"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a8765c60eaa06575d86d877cd5ba75d6d">unset_transient_for</a> ()</td></tr>
<tr class="memdesc:a8765c60eaa06575d86d877cd5ba75d6d"><td class="mdescLeft"> </td><td class="mdescRight">Unsets the current transient window. <a href="#a8765c60eaa06575d86d877cd5ba75d6d">More...</a><br /></td></tr>
<tr class="separator:a8765c60eaa06575d86d877cd5ba75d6d"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a3188cb795d9ad419d69cf24f55d1381b"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGtk_1_1Window.html">Window</a>* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a3188cb795d9ad419d69cf24f55d1381b">get_transient_for</a> ()</td></tr>
<tr class="memdesc:a3188cb795d9ad419d69cf24f55d1381b"><td class="mdescLeft"> </td><td class="mdescRight">Fetches the transient parent for this window. <a href="#a3188cb795d9ad419d69cf24f55d1381b">More...</a><br /></td></tr>
<tr class="separator:a3188cb795d9ad419d69cf24f55d1381b"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a0ccef655a1467db95eeb3c5257135f5b"><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classGtk_1_1Window.html">Window</a>* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a0ccef655a1467db95eeb3c5257135f5b">get_transient_for</a> () const </td></tr>
<tr class="memdesc:a0ccef655a1467db95eeb3c5257135f5b"><td class="mdescLeft"> </td><td class="mdescRight">Fetches the transient parent for this window. <a href="#a0ccef655a1467db95eeb3c5257135f5b">More...</a><br /></td></tr>
<tr class="separator:a0ccef655a1467db95eeb3c5257135f5b"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a54af1fe27d57afc59744862a9ef922f1"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a54af1fe27d57afc59744862a9ef922f1">set_opacity</a> (double opacity)</td></tr>
<tr class="memdesc:a54af1fe27d57afc59744862a9ef922f1"><td class="mdescLeft"> </td><td class="mdescRight">Request the windowing system to make <em>window</em> partially transparent, with opacity 0 being fully transparent and 1 fully opaque. <a href="#a54af1fe27d57afc59744862a9ef922f1">More...</a><br /></td></tr>
<tr class="separator:a54af1fe27d57afc59744862a9ef922f1"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a228fc868afdf6c88b0dfbe03be29723e"><td class="memItemLeft" align="right" valign="top">double </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a228fc868afdf6c88b0dfbe03be29723e">get_opacity</a> () const </td></tr>
<tr class="memdesc:a228fc868afdf6c88b0dfbe03be29723e"><td class="mdescLeft"> </td><td class="mdescRight">Fetches the requested opacity for this window. <a href="#a228fc868afdf6c88b0dfbe03be29723e">More...</a><br /></td></tr>
<tr class="separator:a228fc868afdf6c88b0dfbe03be29723e"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a61321cd59c3630d1b9f0c07781a6029b"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a61321cd59c3630d1b9f0c07781a6029b">set_type_hint</a> (<a class="el" href="group__gdkmmEnums.html#ga1f75a8db0f289997ac16bba0891776c9">Gdk::WindowTypeHint</a> hint)</td></tr>
<tr class="memdesc:a61321cd59c3630d1b9f0c07781a6029b"><td class="mdescLeft"> </td><td class="mdescRight">By setting the type hint for the window, you allow the window manager to decorate and handle the window in a way which is suitable to the function of the window in your application. <a href="#a61321cd59c3630d1b9f0c07781a6029b">More...</a><br /></td></tr>
<tr class="separator:a61321cd59c3630d1b9f0c07781a6029b"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a177088eca35e1f270543941c6855b680"><td class="memItemLeft" align="right" valign="top"><a class="el" href="group__gdkmmEnums.html#ga1f75a8db0f289997ac16bba0891776c9">Gdk::WindowTypeHint</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a177088eca35e1f270543941c6855b680">get_type_hint</a> () const </td></tr>
<tr class="memdesc:a177088eca35e1f270543941c6855b680"><td class="mdescLeft"> </td><td class="mdescRight">Gets the type hint for this window. <a href="#a177088eca35e1f270543941c6855b680">More...</a><br /></td></tr>
<tr class="separator:a177088eca35e1f270543941c6855b680"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a0b88348a3d7c69b8930a0e2e11a63a88"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a0b88348a3d7c69b8930a0e2e11a63a88">set_skip_taskbar_hint</a> (bool setting=true)</td></tr>
<tr class="memdesc:a0b88348a3d7c69b8930a0e2e11a63a88"><td class="mdescLeft"> </td><td class="mdescRight">Windows may set a hint asking the desktop environment not to display the window in the task bar. <a href="#a0b88348a3d7c69b8930a0e2e11a63a88">More...</a><br /></td></tr>
<tr class="separator:a0b88348a3d7c69b8930a0e2e11a63a88"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad291d4cf458b10577015f8a0efae2811"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#ad291d4cf458b10577015f8a0efae2811">get_skip_taskbar_hint</a> () const </td></tr>
<tr class="memdesc:ad291d4cf458b10577015f8a0efae2811"><td class="mdescLeft"> </td><td class="mdescRight">Gets the value set by <a class="el" href="classGtk_1_1Window.html#a0b88348a3d7c69b8930a0e2e11a63a88" title="Windows may set a hint asking the desktop environment not to display the window in the task bar...">set_skip_taskbar_hint()</a> <a href="#ad291d4cf458b10577015f8a0efae2811">More...</a><br /></td></tr>
<tr class="separator:ad291d4cf458b10577015f8a0efae2811"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4cdea59994940ba8edc41f17e31f31a9"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a4cdea59994940ba8edc41f17e31f31a9">set_skip_pager_hint</a> (bool setting=true)</td></tr>
<tr class="memdesc:a4cdea59994940ba8edc41f17e31f31a9"><td class="mdescLeft"> </td><td class="mdescRight">Windows may set a hint asking the desktop environment not to display the window in the pager. <a href="#a4cdea59994940ba8edc41f17e31f31a9">More...</a><br /></td></tr>
<tr class="separator:a4cdea59994940ba8edc41f17e31f31a9"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae6cfb5d9e6cbefd5de869c4b777e314e"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#ae6cfb5d9e6cbefd5de869c4b777e314e">get_skip_pager_hint</a> () const </td></tr>
<tr class="memdesc:ae6cfb5d9e6cbefd5de869c4b777e314e"><td class="mdescLeft"> </td><td class="mdescRight">Gets the value set by <a class="el" href="classGtk_1_1Window.html#a4cdea59994940ba8edc41f17e31f31a9" title="Windows may set a hint asking the desktop environment not to display the window in the pager...">set_skip_pager_hint()</a>. <a href="#ae6cfb5d9e6cbefd5de869c4b777e314e">More...</a><br /></td></tr>
<tr class="separator:ae6cfb5d9e6cbefd5de869c4b777e314e"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:afd7971d45db2936c2102faaa57e55279"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#afd7971d45db2936c2102faaa57e55279">set_urgency_hint</a> (bool setting=true)</td></tr>
<tr class="memdesc:afd7971d45db2936c2102faaa57e55279"><td class="mdescLeft"> </td><td class="mdescRight">Windows may set a hint asking the desktop environment to draw the users attention to the window. <a href="#afd7971d45db2936c2102faaa57e55279">More...</a><br /></td></tr>
<tr class="separator:afd7971d45db2936c2102faaa57e55279"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa90d7ada4335bf2f35461696ef2297d8"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#aa90d7ada4335bf2f35461696ef2297d8">get_urgency_hint</a> () const </td></tr>
<tr class="memdesc:aa90d7ada4335bf2f35461696ef2297d8"><td class="mdescLeft"> </td><td class="mdescRight">Gets the value set by <a class="el" href="classGtk_1_1Window.html#afd7971d45db2936c2102faaa57e55279" title="Windows may set a hint asking the desktop environment to draw the users attention to the window...">set_urgency_hint()</a> <a href="#aa90d7ada4335bf2f35461696ef2297d8">More...</a><br /></td></tr>
<tr class="separator:aa90d7ada4335bf2f35461696ef2297d8"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9fc2a01d8aa1ab126060d9f363b5d8c5"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a9fc2a01d8aa1ab126060d9f363b5d8c5">set_accept_focus</a> (bool setting=true)</td></tr>
<tr class="memdesc:a9fc2a01d8aa1ab126060d9f363b5d8c5"><td class="mdescLeft"> </td><td class="mdescRight">Windows may set a hint asking the desktop environment not to receive the input focus. <a href="#a9fc2a01d8aa1ab126060d9f363b5d8c5">More...</a><br /></td></tr>
<tr class="separator:a9fc2a01d8aa1ab126060d9f363b5d8c5"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a43e546a1678f86f0b4165eb9a9076775"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a43e546a1678f86f0b4165eb9a9076775">get_accept_focus</a> () const </td></tr>
<tr class="memdesc:a43e546a1678f86f0b4165eb9a9076775"><td class="mdescLeft"> </td><td class="mdescRight">Gets the value set by <a class="el" href="classGtk_1_1Window.html#a9fc2a01d8aa1ab126060d9f363b5d8c5" title="Windows may set a hint asking the desktop environment not to receive the input focus. ">set_accept_focus()</a>. <a href="#a43e546a1678f86f0b4165eb9a9076775">More...</a><br /></td></tr>
<tr class="separator:a43e546a1678f86f0b4165eb9a9076775"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a3a2c87ab12bb354d4ac0262748fb6aea"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a3a2c87ab12bb354d4ac0262748fb6aea">set_focus_on_map</a> (bool setting=true)</td></tr>
<tr class="memdesc:a3a2c87ab12bb354d4ac0262748fb6aea"><td class="mdescLeft"> </td><td class="mdescRight">Windows may set a hint asking the desktop environment not to receive the input focus when the window is mapped. <a href="#a3a2c87ab12bb354d4ac0262748fb6aea">More...</a><br /></td></tr>
<tr class="separator:a3a2c87ab12bb354d4ac0262748fb6aea"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2dc043bb88d969715793415e84cd6a04"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a2dc043bb88d969715793415e84cd6a04">get_focus_on_map</a> () const </td></tr>
<tr class="memdesc:a2dc043bb88d969715793415e84cd6a04"><td class="mdescLeft"> </td><td class="mdescRight">Gets the value set by <a class="el" href="classGtk_1_1Window.html#a3a2c87ab12bb354d4ac0262748fb6aea" title="Windows may set a hint asking the desktop environment not to receive the input focus when the window ...">set_focus_on_map()</a>. <a href="#a2dc043bb88d969715793415e84cd6a04">More...</a><br /></td></tr>
<tr class="separator:a2dc043bb88d969715793415e84cd6a04"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a0cde210bd450e6dfcf59f9104e66860c"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a0cde210bd450e6dfcf59f9104e66860c">get_destroy_with_parent</a> () const </td></tr>
<tr class="memdesc:a0cde210bd450e6dfcf59f9104e66860c"><td class="mdescLeft"> </td><td class="mdescRight">Returns whether the window will be destroyed with its transient parent. <a href="#a0cde210bd450e6dfcf59f9104e66860c">More...</a><br /></td></tr>
<tr class="separator:a0cde210bd450e6dfcf59f9104e66860c"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a44cd7531e6d69b94e742e6a5da953d4e"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a44cd7531e6d69b94e742e6a5da953d4e">set_mnemonics_visible</a> (bool setting=true)</td></tr>
<tr class="memdesc:a44cd7531e6d69b94e742e6a5da953d4e"><td class="mdescLeft"> </td><td class="mdescRight">Sets the <a class="el" href="classGtk_1_1Window.html#a10ca629f2b9835f8b060727e5f8c217a" title="Whether mnemonics are currently visible in this window. ">Gtk::Window::property_mnemonics_visible()</a> property. <a href="#a44cd7531e6d69b94e742e6a5da953d4e">More...</a><br /></td></tr>
<tr class="separator:a44cd7531e6d69b94e742e6a5da953d4e"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad4116f9a6c86303e793869e91977ea19"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#ad4116f9a6c86303e793869e91977ea19">get_mnemonics_visible</a> () const </td></tr>
<tr class="separator:ad4116f9a6c86303e793869e91977ea19"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1ec816449fe941e5fe330bfa509eeb7f"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a1ec816449fe941e5fe330bfa509eeb7f">set_resizable</a> (bool resizable=true)</td></tr>
<tr class="memdesc:a1ec816449fe941e5fe330bfa509eeb7f"><td class="mdescLeft"> </td><td class="mdescRight">Sets whether the user can resize a window. <a href="#a1ec816449fe941e5fe330bfa509eeb7f">More...</a><br /></td></tr>
<tr class="separator:a1ec816449fe941e5fe330bfa509eeb7f"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a08da78e575d5da70a28b33e5bdfef8f3"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a08da78e575d5da70a28b33e5bdfef8f3">get_resizable</a> () const </td></tr>
<tr class="memdesc:a08da78e575d5da70a28b33e5bdfef8f3"><td class="mdescLeft"> </td><td class="mdescRight">Gets the value set by <a class="el" href="classGtk_1_1Window.html#a1ec816449fe941e5fe330bfa509eeb7f" title="Sets whether the user can resize a window. ">set_resizable()</a>. <a href="#a08da78e575d5da70a28b33e5bdfef8f3">More...</a><br /></td></tr>
<tr class="separator:a08da78e575d5da70a28b33e5bdfef8f3"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a0ba6f596398c8685fa5535c77c2c9184"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a0ba6f596398c8685fa5535c77c2c9184">set_gravity</a> (<a class="el" href="group__gdkmmEnums.html#ga1bb9235871d434d3c55411d8261b075e">Gdk::Gravity</a> gravity)</td></tr>
<tr class="memdesc:a0ba6f596398c8685fa5535c77c2c9184"><td class="mdescLeft"> </td><td class="mdescRight"><a class="el" href="classGtk_1_1Window.html" title="Toplevel Window This represents all widgets which are physical windows controlled by the window manag...">Window</a> gravity defines the meaning of coordinates passed to <a class="el" href="classGtk_1_1Window.html#aabece927b3c31478f0d22a437d340b62" title="Asks the window manager to move window to the given position. ">move()</a>. <a href="#a0ba6f596398c8685fa5535c77c2c9184">More...</a><br /></td></tr>
<tr class="separator:a0ba6f596398c8685fa5535c77c2c9184"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a6d7031408bc8d6b18d6d30bd0b1c69e3"><td class="memItemLeft" align="right" valign="top"><a class="el" href="group__gdkmmEnums.html#ga1bb9235871d434d3c55411d8261b075e">Gdk::Gravity</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a6d7031408bc8d6b18d6d30bd0b1c69e3">get_gravity</a> () const </td></tr>
<tr class="memdesc:a6d7031408bc8d6b18d6d30bd0b1c69e3"><td class="mdescLeft"> </td><td class="mdescRight">Gets the value set by <a class="el" href="classGtk_1_1Window.html#a0ba6f596398c8685fa5535c77c2c9184" title="Window gravity defines the meaning of coordinates passed to move(). ">set_gravity()</a>. <a href="#a6d7031408bc8d6b18d6d30bd0b1c69e3">More...</a><br /></td></tr>
<tr class="separator:a6d7031408bc8d6b18d6d30bd0b1c69e3"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4564d6044ee0c89e02244559b6b5f916"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a4564d6044ee0c89e02244559b6b5f916">set_geometry_hints</a> (<a class="el" href="classGtk_1_1Widget.html">Widget</a>& geometry_widget, const <a class="el" href="namespaceGdk.html#af6948e754cab4e79c6430fb94e438d83">Gdk::Geometry</a>& geometry, <a class="el" href="group__gdkmmEnums.html#ga7dd31e80216f3452a1e080bd22fcfd9c">Gdk::WindowHints</a> geom_mask)</td></tr>
<tr class="memdesc:a4564d6044ee0c89e02244559b6b5f916"><td class="mdescLeft"> </td><td class="mdescRight">This function sets up hints about how a window can be resized by the user. <a href="#a4564d6044ee0c89e02244559b6b5f916">More...</a><br /></td></tr>
<tr class="separator:a4564d6044ee0c89e02244559b6b5f916"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a8019e1426461d32385bfea734b5e63a8"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a8019e1426461d32385bfea734b5e63a8">set_screen</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGdk_1_1Screen.html">Gdk::Screen</a> >& screen)</td></tr>
<tr class="memdesc:a8019e1426461d32385bfea734b5e63a8"><td class="mdescLeft"> </td><td class="mdescRight">Sets the <a class="el" href="classGdk_1_1Screen.html" title="Object representing a physical screen Gdk::Screen objects are the GDK representation of a physical sc...">Gdk::Screen</a> where the <em>window</em> is displayed; if the window is already mapped, it will be unmapped, and then remapped on the new screen. <a href="#a8019e1426461d32385bfea734b5e63a8">More...</a><br /></td></tr>
<tr class="separator:a8019e1426461d32385bfea734b5e63a8"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a46de90efae27ecd474f3c7855ace3d3f"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGdk_1_1Screen.html">Gdk::Screen</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a46de90efae27ecd474f3c7855ace3d3f">get_screen</a> ()</td></tr>
<tr class="memdesc:a46de90efae27ecd474f3c7855ace3d3f"><td class="mdescLeft"> </td><td class="mdescRight">Returns the <a class="el" href="classGdk_1_1Screen.html" title="Object representing a physical screen Gdk::Screen objects are the GDK representation of a physical sc...">Gdk::Screen</a> associated with <em>window</em>. <a href="#a46de90efae27ecd474f3c7855ace3d3f">More...</a><br /></td></tr>
<tr class="separator:a46de90efae27ecd474f3c7855ace3d3f"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad538e5c73635b06327ef18d3225f6e80"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< const <a class="el" href="classGdk_1_1Screen.html">Gdk::Screen</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#ad538e5c73635b06327ef18d3225f6e80">get_screen</a> () const </td></tr>
<tr class="memdesc:ad538e5c73635b06327ef18d3225f6e80"><td class="mdescLeft"> </td><td class="mdescRight">Returns the <a class="el" href="classGdk_1_1Screen.html" title="Object representing a physical screen Gdk::Screen objects are the GDK representation of a physical sc...">Gdk::Screen</a> associated with <em>window</em>. <a href="#ad538e5c73635b06327ef18d3225f6e80">More...</a><br /></td></tr>
<tr class="separator:ad538e5c73635b06327ef18d3225f6e80"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a7cf0d119b57e73136353ef075eca5d26"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a7cf0d119b57e73136353ef075eca5d26">set_has_frame</a> (bool setting=true)</td></tr>
<tr class="memdesc:a7cf0d119b57e73136353ef075eca5d26"><td class="mdescLeft"> </td><td class="mdescRight">(Note: this is a special-purpose function for the framebuffer port, that causes GTK+ to draw its own window border. <a href="#a7cf0d119b57e73136353ef075eca5d26">More...</a><br /></td></tr>
<tr class="separator:a7cf0d119b57e73136353ef075eca5d26"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa065a7c4bc331cb07221d8365738afbc"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#aa065a7c4bc331cb07221d8365738afbc">get_has_frame</a> () const </td></tr>
<tr class="memdesc:aa065a7c4bc331cb07221d8365738afbc"><td class="mdescLeft"> </td><td class="mdescRight">Accessor for whether the window has a frame window exterior to <em>window->window</em>. <a href="#aa065a7c4bc331cb07221d8365738afbc">More...</a><br /></td></tr>
<tr class="separator:aa065a7c4bc331cb07221d8365738afbc"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a17dad6dfdbf039ce8a54a04f80ea8477"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a17dad6dfdbf039ce8a54a04f80ea8477">set_frame_dimensions</a> (int <a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01616.html#a96d1c2cab30f14f4e34ccb460f1ad1c9">left</a>, int top, int <a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01616.html#a1a23b13efe06ee9b3cd9324af25ab538">right</a>, int bottom)</td></tr>
<tr class="memdesc:a17dad6dfdbf039ce8a54a04f80ea8477"><td class="mdescLeft"> </td><td class="mdescRight">(Note: this is a special-purpose function intended for the framebuffer port; see <a class="el" href="classGtk_1_1Window.html#a7cf0d119b57e73136353ef075eca5d26" title="(Note: this is a special-purpose function for the framebuffer port, that causes GTK+ to draw its own ...">set_has_frame()</a>. <a href="#a17dad6dfdbf039ce8a54a04f80ea8477">More...</a><br /></td></tr>
<tr class="separator:a17dad6dfdbf039ce8a54a04f80ea8477"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af714d5a1e1c87ccb911558f1d0b95b0c"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#af714d5a1e1c87ccb911558f1d0b95b0c">get_frame_dimensions</a> (int&<a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01616.html#a96d1c2cab30f14f4e34ccb460f1ad1c9">left</a>, int& top, int&<a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01616.html#a1a23b13efe06ee9b3cd9324af25ab538">right</a>, int& bottom) const </td></tr>
<tr class="memdesc:af714d5a1e1c87ccb911558f1d0b95b0c"><td class="mdescLeft"> </td><td class="mdescRight">(Note: this is a special-purpose function intended for the framebuffer port; see <a class="el" href="classGtk_1_1Window.html#a7cf0d119b57e73136353ef075eca5d26" title="(Note: this is a special-purpose function for the framebuffer port, that causes GTK+ to draw its own ...">set_has_frame()</a>. <a href="#af714d5a1e1c87ccb911558f1d0b95b0c">More...</a><br /></td></tr>
<tr class="separator:af714d5a1e1c87ccb911558f1d0b95b0c"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a67adb1d8051a38e0e5272f141bb8778c"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a67adb1d8051a38e0e5272f141bb8778c">set_decorated</a> (bool setting=true)</td></tr>
<tr class="memdesc:a67adb1d8051a38e0e5272f141bb8778c"><td class="mdescLeft"> </td><td class="mdescRight">By default, windows are decorated with a title bar, resize controls, etc. <a href="#a67adb1d8051a38e0e5272f141bb8778c">More...</a><br /></td></tr>
<tr class="separator:a67adb1d8051a38e0e5272f141bb8778c"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa20c5dafc990ba10d8cce9d152848ce9"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#aa20c5dafc990ba10d8cce9d152848ce9">get_decorated</a> () const </td></tr>
<tr class="memdesc:aa20c5dafc990ba10d8cce9d152848ce9"><td class="mdescLeft"> </td><td class="mdescRight">Returns whether the window has been set to have decorations such as a title bar via <a class="el" href="classGtk_1_1Window.html#a67adb1d8051a38e0e5272f141bb8778c" title="By default, windows are decorated with a title bar, resize controls, etc. ">set_decorated()</a>. <a href="#aa20c5dafc990ba10d8cce9d152848ce9">More...</a><br /></td></tr>
<tr class="separator:aa20c5dafc990ba10d8cce9d152848ce9"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a986276f116d90d61f00bb50d2f87d69c"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a986276f116d90d61f00bb50d2f87d69c">set_deletable</a> (bool setting=true)</td></tr>
<tr class="memdesc:a986276f116d90d61f00bb50d2f87d69c"><td class="mdescLeft"> </td><td class="mdescRight">By default, windows have a close button in the window frame. <a href="#a986276f116d90d61f00bb50d2f87d69c">More...</a><br /></td></tr>
<tr class="separator:a986276f116d90d61f00bb50d2f87d69c"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a49477f0c880d7fd0190505858d8e08bb"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a49477f0c880d7fd0190505858d8e08bb">get_deletable</a> () const </td></tr>
<tr class="memdesc:a49477f0c880d7fd0190505858d8e08bb"><td class="mdescLeft"> </td><td class="mdescRight">Returns whether the window has been set to have a close button via <a class="el" href="classGtk_1_1Window.html#a986276f116d90d61f00bb50d2f87d69c" title="By default, windows have a close button in the window frame. ">set_deletable()</a>. <a href="#a49477f0c880d7fd0190505858d8e08bb">More...</a><br /></td></tr>
<tr class="separator:a49477f0c880d7fd0190505858d8e08bb"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a8138bd38733751663bffbcd49f74c418"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ListHandle.html">Glib::ListHandle</a>< <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGdk_1_1Pixbuf.html">Gdk::Pixbuf</a> > > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a8138bd38733751663bffbcd49f74c418">get_icon_list</a> ()</td></tr>
<tr class="memdesc:a8138bd38733751663bffbcd49f74c418"><td class="mdescLeft"> </td><td class="mdescRight">Retrieves the list of icons set by <a class="el" href="classGtk_1_1Window.html#a81ad667e5c42dada1dc24fafae7d81c5" title="Sets up the icon representing a Gtk::Window. ">set_icon_list()</a>. <a href="#a8138bd38733751663bffbcd49f74c418">More...</a><br /></td></tr>
<tr class="separator:a8138bd38733751663bffbcd49f74c418"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac1fc3b01c76dfc9436a23aa47221524b"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ListHandle.html">Glib::ListHandle</a>< <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< const <a class="el" href="classGdk_1_1Pixbuf.html">Gdk::Pixbuf</a> > > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#ac1fc3b01c76dfc9436a23aa47221524b">get_icon_list</a> () const </td></tr>
<tr class="memdesc:ac1fc3b01c76dfc9436a23aa47221524b"><td class="mdescLeft"> </td><td class="mdescRight">Retrieves the list of icons set by <a class="el" href="classGtk_1_1Window.html#a81ad667e5c42dada1dc24fafae7d81c5" title="Sets up the icon representing a Gtk::Window. ">set_icon_list()</a>. <a href="#ac1fc3b01c76dfc9436a23aa47221524b">More...</a><br /></td></tr>
<tr class="separator:ac1fc3b01c76dfc9436a23aa47221524b"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a81ad667e5c42dada1dc24fafae7d81c5"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a81ad667e5c42dada1dc24fafae7d81c5">set_icon_list</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ListHandle.html">Glib::ListHandle</a>< <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGdk_1_1Pixbuf.html">Gdk::Pixbuf</a> > >& list)</td></tr>
<tr class="memdesc:a81ad667e5c42dada1dc24fafae7d81c5"><td class="mdescLeft"> </td><td class="mdescRight">Sets up the icon representing a <a class="el" href="classGtk_1_1Window.html" title="Toplevel Window This represents all widgets which are physical windows controlled by the window manag...">Gtk::Window</a>. <a href="#a81ad667e5c42dada1dc24fafae7d81c5">More...</a><br /></td></tr>
<tr class="separator:a81ad667e5c42dada1dc24fafae7d81c5"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af8da32d981bcf1992d3d2361a9aec894"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#af8da32d981bcf1992d3d2361a9aec894">set_icon</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGdk_1_1Pixbuf.html">Gdk::Pixbuf</a> >& icon)</td></tr>
<tr class="memdesc:af8da32d981bcf1992d3d2361a9aec894"><td class="mdescLeft"> </td><td class="mdescRight">Sets up the icon representing a <a class="el" href="classGtk_1_1Window.html" title="Toplevel Window This represents all widgets which are physical windows controlled by the window manag...">Gtk::Window</a>. <a href="#af8da32d981bcf1992d3d2361a9aec894">More...</a><br /></td></tr>
<tr class="separator:af8da32d981bcf1992d3d2361a9aec894"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a80a7d07b5d126a17206a770d134c76c0"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a80a7d07b5d126a17206a770d134c76c0">set_icon_name</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>& name)</td></tr>
<tr class="memdesc:a80a7d07b5d126a17206a770d134c76c0"><td class="mdescLeft"> </td><td class="mdescRight">Sets the icon for the window from a named themed icon. <a href="#a80a7d07b5d126a17206a770d134c76c0">More...</a><br /></td></tr>
<tr class="separator:a80a7d07b5d126a17206a770d134c76c0"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2cde5d111ad787f58e9d3908f0bf8bbd"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a2cde5d111ad787f58e9d3908f0bf8bbd">set_icon_from_file</a> (const <a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01681.html#ga32db3d9898c44d3b3a578b560f7758cc">std::string</a>& filename)</td></tr>
<tr class="memdesc:a2cde5d111ad787f58e9d3908f0bf8bbd"><td class="mdescLeft"> </td><td class="mdescRight">Sets the icon for the window. <a href="#a2cde5d111ad787f58e9d3908f0bf8bbd">More...</a><br /></td></tr>
<tr class="separator:a2cde5d111ad787f58e9d3908f0bf8bbd"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a807394d193c3605b8922cae7385fdc06"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGdk_1_1Pixbuf.html">Gdk::Pixbuf</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a807394d193c3605b8922cae7385fdc06">get_icon</a> ()</td></tr>
<tr class="memdesc:a807394d193c3605b8922cae7385fdc06"><td class="mdescLeft"> </td><td class="mdescRight">Gets the value set by <a class="el" href="classGtk_1_1Window.html#af8da32d981bcf1992d3d2361a9aec894" title="Sets up the icon representing a Gtk::Window. ">set_icon()</a> (or if you've called <a class="el" href="classGtk_1_1Window.html#a81ad667e5c42dada1dc24fafae7d81c5" title="Sets up the icon representing a Gtk::Window. ">set_icon_list()</a>, gets the first icon in the icon list). <a href="#a807394d193c3605b8922cae7385fdc06">More...</a><br /></td></tr>
<tr class="separator:a807394d193c3605b8922cae7385fdc06"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a68c50f90a51b2b7dc09538afa18da1cb"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< const <a class="el" href="classGdk_1_1Pixbuf.html">Gdk::Pixbuf</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a68c50f90a51b2b7dc09538afa18da1cb">get_icon</a> () const </td></tr>
<tr class="memdesc:a68c50f90a51b2b7dc09538afa18da1cb"><td class="mdescLeft"> </td><td class="mdescRight">Gets the value set by <a class="el" href="classGtk_1_1Window.html#af8da32d981bcf1992d3d2361a9aec894" title="Sets up the icon representing a Gtk::Window. ">set_icon()</a> (or if you've called <a class="el" href="classGtk_1_1Window.html#a81ad667e5c42dada1dc24fafae7d81c5" title="Sets up the icon representing a Gtk::Window. ">set_icon_list()</a>, gets the first icon in the icon list). <a href="#a68c50f90a51b2b7dc09538afa18da1cb">More...</a><br /></td></tr>
<tr class="separator:a68c50f90a51b2b7dc09538afa18da1cb"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:afac8ae8360168fbc9466947aa985d7ef"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#afac8ae8360168fbc9466947aa985d7ef">get_icon_name</a> () const </td></tr>
<tr class="memdesc:afac8ae8360168fbc9466947aa985d7ef"><td class="mdescLeft"> </td><td class="mdescRight">Returns the name of the themed icon for the window, see <a class="el" href="classGtk_1_1Window.html#a80a7d07b5d126a17206a770d134c76c0" title="Sets the icon for the window from a named themed icon. ">set_icon_name()</a>. <a href="#afac8ae8360168fbc9466947aa985d7ef">More...</a><br /></td></tr>
<tr class="separator:afac8ae8360168fbc9466947aa985d7ef"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1f70b3c35e8c477ab3c1f9503a37a6a1"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a1f70b3c35e8c477ab3c1f9503a37a6a1">set_modal</a> (bool modal=true)</td></tr>
<tr class="memdesc:a1f70b3c35e8c477ab3c1f9503a37a6a1"><td class="mdescLeft"> </td><td class="mdescRight">Sets a window modal or non-modal. <a href="#a1f70b3c35e8c477ab3c1f9503a37a6a1">More...</a><br /></td></tr>
<tr class="separator:a1f70b3c35e8c477ab3c1f9503a37a6a1"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a856066475ff362ddadca9559afc33728"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a856066475ff362ddadca9559afc33728">get_modal</a> () const </td></tr>
<tr class="memdesc:a856066475ff362ddadca9559afc33728"><td class="mdescLeft"> </td><td class="mdescRight">Returns whether the window is modal. <a href="#a856066475ff362ddadca9559afc33728">More...</a><br /></td></tr>
<tr class="separator:a856066475ff362ddadca9559afc33728"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a47a63388df150583cf1cef2970ecb93d"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a47a63388df150583cf1cef2970ecb93d">add_mnemonic</a> (guint keyval, <a class="el" href="classGtk_1_1Widget.html">Widget</a>& target)</td></tr>
<tr class="memdesc:a47a63388df150583cf1cef2970ecb93d"><td class="mdescLeft"> </td><td class="mdescRight">Adds a mnemonic to this window. <a href="#a47a63388df150583cf1cef2970ecb93d">More...</a><br /></td></tr>
<tr class="separator:a47a63388df150583cf1cef2970ecb93d"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a8a4a99151b257228f68f6fc643653b52"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a8a4a99151b257228f68f6fc643653b52">remove_mnemonic</a> (guint keyval, <a class="el" href="classGtk_1_1Widget.html">Widget</a>& target)</td></tr>
<tr class="memdesc:a8a4a99151b257228f68f6fc643653b52"><td class="mdescLeft"> </td><td class="mdescRight">Removes a mnemonic from this window. <a href="#a8a4a99151b257228f68f6fc643653b52">More...</a><br /></td></tr>
<tr class="separator:a8a4a99151b257228f68f6fc643653b52"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:abfee73f9bcceba54007644b2f9d49fa5"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#abfee73f9bcceba54007644b2f9d49fa5">mnemonic_activate</a> (guint keyval, <a class="el" href="group__gdkmmEnums.html#ga734c2979005c87dbe51223a0128cdd97">Gdk::ModifierType</a> modifier)</td></tr>
<tr class="memdesc:abfee73f9bcceba54007644b2f9d49fa5"><td class="mdescLeft"> </td><td class="mdescRight">Activates the targets associated with the mnemonic. <a href="#abfee73f9bcceba54007644b2f9d49fa5">More...</a><br /></td></tr>
<tr class="separator:abfee73f9bcceba54007644b2f9d49fa5"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa9e48f426c507de6ef00efabf25ab9b3"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#aa9e48f426c507de6ef00efabf25ab9b3">set_mnemonic_modifier</a> (<a class="el" href="group__gdkmmEnums.html#ga734c2979005c87dbe51223a0128cdd97">Gdk::ModifierType</a> modifier)</td></tr>
<tr class="memdesc:aa9e48f426c507de6ef00efabf25ab9b3"><td class="mdescLeft"> </td><td class="mdescRight">Sets the mnemonic modifier for this window. <a href="#aa9e48f426c507de6ef00efabf25ab9b3">More...</a><br /></td></tr>
<tr class="separator:aa9e48f426c507de6ef00efabf25ab9b3"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab6ebf5365ba765657aa69d6f14a42406"><td class="memItemLeft" align="right" valign="top"><a class="el" href="group__gdkmmEnums.html#ga734c2979005c87dbe51223a0128cdd97">Gdk::ModifierType</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#ab6ebf5365ba765657aa69d6f14a42406">get_mnemonic_modifier</a> ()</td></tr>
<tr class="memdesc:ab6ebf5365ba765657aa69d6f14a42406"><td class="mdescLeft"> </td><td class="mdescRight">Returns the mnemonic modifier for this window. <a href="#ab6ebf5365ba765657aa69d6f14a42406">More...</a><br /></td></tr>
<tr class="separator:ab6ebf5365ba765657aa69d6f14a42406"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a7d848c59fc1a42f4a296461515c0476e"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a7d848c59fc1a42f4a296461515c0476e">present</a> ()</td></tr>
<tr class="memdesc:a7d848c59fc1a42f4a296461515c0476e"><td class="mdescLeft"> </td><td class="mdescRight">Presents a window to the user. <a href="#a7d848c59fc1a42f4a296461515c0476e">More...</a><br /></td></tr>
<tr class="separator:a7d848c59fc1a42f4a296461515c0476e"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a0724ad6e36d55fd1182e2481fb52cd04"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a0724ad6e36d55fd1182e2481fb52cd04">present</a> (guint32 timestamp)</td></tr>
<tr class="memdesc:a0724ad6e36d55fd1182e2481fb52cd04"><td class="mdescLeft"> </td><td class="mdescRight">Presents a window to the user in response to a user interaction. <a href="#a0724ad6e36d55fd1182e2481fb52cd04">More...</a><br /></td></tr>
<tr class="separator:a0724ad6e36d55fd1182e2481fb52cd04"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4fc7d8adb9059f51d4b9216b755e30e2"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a4fc7d8adb9059f51d4b9216b755e30e2">iconify</a> ()</td></tr>
<tr class="memdesc:a4fc7d8adb9059f51d4b9216b755e30e2"><td class="mdescLeft"> </td><td class="mdescRight">Asks to iconify (i.e. minimize) the specified <em>window</em>. <a href="#a4fc7d8adb9059f51d4b9216b755e30e2">More...</a><br /></td></tr>
<tr class="separator:a4fc7d8adb9059f51d4b9216b755e30e2"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:afd764f06b99906f6730f36ea45ad23e4"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#afd764f06b99906f6730f36ea45ad23e4">deiconify</a> ()</td></tr>
<tr class="memdesc:afd764f06b99906f6730f36ea45ad23e4"><td class="mdescLeft"> </td><td class="mdescRight">Asks to deiconify (i.e. unminimize) the specified <em>window</em>. <a href="#afd764f06b99906f6730f36ea45ad23e4">More...</a><br /></td></tr>
<tr class="separator:afd764f06b99906f6730f36ea45ad23e4"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aaadaf48bd2ce3def9eb69e5347a415aa"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#aaadaf48bd2ce3def9eb69e5347a415aa">stick</a> ()</td></tr>
<tr class="memdesc:aaadaf48bd2ce3def9eb69e5347a415aa"><td class="mdescLeft"> </td><td class="mdescRight">Asks to stick <em>window</em>, which means that it will appear on all user desktops. <a href="#aaadaf48bd2ce3def9eb69e5347a415aa">More...</a><br /></td></tr>
<tr class="separator:aaadaf48bd2ce3def9eb69e5347a415aa"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae2b53147692cf07b5738e0a76c27f50f"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#ae2b53147692cf07b5738e0a76c27f50f">unstick</a> ()</td></tr>
<tr class="memdesc:ae2b53147692cf07b5738e0a76c27f50f"><td class="mdescLeft"> </td><td class="mdescRight">Asks to unstick <em>window</em>, which means that it will appear on only one of the user's desktops. <a href="#ae2b53147692cf07b5738e0a76c27f50f">More...</a><br /></td></tr>
<tr class="separator:ae2b53147692cf07b5738e0a76c27f50f"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a23f2755248ee7aaa39802ccb37bba618"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a23f2755248ee7aaa39802ccb37bba618">maximize</a> ()</td></tr>
<tr class="memdesc:a23f2755248ee7aaa39802ccb37bba618"><td class="mdescLeft"> </td><td class="mdescRight">Asks to maximize <em>window</em>, so that it becomes full-screen. <a href="#a23f2755248ee7aaa39802ccb37bba618">More...</a><br /></td></tr>
<tr class="separator:a23f2755248ee7aaa39802ccb37bba618"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a78bca41d0915b84f285187f3bfcd1e9c"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a78bca41d0915b84f285187f3bfcd1e9c">unmaximize</a> ()</td></tr>
<tr class="memdesc:a78bca41d0915b84f285187f3bfcd1e9c"><td class="mdescLeft"> </td><td class="mdescRight">Asks to unmaximize <em>window</em>. <a href="#a78bca41d0915b84f285187f3bfcd1e9c">More...</a><br /></td></tr>
<tr class="separator:a78bca41d0915b84f285187f3bfcd1e9c"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2343d2ece18fc8cf4db9e9de4764f386"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a2343d2ece18fc8cf4db9e9de4764f386">fullscreen</a> ()</td></tr>
<tr class="memdesc:a2343d2ece18fc8cf4db9e9de4764f386"><td class="mdescLeft"> </td><td class="mdescRight">Asks to place <em>window</em> in the fullscreen state. <a href="#a2343d2ece18fc8cf4db9e9de4764f386">More...</a><br /></td></tr>
<tr class="separator:a2343d2ece18fc8cf4db9e9de4764f386"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa426c8fca5b776d5266da732293f6dab"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#aa426c8fca5b776d5266da732293f6dab">unfullscreen</a> ()</td></tr>
<tr class="memdesc:aa426c8fca5b776d5266da732293f6dab"><td class="mdescLeft"> </td><td class="mdescRight">Asks to toggle off the fullscreen state for <em>window</em>. <a href="#aa426c8fca5b776d5266da732293f6dab">More...</a><br /></td></tr>
<tr class="separator:aa426c8fca5b776d5266da732293f6dab"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2528d53c9ff2eb309216e2ce02e486d4"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a2528d53c9ff2eb309216e2ce02e486d4">begin_resize_drag</a> (<a class="el" href="group__gdkmmEnums.html#gae31896bd6d904848c07ef7f929063c0c">Gdk::WindowEdge</a> edge, int button, int root_x, int root_y, guint32 timestamp)</td></tr>
<tr class="memdesc:a2528d53c9ff2eb309216e2ce02e486d4"><td class="mdescLeft"> </td><td class="mdescRight">Starts resizing a window. <a href="#a2528d53c9ff2eb309216e2ce02e486d4">More...</a><br /></td></tr>
<tr class="separator:a2528d53c9ff2eb309216e2ce02e486d4"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aad83e3e6690a6f2a1869edd38b82b02c"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#aad83e3e6690a6f2a1869edd38b82b02c">begin_move_drag</a> (int button, int root_x, int root_y, guint32 timestamp)</td></tr>
<tr class="memdesc:aad83e3e6690a6f2a1869edd38b82b02c"><td class="mdescLeft"> </td><td class="mdescRight">Starts moving a window. <a href="#aad83e3e6690a6f2a1869edd38b82b02c">More...</a><br /></td></tr>
<tr class="separator:aad83e3e6690a6f2a1869edd38b82b02c"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac7bddf34f109fd2ed006ff95f1ae881c"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#ac7bddf34f109fd2ed006ff95f1ae881c">set_default_size</a> (int width, int height)</td></tr>
<tr class="memdesc:ac7bddf34f109fd2ed006ff95f1ae881c"><td class="mdescLeft"> </td><td class="mdescRight">Sets the default size of a window. <a href="#ac7bddf34f109fd2ed006ff95f1ae881c">More...</a><br /></td></tr>
<tr class="separator:ac7bddf34f109fd2ed006ff95f1ae881c"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a055c345c2d2c0c5814d3792d912aeed7"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a055c345c2d2c0c5814d3792d912aeed7">get_default_size</a> (int& width, int& height) const </td></tr>
<tr class="memdesc:a055c345c2d2c0c5814d3792d912aeed7"><td class="mdescLeft"> </td><td class="mdescRight">Gets the default size of the window. <a href="#a055c345c2d2c0c5814d3792d912aeed7">More...</a><br /></td></tr>
<tr class="separator:a055c345c2d2c0c5814d3792d912aeed7"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad6d1fc27730d7f26402a1924c3495787"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#ad6d1fc27730d7f26402a1924c3495787">resize</a> (int width, int height)</td></tr>
<tr class="memdesc:ad6d1fc27730d7f26402a1924c3495787"><td class="mdescLeft"> </td><td class="mdescRight">Resizes the window as if the user had done so, obeying geometry constraints. <a href="#ad6d1fc27730d7f26402a1924c3495787">More...</a><br /></td></tr>
<tr class="separator:ad6d1fc27730d7f26402a1924c3495787"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a34c05f04c75ef2acc745b585259632a2"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a34c05f04c75ef2acc745b585259632a2">get_size</a> (int& width, int& height) const </td></tr>
<tr class="memdesc:a34c05f04c75ef2acc745b585259632a2"><td class="mdescLeft"> </td><td class="mdescRight">Obtains the current size of <em>window</em>. <a href="#a34c05f04c75ef2acc745b585259632a2">More...</a><br /></td></tr>
<tr class="separator:a34c05f04c75ef2acc745b585259632a2"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aabece927b3c31478f0d22a437d340b62"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#aabece927b3c31478f0d22a437d340b62">move</a> (int x, int y)</td></tr>
<tr class="memdesc:aabece927b3c31478f0d22a437d340b62"><td class="mdescLeft"> </td><td class="mdescRight">Asks the window manager to move <em>window</em> to the given position. <a href="#aabece927b3c31478f0d22a437d340b62">More...</a><br /></td></tr>
<tr class="separator:aabece927b3c31478f0d22a437d340b62"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad3a063730ccbf0e4fa26f89e220f55e4"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#ad3a063730ccbf0e4fa26f89e220f55e4">get_position</a> (int& root_x, int& root_y) const </td></tr>
<tr class="memdesc:ad3a063730ccbf0e4fa26f89e220f55e4"><td class="mdescLeft"> </td><td class="mdescRight">This function returns the position you need to pass to <a class="el" href="classGtk_1_1Window.html#aabece927b3c31478f0d22a437d340b62" title="Asks the window manager to move window to the given position. ">move()</a> to keep <em>window</em> in its current position. <a href="#ad3a063730ccbf0e4fa26f89e220f55e4">More...</a><br /></td></tr>
<tr class="separator:ad3a063730ccbf0e4fa26f89e220f55e4"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad6b20c1940fefe7da528171a34ecd416"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#ad6b20c1940fefe7da528171a34ecd416">parse_geometry</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>& geometry)</td></tr>
<tr class="memdesc:ad6b20c1940fefe7da528171a34ecd416"><td class="mdescLeft"> </td><td class="mdescRight">Parses a standard X Window System geometry string - see the manual page for X (type 'man X') for details on this. <a href="#ad6b20c1940fefe7da528171a34ecd416">More...</a><br /></td></tr>
<tr class="separator:ad6b20c1940fefe7da528171a34ecd416"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a620c3988fd31c158bd03222db7a8d804"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGtk_1_1WindowGroup.html">WindowGroup</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a620c3988fd31c158bd03222db7a8d804">get_group</a> ()</td></tr>
<tr class="memdesc:a620c3988fd31c158bd03222db7a8d804"><td class="mdescLeft"> </td><td class="mdescRight">Returns the group for <em>window</em> or the default group, if <em>window</em> is <code>nullptr</code> or if <em>window</em> does not have an explicit window group. <a href="#a620c3988fd31c158bd03222db7a8d804">More...</a><br /></td></tr>
<tr class="separator:a620c3988fd31c158bd03222db7a8d804"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a042da43137619606cb8639b22c3f5c43"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< const <a class="el" href="classGtk_1_1WindowGroup.html">WindowGroup</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a042da43137619606cb8639b22c3f5c43">get_group</a> () const </td></tr>
<tr class="memdesc:a042da43137619606cb8639b22c3f5c43"><td class="mdescLeft"> </td><td class="mdescRight">Returns the group for <em>window</em> or the default group, if <em>window</em> is <code>nullptr</code> or if <em>window</em> does not have an explicit window group. <a href="#a042da43137619606cb8639b22c3f5c43">More...</a><br /></td></tr>
<tr class="separator:a042da43137619606cb8639b22c3f5c43"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4acaad013ade234eb2b83d636f14a998"><td class="memItemLeft" align="right" valign="top"><a class="el" href="group__gtkmmEnums.html#ga8c724168aabf37953fbb194b35ad250f">WindowType</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a4acaad013ade234eb2b83d636f14a998">get_window_type</a> () const </td></tr>
<tr class="memdesc:a4acaad013ade234eb2b83d636f14a998"><td class="mdescLeft"> </td><td class="mdescRight">Gets the type of the window. <a href="#a4acaad013ade234eb2b83d636f14a998">More...</a><br /></td></tr>
<tr class="separator:a4acaad013ade234eb2b83d636f14a998"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a7acae2440f5436966dab4b023318a37a"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a7acae2440f5436966dab4b023318a37a">reshow_with_initial_size</a> ()</td></tr>
<tr class="memdesc:a7acae2440f5436966dab4b023318a37a"><td class="mdescLeft"> </td><td class="mdescRight">Hides <em>window</em>, then reshows it, resetting the default size and position of the window. <a href="#a7acae2440f5436966dab4b023318a37a">More...</a><br /></td></tr>
<tr class="separator:a7acae2440f5436966dab4b023318a37a"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1233d35c8c1108ed4446c4b0c8d97e35"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a1233d35c8c1108ed4446c4b0c8d97e35">set_keep_above</a> (bool setting=true)</td></tr>
<tr class="memdesc:a1233d35c8c1108ed4446c4b0c8d97e35"><td class="mdescLeft"> </td><td class="mdescRight">Asks to keep <em>window</em> above, so that it stays on top. <a href="#a1233d35c8c1108ed4446c4b0c8d97e35">More...</a><br /></td></tr>
<tr class="separator:a1233d35c8c1108ed4446c4b0c8d97e35"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad671b4dcca5e8e659b9126e0deed74f2"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#ad671b4dcca5e8e659b9126e0deed74f2">set_keep_below</a> (bool setting=true)</td></tr>
<tr class="memdesc:ad671b4dcca5e8e659b9126e0deed74f2"><td class="mdescLeft"> </td><td class="mdescRight">Asks to keep <em>window</em> below, so that it stays in bottom. <a href="#ad671b4dcca5e8e659b9126e0deed74f2">More...</a><br /></td></tr>
<tr class="separator:ad671b4dcca5e8e659b9126e0deed74f2"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a30de41223b51216f573305b03c6e20ba"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGtk_1_1AccelGroup.html">AccelGroup</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a30de41223b51216f573305b03c6e20ba">get_accel_group</a> ()</td></tr>
<tr class="memdesc:a30de41223b51216f573305b03c6e20ba"><td class="mdescLeft"> </td><td class="mdescRight">Returns a default accel group for this window This is a gtkmm-specific function. <a href="#a30de41223b51216f573305b03c6e20ba">More...</a><br /></td></tr>
<tr class="separator:a30de41223b51216f573305b03c6e20ba"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad61a5ddefd7b84f178460635c6448ef8"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#ad61a5ddefd7b84f178460635c6448ef8">raise</a> ()</td></tr>
<tr class="memdesc:ad61a5ddefd7b84f178460635c6448ef8"><td class="mdescLeft"> </td><td class="mdescRight">Brings the window to the front. <a href="#ad61a5ddefd7b84f178460635c6448ef8">More...</a><br /></td></tr>
<tr class="separator:ad61a5ddefd7b84f178460635c6448ef8"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a707c97e32be83c712b4a414c3e37d13c"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a707c97e32be83c712b4a414c3e37d13c">set_manage</a> ()</td></tr>
<tr class="memdesc:a707c97e32be83c712b4a414c3e37d13c"><td class="mdescLeft"> </td><td class="mdescRight">Overriden to warn that it doesn't make sense to use <a class="el" href="namespaceGtk.html#a753d0ddca83bd0d0decdfdcd1e93076a" title="Mark a Gtk::Object as owned by its parent container widget, so you don't need to delete it manually...">Gtk::manage()</a> on this class because it has no parent container. <a href="#a707c97e32be83c712b4a414c3e37d13c">More...</a><br /></td></tr>
<tr class="separator:a707c97e32be83c712b4a414c3e37d13c"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pub_methods_classGtk_1_1Bin"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classGtk_1_1Bin')"><img src="closed.png" alt="-"/> Public Member Functions inherited from <a class="el" href="classGtk_1_1Bin.html">Gtk::Bin</a></td></tr>
<tr class="memitem:a56063452127cc483ca426adfc7ef13f9 inherit pub_methods_classGtk_1_1Bin"><td class="memItemLeft" align="right" valign="top">virtual </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Bin.html#a56063452127cc483ca426adfc7ef13f9">~Bin</a> ()</td></tr>
<tr class="separator:a56063452127cc483ca426adfc7ef13f9 inherit pub_methods_classGtk_1_1Bin"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a6fef1f41c67a588dd33087ea479e0ad1 inherit pub_methods_classGtk_1_1Bin"><td class="memItemLeft" align="right" valign="top">GtkBin* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Bin.html#a6fef1f41c67a588dd33087ea479e0ad1">gobj</a> ()</td></tr>
<tr class="memdesc:a6fef1f41c67a588dd33087ea479e0ad1 inherit pub_methods_classGtk_1_1Bin"><td class="mdescLeft"> </td><td class="mdescRight">Provides access to the underlying C GtkObject. <a href="#a6fef1f41c67a588dd33087ea479e0ad1">More...</a><br /></td></tr>
<tr class="separator:a6fef1f41c67a588dd33087ea479e0ad1 inherit pub_methods_classGtk_1_1Bin"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad6db11cd388872c6ee36aee075478374 inherit pub_methods_classGtk_1_1Bin"><td class="memItemLeft" align="right" valign="top">const GtkBin* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Bin.html#ad6db11cd388872c6ee36aee075478374">gobj</a> () const </td></tr>
<tr class="memdesc:ad6db11cd388872c6ee36aee075478374 inherit pub_methods_classGtk_1_1Bin"><td class="mdescLeft"> </td><td class="mdescRight">Provides access to the underlying C GtkObject. <a href="#ad6db11cd388872c6ee36aee075478374">More...</a><br /></td></tr>
<tr class="separator:ad6db11cd388872c6ee36aee075478374 inherit pub_methods_classGtk_1_1Bin"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a7afc2bbea00b279e85fbefacf6f51c97 inherit pub_methods_classGtk_1_1Bin"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGtk_1_1Widget.html">Gtk::Widget</a>* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Bin.html#a7afc2bbea00b279e85fbefacf6f51c97">get_child</a> ()</td></tr>
<tr class="memdesc:a7afc2bbea00b279e85fbefacf6f51c97 inherit pub_methods_classGtk_1_1Bin"><td class="mdescLeft"> </td><td class="mdescRight">Gets the child of the <a class="el" href="classGtk_1_1Bin.html" title="A container with just one child. ">Gtk::Bin</a>, or <code>nullptr</code> if the bin contains no child widget. <a href="#a7afc2bbea00b279e85fbefacf6f51c97">More...</a><br /></td></tr>
<tr class="separator:a7afc2bbea00b279e85fbefacf6f51c97 inherit pub_methods_classGtk_1_1Bin"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a8e7fef9251afa541318bb53dcf3098db inherit pub_methods_classGtk_1_1Bin"><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classGtk_1_1Widget.html">Gtk::Widget</a>* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Bin.html#a8e7fef9251afa541318bb53dcf3098db">get_child</a> () const </td></tr>
<tr class="memdesc:a8e7fef9251afa541318bb53dcf3098db inherit pub_methods_classGtk_1_1Bin"><td class="mdescLeft"> </td><td class="mdescRight">Gets the child of the <a class="el" href="classGtk_1_1Bin.html" title="A container with just one child. ">Gtk::Bin</a>, or <code>nullptr</code> if the bin contains no child widget. <a href="#a8e7fef9251afa541318bb53dcf3098db">More...</a><br /></td></tr>
<tr class="separator:a8e7fef9251afa541318bb53dcf3098db inherit pub_methods_classGtk_1_1Bin"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa1e7fba8461ffc4e8676ea3be6f40f2d inherit pub_methods_classGtk_1_1Bin"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Bin.html#aa1e7fba8461ffc4e8676ea3be6f40f2d">remove</a> ()</td></tr>
<tr class="memdesc:aa1e7fba8461ffc4e8676ea3be6f40f2d inherit pub_methods_classGtk_1_1Bin"><td class="mdescLeft"> </td><td class="mdescRight">Remove the contained object Since this can only hold one object it is not necessary to specify which object to remove like other containers. <a href="#aa1e7fba8461ffc4e8676ea3be6f40f2d">More...</a><br /></td></tr>
<tr class="separator:aa1e7fba8461ffc4e8676ea3be6f40f2d inherit pub_methods_classGtk_1_1Bin"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1ee817897a75be90dbf6de3c71162707 inherit pub_methods_classGtk_1_1Bin"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Bin.html#a1ee817897a75be90dbf6de3c71162707">add_label</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>& label, bool mnemonic=false, double x_align=0.5, double y_align=0.5)</td></tr>
<tr class="memdesc:a1ee817897a75be90dbf6de3c71162707 inherit pub_methods_classGtk_1_1Bin"><td class="mdescLeft"> </td><td class="mdescRight">Add a <a class="el" href="classGtk_1_1Label.html" title="A widget that displays a small to medium amount of text. ">Label</a> object. <a href="#a1ee817897a75be90dbf6de3c71162707">More...</a><br /></td></tr>
<tr class="separator:a1ee817897a75be90dbf6de3c71162707 inherit pub_methods_classGtk_1_1Bin"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aeb27fa8b1ff13101673b2f0c3d0786b8 inherit pub_methods_classGtk_1_1Bin"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Bin.html#aeb27fa8b1ff13101673b2f0c3d0786b8">add_label</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>& label, bool mnemonic, <a class="el" href="group__gtkmmEnums.html#ga98983d4e80f67ffa5148dd554706ffac">AlignmentEnum</a> x_align, <a class="el" href="group__gtkmmEnums.html#ga98983d4e80f67ffa5148dd554706ffac">AlignmentEnum</a> y_align=<a class="el" href="group__gtkmmEnums.html#gga98983d4e80f67ffa5148dd554706ffaca5df285ad8e8fa54df458d772267febd5">ALIGN_CENTER</a>)</td></tr>
<tr class="memdesc:aeb27fa8b1ff13101673b2f0c3d0786b8 inherit pub_methods_classGtk_1_1Bin"><td class="mdescLeft"> </td><td class="mdescRight">Add a <a class="el" href="classGtk_1_1Label.html" title="A widget that displays a small to medium amount of text. ">Label</a> object. <a href="#aeb27fa8b1ff13101673b2f0c3d0786b8">More...</a><br /></td></tr>
<tr class="separator:aeb27fa8b1ff13101673b2f0c3d0786b8 inherit pub_methods_classGtk_1_1Bin"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a74faa574267047a7319a872e8fea7d1f inherit pub_methods_classGtk_1_1Bin"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Bin.html#a74faa574267047a7319a872e8fea7d1f">add_pixmap</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGdk_1_1Pixmap.html">Gdk::Pixmap</a> >& pixmap, const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGdk_1_1Bitmap.html">Gdk::Bitmap</a> >& mask)</td></tr>
<tr class="memdesc:a74faa574267047a7319a872e8fea7d1f inherit pub_methods_classGtk_1_1Bin"><td class="mdescLeft"> </td><td class="mdescRight">Add an <a class="el" href="classGtk_1_1Image.html" title="A widget displaying an image. ">Image</a> object. <a href="#a74faa574267047a7319a872e8fea7d1f">More...</a><br /></td></tr>
<tr class="separator:a74faa574267047a7319a872e8fea7d1f inherit pub_methods_classGtk_1_1Bin"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a05708dc09c3b5a4f950c0417e647d85c inherit pub_methods_classGtk_1_1Bin"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Bin.html#a05708dc09c3b5a4f950c0417e647d85c">add_pixlabel</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGdk_1_1Pixmap.html">Gdk::Pixmap</a> >& pixmap, const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGdk_1_1Bitmap.html">Gdk::Bitmap</a> >& mask, const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>& label, double x_align=0.5, double y_align=0.5)</td></tr>
<tr class="memdesc:a05708dc09c3b5a4f950c0417e647d85c inherit pub_methods_classGtk_1_1Bin"><td class="mdescLeft"> </td><td class="mdescRight">Add <a class="el" href="classGtk_1_1Image.html" title="A widget displaying an image. ">Image</a> and <a class="el" href="classGtk_1_1Label.html" title="A widget that displays a small to medium amount of text. ">Label</a> objects. <a href="#a05708dc09c3b5a4f950c0417e647d85c">More...</a><br /></td></tr>
<tr class="separator:a05708dc09c3b5a4f950c0417e647d85c inherit pub_methods_classGtk_1_1Bin"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:add649d75e5f9bb4ed42fe72d6973ffcc inherit pub_methods_classGtk_1_1Bin"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Bin.html#add649d75e5f9bb4ed42fe72d6973ffcc">add_pixlabel</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>& pixfile, const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>& label, double x_align=0.5, double y_align=0.5)</td></tr>
<tr class="memdesc:add649d75e5f9bb4ed42fe72d6973ffcc inherit pub_methods_classGtk_1_1Bin"><td class="mdescLeft"> </td><td class="mdescRight">Add <a class="el" href="classGtk_1_1Image.html" title="A widget displaying an image. ">Image</a> and <a class="el" href="classGtk_1_1Label.html" title="A widget that displays a small to medium amount of text. ">Label</a> objects. <a href="#add649d75e5f9bb4ed42fe72d6973ffcc">More...</a><br /></td></tr>
<tr class="separator:add649d75e5f9bb4ed42fe72d6973ffcc inherit pub_methods_classGtk_1_1Bin"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pub_methods_classGtk_1_1Container"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classGtk_1_1Container')"><img src="closed.png" alt="-"/> Public Member Functions inherited from <a class="el" href="classGtk_1_1Container.html">Gtk::Container</a></td></tr>
<tr class="memitem:a34d8363b115b70b37fc94368b1eee34d inherit pub_methods_classGtk_1_1Container"><td class="memItemLeft" align="right" valign="top">virtual </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Container.html#a34d8363b115b70b37fc94368b1eee34d">~Container</a> ()</td></tr>
<tr class="separator:a34d8363b115b70b37fc94368b1eee34d inherit pub_methods_classGtk_1_1Container"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1b45ff015f4b09b143699bad9d4e423d inherit pub_methods_classGtk_1_1Container"><td class="memItemLeft" align="right" valign="top">GtkContainer* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Container.html#a1b45ff015f4b09b143699bad9d4e423d">gobj</a> ()</td></tr>
<tr class="memdesc:a1b45ff015f4b09b143699bad9d4e423d inherit pub_methods_classGtk_1_1Container"><td class="mdescLeft"> </td><td class="mdescRight">Provides access to the underlying C GtkObject. <a href="#a1b45ff015f4b09b143699bad9d4e423d">More...</a><br /></td></tr>
<tr class="separator:a1b45ff015f4b09b143699bad9d4e423d inherit pub_methods_classGtk_1_1Container"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab80be58ac27710f10f329120587e7d60 inherit pub_methods_classGtk_1_1Container"><td class="memItemLeft" align="right" valign="top">const GtkContainer* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Container.html#ab80be58ac27710f10f329120587e7d60">gobj</a> () const </td></tr>
<tr class="memdesc:ab80be58ac27710f10f329120587e7d60 inherit pub_methods_classGtk_1_1Container"><td class="mdescLeft"> </td><td class="mdescRight">Provides access to the underlying C GtkObject. <a href="#ab80be58ac27710f10f329120587e7d60">More...</a><br /></td></tr>
<tr class="separator:ab80be58ac27710f10f329120587e7d60 inherit pub_methods_classGtk_1_1Container"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a18b32244cb55a8eb34f9c6f195c8e5bc inherit pub_methods_classGtk_1_1Container"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Container.html#a18b32244cb55a8eb34f9c6f195c8e5bc">set_border_width</a> (guint border_width)</td></tr>
<tr class="memdesc:a18b32244cb55a8eb34f9c6f195c8e5bc inherit pub_methods_classGtk_1_1Container"><td class="mdescLeft"> </td><td class="mdescRight">Sets the border width of the container. <a href="#a18b32244cb55a8eb34f9c6f195c8e5bc">More...</a><br /></td></tr>
<tr class="separator:a18b32244cb55a8eb34f9c6f195c8e5bc inherit pub_methods_classGtk_1_1Container"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae8abd668b921456dec01f19f7d7965b7 inherit pub_methods_classGtk_1_1Container"><td class="memItemLeft" align="right" valign="top">guint </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Container.html#ae8abd668b921456dec01f19f7d7965b7">get_border_width</a> () const </td></tr>
<tr class="memdesc:ae8abd668b921456dec01f19f7d7965b7 inherit pub_methods_classGtk_1_1Container"><td class="mdescLeft"> </td><td class="mdescRight">Retrieves the border width of the container. <a href="#ae8abd668b921456dec01f19f7d7965b7">More...</a><br /></td></tr>
<tr class="separator:ae8abd668b921456dec01f19f7d7965b7 inherit pub_methods_classGtk_1_1Container"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae5f3b9c32b1b74e7613997843e91f4cc inherit pub_methods_classGtk_1_1Container"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Container.html#ae5f3b9c32b1b74e7613997843e91f4cc">add</a> (<a class="el" href="classGtk_1_1Widget.html">Widget</a>& widget)</td></tr>
<tr class="separator:ae5f3b9c32b1b74e7613997843e91f4cc inherit pub_methods_classGtk_1_1Container"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9f31c07118f7bdc7a4e0651acf35abbc inherit pub_methods_classGtk_1_1Container"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Container.html#a9f31c07118f7bdc7a4e0651acf35abbc">remove</a> (<a class="el" href="classGtk_1_1Widget.html">Widget</a>& widget)</td></tr>
<tr class="memdesc:a9f31c07118f7bdc7a4e0651acf35abbc inherit pub_methods_classGtk_1_1Container"><td class="mdescLeft"> </td><td class="mdescRight">Removes <em>widget</em> from <em>container</em>. <a href="#a9f31c07118f7bdc7a4e0651acf35abbc">More...</a><br /></td></tr>
<tr class="separator:a9f31c07118f7bdc7a4e0651acf35abbc inherit pub_methods_classGtk_1_1Container"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a7802e78b579714e7c673eb18213e0484 inherit pub_methods_classGtk_1_1Container"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Container.html#a7802e78b579714e7c673eb18213e0484">set_resize_mode</a> (<a class="el" href="group__gtkmmEnums.html#gad226b0aaa5fb1a2d445bee61e7acb9e0">ResizeMode</a> resize_mode)</td></tr>
<tr class="memdesc:a7802e78b579714e7c673eb18213e0484 inherit pub_methods_classGtk_1_1Container"><td class="mdescLeft"> </td><td class="mdescRight">Sets the resize mode for the container. <a href="#a7802e78b579714e7c673eb18213e0484">More...</a><br /></td></tr>
<tr class="separator:a7802e78b579714e7c673eb18213e0484 inherit pub_methods_classGtk_1_1Container"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aec53c7e59193e1de440c3eeadb7b9a68 inherit pub_methods_classGtk_1_1Container"><td class="memItemLeft" align="right" valign="top"><a class="el" href="group__gtkmmEnums.html#gad226b0aaa5fb1a2d445bee61e7acb9e0">ResizeMode</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Container.html#aec53c7e59193e1de440c3eeadb7b9a68">get_resize_mode</a> () const </td></tr>
<tr class="memdesc:aec53c7e59193e1de440c3eeadb7b9a68 inherit pub_methods_classGtk_1_1Container"><td class="mdescLeft"> </td><td class="mdescRight">Returns the resize mode for the container. <a href="#aec53c7e59193e1de440c3eeadb7b9a68">More...</a><br /></td></tr>
<tr class="separator:aec53c7e59193e1de440c3eeadb7b9a68 inherit pub_methods_classGtk_1_1Container"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:adfabd621934581f999c92dbd7b465203 inherit pub_methods_classGtk_1_1Container"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Container.html#adfabd621934581f999c92dbd7b465203">check_resize</a> ()</td></tr>
<tr class="memdesc:adfabd621934581f999c92dbd7b465203 inherit pub_methods_classGtk_1_1Container"><td class="mdescLeft"> </td><td class="mdescRight">Request that contained widgets check their size. <a href="#adfabd621934581f999c92dbd7b465203">More...</a><br /></td></tr>
<tr class="separator:adfabd621934581f999c92dbd7b465203 inherit pub_methods_classGtk_1_1Container"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a0af90e61f6c7e2bc9643654bf12506ae inherit pub_methods_classGtk_1_1Container"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Container.html#a0af90e61f6c7e2bc9643654bf12506ae">foreach</a> (const <a class="el" href="classGtk_1_1Container.html#a1aae47f0766a743730dca5fac6126cf1">ForeachSlot</a>& slot)</td></tr>
<tr class="memdesc:a0af90e61f6c7e2bc9643654bf12506ae inherit pub_methods_classGtk_1_1Container"><td class="mdescLeft"> </td><td class="mdescRight">Operate on contained items This is largely an internal used mainly for things like creating duplicates of internal lists and other such operations. <a href="#a0af90e61f6c7e2bc9643654bf12506ae">More...</a><br /></td></tr>
<tr class="separator:a0af90e61f6c7e2bc9643654bf12506ae inherit pub_methods_classGtk_1_1Container"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:acd2f9b9ac16ba96178d3f5169b07f4d0 inherit pub_methods_classGtk_1_1Container"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ListHandle.html">Glib::ListHandle</a>< <a class="el" href="classGtk_1_1Widget.html">Widget</a>* > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Container.html#acd2f9b9ac16ba96178d3f5169b07f4d0">get_children</a> ()</td></tr>
<tr class="memdesc:acd2f9b9ac16ba96178d3f5169b07f4d0 inherit pub_methods_classGtk_1_1Container"><td class="mdescLeft"> </td><td class="mdescRight">(internal) Operate on contained items (see <a class="el" href="classGtk_1_1Container.html#a0af90e61f6c7e2bc9643654bf12506ae" title="Operate on contained items This is largely an internal used mainly for things like creating duplicate...">foreach()</a>) <a href="#acd2f9b9ac16ba96178d3f5169b07f4d0">More...</a><br /></td></tr>
<tr class="separator:acd2f9b9ac16ba96178d3f5169b07f4d0 inherit pub_methods_classGtk_1_1Container"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a784ea65f0a8d4e1ff1aedfc9f5a39dbf inherit pub_methods_classGtk_1_1Container"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ListHandle.html">Glib::ListHandle</a>< const <a class="el" href="classGtk_1_1Widget.html">Widget</a>* > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Container.html#a784ea65f0a8d4e1ff1aedfc9f5a39dbf">get_children</a> () const </td></tr>
<tr class="memdesc:a784ea65f0a8d4e1ff1aedfc9f5a39dbf inherit pub_methods_classGtk_1_1Container"><td class="mdescLeft"> </td><td class="mdescRight">Returns the container's non-internal children. <a href="#a784ea65f0a8d4e1ff1aedfc9f5a39dbf">More...</a><br /></td></tr>
<tr class="separator:a784ea65f0a8d4e1ff1aedfc9f5a39dbf inherit pub_methods_classGtk_1_1Container"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac0f1b9c56c98ad73495c96efecb581fd inherit pub_methods_classGtk_1_1Container"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Container.html#ac0f1b9c56c98ad73495c96efecb581fd">propagate_expose</a> (<a class="el" href="classGtk_1_1Widget.html">Widget</a>& child, GdkEventExpose*<a class="el" href="classGtk_1_1Widget.html#aff4e0463f492043197c7d70daaad7590">event</a>)</td></tr>
<tr class="memdesc:ac0f1b9c56c98ad73495c96efecb581fd inherit pub_methods_classGtk_1_1Container"><td class="mdescLeft"> </td><td class="mdescRight">When a container receives an expose event, it must send synthetic expose events to all children that don't have their own Gdk::Windows. <a href="#ac0f1b9c56c98ad73495c96efecb581fd">More...</a><br /></td></tr>
<tr class="separator:ac0f1b9c56c98ad73495c96efecb581fd inherit pub_methods_classGtk_1_1Container"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:afc4ad027b2e5b6c2ceb775d5a65cc663 inherit pub_methods_classGtk_1_1Container"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Container.html#afc4ad027b2e5b6c2ceb775d5a65cc663">set_focus_chain</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ListHandle.html">Glib::ListHandle</a>< <a class="el" href="classGtk_1_1Widget.html">Widget</a>* >& focusable_widgets)</td></tr>
<tr class="memdesc:afc4ad027b2e5b6c2ceb775d5a65cc663 inherit pub_methods_classGtk_1_1Container"><td class="mdescLeft"> </td><td class="mdescRight">Sets a focus chain, overriding the one computed automatically by GTK+. <a href="#afc4ad027b2e5b6c2ceb775d5a65cc663">More...</a><br /></td></tr>
<tr class="separator:afc4ad027b2e5b6c2ceb775d5a65cc663 inherit pub_methods_classGtk_1_1Container"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5264c9059bf39f0f47f76fb164b4c062 inherit pub_methods_classGtk_1_1Container"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Container.html#a5264c9059bf39f0f47f76fb164b4c062">has_focus_chain</a> () const </td></tr>
<tr class="separator:a5264c9059bf39f0f47f76fb164b4c062 inherit pub_methods_classGtk_1_1Container"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2c42aca1f7673b3a44e91e0681f9d645 inherit pub_methods_classGtk_1_1Container"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ListHandle.html">Glib::ListHandle</a>< <a class="el" href="classGtk_1_1Widget.html">Widget</a>* > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Container.html#a2c42aca1f7673b3a44e91e0681f9d645">get_focus_chain</a> ()</td></tr>
<tr class="separator:a2c42aca1f7673b3a44e91e0681f9d645 inherit pub_methods_classGtk_1_1Container"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aab46b7ad3b55b305481798a917a6ae4d inherit pub_methods_classGtk_1_1Container"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ListHandle.html">Glib::ListHandle</a>< const <a class="el" href="classGtk_1_1Widget.html">Widget</a>* > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Container.html#aab46b7ad3b55b305481798a917a6ae4d">get_focus_chain</a> () const </td></tr>
<tr class="separator:aab46b7ad3b55b305481798a917a6ae4d inherit pub_methods_classGtk_1_1Container"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad59fccdb1940b1a790b49520b98d7a60 inherit pub_methods_classGtk_1_1Container"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Container.html#ad59fccdb1940b1a790b49520b98d7a60">unset_focus_chain</a> ()</td></tr>
<tr class="memdesc:ad59fccdb1940b1a790b49520b98d7a60 inherit pub_methods_classGtk_1_1Container"><td class="mdescLeft"> </td><td class="mdescRight">Removes a focus chain explicitly set with <a class="el" href="classGtk_1_1Container.html#afc4ad027b2e5b6c2ceb775d5a65cc663" title="Sets a focus chain, overriding the one computed automatically by GTK+. ">set_focus_chain()</a>. <a href="#ad59fccdb1940b1a790b49520b98d7a60">More...</a><br /></td></tr>
<tr class="separator:ad59fccdb1940b1a790b49520b98d7a60 inherit pub_methods_classGtk_1_1Container"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a81af5a25fca7eb4fe74aabadeead132a inherit pub_methods_classGtk_1_1Container"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Container.html#a81af5a25fca7eb4fe74aabadeead132a">set_reallocate_redraws</a> (bool needs_redraws=true)</td></tr>
<tr class="memdesc:a81af5a25fca7eb4fe74aabadeead132a inherit pub_methods_classGtk_1_1Container"><td class="mdescLeft"> </td><td class="mdescRight">Sets the <em>reallocate_redraws</em> flag of the container to the given value. <a href="#a81af5a25fca7eb4fe74aabadeead132a">More...</a><br /></td></tr>
<tr class="separator:a81af5a25fca7eb4fe74aabadeead132a inherit pub_methods_classGtk_1_1Container"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac35aa66f4997b824207ac803ad8bdf28 inherit pub_methods_classGtk_1_1Container"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Container.html#ac35aa66f4997b824207ac803ad8bdf28">set_focus_child</a> (<a class="el" href="classGtk_1_1Widget.html">Widget</a>& widget)</td></tr>
<tr class="memdesc:ac35aa66f4997b824207ac803ad8bdf28 inherit pub_methods_classGtk_1_1Container"><td class="mdescLeft"> </td><td class="mdescRight">Sets the focus on a child. <a href="#ac35aa66f4997b824207ac803ad8bdf28">More...</a><br /></td></tr>
<tr class="separator:ac35aa66f4997b824207ac803ad8bdf28 inherit pub_methods_classGtk_1_1Container"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab70500bfb8922b8562c799406a2ce6fd inherit pub_methods_classGtk_1_1Container"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Container.html#ab70500bfb8922b8562c799406a2ce6fd">set_focus_vadjustment</a> (<a class="el" href="classGtk_1_1Adjustment.html">Adjustment</a>& adjustment)</td></tr>
<tr class="memdesc:ab70500bfb8922b8562c799406a2ce6fd inherit pub_methods_classGtk_1_1Container"><td class="mdescLeft"> </td><td class="mdescRight">Hooks up an adjustment to focus handling in a container, so when a child of the container is focused, the adjustment is scrolled to show that widget. <a href="#ab70500bfb8922b8562c799406a2ce6fd">More...</a><br /></td></tr>
<tr class="separator:ab70500bfb8922b8562c799406a2ce6fd inherit pub_methods_classGtk_1_1Container"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a37772e7df615d4e5b63d32f8bd3257e5 inherit pub_methods_classGtk_1_1Container"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGtk_1_1Adjustment.html">Adjustment</a>* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Container.html#a37772e7df615d4e5b63d32f8bd3257e5">get_focus_vadjustment</a> ()</td></tr>
<tr class="memdesc:a37772e7df615d4e5b63d32f8bd3257e5 inherit pub_methods_classGtk_1_1Container"><td class="mdescLeft"> </td><td class="mdescRight">Retrieves the vertical focus adjustment for the container. <a href="#a37772e7df615d4e5b63d32f8bd3257e5">More...</a><br /></td></tr>
<tr class="separator:a37772e7df615d4e5b63d32f8bd3257e5 inherit pub_methods_classGtk_1_1Container"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a64732f273c4602f37cd3e3cd4516755a inherit pub_methods_classGtk_1_1Container"><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classGtk_1_1Adjustment.html">Adjustment</a>* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Container.html#a64732f273c4602f37cd3e3cd4516755a">get_focus_vadjustment</a> () const </td></tr>
<tr class="memdesc:a64732f273c4602f37cd3e3cd4516755a inherit pub_methods_classGtk_1_1Container"><td class="mdescLeft"> </td><td class="mdescRight">Retrieves the vertical focus adjustment for the container. <a href="#a64732f273c4602f37cd3e3cd4516755a">More...</a><br /></td></tr>
<tr class="separator:a64732f273c4602f37cd3e3cd4516755a inherit pub_methods_classGtk_1_1Container"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae1e608edb41c23a53007102a60a7b0f1 inherit pub_methods_classGtk_1_1Container"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Container.html#ae1e608edb41c23a53007102a60a7b0f1">set_focus_hadjustment</a> (<a class="el" href="classGtk_1_1Adjustment.html">Adjustment</a>& adjustment)</td></tr>
<tr class="memdesc:ae1e608edb41c23a53007102a60a7b0f1 inherit pub_methods_classGtk_1_1Container"><td class="mdescLeft"> </td><td class="mdescRight">Hooks up an adjustment to focus handling in a container, so when a child of the container is focused, the adjustment is scrolled to show that widget. <a href="#ae1e608edb41c23a53007102a60a7b0f1">More...</a><br /></td></tr>
<tr class="separator:ae1e608edb41c23a53007102a60a7b0f1 inherit pub_methods_classGtk_1_1Container"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a91a8d96ca5b11cff03340404c3b5d415 inherit pub_methods_classGtk_1_1Container"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGtk_1_1Adjustment.html">Adjustment</a>* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Container.html#a91a8d96ca5b11cff03340404c3b5d415">get_focus_hadjustment</a> ()</td></tr>
<tr class="memdesc:a91a8d96ca5b11cff03340404c3b5d415 inherit pub_methods_classGtk_1_1Container"><td class="mdescLeft"> </td><td class="mdescRight">Retrieves the horizontal focus adjustment for the container. <a href="#a91a8d96ca5b11cff03340404c3b5d415">More...</a><br /></td></tr>
<tr class="separator:a91a8d96ca5b11cff03340404c3b5d415 inherit pub_methods_classGtk_1_1Container"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:afab55d54248d40734f5de38767c9348c inherit pub_methods_classGtk_1_1Container"><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classGtk_1_1Adjustment.html">Adjustment</a>* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Container.html#afab55d54248d40734f5de38767c9348c">get_focus_hadjustment</a> () const </td></tr>
<tr class="memdesc:afab55d54248d40734f5de38767c9348c inherit pub_methods_classGtk_1_1Container"><td class="mdescLeft"> </td><td class="mdescRight">Retrieves the horizontal focus adjustment for the container. <a href="#afab55d54248d40734f5de38767c9348c">More...</a><br /></td></tr>
<tr class="separator:afab55d54248d40734f5de38767c9348c inherit pub_methods_classGtk_1_1Container"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a00dd122adfa3a1f4d816cab0b726dafe inherit pub_methods_classGtk_1_1Container"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Container.html#a00dd122adfa3a1f4d816cab0b726dafe">resize_children</a> ()</td></tr>
<tr class="separator:a00dd122adfa3a1f4d816cab0b726dafe inherit pub_methods_classGtk_1_1Container"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac67c721b8e20c78afa2129446290e2f1 inherit pub_methods_classGtk_1_1Container"><td class="memItemLeft" align="right" valign="top">GType </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Container.html#ac67c721b8e20c78afa2129446290e2f1">child_type</a> () const </td></tr>
<tr class="memdesc:ac67c721b8e20c78afa2129446290e2f1 inherit pub_methods_classGtk_1_1Container"><td class="mdescLeft"> </td><td class="mdescRight">Returns the type of the children supported by the container. <a href="#ac67c721b8e20c78afa2129446290e2f1">More...</a><br /></td></tr>
<tr class="separator:ac67c721b8e20c78afa2129446290e2f1 inherit pub_methods_classGtk_1_1Container"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2dd9cacbab5b93066edb7bbb3074aa2b inherit pub_methods_classGtk_1_1Container"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< void, <a class="el" href="classGtk_1_1Widget.html">Widget</a>* > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Container.html#a2dd9cacbab5b93066edb7bbb3074aa2b">signal_add</a> ()</td></tr>
<tr class="separator:a2dd9cacbab5b93066edb7bbb3074aa2b inherit pub_methods_classGtk_1_1Container"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae6f5bf50798d2be4506cde3d0d58bf10 inherit pub_methods_classGtk_1_1Container"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< void, <a class="el" href="classGtk_1_1Widget.html">Widget</a>* > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Container.html#ae6f5bf50798d2be4506cde3d0d58bf10">signal_remove</a> ()</td></tr>
<tr class="separator:ae6f5bf50798d2be4506cde3d0d58bf10 inherit pub_methods_classGtk_1_1Container"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a6f0597d09462834ecf1b8a210350e67a inherit pub_methods_classGtk_1_1Container"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< void > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Container.html#a6f0597d09462834ecf1b8a210350e67a">signal_check_resize</a> ()</td></tr>
<tr class="separator:a6f0597d09462834ecf1b8a210350e67a inherit pub_methods_classGtk_1_1Container"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac7659a0c723625c75928c58e338c3b81 inherit pub_methods_classGtk_1_1Container"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< void, <a class="el" href="classGtk_1_1Widget.html">Widget</a>* > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Container.html#ac7659a0c723625c75928c58e338c3b81">signal_set_focus_child</a> ()</td></tr>
<tr class="separator:ac7659a0c723625c75928c58e338c3b81 inherit pub_methods_classGtk_1_1Container"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a0130c42ee29c728a9b6b0de06804d020 inherit pub_methods_classGtk_1_1Container"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Container.html#a0130c42ee29c728a9b6b0de06804d020">show_all_children</a> (bool recursive=true)</td></tr>
<tr class="separator:a0130c42ee29c728a9b6b0de06804d020 inherit pub_methods_classGtk_1_1Container"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pub_methods_classGtk_1_1Widget"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classGtk_1_1Widget')"><img src="closed.png" alt="-"/> Public Member Functions inherited from <a class="el" href="classGtk_1_1Widget.html">Gtk::Widget</a></td></tr>
<tr class="memitem:ad5ba4cfae30c8b5511d3126c6bf0cef6 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">virtual </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#ad5ba4cfae30c8b5511d3126c6bf0cef6">~Widget</a> ()</td></tr>
<tr class="separator:ad5ba4cfae30c8b5511d3126c6bf0cef6 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a6667a82920375b2ebde07bc1ffdc3641 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">GtkWidget* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a6667a82920375b2ebde07bc1ffdc3641">gobj</a> ()</td></tr>
<tr class="memdesc:a6667a82920375b2ebde07bc1ffdc3641 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Provides access to the underlying C GtkObject. <a href="#a6667a82920375b2ebde07bc1ffdc3641">More...</a><br /></td></tr>
<tr class="separator:a6667a82920375b2ebde07bc1ffdc3641 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad998178529a53b80f3de96d10b1deffd inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">const GtkWidget* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#ad998178529a53b80f3de96d10b1deffd">gobj</a> () const </td></tr>
<tr class="memdesc:ad998178529a53b80f3de96d10b1deffd inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Provides access to the underlying C GtkObject. <a href="#ad998178529a53b80f3de96d10b1deffd">More...</a><br /></td></tr>
<tr class="separator:ad998178529a53b80f3de96d10b1deffd inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2f4ed325833a193177e870ac55e6922f inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a2f4ed325833a193177e870ac55e6922f">set_scroll_adjustments</a> (<a class="el" href="classGtk_1_1Adjustment.html">Adjustment</a>& hadjustment, <a class="el" href="classGtk_1_1Adjustment.html">Adjustment</a>& vadjustment)</td></tr>
<tr class="memdesc:a2f4ed325833a193177e870ac55e6922f inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">For widgets that support scrolling, sets the scroll adjustments and returns <code>true</code>. <a href="#a2f4ed325833a193177e870ac55e6922f">More...</a><br /></td></tr>
<tr class="separator:a2f4ed325833a193177e870ac55e6922f inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa791d86a0bb3658e378e81d731dd0121 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#aa791d86a0bb3658e378e81d731dd0121">show</a> ()</td></tr>
<tr class="memdesc:aa791d86a0bb3658e378e81d731dd0121 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Flags a widget to be displayed. <a href="#aa791d86a0bb3658e378e81d731dd0121">More...</a><br /></td></tr>
<tr class="separator:aa791d86a0bb3658e378e81d731dd0121 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a921b49004ee48c9681d892e038741e29 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a921b49004ee48c9681d892e038741e29">show_now</a> ()</td></tr>
<tr class="memdesc:a921b49004ee48c9681d892e038741e29 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Shows a widget. <a href="#a921b49004ee48c9681d892e038741e29">More...</a><br /></td></tr>
<tr class="separator:a921b49004ee48c9681d892e038741e29 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a285c1775842292ae4bc6d074aa892c61 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a285c1775842292ae4bc6d074aa892c61">hide</a> ()</td></tr>
<tr class="memdesc:a285c1775842292ae4bc6d074aa892c61 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Reverses the effects of <a class="el" href="classGtk_1_1Widget.html#aa791d86a0bb3658e378e81d731dd0121" title="Flags a widget to be displayed. ">show()</a>, causing the widget to be hidden (invisible to the user). <a href="#a285c1775842292ae4bc6d074aa892c61">More...</a><br /></td></tr>
<tr class="separator:a285c1775842292ae4bc6d074aa892c61 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4fab2509c3afe1952a408494561295c0 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a4fab2509c3afe1952a408494561295c0">show_all</a> ()</td></tr>
<tr class="memdesc:a4fab2509c3afe1952a408494561295c0 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Recursively shows a widget, and any child widgets (if the widget is a container). <a href="#a4fab2509c3afe1952a408494561295c0">More...</a><br /></td></tr>
<tr class="separator:a4fab2509c3afe1952a408494561295c0 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9ad829a03c48b8c697c7ecaef3319fc7 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a9ad829a03c48b8c697c7ecaef3319fc7">hide_all</a> ()</td></tr>
<tr class="memdesc:a9ad829a03c48b8c697c7ecaef3319fc7 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Recursively hides a widget and any child widgets. <a href="#a9ad829a03c48b8c697c7ecaef3319fc7">More...</a><br /></td></tr>
<tr class="separator:a9ad829a03c48b8c697c7ecaef3319fc7 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a63912f0924724c78298882b7c85139b4 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a63912f0924724c78298882b7c85139b4">queue_draw</a> ()</td></tr>
<tr class="memdesc:a63912f0924724c78298882b7c85139b4 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Equivalent to calling <a class="el" href="classGtk_1_1Widget.html#a8c32356962bb2dc596b9bcf1684e4eac" title="Invalidates the rectangular area of widget defined by x, y, width and height by calling gdk_window_in...">queue_draw_area()</a> for the entire area of a widget. <a href="#a63912f0924724c78298882b7c85139b4">More...</a><br /></td></tr>
<tr class="separator:a63912f0924724c78298882b7c85139b4 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a8c32356962bb2dc596b9bcf1684e4eac inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a8c32356962bb2dc596b9bcf1684e4eac">queue_draw_area</a> (int x, int y, int width, int height)</td></tr>
<tr class="memdesc:a8c32356962bb2dc596b9bcf1684e4eac inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Invalidates the rectangular area of <em>widget</em> defined by <em>x</em>, <em>y</em>, <em>width</em> and <em>height</em> by calling gdk_window_invalidate_rect() on the widget's window and all its child windows. <a href="#a8c32356962bb2dc596b9bcf1684e4eac">More...</a><br /></td></tr>
<tr class="separator:a8c32356962bb2dc596b9bcf1684e4eac inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af3f9465454a376549b12a5eeee1277c2 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#af3f9465454a376549b12a5eeee1277c2">queue_resize</a> ()</td></tr>
<tr class="memdesc:af3f9465454a376549b12a5eeee1277c2 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">This function is only for use in widget implementations. <a href="#af3f9465454a376549b12a5eeee1277c2">More...</a><br /></td></tr>
<tr class="separator:af3f9465454a376549b12a5eeee1277c2 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a98944a56dd747042b0718d177082b944 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="el" href="namespaceGtk.html#a5ae8be4427f5ac86ecb38401ab7e4d78">Requisition</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a98944a56dd747042b0718d177082b944">size_request</a> () const </td></tr>
<tr class="memdesc:a98944a56dd747042b0718d177082b944 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">This function is typically used when implementing a <a class="el" href="classGtk_1_1Container.html" title="Abstract container class. ">Gtk::Container</a> subclass. <a href="#a98944a56dd747042b0718d177082b944">More...</a><br /></td></tr>
<tr class="separator:a98944a56dd747042b0718d177082b944 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a586fa49ce02d677cd35a47d8fe225c01 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a586fa49ce02d677cd35a47d8fe225c01">size_request</a> (const <a class="el" href="namespaceGtk.html#a5ae8be4427f5ac86ecb38401ab7e4d78">Requisition</a>& requisition)</td></tr>
<tr class="memdesc:a586fa49ce02d677cd35a47d8fe225c01 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">This function is typically used when implementing a <a class="el" href="classGtk_1_1Container.html" title="Abstract container class. ">Gtk::Container</a> subclass. <a href="#a586fa49ce02d677cd35a47d8fe225c01">More...</a><br /></td></tr>
<tr class="separator:a586fa49ce02d677cd35a47d8fe225c01 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a13a1a6d8e6ec7297fb0629b86ce8d069 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a13a1a6d8e6ec7297fb0629b86ce8d069">size_allocate</a> (const <a class="el" href="namespaceGtk.html#a8aafb0aa51d1034c06046f066563367b">Allocation</a>& allocation)</td></tr>
<tr class="memdesc:a13a1a6d8e6ec7297fb0629b86ce8d069 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">This function is only used by <a class="el" href="classGtk_1_1Container.html" title="Abstract container class. ">Gtk::Container</a> subclasses, to assign a size and position to their child widgets. <a href="#a13a1a6d8e6ec7297fb0629b86ce8d069">More...</a><br /></td></tr>
<tr class="separator:a13a1a6d8e6ec7297fb0629b86ce8d069 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a55ae2e3c3a3bd14db2b86657969e610c inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a55ae2e3c3a3bd14db2b86657969e610c">add_accelerator</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>& accel_signal, const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGtk_1_1AccelGroup.html">AccelGroup</a> >& accel_group, guint accel_key, <a class="el" href="group__gdkmmEnums.html#ga734c2979005c87dbe51223a0128cdd97">Gdk::ModifierType</a> accel_mods, <a class="el" href="group__gtkmmEnums.html#gab431162192e6ad78f2153cae6683238a">AccelFlags</a> accel_flags)</td></tr>
<tr class="memdesc:a55ae2e3c3a3bd14db2b86657969e610c inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Installs an accelerator for this <em>widget</em> in <em>accel_group</em> that causes <em>accel_signal</em> to be emitted if the accelerator is activated. <a href="#a55ae2e3c3a3bd14db2b86657969e610c">More...</a><br /></td></tr>
<tr class="separator:a55ae2e3c3a3bd14db2b86657969e610c inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2131441d8654ca69a8122139fbb3e772 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a2131441d8654ca69a8122139fbb3e772">remove_accelerator</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGtk_1_1AccelGroup.html">AccelGroup</a> >& accel_group, guint accel_key, <a class="el" href="group__gdkmmEnums.html#ga734c2979005c87dbe51223a0128cdd97">Gdk::ModifierType</a> accel_mods)</td></tr>
<tr class="memdesc:a2131441d8654ca69a8122139fbb3e772 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Removes an accelerator from <em>widget</em>, previously installed with <a class="el" href="classGtk_1_1Widget.html#a55ae2e3c3a3bd14db2b86657969e610c" title="Installs an accelerator for this widget in accel_group that causes accel_signal to be emitted if the ...">add_accelerator()</a>. <a href="#a2131441d8654ca69a8122139fbb3e772">More...</a><br /></td></tr>
<tr class="separator:a2131441d8654ca69a8122139fbb3e772 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9c3436836536202a92a2d7597d828f05 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a9c3436836536202a92a2d7597d828f05">set_accel_path</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>& accel_path, const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGtk_1_1AccelGroup.html">AccelGroup</a> >& accel_group)</td></tr>
<tr class="memdesc:a9c3436836536202a92a2d7597d828f05 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Given an accelerator group, <em>accel_group</em>, and an accelerator path, <em>accel_path</em>, sets up an accelerator in <em>accel_group</em> so whenever the key binding that is defined for <em>accel_path</em> is pressed, <em>widget</em> will be activated. <a href="#a9c3436836536202a92a2d7597d828f05">More...</a><br /></td></tr>
<tr class="separator:a9c3436836536202a92a2d7597d828f05 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ace91dc69ed75652af1c00e0a8ef94f92 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#ace91dc69ed75652af1c00e0a8ef94f92">mnemonic_activate</a> (bool group_cycling)</td></tr>
<tr class="memdesc:ace91dc69ed75652af1c00e0a8ef94f92 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Emits the <a class="el" href="classGtk_1_1Widget.html#a41eb8c621d88acad7afb18746a1663f4">Gtk::Widget::signal_mnemonic_activate()</a> signal. <a href="#ace91dc69ed75652af1c00e0a8ef94f92">More...</a><br /></td></tr>
<tr class="separator:ace91dc69ed75652af1c00e0a8ef94f92 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aff4e0463f492043197c7d70daaad7590 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#aff4e0463f492043197c7d70daaad7590">event</a> (GdkEvent* event)</td></tr>
<tr class="memdesc:aff4e0463f492043197c7d70daaad7590 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Rarely-used function. <a href="#aff4e0463f492043197c7d70daaad7590">More...</a><br /></td></tr>
<tr class="separator:aff4e0463f492043197c7d70daaad7590 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9cae5fd4aef375d0aec0d63146e2403f inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a9cae5fd4aef375d0aec0d63146e2403f">send_expose</a> (GdkEvent*<a class="el" href="classGtk_1_1Widget.html#aff4e0463f492043197c7d70daaad7590">event</a>)</td></tr>
<tr class="memdesc:a9cae5fd4aef375d0aec0d63146e2403f inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Very rarely-used function. <a href="#a9cae5fd4aef375d0aec0d63146e2403f">More...</a><br /></td></tr>
<tr class="separator:a9cae5fd4aef375d0aec0d63146e2403f inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a235201838fdc701d790366469f55e1a6 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a235201838fdc701d790366469f55e1a6">send_focus_change</a> (GdkEvent*<a class="el" href="classGtk_1_1Widget.html#aff4e0463f492043197c7d70daaad7590">event</a>)</td></tr>
<tr class="memdesc:a235201838fdc701d790366469f55e1a6 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Sends the focus change <em>event</em> to <em>widget</em>. <a href="#a235201838fdc701d790366469f55e1a6">More...</a><br /></td></tr>
<tr class="separator:a235201838fdc701d790366469f55e1a6 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:adc42f15b07b367e41ac690edc2c96693 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#adc42f15b07b367e41ac690edc2c96693">activate</a> ()</td></tr>
<tr class="memdesc:adc42f15b07b367e41ac690edc2c96693 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">For widgets that can be "activated" (buttons, menu items, etc.) this function activates them. <a href="#adc42f15b07b367e41ac690edc2c96693">More...</a><br /></td></tr>
<tr class="separator:adc42f15b07b367e41ac690edc2c96693 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a662a78a1b0f2b1572b139ce09d5489cb inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a662a78a1b0f2b1572b139ce09d5489cb">reparent</a> (<a class="el" href="classGtk_1_1Widget.html">Widget</a>& new_parent)</td></tr>
<tr class="memdesc:a662a78a1b0f2b1572b139ce09d5489cb inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Moves a widget from one <a class="el" href="classGtk_1_1Container.html" title="Abstract container class. ">Gtk::Container</a> to another, handling reference count issues to avoid destroying the widget. <a href="#a662a78a1b0f2b1572b139ce09d5489cb">More...</a><br /></td></tr>
<tr class="separator:a662a78a1b0f2b1572b139ce09d5489cb inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:acb010d9cbff38078be998d617e61c0fb inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#acb010d9cbff38078be998d617e61c0fb">intersect</a> (const <a class="el" href="classGdk_1_1Rectangle.html">Gdk::Rectangle</a>& area) const </td></tr>
<tr class="separator:acb010d9cbff38078be998d617e61c0fb inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:acca2ca3696d71e84d72f3a86334c741b inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#acca2ca3696d71e84d72f3a86334c741b">intersect</a> (const <a class="el" href="classGdk_1_1Rectangle.html">Gdk::Rectangle</a>& area, <a class="el" href="classGdk_1_1Rectangle.html">Gdk::Rectangle</a>& intersection) const </td></tr>
<tr class="memdesc:acca2ca3696d71e84d72f3a86334c741b inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Computes the intersection of a <em>widget's</em> area and <em>area</em>, storing the intersection in <em>intersection</em>, and returns <code>true</code> if there was an intersection. <a href="#acca2ca3696d71e84d72f3a86334c741b">More...</a><br /></td></tr>
<tr class="separator:acca2ca3696d71e84d72f3a86334c741b inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:acc2e733877b5621c3543b6f186f2223c inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGdk_1_1Region.html">Gdk::Region</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#acc2e733877b5621c3543b6f186f2223c">region_intersect</a> (const <a class="el" href="classGdk_1_1Region.html">Gdk::Region</a>& region) const </td></tr>
<tr class="memdesc:acc2e733877b5621c3543b6f186f2223c inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Computes the intersection of a <em>widget's</em> area and <em>region</em>, returning the intersection. <a href="#acc2e733877b5621c3543b6f186f2223c">More...</a><br /></td></tr>
<tr class="separator:acc2e733877b5621c3543b6f186f2223c inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a66c192d5c2c2c8c0dc11a1503d6213f8 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a66c192d5c2c2c8c0dc11a1503d6213f8">freeze_child_notify</a> ()</td></tr>
<tr class="memdesc:a66c192d5c2c2c8c0dc11a1503d6213f8 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Stops emission of <a class="el" href="classGtk_1_1Widget.html#a2584896d844005c0ec19a10273a88473" title="The ::child-notify signal is emitted for each child property that has changed on an object...">Gtk::Widget::signal_child_notify()</a> signals on <em>widget</em>. <a href="#a66c192d5c2c2c8c0dc11a1503d6213f8">More...</a><br /></td></tr>
<tr class="separator:a66c192d5c2c2c8c0dc11a1503d6213f8 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a70d846e0fce800623118eeb5a2d983d9 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a70d846e0fce800623118eeb5a2d983d9">child_notify</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>& child_property)</td></tr>
<tr class="memdesc:a70d846e0fce800623118eeb5a2d983d9 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Emits a <a class="el" href="classGtk_1_1Widget.html#a2584896d844005c0ec19a10273a88473" title="The ::child-notify signal is emitted for each child property that has changed on an object...">Gtk::Widget::signal_child_notify()</a> signal for the child property <em>child_property</em> on <em>widget</em>. <a href="#a70d846e0fce800623118eeb5a2d983d9">More...</a><br /></td></tr>
<tr class="separator:a70d846e0fce800623118eeb5a2d983d9 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a564b1684aadf618762fbc762af96c1d3 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a564b1684aadf618762fbc762af96c1d3">thaw_child_notify</a> ()</td></tr>
<tr class="memdesc:a564b1684aadf618762fbc762af96c1d3 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Reverts the effect of a previous call to <a class="el" href="classGtk_1_1Widget.html#a66c192d5c2c2c8c0dc11a1503d6213f8" title="Stops emission of Gtk::Widget::signal_child_notify() signals on widget. ">freeze_child_notify()</a>. <a href="#a564b1684aadf618762fbc762af96c1d3">More...</a><br /></td></tr>
<tr class="separator:a564b1684aadf618762fbc762af96c1d3 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a50a016e05181fb474516723240a87134 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a50a016e05181fb474516723240a87134">set_can_focus</a> (bool <a class="el" href="classGtk_1_1Widget.html#aa267cd0f120a56d6908c0ba66d3accf3">can_focus</a>=true)</td></tr>
<tr class="memdesc:a50a016e05181fb474516723240a87134 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Specifies whether <em>widget</em> can own the input focus. <a href="#a50a016e05181fb474516723240a87134">More...</a><br /></td></tr>
<tr class="separator:a50a016e05181fb474516723240a87134 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac80afe09d6d0c5d5c30376b1cddb0626 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#ac80afe09d6d0c5d5c30376b1cddb0626">get_can_focus</a> () const </td></tr>
<tr class="memdesc:ac80afe09d6d0c5d5c30376b1cddb0626 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Determines whether <em>widget</em> can own the input focus. <a href="#ac80afe09d6d0c5d5c30376b1cddb0626">More...</a><br /></td></tr>
<tr class="separator:ac80afe09d6d0c5d5c30376b1cddb0626 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa267cd0f120a56d6908c0ba66d3accf3 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#aa267cd0f120a56d6908c0ba66d3accf3">can_focus</a> () const </td></tr>
<tr class="memdesc:aa267cd0f120a56d6908c0ba66d3accf3 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Determines whether <em>widget</em> can own the input focus. <a href="#aa267cd0f120a56d6908c0ba66d3accf3">More...</a><br /></td></tr>
<tr class="separator:aa267cd0f120a56d6908c0ba66d3accf3 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a895663325ac65b9860e57fc60a509384 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a895663325ac65b9860e57fc60a509384">has_focus</a> () const </td></tr>
<tr class="memdesc:a895663325ac65b9860e57fc60a509384 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Determines if the widget has the global input focus. <a href="#a895663325ac65b9860e57fc60a509384">More...</a><br /></td></tr>
<tr class="separator:a895663325ac65b9860e57fc60a509384 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae2544c9249c647b425d11ea28808adb1 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#ae2544c9249c647b425d11ea28808adb1">is_focus</a> () const </td></tr>
<tr class="memdesc:ae2544c9249c647b425d11ea28808adb1 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Determines if the widget is the focus widget within its toplevel. <a href="#ae2544c9249c647b425d11ea28808adb1">More...</a><br /></td></tr>
<tr class="separator:ae2544c9249c647b425d11ea28808adb1 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4c376dd31e5b4d616d8f914338fea8b6 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a4c376dd31e5b4d616d8f914338fea8b6">grab_focus</a> ()</td></tr>
<tr class="memdesc:a4c376dd31e5b4d616d8f914338fea8b6 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Causes <em>widget</em> to have the keyboard focus for the <a class="el" href="classGtk_1_1Window.html" title="Toplevel Window This represents all widgets which are physical windows controlled by the window manag...">Gtk::Window</a> it's inside. <a href="#a4c376dd31e5b4d616d8f914338fea8b6">More...</a><br /></td></tr>
<tr class="separator:a4c376dd31e5b4d616d8f914338fea8b6 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a07ad78bd76f3b2a25844d5e55816e609 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a07ad78bd76f3b2a25844d5e55816e609">set_can_default</a> (bool <a class="el" href="classGtk_1_1Widget.html#a5067c8af8ab09f6fdf872d6d25d32a53">can_default</a>=true)</td></tr>
<tr class="memdesc:a07ad78bd76f3b2a25844d5e55816e609 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Specifies whether <em>widget</em> can be a default widget. <a href="#a07ad78bd76f3b2a25844d5e55816e609">More...</a><br /></td></tr>
<tr class="separator:a07ad78bd76f3b2a25844d5e55816e609 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a97ede3d3eb0f9b53328723e5226bb782 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a97ede3d3eb0f9b53328723e5226bb782">get_can_default</a> () const </td></tr>
<tr class="memdesc:a97ede3d3eb0f9b53328723e5226bb782 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Determines whether <em>widget</em> can be a default widget. <a href="#a97ede3d3eb0f9b53328723e5226bb782">More...</a><br /></td></tr>
<tr class="separator:a97ede3d3eb0f9b53328723e5226bb782 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5067c8af8ab09f6fdf872d6d25d32a53 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a5067c8af8ab09f6fdf872d6d25d32a53">can_default</a> () const </td></tr>
<tr class="memdesc:a5067c8af8ab09f6fdf872d6d25d32a53 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Determines whether <em>widget</em> can be a default widget. <a href="#a5067c8af8ab09f6fdf872d6d25d32a53">More...</a><br /></td></tr>
<tr class="separator:a5067c8af8ab09f6fdf872d6d25d32a53 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a80b5819c1a27cc7c942281c6a1a90e8f inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a80b5819c1a27cc7c942281c6a1a90e8f">has_default</a> () const </td></tr>
<tr class="memdesc:a80b5819c1a27cc7c942281c6a1a90e8f inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Determines whether <em>widget</em> is the current default widget within its toplevel. <a href="#a80b5819c1a27cc7c942281c6a1a90e8f">More...</a><br /></td></tr>
<tr class="separator:a80b5819c1a27cc7c942281c6a1a90e8f inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a873be7db035102a20dbd9823ee874be1 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a873be7db035102a20dbd9823ee874be1">grab_default</a> ()</td></tr>
<tr class="memdesc:a873be7db035102a20dbd9823ee874be1 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Causes <em>widget</em> to become the default widget. <a href="#a873be7db035102a20dbd9823ee874be1">More...</a><br /></td></tr>
<tr class="separator:a873be7db035102a20dbd9823ee874be1 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a781389940fbd7baa528eee5ed6108ac5 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a781389940fbd7baa528eee5ed6108ac5">set_receives_default</a> (bool <a class="el" href="classGtk_1_1Widget.html#a5283879ace0f2f71f0abb5b316fe1667">receives_default</a>=true)</td></tr>
<tr class="memdesc:a781389940fbd7baa528eee5ed6108ac5 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Specifies whether <em>widget</em> will be treated as the default widget within its toplevel when it has the focus, even if another widget is the default. <a href="#a781389940fbd7baa528eee5ed6108ac5">More...</a><br /></td></tr>
<tr class="separator:a781389940fbd7baa528eee5ed6108ac5 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad09b518cc7b76165a320aeff983e9a52 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#ad09b518cc7b76165a320aeff983e9a52">get_receives_default</a> () const </td></tr>
<tr class="memdesc:ad09b518cc7b76165a320aeff983e9a52 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Determines whether <em>widget</em> is alyways treated as default widget withing its toplevel when it has the focus, even if another widget is the default. <a href="#ad09b518cc7b76165a320aeff983e9a52">More...</a><br /></td></tr>
<tr class="separator:ad09b518cc7b76165a320aeff983e9a52 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a0eb25d2165758a990289bceeaa33a03e inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a0eb25d2165758a990289bceeaa33a03e">has_grab</a> () const </td></tr>
<tr class="memdesc:a0eb25d2165758a990289bceeaa33a03e inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Determines whether the widget is currently grabbing events, so it is the only widget receiving input events (keyboard and mouse). <a href="#a0eb25d2165758a990289bceeaa33a03e">More...</a><br /></td></tr>
<tr class="separator:a0eb25d2165758a990289bceeaa33a03e inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aac16e0fc4bc802b9d894ddf693875c90 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#aac16e0fc4bc802b9d894ddf693875c90">add_modal_grab</a> ()</td></tr>
<tr class="memdesc:aac16e0fc4bc802b9d894ddf693875c90 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Block events to everything else than this widget and its children. <a href="#aac16e0fc4bc802b9d894ddf693875c90">More...</a><br /></td></tr>
<tr class="separator:aac16e0fc4bc802b9d894ddf693875c90 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a86671ee3065b1616f730ea35d8daa750 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a86671ee3065b1616f730ea35d8daa750">remove_modal_grab</a> ()</td></tr>
<tr class="memdesc:a86671ee3065b1616f730ea35d8daa750 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Remove the modal grab of the widget in case it was previously grabbed. <a href="#a86671ee3065b1616f730ea35d8daa750">More...</a><br /></td></tr>
<tr class="separator:a86671ee3065b1616f730ea35d8daa750 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a12b052fca2ace42902e0448862fbf189 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a12b052fca2ace42902e0448862fbf189">set_name</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>& name)</td></tr>
<tr class="memdesc:a12b052fca2ace42902e0448862fbf189 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Widgets can be named, which allows you to refer to them from a gtkrc file. <a href="#a12b052fca2ace42902e0448862fbf189">More...</a><br /></td></tr>
<tr class="separator:a12b052fca2ace42902e0448862fbf189 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a6437f815a667fd6501f7460abaf8acc6 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a6437f815a667fd6501f7460abaf8acc6">unset_name</a> ()</td></tr>
<tr class="separator:a6437f815a667fd6501f7460abaf8acc6 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5a1aa918ace7dc441fc7b0fef61b14f3 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a5a1aa918ace7dc441fc7b0fef61b14f3">get_name</a> () const </td></tr>
<tr class="memdesc:a5a1aa918ace7dc441fc7b0fef61b14f3 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Retrieves the name of a widget. <a href="#a5a1aa918ace7dc441fc7b0fef61b14f3">More...</a><br /></td></tr>
<tr class="separator:a5a1aa918ace7dc441fc7b0fef61b14f3 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a0be5a1d06a0d2d7c989773646c03d669 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a0be5a1d06a0d2d7c989773646c03d669">set_state</a> (<a class="el" href="group__gtkmmEnums.html#gae389c7fef8176df3e8b7992c521d9661">StateType</a> state)</td></tr>
<tr class="memdesc:a0be5a1d06a0d2d7c989773646c03d669 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">This function is for use in widget implementations. <a href="#a0be5a1d06a0d2d7c989773646c03d669">More...</a><br /></td></tr>
<tr class="separator:a0be5a1d06a0d2d7c989773646c03d669 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aed3fdc4ba967c1a43ba8fefb0d25c3f8 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="el" href="group__gtkmmEnums.html#gae389c7fef8176df3e8b7992c521d9661">StateType</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#aed3fdc4ba967c1a43ba8fefb0d25c3f8">get_state</a> () const </td></tr>
<tr class="memdesc:aed3fdc4ba967c1a43ba8fefb0d25c3f8 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Returns the widget's state. <a href="#aed3fdc4ba967c1a43ba8fefb0d25c3f8">More...</a><br /></td></tr>
<tr class="separator:aed3fdc4ba967c1a43ba8fefb0d25c3f8 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a3192b5f7f4c15876169b913eb9d1075e inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a3192b5f7f4c15876169b913eb9d1075e">set_sensitive</a> (bool <a class="el" href="classGtk_1_1Widget.html#a324726ce185f229b79b6fe051ba37fce">sensitive</a>=true)</td></tr>
<tr class="memdesc:a3192b5f7f4c15876169b913eb9d1075e inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Sets the sensitivity of a widget. <a href="#a3192b5f7f4c15876169b913eb9d1075e">More...</a><br /></td></tr>
<tr class="separator:a3192b5f7f4c15876169b913eb9d1075e inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9a8ffa25c5857334efa3eb080d344319 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a9a8ffa25c5857334efa3eb080d344319">get_sensitive</a> () const </td></tr>
<tr class="memdesc:a9a8ffa25c5857334efa3eb080d344319 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Returns the widget's sensitivity (in the sense of returning the value that has been set using <a class="el" href="classGtk_1_1Widget.html#a3192b5f7f4c15876169b913eb9d1075e" title="Sets the sensitivity of a widget. ">set_sensitive()</a>). <a href="#a9a8ffa25c5857334efa3eb080d344319">More...</a><br /></td></tr>
<tr class="separator:a9a8ffa25c5857334efa3eb080d344319 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:afbb93061db93c091829e675631f2b163 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#afbb93061db93c091829e675631f2b163">is_sensitive</a> () const </td></tr>
<tr class="memdesc:afbb93061db93c091829e675631f2b163 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Returns the widget's effective sensitivity, which means it is sensitive itself and also its parent widget is sensntive. <a href="#afbb93061db93c091829e675631f2b163">More...</a><br /></td></tr>
<tr class="separator:afbb93061db93c091829e675631f2b163 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a6765c4e8acc59ca6909a0a0681be0e8c inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a6765c4e8acc59ca6909a0a0681be0e8c">set_visible</a> (bool visible=true)</td></tr>
<tr class="memdesc:a6765c4e8acc59ca6909a0a0681be0e8c inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Sets the visibility state of <em>widget</em>. <a href="#a6765c4e8acc59ca6909a0a0681be0e8c">More...</a><br /></td></tr>
<tr class="separator:a6765c4e8acc59ca6909a0a0681be0e8c inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a05cf5ead0c7f843d85ddb1e5979451c6 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a05cf5ead0c7f843d85ddb1e5979451c6">get_visible</a> () const </td></tr>
<tr class="memdesc:a05cf5ead0c7f843d85ddb1e5979451c6 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Determines whether the widget is visible. <a href="#a05cf5ead0c7f843d85ddb1e5979451c6">More...</a><br /></td></tr>
<tr class="separator:a05cf5ead0c7f843d85ddb1e5979451c6 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a677fab317c52d44447da142db6d57f36 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a677fab317c52d44447da142db6d57f36">set_has_window</a> (bool has_window=true)</td></tr>
<tr class="memdesc:a677fab317c52d44447da142db6d57f36 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Specifies whether <em>widget</em> has a <a class="el" href="classGdk_1_1Window.html" title="A Gdk::Window is a rectangular region on the screen. ">Gdk::Window</a> of its own. <a href="#a677fab317c52d44447da142db6d57f36">More...</a><br /></td></tr>
<tr class="separator:a677fab317c52d44447da142db6d57f36 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a00d5da71916c20935fa7b9d856b248c2 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a00d5da71916c20935fa7b9d856b248c2">get_has_window</a> () const </td></tr>
<tr class="memdesc:a00d5da71916c20935fa7b9d856b248c2 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Determines whether <em>widget</em> has a <a class="el" href="classGdk_1_1Window.html" title="A Gdk::Window is a rectangular region on the screen. ">Gdk::Window</a> of its own. <a href="#a00d5da71916c20935fa7b9d856b248c2">More...</a><br /></td></tr>
<tr class="separator:a00d5da71916c20935fa7b9d856b248c2 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9ea9d9a257901824dd85a4d51e41f0fa inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a9ea9d9a257901824dd85a4d51e41f0fa">get_is_toplevel</a> () const </td></tr>
<tr class="memdesc:a9ea9d9a257901824dd85a4d51e41f0fa inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Determines whether <em>widget</em> is a toplevel widget. <a href="#a9ea9d9a257901824dd85a4d51e41f0fa">More...</a><br /></td></tr>
<tr class="separator:a9ea9d9a257901824dd85a4d51e41f0fa inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a6c1552e8bd7411105e10fa05fe564f20 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a6c1552e8bd7411105e10fa05fe564f20">get_is_drawable</a> () const </td></tr>
<tr class="memdesc:a6c1552e8bd7411105e10fa05fe564f20 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Determines whether <em>widget</em> can be drawn to. <a href="#a6c1552e8bd7411105e10fa05fe564f20">More...</a><br /></td></tr>
<tr class="separator:a6c1552e8bd7411105e10fa05fe564f20 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af441f226c8ac8d79342a16e876f325cd inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#af441f226c8ac8d79342a16e876f325cd">get_realized</a> () const </td></tr>
<tr class="memdesc:af441f226c8ac8d79342a16e876f325cd inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Determines whether <em>widget</em> is realized. <a href="#af441f226c8ac8d79342a16e876f325cd">More...</a><br /></td></tr>
<tr class="separator:af441f226c8ac8d79342a16e876f325cd inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aad0070bc022f96186689521822a9879f inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#aad0070bc022f96186689521822a9879f">get_mapped</a> () const </td></tr>
<tr class="memdesc:aad0070bc022f96186689521822a9879f inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Whether the widget is mapped. <a href="#aad0070bc022f96186689521822a9879f">More...</a><br /></td></tr>
<tr class="separator:aad0070bc022f96186689521822a9879f inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5af27658e6942a6e072a00ee67c7761f inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a5af27658e6942a6e072a00ee67c7761f">set_app_paintable</a> (bool <a class="el" href="classGtk_1_1Widget.html#affca5f0ffb80e88c2f48fca64879fb0e">app_paintable</a>=true)</td></tr>
<tr class="memdesc:a5af27658e6942a6e072a00ee67c7761f inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Sets whether the application intends to draw on the widget in an <a class="el" href="classGtk_1_1Widget.html#a1d6981c890f9bd6729864e6039c73892" title="Event triggered by window requiring a refresh. ">Gtk::Widget::signal_expose_event()</a> handler. <a href="#a5af27658e6942a6e072a00ee67c7761f">More...</a><br /></td></tr>
<tr class="separator:a5af27658e6942a6e072a00ee67c7761f inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a380c083f89e9ab5eb95620bbdce451e5 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a380c083f89e9ab5eb95620bbdce451e5">get_app_paintable</a> () const </td></tr>
<tr class="memdesc:a380c083f89e9ab5eb95620bbdce451e5 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Determines whether the application intends to draw on the widget in an <a class="el" href="classGtk_1_1Widget.html#a1d6981c890f9bd6729864e6039c73892" title="Event triggered by window requiring a refresh. ">Gtk::Widget::signal_expose_event()</a> handler. <a href="#a380c083f89e9ab5eb95620bbdce451e5">More...</a><br /></td></tr>
<tr class="separator:a380c083f89e9ab5eb95620bbdce451e5 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1dc2aaa692529dd8ba499b22fd1f7a5c inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a1dc2aaa692529dd8ba499b22fd1f7a5c">set_double_buffered</a> (bool <a class="el" href="classGtk_1_1Widget.html#af58f9055080f391ed5cff1aaebba0613">double_buffered</a>=true)</td></tr>
<tr class="memdesc:a1dc2aaa692529dd8ba499b22fd1f7a5c inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Widgets are double buffered by default; you can use this function to turn off the buffering. <a href="#a1dc2aaa692529dd8ba499b22fd1f7a5c">More...</a><br /></td></tr>
<tr class="separator:a1dc2aaa692529dd8ba499b22fd1f7a5c inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1fbca57e4114c28f41c2d775168eab73 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a1fbca57e4114c28f41c2d775168eab73">get_double_buffered</a> () const </td></tr>
<tr class="memdesc:a1fbca57e4114c28f41c2d775168eab73 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Determines whether the widget is double buffered. <a href="#a1fbca57e4114c28f41c2d775168eab73">More...</a><br /></td></tr>
<tr class="separator:a1fbca57e4114c28f41c2d775168eab73 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1738a41d31952a70f4e8830a2e5d973a inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a1738a41d31952a70f4e8830a2e5d973a">set_redraw_on_allocate</a> (bool redraw_on_allocate=true)</td></tr>
<tr class="memdesc:a1738a41d31952a70f4e8830a2e5d973a inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Sets whether the entire widget is queued for drawing when its size allocation changes. <a href="#a1738a41d31952a70f4e8830a2e5d973a">More...</a><br /></td></tr>
<tr class="separator:a1738a41d31952a70f4e8830a2e5d973a inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a7c9c742a72e279a2433548737680ea1d inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a7c9c742a72e279a2433548737680ea1d">set_child_visible</a> (bool <a class="el" href="classGtk_1_1Widget.html#a4c9d61aa7062c3010dd7473ef60d4fa9">is_visible</a>=true)</td></tr>
<tr class="memdesc:a7c9c742a72e279a2433548737680ea1d inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Sets whether <em>widget</em> should be mapped along with its when its parent is mapped and <em>widget</em> has been shown with <a class="el" href="classGtk_1_1Widget.html#aa791d86a0bb3658e378e81d731dd0121" title="Flags a widget to be displayed. ">show()</a>. <a href="#a7c9c742a72e279a2433548737680ea1d">More...</a><br /></td></tr>
<tr class="separator:a7c9c742a72e279a2433548737680ea1d inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a601d20bf7ebe1579096de04a88c81c25 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a601d20bf7ebe1579096de04a88c81c25">get_child_visible</a> () const </td></tr>
<tr class="memdesc:a601d20bf7ebe1579096de04a88c81c25 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Gets the value set with <a class="el" href="classGtk_1_1Widget.html#a7c9c742a72e279a2433548737680ea1d" title="Sets whether widget should be mapped along with its when its parent is mapped and widget has been sho...">set_child_visible()</a>. <a href="#a601d20bf7ebe1579096de04a88c81c25">More...</a><br /></td></tr>
<tr class="separator:a601d20bf7ebe1579096de04a88c81c25 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a705fefa64db669e1d4abd89e039a7efa inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a705fefa64db669e1d4abd89e039a7efa">set_window</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGdk_1_1Window.html">Gdk::Window</a> >& window)</td></tr>
<tr class="memdesc:a705fefa64db669e1d4abd89e039a7efa inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Sets a widget's window. <a href="#a705fefa64db669e1d4abd89e039a7efa">More...</a><br /></td></tr>
<tr class="separator:a705fefa64db669e1d4abd89e039a7efa inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a403777253417c5c7653aac9e932de76b inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGdk_1_1Window.html">Gdk::Window</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a403777253417c5c7653aac9e932de76b">get_window</a> ()</td></tr>
<tr class="memdesc:a403777253417c5c7653aac9e932de76b inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Returns the widget's window if it is realized, <code>nullptr</code> otherwise. <a href="#a403777253417c5c7653aac9e932de76b">More...</a><br /></td></tr>
<tr class="separator:a403777253417c5c7653aac9e932de76b inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad43539ccb0fa01406b263b08e5bf94c1 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< const <a class="el" href="classGdk_1_1Window.html">Gdk::Window</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#ad43539ccb0fa01406b263b08e5bf94c1">get_window</a> () const </td></tr>
<tr class="memdesc:ad43539ccb0fa01406b263b08e5bf94c1 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Returns the widget's window if it is realized, <code>nullptr</code> otherwise. <a href="#ad43539ccb0fa01406b263b08e5bf94c1">More...</a><br /></td></tr>
<tr class="separator:ad43539ccb0fa01406b263b08e5bf94c1 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a67a286b9da91a83ee6016b479dad2341 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="el" href="namespaceGtk.html#a8aafb0aa51d1034c06046f066563367b">Allocation</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a67a286b9da91a83ee6016b479dad2341">get_allocation</a> () const </td></tr>
<tr class="memdesc:a67a286b9da91a83ee6016b479dad2341 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Retrieves the widget's location. <a href="#a67a286b9da91a83ee6016b479dad2341">More...</a><br /></td></tr>
<tr class="separator:a67a286b9da91a83ee6016b479dad2341 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a3a373b58ed5a05fd28d6dadd70d8f39b inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a3a373b58ed5a05fd28d6dadd70d8f39b">set_allocation</a> (const <a class="el" href="namespaceGtk.html#a8aafb0aa51d1034c06046f066563367b">Allocation</a>& allocation)</td></tr>
<tr class="memdesc:a3a373b58ed5a05fd28d6dadd70d8f39b inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Sets the widget's allocation. <a href="#a3a373b58ed5a05fd28d6dadd70d8f39b">More...</a><br /></td></tr>
<tr class="separator:a3a373b58ed5a05fd28d6dadd70d8f39b inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:afee23a4fd82defaead8736b5b4a88e56 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGtk_1_1Container.html">Container</a>* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#afee23a4fd82defaead8736b5b4a88e56">get_parent</a> ()</td></tr>
<tr class="memdesc:afee23a4fd82defaead8736b5b4a88e56 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Returns the parent container of <em>widget</em>. <a href="#afee23a4fd82defaead8736b5b4a88e56">More...</a><br /></td></tr>
<tr class="separator:afee23a4fd82defaead8736b5b4a88e56 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a6c785b5287739a735b8506d4a534b183 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classGtk_1_1Container.html">Container</a>* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a6c785b5287739a735b8506d4a534b183">get_parent</a> () const </td></tr>
<tr class="memdesc:a6c785b5287739a735b8506d4a534b183 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Returns the parent container of <em>widget</em>. <a href="#a6c785b5287739a735b8506d4a534b183">More...</a><br /></td></tr>
<tr class="separator:a6c785b5287739a735b8506d4a534b183 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5b29c47b3f21eb29d2cb6a9ea6a0cd6f inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGdk_1_1Window.html">Gdk::Window</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a5b29c47b3f21eb29d2cb6a9ea6a0cd6f">get_parent_window</a> ()</td></tr>
<tr class="memdesc:a5b29c47b3f21eb29d2cb6a9ea6a0cd6f inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Gets <em>widget's</em> parent window. <a href="#a5b29c47b3f21eb29d2cb6a9ea6a0cd6f">More...</a><br /></td></tr>
<tr class="separator:a5b29c47b3f21eb29d2cb6a9ea6a0cd6f inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:acf88fd21d53e92e7cafe884221d953e1 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< const <a class="el" href="classGdk_1_1Window.html">Gdk::Window</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#acf88fd21d53e92e7cafe884221d953e1">get_parent_window</a> () const </td></tr>
<tr class="memdesc:acf88fd21d53e92e7cafe884221d953e1 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Gets <em>widget's</em> parent window. <a href="#acf88fd21d53e92e7cafe884221d953e1">More...</a><br /></td></tr>
<tr class="separator:acf88fd21d53e92e7cafe884221d953e1 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a992c56dd7203b869c3923d08a9460136 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a992c56dd7203b869c3923d08a9460136">set_parent_window</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< const <a class="el" href="classGdk_1_1Window.html">Gdk::Window</a> >& parent_window)</td></tr>
<tr class="memdesc:a992c56dd7203b869c3923d08a9460136 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Sets a non default parent window for <em>widget</em>. <a href="#a992c56dd7203b869c3923d08a9460136">More...</a><br /></td></tr>
<tr class="separator:a992c56dd7203b869c3923d08a9460136 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a8c564b6823adf744d14e258e661f453c inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a8c564b6823adf744d14e258e661f453c">child_focus</a> (<a class="el" href="group__gtkmmEnums.html#ga6c754c32a8421f746367b43c277e4d7b">DirectionType</a> direction)</td></tr>
<tr class="memdesc:a8c564b6823adf744d14e258e661f453c inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">This function is used by custom widget implementations; if you're writing an app, you'd use <a class="el" href="classGtk_1_1Widget.html#a4c376dd31e5b4d616d8f914338fea8b6" title="Causes widget to have the keyboard focus for the Gtk::Window it's inside. ">grab_focus()</a> to move the focus to a particular widget, and <a class="el" href="classGtk_1_1Container.html#afc4ad027b2e5b6c2ceb775d5a65cc663" title="Sets a focus chain, overriding the one computed automatically by GTK+. ">Gtk::Container::set_focus_chain()</a> to change the focus tab order. <a href="#a8c564b6823adf744d14e258e661f453c">More...</a><br /></td></tr>
<tr class="separator:a8c564b6823adf744d14e258e661f453c inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a270f00bc2bca5e0084e31d0d3cdb4e17 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a270f00bc2bca5e0084e31d0d3cdb4e17">keynav_failed</a> (<a class="el" href="group__gtkmmEnums.html#ga6c754c32a8421f746367b43c277e4d7b">DirectionType</a> direction)</td></tr>
<tr class="memdesc:a270f00bc2bca5e0084e31d0d3cdb4e17 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">This function should be called whenever keyboard navigation within a single widget hits a boundary. <a href="#a270f00bc2bca5e0084e31d0d3cdb4e17">More...</a><br /></td></tr>
<tr class="separator:a270f00bc2bca5e0084e31d0d3cdb4e17 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aea95a517808ca7eb63830e4bf13854dd inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#aea95a517808ca7eb63830e4bf13854dd">error_bell</a> ()</td></tr>
<tr class="memdesc:aea95a517808ca7eb63830e4bf13854dd inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Notifies the user about an input-related error on this widget. <a href="#aea95a517808ca7eb63830e4bf13854dd">More...</a><br /></td></tr>
<tr class="separator:aea95a517808ca7eb63830e4bf13854dd inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5e95431f630a226b0b7297e4815ee945 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a5e95431f630a226b0b7297e4815ee945">set_size_request</a> (int width=-1, int height=-1)</td></tr>
<tr class="memdesc:a5e95431f630a226b0b7297e4815ee945 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Sets the minimum size of a widget; that is, the widget's size request will be <em>width</em> by <em>height</em>. <a href="#a5e95431f630a226b0b7297e4815ee945">More...</a><br /></td></tr>
<tr class="separator:a5e95431f630a226b0b7297e4815ee945 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4586cd687f2ad4995b4cefb629951c26 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a4586cd687f2ad4995b4cefb629951c26">get_size_request</a> (int& width, int& height) const </td></tr>
<tr class="memdesc:a4586cd687f2ad4995b4cefb629951c26 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Gets the size request that was explicitly set for the widget using <a class="el" href="classGtk_1_1Widget.html#a5e95431f630a226b0b7297e4815ee945" title="Sets the minimum size of a widget; that is, the widget's size request will be width by height...">set_size_request()</a>. <a href="#a4586cd687f2ad4995b4cefb629951c26">More...</a><br /></td></tr>
<tr class="separator:a4586cd687f2ad4995b4cefb629951c26 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:adeb38a3d5988a0e31055bbd2edb2e954 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#adeb38a3d5988a0e31055bbd2edb2e954">set_events</a> (<a class="el" href="group__gdkmmEnums.html#ga0288c23e93ded8c0326235f1f1120c61">Gdk::EventMask</a> events)</td></tr>
<tr class="memdesc:adeb38a3d5988a0e31055bbd2edb2e954 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Sets the event mask (see <a class="el" href="group__gdkmmEnums.html#ga0288c23e93ded8c0326235f1f1120c61">Gdk::EventMask</a>) for a widget. <a href="#adeb38a3d5988a0e31055bbd2edb2e954">More...</a><br /></td></tr>
<tr class="separator:adeb38a3d5988a0e31055bbd2edb2e954 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1af589cb1d8764be5abf5579ffb69bec inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a1af589cb1d8764be5abf5579ffb69bec">add_events</a> (<a class="el" href="group__gdkmmEnums.html#ga0288c23e93ded8c0326235f1f1120c61">Gdk::EventMask</a> events)</td></tr>
<tr class="memdesc:a1af589cb1d8764be5abf5579ffb69bec inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Adds the events in the bitfield <em>events</em> to the event mask for <em>widget</em>. <a href="#a1af589cb1d8764be5abf5579ffb69bec">More...</a><br /></td></tr>
<tr class="separator:a1af589cb1d8764be5abf5579ffb69bec inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac3d61b3a120115555a14b0b5ce3f2dc5 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#ac3d61b3a120115555a14b0b5ce3f2dc5">set_extension_events</a> (<a class="el" href="group__gdkmmEnums.html#ga403190ae70e736078dd523ae3b53b48c">Gdk::ExtensionMode</a> mode)</td></tr>
<tr class="memdesc:ac3d61b3a120115555a14b0b5ce3f2dc5 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Sets the extension events mask to <em>mode</em>. <a href="#ac3d61b3a120115555a14b0b5ce3f2dc5">More...</a><br /></td></tr>
<tr class="separator:ac3d61b3a120115555a14b0b5ce3f2dc5 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1adde2bdf52c7327f945d8c4dd2073bd inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="el" href="group__gdkmmEnums.html#ga403190ae70e736078dd523ae3b53b48c">Gdk::ExtensionMode</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a1adde2bdf52c7327f945d8c4dd2073bd">get_extension_events</a> () const </td></tr>
<tr class="memdesc:a1adde2bdf52c7327f945d8c4dd2073bd inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Retrieves the extension events the widget will receive; see gdk_input_set_extension_events(). <a href="#a1adde2bdf52c7327f945d8c4dd2073bd">More...</a><br /></td></tr>
<tr class="separator:a1adde2bdf52c7327f945d8c4dd2073bd inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab91722dd77223c450b8dfaa45af59c1a inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGtk_1_1Container.html">Container</a>* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#ab91722dd77223c450b8dfaa45af59c1a">get_toplevel</a> ()</td></tr>
<tr class="memdesc:ab91722dd77223c450b8dfaa45af59c1a inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">This function returns the topmost widget in the container hierarchy <em>widget</em> is a part of. <a href="#ab91722dd77223c450b8dfaa45af59c1a">More...</a><br /></td></tr>
<tr class="separator:ab91722dd77223c450b8dfaa45af59c1a inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac92a0dc8751c828406ca8755f013b75c inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classGtk_1_1Container.html">Container</a>* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#ac92a0dc8751c828406ca8755f013b75c">get_toplevel</a> () const </td></tr>
<tr class="memdesc:ac92a0dc8751c828406ca8755f013b75c inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">This function returns the topmost widget in the container hierarchy <em>widget</em> is a part of. <a href="#ac92a0dc8751c828406ca8755f013b75c">More...</a><br /></td></tr>
<tr class="separator:ac92a0dc8751c828406ca8755f013b75c inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad65bedf64acfd0401abbe489312fba8e inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGtk_1_1Widget.html">Widget</a>* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#ad65bedf64acfd0401abbe489312fba8e">get_ancestor</a> (GType widget_type)</td></tr>
<tr class="memdesc:ad65bedf64acfd0401abbe489312fba8e inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Gets the first ancestor of <em>widget</em> with type <em>widget_type</em>. <a href="#ad65bedf64acfd0401abbe489312fba8e">More...</a><br /></td></tr>
<tr class="separator:ad65bedf64acfd0401abbe489312fba8e inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a8c57b3e35a7c6ccb03b90e194df04ff6 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classGtk_1_1Widget.html">Widget</a>* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a8c57b3e35a7c6ccb03b90e194df04ff6">get_ancestor</a> (GType widget_type) const </td></tr>
<tr class="memdesc:a8c57b3e35a7c6ccb03b90e194df04ff6 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Gets the first ancestor of <em>widget</em> with type <em>widget_type</em>. <a href="#a8c57b3e35a7c6ccb03b90e194df04ff6">More...</a><br /></td></tr>
<tr class="separator:a8c57b3e35a7c6ccb03b90e194df04ff6 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a43480282252e8318a49e29e9ff5ced5d inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGdk_1_1Colormap.html">Gdk::Colormap</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a43480282252e8318a49e29e9ff5ced5d">get_colormap</a> ()</td></tr>
<tr class="memdesc:a43480282252e8318a49e29e9ff5ced5d inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Gets the colormap that will be used to render <em>widget</em>. <a href="#a43480282252e8318a49e29e9ff5ced5d">More...</a><br /></td></tr>
<tr class="separator:a43480282252e8318a49e29e9ff5ced5d inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af3dd4ac0105f1e1d1343aa6a9394766e inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGdk_1_1Visual.html">Gdk::Visual</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#af3dd4ac0105f1e1d1343aa6a9394766e">get_visual</a> ()</td></tr>
<tr class="memdesc:af3dd4ac0105f1e1d1343aa6a9394766e inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Gets the visual that will be used to render <em>widget</em>. <a href="#af3dd4ac0105f1e1d1343aa6a9394766e">More...</a><br /></td></tr>
<tr class="separator:af3dd4ac0105f1e1d1343aa6a9394766e inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4bf25ceaa259bbe86fac0c9f54202c68 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGdk_1_1Screen.html">Gdk::Screen</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a4bf25ceaa259bbe86fac0c9f54202c68">get_screen</a> ()</td></tr>
<tr class="memdesc:a4bf25ceaa259bbe86fac0c9f54202c68 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Get the <a class="el" href="classGdk_1_1Screen.html" title="Object representing a physical screen Gdk::Screen objects are the GDK representation of a physical sc...">Gdk::Screen</a> from the toplevel window associated with this widget. <a href="#a4bf25ceaa259bbe86fac0c9f54202c68">More...</a><br /></td></tr>
<tr class="separator:a4bf25ceaa259bbe86fac0c9f54202c68 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a05ec9ee6b8d359cf572ad2d788e3ad87 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< const <a class="el" href="classGdk_1_1Screen.html">Gdk::Screen</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a05ec9ee6b8d359cf572ad2d788e3ad87">get_screen</a> () const </td></tr>
<tr class="memdesc:a05ec9ee6b8d359cf572ad2d788e3ad87 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Get the <a class="el" href="classGdk_1_1Screen.html" title="Object representing a physical screen Gdk::Screen objects are the GDK representation of a physical sc...">Gdk::Screen</a> from the toplevel window associated with this widget. <a href="#a05ec9ee6b8d359cf572ad2d788e3ad87">More...</a><br /></td></tr>
<tr class="separator:a05ec9ee6b8d359cf572ad2d788e3ad87 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a90ccf19a00df33ff1e8360a0567a2f3c inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a90ccf19a00df33ff1e8360a0567a2f3c">has_screen</a> () const </td></tr>
<tr class="memdesc:a90ccf19a00df33ff1e8360a0567a2f3c inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Checks whether there is a <a class="el" href="classGdk_1_1Screen.html" title="Object representing a physical screen Gdk::Screen objects are the GDK representation of a physical sc...">Gdk::Screen</a> is associated with this widget. <a href="#a90ccf19a00df33ff1e8360a0567a2f3c">More...</a><br /></td></tr>
<tr class="separator:a90ccf19a00df33ff1e8360a0567a2f3c inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2f5880e2f1df5ff12295cf97c83de097 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGdk_1_1Display.html">Gdk::Display</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a2f5880e2f1df5ff12295cf97c83de097">get_display</a> ()</td></tr>
<tr class="memdesc:a2f5880e2f1df5ff12295cf97c83de097 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Get the <a class="el" href="classGdk_1_1Display.html" title="Gdk::Display object's purpose is two fold: To grab/ungrab keyboard focus and mouse pointer To manage ...">Gdk::Display</a> for the toplevel window associated with this widget. <a href="#a2f5880e2f1df5ff12295cf97c83de097">More...</a><br /></td></tr>
<tr class="separator:a2f5880e2f1df5ff12295cf97c83de097 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a53ecb2d278c16481bce8ff7eac4569ac inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< const <a class="el" href="classGdk_1_1Display.html">Gdk::Display</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a53ecb2d278c16481bce8ff7eac4569ac">get_display</a> () const </td></tr>
<tr class="memdesc:a53ecb2d278c16481bce8ff7eac4569ac inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Get the <a class="el" href="classGdk_1_1Display.html" title="Gdk::Display object's purpose is two fold: To grab/ungrab keyboard focus and mouse pointer To manage ...">Gdk::Display</a> for the toplevel window associated with this widget. <a href="#a53ecb2d278c16481bce8ff7eac4569ac">More...</a><br /></td></tr>
<tr class="separator:a53ecb2d278c16481bce8ff7eac4569ac inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a01f8d1943ef5f80c2aab914bcad1ce82 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGdk_1_1Window.html">Gdk::Window</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a01f8d1943ef5f80c2aab914bcad1ce82">get_root_window</a> ()</td></tr>
<tr class="memdesc:a01f8d1943ef5f80c2aab914bcad1ce82 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Get the root window where this widget is located. <a href="#a01f8d1943ef5f80c2aab914bcad1ce82">More...</a><br /></td></tr>
<tr class="separator:a01f8d1943ef5f80c2aab914bcad1ce82 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae4d24fd21120a63447982b4d064be9e9 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< const <a class="el" href="classGdk_1_1Window.html">Gdk::Window</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#ae4d24fd21120a63447982b4d064be9e9">get_root_window</a> () const </td></tr>
<tr class="memdesc:ae4d24fd21120a63447982b4d064be9e9 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Get the root window where this widget is located. <a href="#ae4d24fd21120a63447982b4d064be9e9">More...</a><br /></td></tr>
<tr class="separator:ae4d24fd21120a63447982b4d064be9e9 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa2f8ed32453af89b2c322ac466b30c2c inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGtk_1_1Settings.html">Settings</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#aa2f8ed32453af89b2c322ac466b30c2c">get_settings</a> ()</td></tr>
<tr class="memdesc:aa2f8ed32453af89b2c322ac466b30c2c inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Gets the settings object holding the settings (global property settings, <a class="el" href="classGtk_1_1RC.html">RC</a> file information, etc) used for this widget. <a href="#aa2f8ed32453af89b2c322ac466b30c2c">More...</a><br /></td></tr>
<tr class="separator:aa2f8ed32453af89b2c322ac466b30c2c inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:abd2136ea04f43c92a5714ae31855b3da inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGtk_1_1Clipboard.html">Clipboard</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#abd2136ea04f43c92a5714ae31855b3da">get_clipboard</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>& selection)</td></tr>
<tr class="memdesc:abd2136ea04f43c92a5714ae31855b3da inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Returns the clipboard object for the given selection to be used with <em>widget</em>. <a href="#abd2136ea04f43c92a5714ae31855b3da">More...</a><br /></td></tr>
<tr class="separator:abd2136ea04f43c92a5714ae31855b3da inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a0aed0f0898e00f872c71f7e5bcd5b93f inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< const <a class="el" href="classGtk_1_1Clipboard.html">Clipboard</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a0aed0f0898e00f872c71f7e5bcd5b93f">get_clipboard</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>& selection) const </td></tr>
<tr class="memdesc:a0aed0f0898e00f872c71f7e5bcd5b93f inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Returns the clipboard object for the given selection to be used with <em>widget</em>. <a href="#a0aed0f0898e00f872c71f7e5bcd5b93f">More...</a><br /></td></tr>
<tr class="separator:a0aed0f0898e00f872c71f7e5bcd5b93f inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab8c1ee5d84fc7e4e40e5e1f27bc26686 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGdk_1_1Pixmap.html">Gdk::Pixmap</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#ab8c1ee5d84fc7e4e40e5e1f27bc26686">get_snapshot</a> (<a class="el" href="classGdk_1_1Rectangle.html">Gdk::Rectangle</a>& clip_rect) const </td></tr>
<tr class="memdesc:ab8c1ee5d84fc7e4e40e5e1f27bc26686 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Create a <a class="el" href="classGdk_1_1Pixmap.html" title="Pixmaps are offscreen drawables. ">Gdk::Pixmap</a> of the contents of the widget and its children. <a href="#ab8c1ee5d84fc7e4e40e5e1f27bc26686">More...</a><br /></td></tr>
<tr class="separator:ab8c1ee5d84fc7e4e40e5e1f27bc26686 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:afe1e9b0de17e46d17ba55bea60f7cac7 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGdk_1_1Pixmap.html">Gdk::Pixmap</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#afe1e9b0de17e46d17ba55bea60f7cac7">get_snapshot</a> () const </td></tr>
<tr class="memdesc:afe1e9b0de17e46d17ba55bea60f7cac7 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Create a <a class="el" href="classGdk_1_1Pixmap.html" title="Pixmaps are offscreen drawables. ">Gdk::Pixmap</a> of the contents of the widget and its children. <a href="#afe1e9b0de17e46d17ba55bea60f7cac7">More...</a><br /></td></tr>
<tr class="separator:afe1e9b0de17e46d17ba55bea60f7cac7 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a41680bef5588272785a7ab6dc11f7e4e inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="elRef" doxygen="atkmm-1.6.tag:http://library.gnome.org/devel/atkmm/unstable/" href="http://library.gnome.org/devel/atkmm/unstable/classAtk_1_1Object.html">Atk::Object</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a41680bef5588272785a7ab6dc11f7e4e">get_accessible</a> ()</td></tr>
<tr class="memdesc:a41680bef5588272785a7ab6dc11f7e4e inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Returns the accessible object that describes the widget to an assistive technology. <a href="#a41680bef5588272785a7ab6dc11f7e4e">More...</a><br /></td></tr>
<tr class="separator:a41680bef5588272785a7ab6dc11f7e4e inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5fc1559ead59f432c0fe3fd5868d6d45 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< const <a class="elRef" doxygen="atkmm-1.6.tag:http://library.gnome.org/devel/atkmm/unstable/" href="http://library.gnome.org/devel/atkmm/unstable/classAtk_1_1Object.html">Atk::Object</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a5fc1559ead59f432c0fe3fd5868d6d45">get_accessible</a> () const </td></tr>
<tr class="memdesc:a5fc1559ead59f432c0fe3fd5868d6d45 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Returns the accessible object that describes the widget to an assistive technology. <a href="#a5fc1559ead59f432c0fe3fd5868d6d45">More...</a><br /></td></tr>
<tr class="separator:a5fc1559ead59f432c0fe3fd5868d6d45 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aeca45ece0de8d5bb91f058a8c9acc2bf inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#aeca45ece0de8d5bb91f058a8c9acc2bf">set_colormap</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< const <a class="el" href="classGdk_1_1Colormap.html">Gdk::Colormap</a> >& colormap)</td></tr>
<tr class="memdesc:aeca45ece0de8d5bb91f058a8c9acc2bf inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Sets the colormap for the widget to the given value. <a href="#aeca45ece0de8d5bb91f058a8c9acc2bf">More...</a><br /></td></tr>
<tr class="separator:aeca45ece0de8d5bb91f058a8c9acc2bf inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac3e3c9eedbad77c05631d77c37f8e565 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="el" href="group__gdkmmEnums.html#ga0288c23e93ded8c0326235f1f1120c61">Gdk::EventMask</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#ac3e3c9eedbad77c05631d77c37f8e565">get_events</a> () const </td></tr>
<tr class="memdesc:ac3e3c9eedbad77c05631d77c37f8e565 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Returns the event mask for the widget (a bitfield containing flags from the <a class="el" href="group__gdkmmEnums.html#ga0288c23e93ded8c0326235f1f1120c61">Gdk::EventMask</a> enumeration). <a href="#ac3e3c9eedbad77c05631d77c37f8e565">More...</a><br /></td></tr>
<tr class="separator:ac3e3c9eedbad77c05631d77c37f8e565 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9f27636d0f3d3be136e890ac198c50c2 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a9f27636d0f3d3be136e890ac198c50c2">get_pointer</a> (int& x, int& y) const </td></tr>
<tr class="memdesc:a9f27636d0f3d3be136e890ac198c50c2 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Obtains the location of the mouse pointer in widget coordinates. <a href="#a9f27636d0f3d3be136e890ac198c50c2">More...</a><br /></td></tr>
<tr class="separator:a9f27636d0f3d3be136e890ac198c50c2 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a6b55364bdd098a93fa453b26a0a31029 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a6b55364bdd098a93fa453b26a0a31029">is_ancestor</a> (<a class="el" href="classGtk_1_1Widget.html">Widget</a>& ancestor) const </td></tr>
<tr class="memdesc:a6b55364bdd098a93fa453b26a0a31029 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Determines whether <em>widget</em> is somewhere inside <em>ancestor</em>, possibly with intermediate containers. <a href="#a6b55364bdd098a93fa453b26a0a31029">More...</a><br /></td></tr>
<tr class="separator:a6b55364bdd098a93fa453b26a0a31029 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a77d2324d831bd055195c4219280882d7 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a77d2324d831bd055195c4219280882d7">translate_coordinates</a> (<a class="el" href="classGtk_1_1Widget.html">Widget</a>& dest_widget, int src_x, int src_y, int& dest_x, int& dest_y)</td></tr>
<tr class="memdesc:a77d2324d831bd055195c4219280882d7 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Translate coordinates relative to <em>src_widget's</em> allocation to coordinates relative to <em>dest_widget's</em> allocations. <a href="#a77d2324d831bd055195c4219280882d7">More...</a><br /></td></tr>
<tr class="separator:a77d2324d831bd055195c4219280882d7 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac971209783728c475bf12bcdf1738717 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#ac971209783728c475bf12bcdf1738717">has_rc_style</a> () const </td></tr>
<tr class="memdesc:ac971209783728c475bf12bcdf1738717 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Determines if the widget style has been looked up through the rc mechanism. <a href="#ac971209783728c475bf12bcdf1738717">More...</a><br /></td></tr>
<tr class="separator:ac971209783728c475bf12bcdf1738717 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a50ef706c909b415894aab77663447af3 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a50ef706c909b415894aab77663447af3">set_style</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGtk_1_1Style.html">Style</a> >& style)</td></tr>
<tr class="memdesc:a50ef706c909b415894aab77663447af3 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Sets the <a class="el" href="classGtk_1_1Style.html">Gtk::Style</a> for a widget ( <em>widget->style</em>). <a href="#a50ef706c909b415894aab77663447af3">More...</a><br /></td></tr>
<tr class="separator:a50ef706c909b415894aab77663447af3 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5221ebcf3f4635d4e87c59192b6536f7 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a5221ebcf3f4635d4e87c59192b6536f7">unset_style</a> ()</td></tr>
<tr class="separator:a5221ebcf3f4635d4e87c59192b6536f7 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:acae04cb0b956d892eac7e819c2517de0 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#acae04cb0b956d892eac7e819c2517de0">ensure_style</a> ()</td></tr>
<tr class="memdesc:acae04cb0b956d892eac7e819c2517de0 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Ensures that <em>widget</em> has a style ( <em>widget->style</em>). <a href="#acae04cb0b956d892eac7e819c2517de0">More...</a><br /></td></tr>
<tr class="separator:acae04cb0b956d892eac7e819c2517de0 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a3a3c08d5fcb8a134fff5e3f3a11f4f7f inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGtk_1_1Style.html">Style</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a3a3c08d5fcb8a134fff5e3f3a11f4f7f">get_style</a> ()</td></tr>
<tr class="memdesc:a3a3c08d5fcb8a134fff5e3f3a11f4f7f inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Simply an accessor function that returns <em>widget->style</em>. <a href="#a3a3c08d5fcb8a134fff5e3f3a11f4f7f">More...</a><br /></td></tr>
<tr class="separator:a3a3c08d5fcb8a134fff5e3f3a11f4f7f inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af6195c05602a47df4376738bb9797872 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< const <a class="el" href="classGtk_1_1Style.html">Style</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#af6195c05602a47df4376738bb9797872">get_style</a> () const </td></tr>
<tr class="memdesc:af6195c05602a47df4376738bb9797872 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Simply an accessor function that returns <em>widget->style</em>. <a href="#af6195c05602a47df4376738bb9797872">More...</a><br /></td></tr>
<tr class="separator:af6195c05602a47df4376738bb9797872 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a8fe55b3cc4342ae1242b384b2de813bd inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a8fe55b3cc4342ae1242b384b2de813bd">modify_style</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGtk_1_1RcStyle.html">RcStyle</a> >& style)</td></tr>
<tr class="memdesc:a8fe55b3cc4342ae1242b384b2de813bd inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Modifies style values on the widget. <a href="#a8fe55b3cc4342ae1242b384b2de813bd">More...</a><br /></td></tr>
<tr class="separator:a8fe55b3cc4342ae1242b384b2de813bd inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a05809bcb54cb20a94bf3e0b12ee502d8 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGtk_1_1RcStyle.html">RcStyle</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a05809bcb54cb20a94bf3e0b12ee502d8">get_modifier_style</a> ()</td></tr>
<tr class="memdesc:a05809bcb54cb20a94bf3e0b12ee502d8 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Returns the current modifier style for the widget. <a href="#a05809bcb54cb20a94bf3e0b12ee502d8">More...</a><br /></td></tr>
<tr class="separator:a05809bcb54cb20a94bf3e0b12ee502d8 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4234b7c41e2b149612c278d7fe3632ef inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< const <a class="el" href="classGtk_1_1RcStyle.html">RcStyle</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a4234b7c41e2b149612c278d7fe3632ef">get_modifier_style</a> () const </td></tr>
<tr class="memdesc:a4234b7c41e2b149612c278d7fe3632ef inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Returns the current modifier style for the widget. <a href="#a4234b7c41e2b149612c278d7fe3632ef">More...</a><br /></td></tr>
<tr class="separator:a4234b7c41e2b149612c278d7fe3632ef inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad0c8e1d1911edfa850b64f4af9e492b9 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#ad0c8e1d1911edfa850b64f4af9e492b9">modify_fg</a> (<a class="el" href="group__gtkmmEnums.html#gae389c7fef8176df3e8b7992c521d9661">StateType</a> state, const <a class="el" href="classGdk_1_1Color.html">Gdk::Color</a>& color)</td></tr>
<tr class="memdesc:ad0c8e1d1911edfa850b64f4af9e492b9 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Sets the foreground color for a widget in a particular state. <a href="#ad0c8e1d1911edfa850b64f4af9e492b9">More...</a><br /></td></tr>
<tr class="separator:ad0c8e1d1911edfa850b64f4af9e492b9 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a6c56232f7c75fa97fda3a88f1a67b27a inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a6c56232f7c75fa97fda3a88f1a67b27a">modify_bg</a> (<a class="el" href="group__gtkmmEnums.html#gae389c7fef8176df3e8b7992c521d9661">StateType</a> state, const <a class="el" href="classGdk_1_1Color.html">Gdk::Color</a>& color)</td></tr>
<tr class="memdesc:a6c56232f7c75fa97fda3a88f1a67b27a inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Sets the background color for a widget in a particular state. <a href="#a6c56232f7c75fa97fda3a88f1a67b27a">More...</a><br /></td></tr>
<tr class="separator:a6c56232f7c75fa97fda3a88f1a67b27a inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa294ace5075f2875b6cae7f098ea36ea inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#aa294ace5075f2875b6cae7f098ea36ea">modify_bg_pixmap</a> (<a class="el" href="group__gtkmmEnums.html#gae389c7fef8176df3e8b7992c521d9661">StateType</a> state, const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>& pixmap_name)</td></tr>
<tr class="separator:aa294ace5075f2875b6cae7f098ea36ea inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a61cef624ff13695bccb9c07a570ab53f inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a61cef624ff13695bccb9c07a570ab53f">modify_text</a> (<a class="el" href="group__gtkmmEnums.html#gae389c7fef8176df3e8b7992c521d9661">StateType</a> state, const <a class="el" href="classGdk_1_1Color.html">Gdk::Color</a>& color)</td></tr>
<tr class="memdesc:a61cef624ff13695bccb9c07a570ab53f inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Sets the text color for a widget in a particular state. <a href="#a61cef624ff13695bccb9c07a570ab53f">More...</a><br /></td></tr>
<tr class="separator:a61cef624ff13695bccb9c07a570ab53f inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae5ba3a8e3b370bac1558a2dc7968c034 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#ae5ba3a8e3b370bac1558a2dc7968c034">modify_base</a> (<a class="el" href="group__gtkmmEnums.html#gae389c7fef8176df3e8b7992c521d9661">StateType</a> state, const <a class="el" href="classGdk_1_1Color.html">Gdk::Color</a>& color)</td></tr>
<tr class="memdesc:ae5ba3a8e3b370bac1558a2dc7968c034 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Sets the base color for a widget in a particular state. <a href="#ae5ba3a8e3b370bac1558a2dc7968c034">More...</a><br /></td></tr>
<tr class="separator:ae5ba3a8e3b370bac1558a2dc7968c034 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae04a17b02009c186cd67a132f7c99ec3 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#ae04a17b02009c186cd67a132f7c99ec3">modify_cursor</a> (const <a class="el" href="classGdk_1_1Color.html">Gdk::Color</a>& primary, const <a class="el" href="classGdk_1_1Color.html">Gdk::Color</a>& secondary)</td></tr>
<tr class="memdesc:ae04a17b02009c186cd67a132f7c99ec3 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Sets the cursor color to use in a widget, overriding the cursor_color and secondary_cursor_color style properties. <a href="#ae04a17b02009c186cd67a132f7c99ec3">More...</a><br /></td></tr>
<tr class="separator:ae04a17b02009c186cd67a132f7c99ec3 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a205aa815e511439e7a50cc951ce8f4a3 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a205aa815e511439e7a50cc951ce8f4a3">unset_cursor</a> ()</td></tr>
<tr class="memdesc:a205aa815e511439e7a50cc951ce8f4a3 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">See <a class="el" href="classGtk_1_1Widget.html#ae04a17b02009c186cd67a132f7c99ec3" title="Sets the cursor color to use in a widget, overriding the cursor_color and secondary_cursor_color styl...">modify_cursor()</a>. <a href="#a205aa815e511439e7a50cc951ce8f4a3">More...</a><br /></td></tr>
<tr class="separator:a205aa815e511439e7a50cc951ce8f4a3 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a26861d72af2d42a1c3827e180d1e2e69 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a26861d72af2d42a1c3827e180d1e2e69">modify_font</a> (const <a class="elRef" doxygen="pangomm-1.4.tag:http://library.gnome.org/devel/pangomm/unstable/" href="http://library.gnome.org/devel/pangomm/unstable/classPango_1_1FontDescription.html">Pango::FontDescription</a>& font_desc)</td></tr>
<tr class="memdesc:a26861d72af2d42a1c3827e180d1e2e69 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Sets the font to use for a widget. <a href="#a26861d72af2d42a1c3827e180d1e2e69">More...</a><br /></td></tr>
<tr class="separator:a26861d72af2d42a1c3827e180d1e2e69 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5accf8e86f4c6b0e10d1bd4c3ec048d3 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a5accf8e86f4c6b0e10d1bd4c3ec048d3">unset_fg</a> (<a class="el" href="group__gtkmmEnums.html#gae389c7fef8176df3e8b7992c521d9661">StateType</a> state)</td></tr>
<tr class="memdesc:a5accf8e86f4c6b0e10d1bd4c3ec048d3 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Undo the effect of previous calls to <a class="el" href="classGtk_1_1Widget.html#ad0c8e1d1911edfa850b64f4af9e492b9" title="Sets the foreground color for a widget in a particular state. ">modify_fg()</a> for a particular state. <a href="#a5accf8e86f4c6b0e10d1bd4c3ec048d3">More...</a><br /></td></tr>
<tr class="separator:a5accf8e86f4c6b0e10d1bd4c3ec048d3 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a36c6546253913b8ce6622258d15df83e inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a36c6546253913b8ce6622258d15df83e">unset_bg</a> (<a class="el" href="group__gtkmmEnums.html#gae389c7fef8176df3e8b7992c521d9661">StateType</a> state)</td></tr>
<tr class="memdesc:a36c6546253913b8ce6622258d15df83e inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Undo the effect of previous calls to <a class="el" href="classGtk_1_1Widget.html#a6c56232f7c75fa97fda3a88f1a67b27a" title="Sets the background color for a widget in a particular state. ">modify_bg()</a> for a particular state. <a href="#a36c6546253913b8ce6622258d15df83e">More...</a><br /></td></tr>
<tr class="separator:a36c6546253913b8ce6622258d15df83e inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a800da970fbd4b2eca553e721e3f6bba8 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a800da970fbd4b2eca553e721e3f6bba8">unset_text</a> (<a class="el" href="group__gtkmmEnums.html#gae389c7fef8176df3e8b7992c521d9661">StateType</a> state)</td></tr>
<tr class="memdesc:a800da970fbd4b2eca553e721e3f6bba8 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Undo the effect of previous calls to <a class="el" href="classGtk_1_1Widget.html#a61cef624ff13695bccb9c07a570ab53f" title="Sets the text color for a widget in a particular state. ">modify_text()</a> for a particular state. <a href="#a800da970fbd4b2eca553e721e3f6bba8">More...</a><br /></td></tr>
<tr class="separator:a800da970fbd4b2eca553e721e3f6bba8 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a240a901ca3cb9970f6d49f6256fad8b0 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a240a901ca3cb9970f6d49f6256fad8b0">unset_base</a> (<a class="el" href="group__gtkmmEnums.html#gae389c7fef8176df3e8b7992c521d9661">StateType</a> state)</td></tr>
<tr class="memdesc:a240a901ca3cb9970f6d49f6256fad8b0 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Undo the effect of previous calls to <a class="el" href="classGtk_1_1Widget.html#ae5ba3a8e3b370bac1558a2dc7968c034" title="Sets the base color for a widget in a particular state. ">modify_base()</a> for a particular state. <a href="#a240a901ca3cb9970f6d49f6256fad8b0">More...</a><br /></td></tr>
<tr class="separator:a240a901ca3cb9970f6d49f6256fad8b0 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a60c88c894c806af1a20dffca36cd3744 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a60c88c894c806af1a20dffca36cd3744">unset_font</a> ()</td></tr>
<tr class="memdesc:a60c88c894c806af1a20dffca36cd3744 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Undo the effect of previous calls to <a class="el" href="classGtk_1_1Widget.html#a26861d72af2d42a1c3827e180d1e2e69" title="Sets the font to use for a widget. ">modify_font()</a> for a particular state. <a href="#a60c88c894c806af1a20dffca36cd3744">More...</a><br /></td></tr>
<tr class="separator:a60c88c894c806af1a20dffca36cd3744 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a0ad16857eb6827256f57697fcfbfaf7f inherit pub_methods_classGtk_1_1Widget"><td class="memTemplParams" colspan="2">template<class PropertyType > </td></tr>
<tr class="memitem:a0ad16857eb6827256f57697fcfbfaf7f inherit pub_methods_classGtk_1_1Widget"><td class="memTemplItemLeft" align="right" valign="top">void </td><td class="memTemplItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a0ad16857eb6827256f57697fcfbfaf7f">get_style_property</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>& the_property_name, PropertyType& value) const </td></tr>
<tr class="separator:a0ad16857eb6827256f57697fcfbfaf7f inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a037efd7a9033e4b66a17cbf3f6948256 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="elRef" doxygen="pangomm-1.4.tag:http://library.gnome.org/devel/pangomm/unstable/" href="http://library.gnome.org/devel/pangomm/unstable/classPango_1_1Context.html">Pango::Context</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a037efd7a9033e4b66a17cbf3f6948256">create_pango_context</a> ()</td></tr>
<tr class="memdesc:a037efd7a9033e4b66a17cbf3f6948256 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Creates a new <a class="elRef" doxygen="pangomm-1.4.tag:http://library.gnome.org/devel/pangomm/unstable/" href="http://library.gnome.org/devel/pangomm/unstable/classPango_1_1Context.html">Pango::Context</a> with the appropriate font map, font description, and base direction for drawing text for this widget. <a href="#a037efd7a9033e4b66a17cbf3f6948256">More...</a><br /></td></tr>
<tr class="separator:a037efd7a9033e4b66a17cbf3f6948256 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a0be06b45418ec17f992eb3acf89cd0b8 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="elRef" doxygen="pangomm-1.4.tag:http://library.gnome.org/devel/pangomm/unstable/" href="http://library.gnome.org/devel/pangomm/unstable/classPango_1_1Context.html">Pango::Context</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a0be06b45418ec17f992eb3acf89cd0b8">get_pango_context</a> ()</td></tr>
<tr class="memdesc:a0be06b45418ec17f992eb3acf89cd0b8 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Gets a <a class="elRef" doxygen="pangomm-1.4.tag:http://library.gnome.org/devel/pangomm/unstable/" href="http://library.gnome.org/devel/pangomm/unstable/classPango_1_1Context.html">Pango::Context</a> with the appropriate font map, font description, and base direction for this widget. <a href="#a0be06b45418ec17f992eb3acf89cd0b8">More...</a><br /></td></tr>
<tr class="separator:a0be06b45418ec17f992eb3acf89cd0b8 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a3324f1e83d4c9a66262d32c4ba4a8051 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="elRef" doxygen="pangomm-1.4.tag:http://library.gnome.org/devel/pangomm/unstable/" href="http://library.gnome.org/devel/pangomm/unstable/classPango_1_1Layout.html">Pango::Layout</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a3324f1e83d4c9a66262d32c4ba4a8051">create_pango_layout</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>& text)</td></tr>
<tr class="memdesc:a3324f1e83d4c9a66262d32c4ba4a8051 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Creates a new <a class="elRef" doxygen="pangomm-1.4.tag:http://library.gnome.org/devel/pangomm/unstable/" href="http://library.gnome.org/devel/pangomm/unstable/classPango_1_1Layout.html">Pango::Layout</a> with the appropriate font map, font description, and base direction for drawing text for this widget. <a href="#a3324f1e83d4c9a66262d32c4ba4a8051">More...</a><br /></td></tr>
<tr class="separator:a3324f1e83d4c9a66262d32c4ba4a8051 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a91efd1b5aed7c184506ddd5721710584 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGdk_1_1Pixbuf.html">Gdk::Pixbuf</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a91efd1b5aed7c184506ddd5721710584">render_icon</a> (const <a class="el" href="classGtk_1_1StockID.html">StockID</a>& stock_id, <a class="el" href="classGtk_1_1IconSize.html">IconSize</a> <a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01656.html#ga445a43f417432dd1b9aed90ef239c700">size</a>, const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>& detail=<a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>())</td></tr>
<tr class="memdesc:a91efd1b5aed7c184506ddd5721710584 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">A convenience function that uses the theme engine and <a class="el" href="classGtk_1_1RC.html">RC</a> file settings for the widget to look up <em>stock_id</em> and render it to a pixbuf. <a href="#a91efd1b5aed7c184506ddd5721710584">More...</a><br /></td></tr>
<tr class="separator:a91efd1b5aed7c184506ddd5721710584 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:abcb7583891b4e1f0b7bbcab6756555f5 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#abcb7583891b4e1f0b7bbcab6756555f5">set_composite_name</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>& name)</td></tr>
<tr class="memdesc:abcb7583891b4e1f0b7bbcab6756555f5 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Sets a widgets composite name. <a href="#abcb7583891b4e1f0b7bbcab6756555f5">More...</a><br /></td></tr>
<tr class="separator:abcb7583891b4e1f0b7bbcab6756555f5 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac7e37f1af28e877f78cd8cee25152284 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#ac7e37f1af28e877f78cd8cee25152284">unset_composite_name</a> ()</td></tr>
<tr class="separator:ac7e37f1af28e877f78cd8cee25152284 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae35a43f2ae2ef249f4cfae2ae7b69e95 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#ae35a43f2ae2ef249f4cfae2ae7b69e95">get_composite_name</a> () const </td></tr>
<tr class="memdesc:ae35a43f2ae2ef249f4cfae2ae7b69e95 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Obtains the composite name of a widget. <a href="#ae35a43f2ae2ef249f4cfae2ae7b69e95">More...</a><br /></td></tr>
<tr class="separator:ae35a43f2ae2ef249f4cfae2ae7b69e95 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a8026e00c91e9bc4aa702754cd4c3a9dc inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a8026e00c91e9bc4aa702754cd4c3a9dc">reset_rc_styles</a> ()</td></tr>
<tr class="memdesc:a8026e00c91e9bc4aa702754cd4c3a9dc inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Reset the styles of <em>widget</em> and all descendents, so when they are looked up again, they get the correct values for the currently loaded <a class="el" href="classGtk_1_1RC.html">RC</a> file settings. <a href="#a8026e00c91e9bc4aa702754cd4c3a9dc">More...</a><br /></td></tr>
<tr class="separator:a8026e00c91e9bc4aa702754cd4c3a9dc inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a99ce7eb311e0c9fbc4470c845555b93d inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a99ce7eb311e0c9fbc4470c845555b93d">set_direction</a> (<a class="el" href="group__gtkmmEnums.html#gaabfcae0b9b0cf2aab01ee96352668d3d">TextDirection</a> dir)</td></tr>
<tr class="memdesc:a99ce7eb311e0c9fbc4470c845555b93d inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Sets the reading direction on a particular widget. <a href="#a99ce7eb311e0c9fbc4470c845555b93d">More...</a><br /></td></tr>
<tr class="separator:a99ce7eb311e0c9fbc4470c845555b93d inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af7f64bdff212b777efd1b63e30b2b942 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="el" href="group__gtkmmEnums.html#gaabfcae0b9b0cf2aab01ee96352668d3d">TextDirection</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#af7f64bdff212b777efd1b63e30b2b942">get_direction</a> ()</td></tr>
<tr class="memdesc:af7f64bdff212b777efd1b63e30b2b942 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Gets the reading direction for a particular widget. <a href="#af7f64bdff212b777efd1b63e30b2b942">More...</a><br /></td></tr>
<tr class="separator:af7f64bdff212b777efd1b63e30b2b942 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2c3e18773a8388a98005cc95f59eb086 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="el" href="group__gtkmmEnums.html#gaabfcae0b9b0cf2aab01ee96352668d3d">TextDirection</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a2c3e18773a8388a98005cc95f59eb086">get_direction</a> () const </td></tr>
<tr class="memdesc:a2c3e18773a8388a98005cc95f59eb086 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Gets the reading direction for a particular widget. <a href="#a2c3e18773a8388a98005cc95f59eb086">More...</a><br /></td></tr>
<tr class="separator:a2c3e18773a8388a98005cc95f59eb086 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a62b87786cfecfaf40239a3bdc9118866 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a62b87786cfecfaf40239a3bdc9118866">shape_combine_mask</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< const <a class="el" href="classGdk_1_1Bitmap.html">Gdk::Bitmap</a> >& shape_mask, int offset_x, int offset_y)</td></tr>
<tr class="memdesc:a62b87786cfecfaf40239a3bdc9118866 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Sets a shape for this widget's GDK window. <a href="#a62b87786cfecfaf40239a3bdc9118866">More...</a><br /></td></tr>
<tr class="separator:a62b87786cfecfaf40239a3bdc9118866 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a199882077b5834fcf132f76a5966c330 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a199882077b5834fcf132f76a5966c330">unset_shape_combine_mask</a> ()</td></tr>
<tr class="separator:a199882077b5834fcf132f76a5966c330 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a11081c48e54a4e2eb9ce8dcce7996305 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a11081c48e54a4e2eb9ce8dcce7996305">input_shape_combine_mask</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< const <a class="el" href="classGdk_1_1Bitmap.html">Gdk::Bitmap</a> >& shape_mask, int offset_x, int offset_y)</td></tr>
<tr class="memdesc:a11081c48e54a4e2eb9ce8dcce7996305 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Sets an input shape for this widget's GDK window. <a href="#a11081c48e54a4e2eb9ce8dcce7996305">More...</a><br /></td></tr>
<tr class="separator:a11081c48e54a4e2eb9ce8dcce7996305 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac6fb8f444c9fd054ba9fe0c6d0863cfa inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#ac6fb8f444c9fd054ba9fe0c6d0863cfa">unset_input_shape_combine_mask</a> ()</td></tr>
<tr class="separator:ac6fb8f444c9fd054ba9fe0c6d0863cfa inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a3bf38f62be8ec1bc2ded0b4731090d35 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a3bf38f62be8ec1bc2ded0b4731090d35">reset_shapes</a> ()</td></tr>
<tr class="memdesc:a3bf38f62be8ec1bc2ded0b4731090d35 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Recursively resets the shape on this widget and its descendants. <a href="#a3bf38f62be8ec1bc2ded0b4731090d35">More...</a><br /></td></tr>
<tr class="separator:a3bf38f62be8ec1bc2ded0b4731090d35 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a7e0103edc88f8ccbd7d3e9c706679498 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a7e0103edc88f8ccbd7d3e9c706679498">path</a> (<a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>& path, <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>& path_reversed)</td></tr>
<tr class="memdesc:a7e0103edc88f8ccbd7d3e9c706679498 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Compute a widget's path of the form "GtkWindow.MyLabel". <a href="#a7e0103edc88f8ccbd7d3e9c706679498">More...</a><br /></td></tr>
<tr class="separator:a7e0103edc88f8ccbd7d3e9c706679498 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af749cdff3ccaf7227cf734d0e53c8981 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#af749cdff3ccaf7227cf734d0e53c8981">class_path</a> (<a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>&<a class="el" href="classGtk_1_1Widget.html#a7e0103edc88f8ccbd7d3e9c706679498">path</a>, <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>& path_reversed)</td></tr>
<tr class="separator:af749cdff3ccaf7227cf734d0e53c8981 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad51a2172aed03f55a03c26591a9b2273 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ListHandle.html">Glib::ListHandle</a>< <a class="el" href="classGtk_1_1Widget.html">Widget</a>* > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#ad51a2172aed03f55a03c26591a9b2273">list_mnemonic_labels</a> ()</td></tr>
<tr class="memdesc:ad51a2172aed03f55a03c26591a9b2273 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Returns a newly allocated list of the widgets, normally labels, for which this widget is a the target of a mnemonic (see for example, <a class="el" href="classGtk_1_1Label.html#aee19a9bd4d6468633938f7a19203a9cc" title="If the label has been set so that it has an mnemonic key (using i.e. set_markup_with_mnemonic(), set_text_with_mnemonic(), new_with_mnemonic() or the "use_underline" property) the label can be associated with a widget that is the target of the mnemonic. ">Gtk::Label::set_mnemonic_widget()</a>). <a href="#ad51a2172aed03f55a03c26591a9b2273">More...</a><br /></td></tr>
<tr class="separator:ad51a2172aed03f55a03c26591a9b2273 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a26d12da6dad1b9b751e306f89463d654 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ListHandle.html">Glib::ListHandle</a>< const <a class="el" href="classGtk_1_1Widget.html">Widget</a>* > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a26d12da6dad1b9b751e306f89463d654">list_mnemonic_labels</a> () const </td></tr>
<tr class="memdesc:a26d12da6dad1b9b751e306f89463d654 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Returns a newly allocated list of the widgets, normally labels, for which this widget is a the target of a mnemonic (see for example, <a class="el" href="classGtk_1_1Label.html#aee19a9bd4d6468633938f7a19203a9cc" title="If the label has been set so that it has an mnemonic key (using i.e. set_markup_with_mnemonic(), set_text_with_mnemonic(), new_with_mnemonic() or the "use_underline" property) the label can be associated with a widget that is the target of the mnemonic. ">Gtk::Label::set_mnemonic_widget()</a>). <a href="#a26d12da6dad1b9b751e306f89463d654">More...</a><br /></td></tr>
<tr class="separator:a26d12da6dad1b9b751e306f89463d654 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:adccc7e5666cb846546d0fa74e4a9a6a5 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#adccc7e5666cb846546d0fa74e4a9a6a5">add_mnemonic_label</a> (<a class="el" href="classGtk_1_1Widget.html">Widget</a>& label)</td></tr>
<tr class="memdesc:adccc7e5666cb846546d0fa74e4a9a6a5 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Adds a widget to the list of mnemonic labels for this widget. <a href="#adccc7e5666cb846546d0fa74e4a9a6a5">More...</a><br /></td></tr>
<tr class="separator:adccc7e5666cb846546d0fa74e4a9a6a5 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aae9b5c7d8815bfb16114a2796a4513b0 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#aae9b5c7d8815bfb16114a2796a4513b0">remove_mnemonic_label</a> (<a class="el" href="classGtk_1_1Widget.html">Widget</a>& label)</td></tr>
<tr class="memdesc:aae9b5c7d8815bfb16114a2796a4513b0 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Removes a widget from the list of mnemonic labels for this widget. <a href="#aae9b5c7d8815bfb16114a2796a4513b0">More...</a><br /></td></tr>
<tr class="separator:aae9b5c7d8815bfb16114a2796a4513b0 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae4476d90cdaddab4c84a849f81004322 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#ae4476d90cdaddab4c84a849f81004322">drag_get_data</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGdk_1_1DragContext.html">Gdk::DragContext</a> >& context, <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>& target, guint32 time)</td></tr>
<tr class="separator:ae4476d90cdaddab4c84a849f81004322 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aeeff7bdf20b304d8ccaaa1a6a2472254 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#aeeff7bdf20b304d8ccaaa1a6a2472254">drag_get_data</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGdk_1_1DragContext.html">Gdk::DragContext</a> >& context, const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>& target, guint32 time)</td></tr>
<tr class="separator:aeeff7bdf20b304d8ccaaa1a6a2472254 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af24201179782fc264d958a7e94e001ca inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#af24201179782fc264d958a7e94e001ca">drag_highlight</a> ()</td></tr>
<tr class="separator:af24201179782fc264d958a7e94e001ca inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a403e43f2911548d18a78b0ad85e0e6be inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a403e43f2911548d18a78b0ad85e0e6be">drag_unhighlight</a> ()</td></tr>
<tr class="separator:a403e43f2911548d18a78b0ad85e0e6be inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aeec9a624508bddd1bcc81f16f7812bb4 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#aeec9a624508bddd1bcc81f16f7812bb4">drag_dest_set</a> (<a class="el" href="group__gtkmmEnums.html#gaf2f1ae1fbd332c3a3b420bb10ed73a65">DestDefaults</a> flags=<a class="el" href="group__gtkmmEnums.html#gaf2f1ae1fbd332c3a3b420bb10ed73a65">DestDefaults</a>(0), <a class="el" href="group__gdkmmEnums.html#ga0a9506293be3b3dfe00ecdb83e764ca6">Gdk::DragAction</a> actions=<a class="el" href="group__gdkmmEnums.html#ga0a9506293be3b3dfe00ecdb83e764ca6">Gdk::DragAction</a>(0))</td></tr>
<tr class="separator:aeec9a624508bddd1bcc81f16f7812bb4 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af57995fba18cc7d1312b54f5d9a3efbb inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#af57995fba18cc7d1312b54f5d9a3efbb">drag_dest_set</a> (const <a class="el" href="namespaceGtk.html#a8aa59433dc9f82e65cb3787e536a7710">ArrayHandle_TargetEntry</a>& targets, <a class="el" href="group__gtkmmEnums.html#gaf2f1ae1fbd332c3a3b420bb10ed73a65">DestDefaults</a> flags=<a class="el" href="group__gtkmmEnums.html#ggaf2f1ae1fbd332c3a3b420bb10ed73a65a2c45b7c99534c80c52d1628459f00d7d">DEST_DEFAULT_ALL</a>, <a class="el" href="group__gdkmmEnums.html#ga0a9506293be3b3dfe00ecdb83e764ca6">Gdk::DragAction</a> actions=<a class="el" href="group__gdkmmEnums.html#gga0a9506293be3b3dfe00ecdb83e764ca6aa49036d40d941c34c467819421d3d8a2">Gdk::ACTION_COPY</a>)</td></tr>
<tr class="separator:af57995fba18cc7d1312b54f5d9a3efbb inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1a200a050a00fa3d67b93e2ae0458e2b inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a1a200a050a00fa3d67b93e2ae0458e2b">drag_dest_set_proxy</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGdk_1_1Window.html">Gdk::Window</a> >& proxy_window, <a class="el" href="group__gdkmmEnums.html#ga55102c640e0ecc1378ac73c1065d452d">Gdk::DragProtocol</a> protocol, bool use_coordinates)</td></tr>
<tr class="separator:a1a200a050a00fa3d67b93e2ae0458e2b inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a0940c95059601a152db59a2fc99a2ed3 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a0940c95059601a152db59a2fc99a2ed3">drag_dest_unset</a> ()</td></tr>
<tr class="separator:a0940c95059601a152db59a2fc99a2ed3 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a36805dcb16af63671f1762828929ab28 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a36805dcb16af63671f1762828929ab28">drag_dest_find_target</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGdk_1_1DragContext.html">Gdk::DragContext</a> >& context, const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGtk_1_1TargetList.html">TargetList</a> >& target_list) const </td></tr>
<tr class="memdesc:a36805dcb16af63671f1762828929ab28 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Looks for a match between <em>context->targets</em> and the <em>dest_target_list</em>, returning the first matching target, otherwise returning Gdk::NONE. <a href="#a36805dcb16af63671f1762828929ab28">More...</a><br /></td></tr>
<tr class="separator:a36805dcb16af63671f1762828929ab28 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a26b0ba34603ae17d75de92fbe95e1ede inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a26b0ba34603ae17d75de92fbe95e1ede">drag_dest_find_target</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGdk_1_1DragContext.html">Gdk::DragContext</a> >& context) const </td></tr>
<tr class="separator:a26b0ba34603ae17d75de92fbe95e1ede inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a07c1ed53631714a9135f6db9370ff6f7 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGtk_1_1TargetList.html">TargetList</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a07c1ed53631714a9135f6db9370ff6f7">drag_dest_get_target_list</a> ()</td></tr>
<tr class="memdesc:a07c1ed53631714a9135f6db9370ff6f7 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Returns the list of targets this widget can accept from drag-and-drop. <a href="#a07c1ed53631714a9135f6db9370ff6f7">More...</a><br /></td></tr>
<tr class="separator:a07c1ed53631714a9135f6db9370ff6f7 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa09841e7ea39628ca8760746a5f55647 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< const <a class="el" href="classGtk_1_1TargetList.html">TargetList</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#aa09841e7ea39628ca8760746a5f55647">drag_dest_get_target_list</a> () const </td></tr>
<tr class="memdesc:aa09841e7ea39628ca8760746a5f55647 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Returns the list of targets this widget can accept from drag-and-drop. <a href="#aa09841e7ea39628ca8760746a5f55647">More...</a><br /></td></tr>
<tr class="separator:aa09841e7ea39628ca8760746a5f55647 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a86dd2a470bf21f2e1226c08e77602b28 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a86dd2a470bf21f2e1226c08e77602b28">drag_dest_set_target_list</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGtk_1_1TargetList.html">TargetList</a> >& target_list)</td></tr>
<tr class="memdesc:a86dd2a470bf21f2e1226c08e77602b28 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Sets the target types that this widget can accept from drag-and-drop. <a href="#a86dd2a470bf21f2e1226c08e77602b28">More...</a><br /></td></tr>
<tr class="separator:a86dd2a470bf21f2e1226c08e77602b28 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad669a63737649c8415ad0ea24d7a952e inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#ad669a63737649c8415ad0ea24d7a952e">drag_dest_add_text_targets</a> ()</td></tr>
<tr class="memdesc:ad669a63737649c8415ad0ea24d7a952e inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Add the text targets supported by Gtk::Selection to the target list of the drag destination. <a href="#ad669a63737649c8415ad0ea24d7a952e">More...</a><br /></td></tr>
<tr class="separator:ad669a63737649c8415ad0ea24d7a952e inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a19c4e7cff79edb7270f51b760ff3e1b7 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a19c4e7cff79edb7270f51b760ff3e1b7">drag_dest_add_image_targets</a> ()</td></tr>
<tr class="memdesc:a19c4e7cff79edb7270f51b760ff3e1b7 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Add the image targets supported by Gtk::Selection to the target list of the drag destination. <a href="#a19c4e7cff79edb7270f51b760ff3e1b7">More...</a><br /></td></tr>
<tr class="separator:a19c4e7cff79edb7270f51b760ff3e1b7 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a138185c3fdd994c0dbc94acafc14326f inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a138185c3fdd994c0dbc94acafc14326f">drag_dest_add_uri_targets</a> ()</td></tr>
<tr class="memdesc:a138185c3fdd994c0dbc94acafc14326f inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Add the URI targets supported by Gtk::Selection to the target list of the drag destination. <a href="#a138185c3fdd994c0dbc94acafc14326f">More...</a><br /></td></tr>
<tr class="separator:a138185c3fdd994c0dbc94acafc14326f inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4d5be167799f4e54b90a85b4eb440aea inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a4d5be167799f4e54b90a85b4eb440aea">drag_source_set</a> (const <a class="el" href="namespaceGtk.html#a8aa59433dc9f82e65cb3787e536a7710">ArrayHandle_TargetEntry</a>& targets, <a class="el" href="group__gdkmmEnums.html#ga734c2979005c87dbe51223a0128cdd97">Gdk::ModifierType</a> start_button_mask=<a class="el" href="group__gdkmmEnums.html#gga734c2979005c87dbe51223a0128cdd97a67ec3a5dff5307d28a4d33bbad3e33af">Gdk::MODIFIER_MASK</a>, <a class="el" href="group__gdkmmEnums.html#ga0a9506293be3b3dfe00ecdb83e764ca6">Gdk::DragAction</a> actions=<a class="el" href="group__gdkmmEnums.html#gga0a9506293be3b3dfe00ecdb83e764ca6aa49036d40d941c34c467819421d3d8a2">Gdk::ACTION_COPY</a>)</td></tr>
<tr class="separator:a4d5be167799f4e54b90a85b4eb440aea inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9c156edd6b54cb87d39cbbcec70716a7 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a9c156edd6b54cb87d39cbbcec70716a7">drag_source_unset</a> ()</td></tr>
<tr class="separator:a9c156edd6b54cb87d39cbbcec70716a7 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a7370538adcc1b69d6c24f1395e850bad inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a7370538adcc1b69d6c24f1395e850bad">drag_source_set_icon</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGdk_1_1Colormap.html">Gdk::Colormap</a> >& colormap, const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGdk_1_1Pixmap.html">Gdk::Pixmap</a> >& pixmap, const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGdk_1_1Bitmap.html">Gdk::Bitmap</a> >& mask)</td></tr>
<tr class="memdesc:a7370538adcc1b69d6c24f1395e850bad inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Sets the icon that will be used for drags from a particular widget from a pixmap/mask. <a href="#a7370538adcc1b69d6c24f1395e850bad">More...</a><br /></td></tr>
<tr class="separator:a7370538adcc1b69d6c24f1395e850bad inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a92fabd755df343050f9421a83d0d602d inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a92fabd755df343050f9421a83d0d602d">drag_source_set_icon</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGdk_1_1Pixbuf.html">Gdk::Pixbuf</a> >& pixbuf)</td></tr>
<tr class="memdesc:a92fabd755df343050f9421a83d0d602d inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Sets the icon that will be used for drags from a particular widget from a <a class="el" href="classGdk_1_1Pixbuf.html">Gdk::Pixbuf</a>. <a href="#a92fabd755df343050f9421a83d0d602d">More...</a><br /></td></tr>
<tr class="separator:a92fabd755df343050f9421a83d0d602d inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2c03f929c0f9b47122079df302216665 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a2c03f929c0f9b47122079df302216665">drag_source_set_icon</a> (const <a class="el" href="classGtk_1_1StockID.html">StockID</a>& stock_id)</td></tr>
<tr class="memdesc:a2c03f929c0f9b47122079df302216665 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Sets the icon that will be used for drags from a particular source to a stock icon. <a href="#a2c03f929c0f9b47122079df302216665">More...</a><br /></td></tr>
<tr class="separator:a2c03f929c0f9b47122079df302216665 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a870e910048a22a53f1b1a84e2d488fea inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a870e910048a22a53f1b1a84e2d488fea">drag_source_set_icon</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>& icon_name)</td></tr>
<tr class="memdesc:a870e910048a22a53f1b1a84e2d488fea inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Sets the icon that will be used for drags from a particular source to a themed icon. <a href="#a870e910048a22a53f1b1a84e2d488fea">More...</a><br /></td></tr>
<tr class="separator:a870e910048a22a53f1b1a84e2d488fea inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a729e302832707babc3639484b45b3fdb inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a729e302832707babc3639484b45b3fdb">drag_source_add_text_targets</a> ()</td></tr>
<tr class="memdesc:a729e302832707babc3639484b45b3fdb inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Add the text targets supported by Gtk::Selection to the target list of the drag source. <a href="#a729e302832707babc3639484b45b3fdb">More...</a><br /></td></tr>
<tr class="separator:a729e302832707babc3639484b45b3fdb inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad9d9afa611a4fbc2a77929dd0d6c84e0 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#ad9d9afa611a4fbc2a77929dd0d6c84e0">drag_source_add_uri_targets</a> ()</td></tr>
<tr class="memdesc:ad9d9afa611a4fbc2a77929dd0d6c84e0 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Add the URI targets supported by Gtk::Selection to the target list of the drag source. <a href="#ad9d9afa611a4fbc2a77929dd0d6c84e0">More...</a><br /></td></tr>
<tr class="separator:ad9d9afa611a4fbc2a77929dd0d6c84e0 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a92896486d11b3f429000fa5cc8edf571 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a92896486d11b3f429000fa5cc8edf571">drag_source_add_image_targets</a> ()</td></tr>
<tr class="memdesc:a92896486d11b3f429000fa5cc8edf571 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Add the writable image targets supported by Gtk::Selection to the target list of the drag source. <a href="#a92896486d11b3f429000fa5cc8edf571">More...</a><br /></td></tr>
<tr class="separator:a92896486d11b3f429000fa5cc8edf571 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af5c785811059622c09f060ac8ea47a5b inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGdk_1_1DragContext.html">Gdk::DragContext</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#af5c785811059622c09f060ac8ea47a5b">drag_begin</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGtk_1_1TargetList.html">TargetList</a> >& targets, <a class="el" href="group__gdkmmEnums.html#ga0a9506293be3b3dfe00ecdb83e764ca6">Gdk::DragAction</a> actions, int button, GdkEvent*<a class="el" href="classGtk_1_1Widget.html#aff4e0463f492043197c7d70daaad7590">event</a>)</td></tr>
<tr class="memdesc:af5c785811059622c09f060ac8ea47a5b inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Initiates a drag on the source side. <a href="#af5c785811059622c09f060ac8ea47a5b">More...</a><br /></td></tr>
<tr class="separator:af5c785811059622c09f060ac8ea47a5b inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a64de61261ff9d14d7973d3a6833fb163 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a64de61261ff9d14d7973d3a6833fb163">drag_check_threshold</a> (int start_x, int start_y, int current_x, int current_y)</td></tr>
<tr class="memdesc:a64de61261ff9d14d7973d3a6833fb163 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Checks to see if a mouse drag starting at ( <em>start_x</em>, <em>start_y</em>) and ending at ( <em>current_x</em>, <em>current_y</em>) has passed the GTK+ drag threshold, and thus should trigger the beginning of a drag-and-drop operation. <a href="#a64de61261ff9d14d7973d3a6833fb163">More...</a><br /></td></tr>
<tr class="separator:a64de61261ff9d14d7973d3a6833fb163 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a70d8a9ddb89c4de96621bac0a735a1d8 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a70d8a9ddb89c4de96621bac0a735a1d8">drag_set_as_icon</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGdk_1_1DragContext.html">Gdk::DragContext</a> >& context, int hot_x, int hot_y)</td></tr>
<tr class="separator:a70d8a9ddb89c4de96621bac0a735a1d8 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa6b83d447bd58b0a99d4a3f0206a1fa7 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#aa6b83d447bd58b0a99d4a3f0206a1fa7">queue_resize_no_redraw</a> ()</td></tr>
<tr class="memdesc:aa6b83d447bd58b0a99d4a3f0206a1fa7 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">This function works like <a class="el" href="classGtk_1_1Widget.html#af3f9465454a376549b12a5eeee1277c2" title="This function is only for use in widget implementations. ">queue_resize()</a>, except that the widget is not invalidated. <a href="#aa6b83d447bd58b0a99d4a3f0206a1fa7">More...</a><br /></td></tr>
<tr class="separator:aa6b83d447bd58b0a99d4a3f0206a1fa7 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab03e846ecbf4d9f17e22e7896b288dcd inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#ab03e846ecbf4d9f17e22e7896b288dcd">get_no_show_all</a> () const </td></tr>
<tr class="memdesc:ab03e846ecbf4d9f17e22e7896b288dcd inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Returns the current value of the GtkWidget:no-show-all property, which determines whether calls to <a class="el" href="classGtk_1_1Widget.html#a4fab2509c3afe1952a408494561295c0" title="Recursively shows a widget, and any child widgets (if the widget is a container). ...">show_all()</a> and <a class="el" href="classGtk_1_1Widget.html#a9ad829a03c48b8c697c7ecaef3319fc7" title="Recursively hides a widget and any child widgets. ">hide_all()</a> will affect this widget. <a href="#ab03e846ecbf4d9f17e22e7896b288dcd">More...</a><br /></td></tr>
<tr class="separator:ab03e846ecbf4d9f17e22e7896b288dcd inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a806bd24b81722743c330d0c8fa5bf647 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a806bd24b81722743c330d0c8fa5bf647">set_no_show_all</a> (bool no_show_all=true)</td></tr>
<tr class="memdesc:a806bd24b81722743c330d0c8fa5bf647 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Sets the <a class="el" href="classGtk_1_1Widget.html#a89344169f366f7d57ba20b25532f68e0" title="Whether gtk_widget_show_all() should not affect this widget. ">Gtk::Widget::property_no_show_all()</a> property, which determines whether calls to <a class="el" href="classGtk_1_1Widget.html#a4fab2509c3afe1952a408494561295c0" title="Recursively shows a widget, and any child widgets (if the widget is a container). ...">show_all()</a> and <a class="el" href="classGtk_1_1Widget.html#a9ad829a03c48b8c697c7ecaef3319fc7" title="Recursively hides a widget and any child widgets. ">hide_all()</a> will affect this widget. <a href="#a806bd24b81722743c330d0c8fa5bf647">More...</a><br /></td></tr>
<tr class="separator:a806bd24b81722743c330d0c8fa5bf647 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a21b9e9e7fb43ed9ab0ed9e7adeec6b4e inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a21b9e9e7fb43ed9ab0ed9e7adeec6b4e">set_parent</a> (<a class="el" href="classGtk_1_1Widget.html">Widget</a>& parent)</td></tr>
<tr class="memdesc:a21b9e9e7fb43ed9ab0ed9e7adeec6b4e inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">This function is useful only when implementing subclasses of <a class="el" href="classGtk_1_1Container.html" title="Abstract container class. ">Gtk::Container</a>. <a href="#a21b9e9e7fb43ed9ab0ed9e7adeec6b4e">More...</a><br /></td></tr>
<tr class="separator:a21b9e9e7fb43ed9ab0ed9e7adeec6b4e inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa17c76495e4c597626cfd2f5f1e71ea3 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#aa17c76495e4c597626cfd2f5f1e71ea3">unparent</a> ()</td></tr>
<tr class="memdesc:aa17c76495e4c597626cfd2f5f1e71ea3 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">This function is only for use in widget implementations. <a href="#aa17c76495e4c597626cfd2f5f1e71ea3">More...</a><br /></td></tr>
<tr class="separator:aa17c76495e4c597626cfd2f5f1e71ea3 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af83da02607776d8b4c3b177cfe305b6b inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#af83da02607776d8b4c3b177cfe305b6b">map</a> ()</td></tr>
<tr class="memdesc:af83da02607776d8b4c3b177cfe305b6b inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">This function is only for use in widget implementations. <a href="#af83da02607776d8b4c3b177cfe305b6b">More...</a><br /></td></tr>
<tr class="separator:af83da02607776d8b4c3b177cfe305b6b inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a8da9feaacdb1fb6cc2e867416767f9c7 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a8da9feaacdb1fb6cc2e867416767f9c7">unmap</a> ()</td></tr>
<tr class="memdesc:a8da9feaacdb1fb6cc2e867416767f9c7 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">This function is only for use in widget implementations. <a href="#a8da9feaacdb1fb6cc2e867416767f9c7">More...</a><br /></td></tr>
<tr class="separator:a8da9feaacdb1fb6cc2e867416767f9c7 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a6b6872da8318488bd65af0f858ad6327 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a6b6872da8318488bd65af0f858ad6327">draw_insertion_cursor</a> (<a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGdk_1_1Drawable.html">Gdk::Drawable</a> > drawable, const <a class="el" href="classGdk_1_1Rectangle.html">Gdk::Rectangle</a>& area, const <a class="el" href="classGdk_1_1Rectangle.html">Gdk::Rectangle</a>& location, bool is_primary, <a class="el" href="group__gtkmmEnums.html#gaabfcae0b9b0cf2aab01ee96352668d3d">TextDirection</a> direction, bool draw_arrow=true)</td></tr>
<tr class="separator:a6b6872da8318488bd65af0f858ad6327 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac7758d297f1dd68f1d488489bc972df4 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#ac7758d297f1dd68f1d488489bc972df4">set_tooltip_window</a> (<a class="el" href="classGtk_1_1Window.html">Window</a>& widget)</td></tr>
<tr class="memdesc:ac7758d297f1dd68f1d488489bc972df4 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Replaces the default, usually yellow, window used for displaying tooltips with <em>widget</em>. <a href="#ac7758d297f1dd68f1d488489bc972df4">More...</a><br /></td></tr>
<tr class="separator:ac7758d297f1dd68f1d488489bc972df4 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9d52bbba472b9c74dfa22cb1f60981ca inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGtk_1_1Window.html">Window</a>* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a9d52bbba472b9c74dfa22cb1f60981ca">get_tooltip_window</a> ()</td></tr>
<tr class="memdesc:a9d52bbba472b9c74dfa22cb1f60981ca inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Returns the <a class="el" href="classGtk_1_1Window.html" title="Toplevel Window This represents all widgets which are physical windows controlled by the window manag...">Gtk::Window</a> of the current tooltip. <a href="#a9d52bbba472b9c74dfa22cb1f60981ca">More...</a><br /></td></tr>
<tr class="separator:a9d52bbba472b9c74dfa22cb1f60981ca inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a0edaf9428acc1059fbce774474f4a583 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a0edaf9428acc1059fbce774474f4a583">trigger_tooltip_query</a> ()</td></tr>
<tr class="memdesc:a0edaf9428acc1059fbce774474f4a583 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Triggers a tooltip query on the display where the toplevel of <em>widget</em> is located. <a href="#a0edaf9428acc1059fbce774474f4a583">More...</a><br /></td></tr>
<tr class="separator:a0edaf9428acc1059fbce774474f4a583 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a42b509c9f13cee28f3c3cd25192b78ae inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a42b509c9f13cee28f3c3cd25192b78ae">set_tooltip_text</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>& text)</td></tr>
<tr class="memdesc:a42b509c9f13cee28f3c3cd25192b78ae inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Sets <em>text</em> as the contents of the tooltip. <a href="#a42b509c9f13cee28f3c3cd25192b78ae">More...</a><br /></td></tr>
<tr class="separator:a42b509c9f13cee28f3c3cd25192b78ae inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a6959fa6a9bf136bf8d4c151d3a470cd8 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a6959fa6a9bf136bf8d4c151d3a470cd8">get_tooltip_text</a> () const </td></tr>
<tr class="memdesc:a6959fa6a9bf136bf8d4c151d3a470cd8 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Gets the contents of the tooltip for <em>widget</em>. <a href="#a6959fa6a9bf136bf8d4c151d3a470cd8">More...</a><br /></td></tr>
<tr class="separator:a6959fa6a9bf136bf8d4c151d3a470cd8 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a91d2ed29e299f06fdf18c1d6620667fe inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a91d2ed29e299f06fdf18c1d6620667fe">set_tooltip_markup</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>& markup)</td></tr>
<tr class="memdesc:a91d2ed29e299f06fdf18c1d6620667fe inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Sets <em>markup</em> as the contents of the tooltip, which is marked up with the <a class="elRef" doxygen="pangomm-1.4.tag:http://library.gnome.org/devel/pangomm/unstable/" href="http://library.gnome.org/devel/pangomm/unstable/namespacePango.html">Pango</a> text markup language. <a href="#a91d2ed29e299f06fdf18c1d6620667fe">More...</a><br /></td></tr>
<tr class="separator:a91d2ed29e299f06fdf18c1d6620667fe inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:afd3cc5f9edf7205d885f8074007b7f75 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#afd3cc5f9edf7205d885f8074007b7f75">get_tooltip_markup</a> () const </td></tr>
<tr class="memdesc:afd3cc5f9edf7205d885f8074007b7f75 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Gets the contents of the tooltip for <em>widget</em>. <a href="#afd3cc5f9edf7205d885f8074007b7f75">More...</a><br /></td></tr>
<tr class="separator:afd3cc5f9edf7205d885f8074007b7f75 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9acdb4ae0461ce87cacd553a3de7608d inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a9acdb4ae0461ce87cacd553a3de7608d">set_has_tooltip</a> (bool has_tooltip=TRUE)</td></tr>
<tr class="memdesc:a9acdb4ae0461ce87cacd553a3de7608d inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Sets the has-tooltip property on <em>widget</em> to <em>has_tooltip</em>. <a href="#a9acdb4ae0461ce87cacd553a3de7608d">More...</a><br /></td></tr>
<tr class="separator:a9acdb4ae0461ce87cacd553a3de7608d inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:afc499e7b1bfb1df675090f0dfd5ddf3d inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#afc499e7b1bfb1df675090f0dfd5ddf3d">get_has_tooltip</a> () const </td></tr>
<tr class="memdesc:afc499e7b1bfb1df675090f0dfd5ddf3d inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Returns the current value of the has-tooltip property. <a href="#afc499e7b1bfb1df675090f0dfd5ddf3d">More...</a><br /></td></tr>
<tr class="separator:afc499e7b1bfb1df675090f0dfd5ddf3d inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a06b4b64c885d73464f395d717adbcd40 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a06b4b64c885d73464f395d717adbcd40">has_no_window</a> () const </td></tr>
<tr class="separator:a06b4b64c885d73464f395d717adbcd40 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4b00f5f4193832b65e54434fc3f75df9 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a4b00f5f4193832b65e54434fc3f75df9">is_realized</a> () const </td></tr>
<tr class="separator:a4b00f5f4193832b65e54434fc3f75df9 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af15e59c3ced30a26cd1dcf79cbd42cdf inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#af15e59c3ced30a26cd1dcf79cbd42cdf">is_mapped</a> () const </td></tr>
<tr class="separator:af15e59c3ced30a26cd1dcf79cbd42cdf inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a06d954e357299ff48ed2ebe157dbe777 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a06d954e357299ff48ed2ebe157dbe777">is_toplevel</a> () const </td></tr>
<tr class="separator:a06d954e357299ff48ed2ebe157dbe777 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a16f279bed6c075050709d82b7f799e6a inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a16f279bed6c075050709d82b7f799e6a">is_drawable</a> () const </td></tr>
<tr class="separator:a16f279bed6c075050709d82b7f799e6a inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4c9d61aa7062c3010dd7473ef60d4fa9 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a4c9d61aa7062c3010dd7473ef60d4fa9">is_visible</a> () const </td></tr>
<tr class="separator:a4c9d61aa7062c3010dd7473ef60d4fa9 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a324726ce185f229b79b6fe051ba37fce inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a324726ce185f229b79b6fe051ba37fce">sensitive</a> () const </td></tr>
<tr class="separator:a324726ce185f229b79b6fe051ba37fce inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:affca5f0ffb80e88c2f48fca64879fb0e inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#affca5f0ffb80e88c2f48fca64879fb0e">app_paintable</a> () const </td></tr>
<tr class="separator:affca5f0ffb80e88c2f48fca64879fb0e inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5283879ace0f2f71f0abb5b316fe1667 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a5283879ace0f2f71f0abb5b316fe1667">receives_default</a> () const </td></tr>
<tr class="separator:a5283879ace0f2f71f0abb5b316fe1667 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af58f9055080f391ed5cff1aaebba0613 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#af58f9055080f391ed5cff1aaebba0613">double_buffered</a> () const </td></tr>
<tr class="separator:af58f9055080f391ed5cff1aaebba0613 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a0f864ffb900e34a6b3d98a5bb7100dc9 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a0f864ffb900e34a6b3d98a5bb7100dc9">parent_sensitive</a> () const </td></tr>
<tr class="separator:a0f864ffb900e34a6b3d98a5bb7100dc9 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9b347d7a5f2a112027c9cefff5cdd045 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a9b347d7a5f2a112027c9cefff5cdd045">rc_style</a> () const </td></tr>
<tr class="separator:a9b347d7a5f2a112027c9cefff5cdd045 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a14162bc0dfd3b81c7b8aceb04fad08a6 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a14162bc0dfd3b81c7b8aceb04fad08a6">is_composite_child</a> () const </td></tr>
<tr class="memdesc:a14162bc0dfd3b81c7b8aceb04fad08a6 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Returns trye if the widget is a composite child of its parent. <a href="#a14162bc0dfd3b81c7b8aceb04fad08a6">More...</a><br /></td></tr>
<tr class="separator:a14162bc0dfd3b81c7b8aceb04fad08a6 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:abf7c9888b68a7495453efdf4c4be82fd inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="el" href="group__gtkmmEnums.html#ga3d42e9e6671e48764b3b42bcc8da0b47">WidgetFlags</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#abf7c9888b68a7495453efdf4c4be82fd">get_flags</a> () const </td></tr>
<tr class="separator:abf7c9888b68a7495453efdf4c4be82fd inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a18e5abffbbede2e0036bb29d2edae42f inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a18e5abffbbede2e0036bb29d2edae42f">set_flags</a> (<a class="el" href="group__gtkmmEnums.html#ga3d42e9e6671e48764b3b42bcc8da0b47">WidgetFlags</a> flags)</td></tr>
<tr class="separator:a18e5abffbbede2e0036bb29d2edae42f inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad0d3839b9ed0e222f0a2d1684e431765 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#ad0d3839b9ed0e222f0a2d1684e431765">unset_flags</a> (<a class="el" href="group__gtkmmEnums.html#ga3d42e9e6671e48764b3b42bcc8da0b47">WidgetFlags</a> flags)</td></tr>
<tr class="separator:ad0d3839b9ed0e222f0a2d1684e431765 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aeda580e803fef5bb17f231ff4d9167c4 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="el" href="group__gtkmmEnums.html#gae389c7fef8176df3e8b7992c521d9661">Gtk::StateType</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#aeda580e803fef5bb17f231ff4d9167c4">get_saved_state</a> () const </td></tr>
<tr class="separator:aeda580e803fef5bb17f231ff4d9167c4 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa0d3811915ad49a076b094ec1396779f inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#aa0d3811915ad49a076b094ec1396779f">get_width</a> () const </td></tr>
<tr class="separator:aa0d3811915ad49a076b094ec1396779f inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa4f70eb9a258bcec56d69f9177e5a43a inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#aa4f70eb9a258bcec56d69f9177e5a43a">get_height</a> () const </td></tr>
<tr class="separator:aa4f70eb9a258bcec56d69f9177e5a43a inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a06ee94eb3c601b3a400a9a1ceef97d01 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a06ee94eb3c601b3a400a9a1ceef97d01">is_composited</a> () const </td></tr>
<tr class="memdesc:a06ee94eb3c601b3a400a9a1ceef97d01 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Whether <em>widget</em> can rely on having its alpha channel drawn correctly. <a href="#a06ee94eb3c601b3a400a9a1ceef97d01">More...</a><br /></td></tr>
<tr class="separator:a06ee94eb3c601b3a400a9a1ceef97d01 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a50e09d34ebffc868423fbec32275f2f0 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGtk_1_1Action.html">Action</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a50e09d34ebffc868423fbec32275f2f0">get_action</a> ()</td></tr>
<tr class="memdesc:a50e09d34ebffc868423fbec32275f2f0 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Returns the <a class="el" href="classGtk_1_1Action.html" title="An action which can be triggered by a menu or toolbar item. ">Gtk::Action</a> that <em>widget</em> is a proxy for. <a href="#a50e09d34ebffc868423fbec32275f2f0">More...</a><br /></td></tr>
<tr class="separator:a50e09d34ebffc868423fbec32275f2f0 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab602eb5912fd1c94fc907d4c36ee64b1 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< const <a class="el" href="classGtk_1_1Action.html">Action</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#ab602eb5912fd1c94fc907d4c36ee64b1">get_action</a> () const </td></tr>
<tr class="memdesc:ab602eb5912fd1c94fc907d4c36ee64b1 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Returns the <a class="el" href="classGtk_1_1Action.html" title="An action which can be triggered by a menu or toolbar item. ">Gtk::Action</a> that <em>widget</em> is a proxy for. <a href="#ab602eb5912fd1c94fc907d4c36ee64b1">More...</a><br /></td></tr>
<tr class="separator:ab602eb5912fd1c94fc907d4c36ee64b1 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a0038511463d4f7e2433ae78d015fd9b2 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="el" href="namespaceGtk.html#a5ae8be4427f5ac86ecb38401ab7e4d78">Requisition</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a0038511463d4f7e2433ae78d015fd9b2">get_requisition</a> () const </td></tr>
<tr class="memdesc:a0038511463d4f7e2433ae78d015fd9b2 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Retrieves the widget's requisition. <a href="#a0038511463d4f7e2433ae78d015fd9b2">More...</a><br /></td></tr>
<tr class="separator:a0038511463d4f7e2433ae78d015fd9b2 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a834f693986a2b7b73594e724d16a68a2 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< void > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a834f693986a2b7b73594e724d16a68a2">signal_show</a> ()</td></tr>
<tr class="separator:a834f693986a2b7b73594e724d16a68a2 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a7c558781f5e2845b6fc8430b6e2b49bc inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< void > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a7c558781f5e2845b6fc8430b6e2b49bc">signal_hide</a> ()</td></tr>
<tr class="separator:a7c558781f5e2845b6fc8430b6e2b49bc inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a8f8f80663cabf46c8c376595bfeaa49e inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< void > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a8f8f80663cabf46c8c376595bfeaa49e">signal_map</a> ()</td></tr>
<tr class="memdesc:a8f8f80663cabf46c8c376595bfeaa49e inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Emitted on mapping of a widget to the screen. <a href="#a8f8f80663cabf46c8c376595bfeaa49e">More...</a><br /></td></tr>
<tr class="separator:a8f8f80663cabf46c8c376595bfeaa49e inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1f6824bc1524f2586fe066db649fda92 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< void > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a1f6824bc1524f2586fe066db649fda92">signal_unmap</a> ()</td></tr>
<tr class="separator:a1f6824bc1524f2586fe066db649fda92 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af97cf8416f96814aefb8cb1e88dfbf38 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< void > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#af97cf8416f96814aefb8cb1e88dfbf38">signal_realize</a> ()</td></tr>
<tr class="memdesc:af97cf8416f96814aefb8cb1e88dfbf38 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Emitted on realization of a widget. <a href="#af97cf8416f96814aefb8cb1e88dfbf38">More...</a><br /></td></tr>
<tr class="separator:af97cf8416f96814aefb8cb1e88dfbf38 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af1d51a8e925529fee1cd4404e054d5d1 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< void > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#af1d51a8e925529fee1cd4404e054d5d1">signal_unrealize</a> ()</td></tr>
<tr class="separator:af1d51a8e925529fee1cd4404e054d5d1 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aad8da187afac06b0f2410c6685190826 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< void, <a class="el" href="namespaceGtk.html#a5ae8be4427f5ac86ecb38401ab7e4d78">Requisition</a>* > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#aad8da187afac06b0f2410c6685190826">signal_size_request</a> ()</td></tr>
<tr class="separator:aad8da187afac06b0f2410c6685190826 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a623e391260b8d3391438eb178fc7c861 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< void, <a class="el" href="namespaceGtk.html#a8aafb0aa51d1034c06046f066563367b">Allocation</a>& > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a623e391260b8d3391438eb178fc7c861">signal_size_allocate</a> ()</td></tr>
<tr class="separator:a623e391260b8d3391438eb178fc7c861 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4c45808dc5ee8ca603bebad95579fbeb inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< void, <a class="el" href="group__gtkmmEnums.html#gae389c7fef8176df3e8b7992c521d9661">Gtk::StateType</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a4c45808dc5ee8ca603bebad95579fbeb">signal_state_changed</a> ()</td></tr>
<tr class="separator:a4c45808dc5ee8ca603bebad95579fbeb inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa65b86271026cb4028a5cbcc977c4ceb inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< void, <a class="el" href="classGtk_1_1Widget.html">Widget</a>* > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#aa65b86271026cb4028a5cbcc977c4ceb">signal_parent_changed</a> ()</td></tr>
<tr class="memdesc:aa65b86271026cb4028a5cbcc977c4ceb inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Informs objects that their parent changed. <a href="#aa65b86271026cb4028a5cbcc977c4ceb">More...</a><br /></td></tr>
<tr class="separator:aa65b86271026cb4028a5cbcc977c4ceb inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a00c199d0eabf7ef2d0bdb86aa4ce0516 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< void, <a class="el" href="classGtk_1_1Widget.html">Widget</a>* > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a00c199d0eabf7ef2d0bdb86aa4ce0516">signal_hierarchy_changed</a> ()</td></tr>
<tr class="separator:a00c199d0eabf7ef2d0bdb86aa4ce0516 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a3af087aac57d652efb6e8d5ccb724578 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< void, const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGtk_1_1Style.html">Gtk::Style</a> >& > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a3af087aac57d652efb6e8d5ccb724578">signal_style_changed</a> ()</td></tr>
<tr class="memdesc:a3af087aac57d652efb6e8d5ccb724578 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">The style-set signal is emitted when a new style has been set on a widget. <a href="#a3af087aac57d652efb6e8d5ccb724578">More...</a><br /></td></tr>
<tr class="separator:a3af087aac57d652efb6e8d5ccb724578 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1fcd6bd1817e836168577463f6e6fb7b inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< void, <a class="el" href="group__gtkmmEnums.html#gaabfcae0b9b0cf2aab01ee96352668d3d">TextDirection</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a1fcd6bd1817e836168577463f6e6fb7b">signal_direction_changed</a> ()</td></tr>
<tr class="separator:a1fcd6bd1817e836168577463f6e6fb7b inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af3d816c5d7ff828375711ac532f2e1a3 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< void, bool > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#af3d816c5d7ff828375711ac532f2e1a3">signal_grab_notify</a> ()</td></tr>
<tr class="separator:af3d816c5d7ff828375711ac532f2e1a3 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2584896d844005c0ec19a10273a88473 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< void, GParamSpec* > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a2584896d844005c0ec19a10273a88473">signal_child_notify</a> ()</td></tr>
<tr class="memdesc:a2584896d844005c0ec19a10273a88473 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">The ::child-notify signal is emitted for each child property that has changed on an object. <a href="#a2584896d844005c0ec19a10273a88473">More...</a><br /></td></tr>
<tr class="separator:a2584896d844005c0ec19a10273a88473 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a41eb8c621d88acad7afb18746a1663f4 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< bool, bool > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a41eb8c621d88acad7afb18746a1663f4">signal_mnemonic_activate</a> ()</td></tr>
<tr class="separator:a41eb8c621d88acad7afb18746a1663f4 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a0d4b1f239083bf747d67704fd25563e5 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< void > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a0d4b1f239083bf747d67704fd25563e5">signal_grab_focus</a> ()</td></tr>
<tr class="separator:a0d4b1f239083bf747d67704fd25563e5 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a26966a9fc3698a60e1bf19acd9781bf0 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< bool, <a class="el" href="group__gtkmmEnums.html#ga6c754c32a8421f746367b43c277e4d7b">DirectionType</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a26966a9fc3698a60e1bf19acd9781bf0">signal_focus</a> ()</td></tr>
<tr class="separator:a26966a9fc3698a60e1bf19acd9781bf0 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae929903418f67370c54720f6d2b12259 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< bool, GdkEvent* > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#ae929903418f67370c54720f6d2b12259">signal_event</a> ()</td></tr>
<tr class="separator:ae929903418f67370c54720f6d2b12259 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a3e92590cdcfa3e62681e0be6fae334a1 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< void, GdkEvent* > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a3e92590cdcfa3e62681e0be6fae334a1">signal_event_after</a> ()</td></tr>
<tr class="separator:a3e92590cdcfa3e62681e0be6fae334a1 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a8e661bba77abc2fd0fbd81ad7b450cd8 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< bool, GdkEventButton* > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a8e661bba77abc2fd0fbd81ad7b450cd8">signal_button_press_event</a> ()</td></tr>
<tr class="memdesc:a8e661bba77abc2fd0fbd81ad7b450cd8 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Event triggered by user pressing button. <a href="#a8e661bba77abc2fd0fbd81ad7b450cd8">More...</a><br /></td></tr>
<tr class="separator:a8e661bba77abc2fd0fbd81ad7b450cd8 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5cb7b096668d911e894051183fe5fc8c inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< bool, GdkEventButton* > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a5cb7b096668d911e894051183fe5fc8c">signal_button_release_event</a> ()</td></tr>
<tr class="memdesc:a5cb7b096668d911e894051183fe5fc8c inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Event triggered by user releasing button. <a href="#a5cb7b096668d911e894051183fe5fc8c">More...</a><br /></td></tr>
<tr class="separator:a5cb7b096668d911e894051183fe5fc8c inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9a3ec8dd94c30d084c6b557fbf32f240 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< bool, GdkEventScroll* > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a9a3ec8dd94c30d084c6b557fbf32f240">signal_scroll_event</a> ()</td></tr>
<tr class="separator:a9a3ec8dd94c30d084c6b557fbf32f240 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a46e819f54ebc992b9abb4edef6dcb4b1 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< bool, GdkEventMotion* > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a46e819f54ebc992b9abb4edef6dcb4b1">signal_motion_notify_event</a> ()</td></tr>
<tr class="memdesc:a46e819f54ebc992b9abb4edef6dcb4b1 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Event triggered by user moving pointer. <a href="#a46e819f54ebc992b9abb4edef6dcb4b1">More...</a><br /></td></tr>
<tr class="separator:a46e819f54ebc992b9abb4edef6dcb4b1 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a3986616c9bc5ed3bb3bcc450ec80d54c inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< bool, GdkEventAny* > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a3986616c9bc5ed3bb3bcc450ec80d54c">signal_delete_event</a> ()</td></tr>
<tr class="memdesc:a3986616c9bc5ed3bb3bcc450ec80d54c inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">The delete_event signal is emitted if a user requests that a toplevel window is closed. <a href="#a3986616c9bc5ed3bb3bcc450ec80d54c">More...</a><br /></td></tr>
<tr class="separator:a3986616c9bc5ed3bb3bcc450ec80d54c inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1d6981c890f9bd6729864e6039c73892 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< bool, GdkEventExpose* > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a1d6981c890f9bd6729864e6039c73892">signal_expose_event</a> ()</td></tr>
<tr class="memdesc:a1d6981c890f9bd6729864e6039c73892 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Event triggered by window requiring a refresh. <a href="#a1d6981c890f9bd6729864e6039c73892">More...</a><br /></td></tr>
<tr class="separator:a1d6981c890f9bd6729864e6039c73892 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4b64421cad754fbd49ae17cbfe4814d0 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< bool, GdkEventKey* > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a4b64421cad754fbd49ae17cbfe4814d0">signal_key_press_event</a> ()</td></tr>
<tr class="memdesc:a4b64421cad754fbd49ae17cbfe4814d0 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Event triggered by a key press will widget has focus. <a href="#a4b64421cad754fbd49ae17cbfe4814d0">More...</a><br /></td></tr>
<tr class="separator:a4b64421cad754fbd49ae17cbfe4814d0 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a77ed7c92e1f8d93a225d59770f810f15 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< bool, GdkEventKey* > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a77ed7c92e1f8d93a225d59770f810f15">signal_key_release_event</a> ()</td></tr>
<tr class="memdesc:a77ed7c92e1f8d93a225d59770f810f15 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Event triggered by a key release will widget has focus. <a href="#a77ed7c92e1f8d93a225d59770f810f15">More...</a><br /></td></tr>
<tr class="separator:a77ed7c92e1f8d93a225d59770f810f15 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2b6498c40a5bf7288a32e60a28f8e82b inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< bool, GdkEventCrossing* > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a2b6498c40a5bf7288a32e60a28f8e82b">signal_enter_notify_event</a> ()</td></tr>
<tr class="memdesc:a2b6498c40a5bf7288a32e60a28f8e82b inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Event triggered by pointer entering widget area. <a href="#a2b6498c40a5bf7288a32e60a28f8e82b">More...</a><br /></td></tr>
<tr class="separator:a2b6498c40a5bf7288a32e60a28f8e82b inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a65146e71fa6a7607d0ec546b25c4bc37 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< bool, GdkEventCrossing* > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a65146e71fa6a7607d0ec546b25c4bc37">signal_leave_notify_event</a> ()</td></tr>
<tr class="memdesc:a65146e71fa6a7607d0ec546b25c4bc37 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Event triggered by pointer leaving widget area. <a href="#a65146e71fa6a7607d0ec546b25c4bc37">More...</a><br /></td></tr>
<tr class="separator:a65146e71fa6a7607d0ec546b25c4bc37 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a62cc55f24729244391085a357a34535f inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< bool, GdkEventConfigure* > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a62cc55f24729244391085a357a34535f">signal_configure_event</a> ()</td></tr>
<tr class="memdesc:a62cc55f24729244391085a357a34535f inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Event triggered by a window resizing. <a href="#a62cc55f24729244391085a357a34535f">More...</a><br /></td></tr>
<tr class="separator:a62cc55f24729244391085a357a34535f inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a17289c13fceb88e55967d3452e488b3d inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< bool, GdkEventFocus* > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a17289c13fceb88e55967d3452e488b3d">signal_focus_in_event</a> ()</td></tr>
<tr class="separator:a17289c13fceb88e55967d3452e488b3d inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2839983fc66ced17183d318288713bc0 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< bool, GdkEventFocus* > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a2839983fc66ced17183d318288713bc0">signal_focus_out_event</a> ()</td></tr>
<tr class="separator:a2839983fc66ced17183d318288713bc0 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aea8475d6ceb7fe9646af8ff32b291c59 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< bool, GdkEventAny* > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#aea8475d6ceb7fe9646af8ff32b291c59">signal_map_event</a> ()</td></tr>
<tr class="separator:aea8475d6ceb7fe9646af8ff32b291c59 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2297b32ad646cb15f4369e2d8da366e2 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< bool, GdkEventAny* > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a2297b32ad646cb15f4369e2d8da366e2">signal_unmap_event</a> ()</td></tr>
<tr class="separator:a2297b32ad646cb15f4369e2d8da366e2 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:afabffe99bb07d943d607616067396df5 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< bool, GdkEventProperty* > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#afabffe99bb07d943d607616067396df5">signal_property_notify_event</a> ()</td></tr>
<tr class="separator:afabffe99bb07d943d607616067396df5 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2068bc5a9ca63a14e6aaca5cfc33bdf1 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< bool, GdkEventSelection* > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a2068bc5a9ca63a14e6aaca5cfc33bdf1">signal_selection_clear_event</a> ()</td></tr>
<tr class="separator:a2068bc5a9ca63a14e6aaca5cfc33bdf1 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1e92c81c13f6e2a27a282bbe77e74d35 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< bool, GdkEventSelection* > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a1e92c81c13f6e2a27a282bbe77e74d35">signal_selection_request_event</a> ()</td></tr>
<tr class="separator:a1e92c81c13f6e2a27a282bbe77e74d35 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a845e5c60be94e163aef079c1d46e570d inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< bool, GdkEventSelection* > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a845e5c60be94e163aef079c1d46e570d">signal_selection_notify_event</a> ()</td></tr>
<tr class="separator:a845e5c60be94e163aef079c1d46e570d inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac55d6c116e223884077b2fcf954fda76 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< bool, GdkEventProximity* > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#ac55d6c116e223884077b2fcf954fda76">signal_proximity_in_event</a> ()</td></tr>
<tr class="separator:ac55d6c116e223884077b2fcf954fda76 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af78d794ccc1b115193b9654b548d5731 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< bool, GdkEventProximity* > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#af78d794ccc1b115193b9654b548d5731">signal_proximity_out_event</a> ()</td></tr>
<tr class="separator:af78d794ccc1b115193b9654b548d5731 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a10099738635bb4679da853e1c39ae270 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< bool, GdkEventVisibility* > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a10099738635bb4679da853e1c39ae270">signal_visibility_notify_event</a> ()</td></tr>
<tr class="separator:a10099738635bb4679da853e1c39ae270 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:acf9dfe3b1898a3629cefb0ba7fd54741 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< bool, GdkEventClient* > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#acf9dfe3b1898a3629cefb0ba7fd54741">signal_client_event</a> ()</td></tr>
<tr class="separator:acf9dfe3b1898a3629cefb0ba7fd54741 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a22eb5491e45b85e1f5b07f31044945c4 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< bool, GdkEventAny* > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a22eb5491e45b85e1f5b07f31044945c4">signal_no_expose_event</a> ()</td></tr>
<tr class="separator:a22eb5491e45b85e1f5b07f31044945c4 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a916c1ac13ef5b2bea57276c982803800 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< bool, GdkEventWindowState* > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a916c1ac13ef5b2bea57276c982803800">signal_window_state_event</a> ()</td></tr>
<tr class="separator:a916c1ac13ef5b2bea57276c982803800 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a59cfc6117b73e7027a8415e11d5c1180 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< void, <a class="el" href="classGtk_1_1SelectionData.html">SelectionData</a>&, guint, guint > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a59cfc6117b73e7027a8415e11d5c1180">signal_selection_get</a> ()</td></tr>
<tr class="separator:a59cfc6117b73e7027a8415e11d5c1180 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a62c73a964b52a17b68861ea09a48b8a2 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< void, const <a class="el" href="classGtk_1_1SelectionData.html">SelectionData</a>&, guint > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a62c73a964b52a17b68861ea09a48b8a2">signal_selection_received</a> ()</td></tr>
<tr class="separator:a62c73a964b52a17b68861ea09a48b8a2 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2397f2ec240e87bd928c5727790b3128 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< void, const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGdk_1_1DragContext.html">Gdk::DragContext</a> >& > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a2397f2ec240e87bd928c5727790b3128">signal_drag_begin</a> ()</td></tr>
<tr class="memdesc:a2397f2ec240e87bd928c5727790b3128 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">The drag_begin signal is emitted on the drag source when a drag is started. <a href="#a2397f2ec240e87bd928c5727790b3128">More...</a><br /></td></tr>
<tr class="separator:a2397f2ec240e87bd928c5727790b3128 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a3f440be428b0f89813df1fc42bb7b218 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< void, const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGdk_1_1DragContext.html">Gdk::DragContext</a> >& > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a3f440be428b0f89813df1fc42bb7b218">signal_drag_end</a> ()</td></tr>
<tr class="memdesc:a3f440be428b0f89813df1fc42bb7b218 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">The drag_end signal is emitted on the drag source when a drag is finished. <a href="#a3f440be428b0f89813df1fc42bb7b218">More...</a><br /></td></tr>
<tr class="separator:a3f440be428b0f89813df1fc42bb7b218 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a36812c942bfea5a18fc6f59b17d911fd inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< void, const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGdk_1_1DragContext.html">Gdk::DragContext</a> >&, <a class="el" href="classGtk_1_1SelectionData.html">SelectionData</a>&, guint, guint > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a36812c942bfea5a18fc6f59b17d911fd">signal_drag_data_get</a> ()</td></tr>
<tr class="memdesc:a36812c942bfea5a18fc6f59b17d911fd inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">The drag_data_get signal is emitted on the drag source when the drop site requests the data which is dragged. <a href="#a36812c942bfea5a18fc6f59b17d911fd">More...</a><br /></td></tr>
<tr class="separator:a36812c942bfea5a18fc6f59b17d911fd inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:adc260796d7163f06d21e939a97140950 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< void, const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGdk_1_1DragContext.html">Gdk::DragContext</a> >& > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#adc260796d7163f06d21e939a97140950">signal_drag_data_delete</a> ()</td></tr>
<tr class="memdesc:adc260796d7163f06d21e939a97140950 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">The drag_data_delete signal is emitted on the drag source when a drag with the action <a class="el" href="group__gdkmmEnums.html#gga0a9506293be3b3dfe00ecdb83e764ca6a3bbfd853c44aeb6d4c7b528f9a7f349b">Gdk::ACTION_MOVE</a> is successfully completed. <a href="#adc260796d7163f06d21e939a97140950">More...</a><br /></td></tr>
<tr class="separator:adc260796d7163f06d21e939a97140950 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a16b92c28b12d7648cd6cb04f0d82ac57 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< bool, const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGdk_1_1DragContext.html">Gdk::DragContext</a> >&, <a class="el" href="group__gtkmmEnums.html#ga83e9371a4c82c7b87d30da8107e06977">DragResult</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a16b92c28b12d7648cd6cb04f0d82ac57">signal_drag_failed</a> ()</td></tr>
<tr class="separator:a16b92c28b12d7648cd6cb04f0d82ac57 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad6f8fc0dd0948c15bc2c42215328e8a3 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< void, const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGdk_1_1DragContext.html">Gdk::DragContext</a> >&, guint > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#ad6f8fc0dd0948c15bc2c42215328e8a3">signal_drag_leave</a> ()</td></tr>
<tr class="memdesc:ad6f8fc0dd0948c15bc2c42215328e8a3 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">The drag_leave signal is emitted on the drop site when the cursor leaves the widget. <a href="#ad6f8fc0dd0948c15bc2c42215328e8a3">More...</a><br /></td></tr>
<tr class="separator:ad6f8fc0dd0948c15bc2c42215328e8a3 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af4090d0508727ceb6c0f604470f84e07 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< bool, const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGdk_1_1DragContext.html">Gdk::DragContext</a> >&, int, int, guint > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#af4090d0508727ceb6c0f604470f84e07">signal_drag_motion</a> ()</td></tr>
<tr class="memdesc:af4090d0508727ceb6c0f604470f84e07 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">The drag_motion signal is emitted on the drop site when the user moves the cursor over the widget during a drag. <a href="#af4090d0508727ceb6c0f604470f84e07">More...</a><br /></td></tr>
<tr class="separator:af4090d0508727ceb6c0f604470f84e07 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1736c2f534581749b3c5f2714db0d28e inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< bool, const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGdk_1_1DragContext.html">Gdk::DragContext</a> >&, int, int, guint > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a1736c2f534581749b3c5f2714db0d28e">signal_drag_drop</a> ()</td></tr>
<tr class="memdesc:a1736c2f534581749b3c5f2714db0d28e inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">The drag_drop signal is emitted on the drop site when the user drops the data onto the widget. <a href="#a1736c2f534581749b3c5f2714db0d28e">More...</a><br /></td></tr>
<tr class="separator:a1736c2f534581749b3c5f2714db0d28e inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa9874ac0ca5550679a0322d2c5b5fba2 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< void, const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGdk_1_1DragContext.html">Gdk::DragContext</a> >&, int, int, const <a class="el" href="classGtk_1_1SelectionData.html">SelectionData</a>&, guint, guint > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#aa9874ac0ca5550679a0322d2c5b5fba2">signal_drag_data_received</a> ()</td></tr>
<tr class="memdesc:aa9874ac0ca5550679a0322d2c5b5fba2 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">The drag_data_received signal is emitted on the drop site when the dragged data has been received. <a href="#aa9874ac0ca5550679a0322d2c5b5fba2">More...</a><br /></td></tr>
<tr class="separator:aa9874ac0ca5550679a0322d2c5b5fba2 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a3b8bdb41171e5384429d6676f0209f50 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="elRef" doxygen="atkmm-1.6.tag:http://library.gnome.org/devel/atkmm/unstable/" href="http://library.gnome.org/devel/atkmm/unstable/classAtk_1_1Object.html">Atk::Object</a> > > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a3b8bdb41171e5384429d6676f0209f50">signal_get_accessible</a> ()</td></tr>
<tr class="separator:a3b8bdb41171e5384429d6676f0209f50 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af6dec49906dcdba00c175b8a97f33c39 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< void, const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGdk_1_1Screen.html">Gdk::Screen</a> >& > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#af6dec49906dcdba00c175b8a97f33c39">signal_screen_changed</a> ()</td></tr>
<tr class="separator:af6dec49906dcdba00c175b8a97f33c39 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a990ff9be472bedd616e9eb08b474830b inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< void > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a990ff9be472bedd616e9eb08b474830b">signal_composited_changed</a> ()</td></tr>
<tr class="separator:a990ff9be472bedd616e9eb08b474830b inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a8cc2a2953fc39d2fddf6054e692dfa59 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< bool > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a8cc2a2953fc39d2fddf6054e692dfa59">signal_popup_menu</a> ()</td></tr>
<tr class="separator:a8cc2a2953fc39d2fddf6054e692dfa59 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a7c249b4b92e6245e89ccb663b6e0a61a inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< bool, int, int, bool, const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGtk_1_1Tooltip.html">Tooltip</a> >& > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a7c249b4b92e6245e89ccb663b6e0a61a">signal_query_tooltip</a> ()</td></tr>
<tr class="separator:a7c249b4b92e6245e89ccb663b6e0a61a inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a51c381999bdcd17f36c33e7eb1141ad3 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< bool, GdkEventGrabBroken* > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a51c381999bdcd17f36c33e7eb1141ad3">signal_grab_broken_event</a> ()</td></tr>
<tr class="separator:a51c381999bdcd17f36c33e7eb1141ad3 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a21291b6179b2e36f776b7242d1f84759 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< bool, GdkEventExpose* > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a21291b6179b2e36f776b7242d1f84759">signal_damage_event</a> ()</td></tr>
<tr class="separator:a21291b6179b2e36f776b7242d1f84759 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad7c9d43fb67475854b0f9dfd66568461 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#ad7c9d43fb67475854b0f9dfd66568461">property_name</a> ()</td></tr>
<tr class="memdesc:ad7c9d43fb67475854b0f9dfd66568461 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">The name of the widget. <a href="#ad7c9d43fb67475854b0f9dfd66568461">More...</a><br /></td></tr>
<tr class="separator:ad7c9d43fb67475854b0f9dfd66568461 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa1e42b8057c653e4fdc28afd1eeb4ff4 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#aa1e42b8057c653e4fdc28afd1eeb4ff4">property_name</a> () const </td></tr>
<tr class="memdesc:aa1e42b8057c653e4fdc28afd1eeb4ff4 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">The name of the widget. <a href="#aa1e42b8057c653e4fdc28afd1eeb4ff4">More...</a><br /></td></tr>
<tr class="separator:aa1e42b8057c653e4fdc28afd1eeb4ff4 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab91220c8cb22c3ad8ca4aab16a4bf5c5 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< <a class="el" href="classGtk_1_1Container.html">Container</a>* > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#ab91220c8cb22c3ad8ca4aab16a4bf5c5">property_parent</a> ()</td></tr>
<tr class="memdesc:ab91220c8cb22c3ad8ca4aab16a4bf5c5 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">The parent widget of this widget. <a href="#ab91220c8cb22c3ad8ca4aab16a4bf5c5">More...</a><br /></td></tr>
<tr class="separator:ab91220c8cb22c3ad8ca4aab16a4bf5c5 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a432c7f625b5a8163dafde31e6d2bdebd inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< <a class="el" href="classGtk_1_1Container.html">Container</a>* > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a432c7f625b5a8163dafde31e6d2bdebd">property_parent</a> () const </td></tr>
<tr class="memdesc:a432c7f625b5a8163dafde31e6d2bdebd inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">The parent widget of this widget. <a href="#a432c7f625b5a8163dafde31e6d2bdebd">More...</a><br /></td></tr>
<tr class="separator:a432c7f625b5a8163dafde31e6d2bdebd inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af91d49dbe6949bc1f5df339b9c157961 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< int > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#af91d49dbe6949bc1f5df339b9c157961">property_width_request</a> ()</td></tr>
<tr class="memdesc:af91d49dbe6949bc1f5df339b9c157961 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Override for width request of the widget, or -1 if natural request should be used. <a href="#af91d49dbe6949bc1f5df339b9c157961">More...</a><br /></td></tr>
<tr class="separator:af91d49dbe6949bc1f5df339b9c157961 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a333516c1e4f09221acb718fe2dfc9aac inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< int > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a333516c1e4f09221acb718fe2dfc9aac">property_width_request</a> () const </td></tr>
<tr class="memdesc:a333516c1e4f09221acb718fe2dfc9aac inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Override for width request of the widget, or -1 if natural request should be used. <a href="#a333516c1e4f09221acb718fe2dfc9aac">More...</a><br /></td></tr>
<tr class="separator:a333516c1e4f09221acb718fe2dfc9aac inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab636b799e2764f1433c32cb060ea2bd0 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< int > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#ab636b799e2764f1433c32cb060ea2bd0">property_height_request</a> ()</td></tr>
<tr class="memdesc:ab636b799e2764f1433c32cb060ea2bd0 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Override for height request of the widget, or -1 if natural request should be used. <a href="#ab636b799e2764f1433c32cb060ea2bd0">More...</a><br /></td></tr>
<tr class="separator:ab636b799e2764f1433c32cb060ea2bd0 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a52cf66a9afa5c7c587d2c72afb6e0032 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< int > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a52cf66a9afa5c7c587d2c72afb6e0032">property_height_request</a> () const </td></tr>
<tr class="memdesc:a52cf66a9afa5c7c587d2c72afb6e0032 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Override for height request of the widget, or -1 if natural request should be used. <a href="#a52cf66a9afa5c7c587d2c72afb6e0032">More...</a><br /></td></tr>
<tr class="separator:a52cf66a9afa5c7c587d2c72afb6e0032 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a87ee8369a28efc37d93fd6761953fbb2 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< bool > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a87ee8369a28efc37d93fd6761953fbb2">property_visible</a> ()</td></tr>
<tr class="memdesc:a87ee8369a28efc37d93fd6761953fbb2 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Whether the widget is visible. <a href="#a87ee8369a28efc37d93fd6761953fbb2">More...</a><br /></td></tr>
<tr class="separator:a87ee8369a28efc37d93fd6761953fbb2 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a76ab442e20e81e192ab665e44f41c1a2 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< bool > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a76ab442e20e81e192ab665e44f41c1a2">property_visible</a> () const </td></tr>
<tr class="memdesc:a76ab442e20e81e192ab665e44f41c1a2 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Whether the widget is visible. <a href="#a76ab442e20e81e192ab665e44f41c1a2">More...</a><br /></td></tr>
<tr class="separator:a76ab442e20e81e192ab665e44f41c1a2 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a13a9f189e5426df483fffc69bdb8e700 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< bool > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a13a9f189e5426df483fffc69bdb8e700">property_sensitive</a> ()</td></tr>
<tr class="memdesc:a13a9f189e5426df483fffc69bdb8e700 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Whether the widget responds to input. <a href="#a13a9f189e5426df483fffc69bdb8e700">More...</a><br /></td></tr>
<tr class="separator:a13a9f189e5426df483fffc69bdb8e700 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:adfa0d3c44b0fd11593fcaedd3f8ffc4d inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< bool > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#adfa0d3c44b0fd11593fcaedd3f8ffc4d">property_sensitive</a> () const </td></tr>
<tr class="memdesc:adfa0d3c44b0fd11593fcaedd3f8ffc4d inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Whether the widget responds to input. <a href="#adfa0d3c44b0fd11593fcaedd3f8ffc4d">More...</a><br /></td></tr>
<tr class="separator:adfa0d3c44b0fd11593fcaedd3f8ffc4d inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a00516516314676e2b3b4a5f29a70cbe8 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< bool > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a00516516314676e2b3b4a5f29a70cbe8">property_app_paintable</a> ()</td></tr>
<tr class="memdesc:a00516516314676e2b3b4a5f29a70cbe8 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Whether the application will paint directly on the widget. <a href="#a00516516314676e2b3b4a5f29a70cbe8">More...</a><br /></td></tr>
<tr class="separator:a00516516314676e2b3b4a5f29a70cbe8 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:adf567af13d2f0a062aba22f8a483c87b inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< bool > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#adf567af13d2f0a062aba22f8a483c87b">property_app_paintable</a> () const </td></tr>
<tr class="memdesc:adf567af13d2f0a062aba22f8a483c87b inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Whether the application will paint directly on the widget. <a href="#adf567af13d2f0a062aba22f8a483c87b">More...</a><br /></td></tr>
<tr class="separator:adf567af13d2f0a062aba22f8a483c87b inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a91f08feacaa2ffc24309c3038e327d2f inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< bool > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a91f08feacaa2ffc24309c3038e327d2f">property_can_focus</a> ()</td></tr>
<tr class="memdesc:a91f08feacaa2ffc24309c3038e327d2f inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Whether the widget can accept the input focus. <a href="#a91f08feacaa2ffc24309c3038e327d2f">More...</a><br /></td></tr>
<tr class="separator:a91f08feacaa2ffc24309c3038e327d2f inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1410b2966f816952b646d0f564fc8e6b inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< bool > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a1410b2966f816952b646d0f564fc8e6b">property_can_focus</a> () const </td></tr>
<tr class="memdesc:a1410b2966f816952b646d0f564fc8e6b inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Whether the widget can accept the input focus. <a href="#a1410b2966f816952b646d0f564fc8e6b">More...</a><br /></td></tr>
<tr class="separator:a1410b2966f816952b646d0f564fc8e6b inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a99f5bca5ef3e24af8198573c2fee5039 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< bool > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a99f5bca5ef3e24af8198573c2fee5039">property_has_focus</a> ()</td></tr>
<tr class="memdesc:a99f5bca5ef3e24af8198573c2fee5039 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Whether the widget has the input focus. <a href="#a99f5bca5ef3e24af8198573c2fee5039">More...</a><br /></td></tr>
<tr class="separator:a99f5bca5ef3e24af8198573c2fee5039 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5026f738b414bb69c6fbd5d6a86e8feb inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< bool > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a5026f738b414bb69c6fbd5d6a86e8feb">property_has_focus</a> () const </td></tr>
<tr class="memdesc:a5026f738b414bb69c6fbd5d6a86e8feb inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Whether the widget has the input focus. <a href="#a5026f738b414bb69c6fbd5d6a86e8feb">More...</a><br /></td></tr>
<tr class="separator:a5026f738b414bb69c6fbd5d6a86e8feb inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a7c1a5a4dea09f75b61b9c4470c2eeb88 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< bool > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a7c1a5a4dea09f75b61b9c4470c2eeb88">property_is_focus</a> ()</td></tr>
<tr class="memdesc:a7c1a5a4dea09f75b61b9c4470c2eeb88 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Whether the widget is the focus widget within the toplevel. <a href="#a7c1a5a4dea09f75b61b9c4470c2eeb88">More...</a><br /></td></tr>
<tr class="separator:a7c1a5a4dea09f75b61b9c4470c2eeb88 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa517d415b2025b7fdb1056e915103234 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< bool > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#aa517d415b2025b7fdb1056e915103234">property_is_focus</a> () const </td></tr>
<tr class="memdesc:aa517d415b2025b7fdb1056e915103234 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Whether the widget is the focus widget within the toplevel. <a href="#aa517d415b2025b7fdb1056e915103234">More...</a><br /></td></tr>
<tr class="separator:aa517d415b2025b7fdb1056e915103234 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a0c2f62c35c9b1e60777d7595bd7dbb8c inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< bool > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a0c2f62c35c9b1e60777d7595bd7dbb8c">property_can_default</a> ()</td></tr>
<tr class="memdesc:a0c2f62c35c9b1e60777d7595bd7dbb8c inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Whether the widget can be the default widget. <a href="#a0c2f62c35c9b1e60777d7595bd7dbb8c">More...</a><br /></td></tr>
<tr class="separator:a0c2f62c35c9b1e60777d7595bd7dbb8c inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4ccdf15370f7b2cfa9658dd56e335eee inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< bool > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a4ccdf15370f7b2cfa9658dd56e335eee">property_can_default</a> () const </td></tr>
<tr class="memdesc:a4ccdf15370f7b2cfa9658dd56e335eee inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Whether the widget can be the default widget. <a href="#a4ccdf15370f7b2cfa9658dd56e335eee">More...</a><br /></td></tr>
<tr class="separator:a4ccdf15370f7b2cfa9658dd56e335eee inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a8c7737d34aa024a9f177247d191ff7c7 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< bool > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a8c7737d34aa024a9f177247d191ff7c7">property_has_default</a> ()</td></tr>
<tr class="memdesc:a8c7737d34aa024a9f177247d191ff7c7 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Whether the widget is the default widget. <a href="#a8c7737d34aa024a9f177247d191ff7c7">More...</a><br /></td></tr>
<tr class="separator:a8c7737d34aa024a9f177247d191ff7c7 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab3d9d07e9dea9e65e14d1388bf193476 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< bool > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#ab3d9d07e9dea9e65e14d1388bf193476">property_has_default</a> () const </td></tr>
<tr class="memdesc:ab3d9d07e9dea9e65e14d1388bf193476 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Whether the widget is the default widget. <a href="#ab3d9d07e9dea9e65e14d1388bf193476">More...</a><br /></td></tr>
<tr class="separator:ab3d9d07e9dea9e65e14d1388bf193476 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad03daf624166216c76d905e6a8069f2a inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< bool > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#ad03daf624166216c76d905e6a8069f2a">property_receives_default</a> ()</td></tr>
<tr class="memdesc:ad03daf624166216c76d905e6a8069f2a inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">If TRUE, the widget will receive the default action when it is focused. <a href="#ad03daf624166216c76d905e6a8069f2a">More...</a><br /></td></tr>
<tr class="separator:ad03daf624166216c76d905e6a8069f2a inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a32709e2e1a760831d7223922313f0a09 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< bool > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a32709e2e1a760831d7223922313f0a09">property_receives_default</a> () const </td></tr>
<tr class="memdesc:a32709e2e1a760831d7223922313f0a09 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">If TRUE, the widget will receive the default action when it is focused. <a href="#a32709e2e1a760831d7223922313f0a09">More...</a><br /></td></tr>
<tr class="separator:a32709e2e1a760831d7223922313f0a09 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a256b0986d0fc187beafea3ce8e990c8e inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< bool > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a256b0986d0fc187beafea3ce8e990c8e">property_composite_child</a> () const </td></tr>
<tr class="memdesc:a256b0986d0fc187beafea3ce8e990c8e inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Whether the widget is part of a composite widget. <a href="#a256b0986d0fc187beafea3ce8e990c8e">More...</a><br /></td></tr>
<tr class="separator:a256b0986d0fc187beafea3ce8e990c8e inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1c509fffdb5fd65b3ebd2cabae84c973 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGtk_1_1Style.html">Style</a> > > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a1c509fffdb5fd65b3ebd2cabae84c973">property_style</a> ()</td></tr>
<tr class="memdesc:a1c509fffdb5fd65b3ebd2cabae84c973 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">The style of the widget, which contains information about how it will look (colors etc). <a href="#a1c509fffdb5fd65b3ebd2cabae84c973">More...</a><br /></td></tr>
<tr class="separator:a1c509fffdb5fd65b3ebd2cabae84c973 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4e3ced3831b4bf6326884657cfdb4b57 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGtk_1_1Style.html">Style</a> > > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a4e3ced3831b4bf6326884657cfdb4b57">property_style</a> () const </td></tr>
<tr class="memdesc:a4e3ced3831b4bf6326884657cfdb4b57 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">The style of the widget, which contains information about how it will look (colors etc). <a href="#a4e3ced3831b4bf6326884657cfdb4b57">More...</a><br /></td></tr>
<tr class="separator:a4e3ced3831b4bf6326884657cfdb4b57 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5893d35d56fa28daead786673d18b22e inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< <a class="el" href="group__gdkmmEnums.html#ga0288c23e93ded8c0326235f1f1120c61">Gdk::EventMask</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a5893d35d56fa28daead786673d18b22e">property_events</a> ()</td></tr>
<tr class="memdesc:a5893d35d56fa28daead786673d18b22e inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">The event mask that decides what kind of GdkEvents this widget gets. <a href="#a5893d35d56fa28daead786673d18b22e">More...</a><br /></td></tr>
<tr class="separator:a5893d35d56fa28daead786673d18b22e inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae0c944d0e6b00745a2f8e94bcd2676e5 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< <a class="el" href="group__gdkmmEnums.html#ga0288c23e93ded8c0326235f1f1120c61">Gdk::EventMask</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#ae0c944d0e6b00745a2f8e94bcd2676e5">property_events</a> () const </td></tr>
<tr class="memdesc:ae0c944d0e6b00745a2f8e94bcd2676e5 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">The event mask that decides what kind of GdkEvents this widget gets. <a href="#ae0c944d0e6b00745a2f8e94bcd2676e5">More...</a><br /></td></tr>
<tr class="separator:ae0c944d0e6b00745a2f8e94bcd2676e5 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a53af0f250069dc90a38a9eccc38226ba inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< <a class="el" href="group__gdkmmEnums.html#ga403190ae70e736078dd523ae3b53b48c">Gdk::ExtensionMode</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a53af0f250069dc90a38a9eccc38226ba">property_extension_events</a> ()</td></tr>
<tr class="memdesc:a53af0f250069dc90a38a9eccc38226ba inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">The mask that decides what kind of extension events this widget gets. <a href="#a53af0f250069dc90a38a9eccc38226ba">More...</a><br /></td></tr>
<tr class="separator:a53af0f250069dc90a38a9eccc38226ba inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad3b797abde61e542ef1829064066f2b7 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< <a class="el" href="group__gdkmmEnums.html#ga403190ae70e736078dd523ae3b53b48c">Gdk::ExtensionMode</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#ad3b797abde61e542ef1829064066f2b7">property_extension_events</a> () const </td></tr>
<tr class="memdesc:ad3b797abde61e542ef1829064066f2b7 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">The mask that decides what kind of extension events this widget gets. <a href="#ad3b797abde61e542ef1829064066f2b7">More...</a><br /></td></tr>
<tr class="separator:ad3b797abde61e542ef1829064066f2b7 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4254fa8ac2d0facdba6a6fb5eaa98f61 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< bool > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a4254fa8ac2d0facdba6a6fb5eaa98f61">property_has_tooltip</a> ()</td></tr>
<tr class="memdesc:a4254fa8ac2d0facdba6a6fb5eaa98f61 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Whether this widget has a tooltip. <a href="#a4254fa8ac2d0facdba6a6fb5eaa98f61">More...</a><br /></td></tr>
<tr class="separator:a4254fa8ac2d0facdba6a6fb5eaa98f61 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a0cf52a133690c47b0501fad3b324da38 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< bool > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a0cf52a133690c47b0501fad3b324da38">property_has_tooltip</a> () const </td></tr>
<tr class="memdesc:a0cf52a133690c47b0501fad3b324da38 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Whether this widget has a tooltip. <a href="#a0cf52a133690c47b0501fad3b324da38">More...</a><br /></td></tr>
<tr class="separator:a0cf52a133690c47b0501fad3b324da38 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a3c2ef3f5c61e340dda3e7d0f3bb1cbed inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a3c2ef3f5c61e340dda3e7d0f3bb1cbed">property_tooltip_markup</a> ()</td></tr>
<tr class="memdesc:a3c2ef3f5c61e340dda3e7d0f3bb1cbed inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">The contents of the tooltip for this widget. <a href="#a3c2ef3f5c61e340dda3e7d0f3bb1cbed">More...</a><br /></td></tr>
<tr class="separator:a3c2ef3f5c61e340dda3e7d0f3bb1cbed inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4f21e5a81186921ed528774c792a8114 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a4f21e5a81186921ed528774c792a8114">property_tooltip_markup</a> () const </td></tr>
<tr class="memdesc:a4f21e5a81186921ed528774c792a8114 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">The contents of the tooltip for this widget. <a href="#a4f21e5a81186921ed528774c792a8114">More...</a><br /></td></tr>
<tr class="separator:a4f21e5a81186921ed528774c792a8114 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac4843993dd5b1796e5d1d5848a6d3479 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#ac4843993dd5b1796e5d1d5848a6d3479">property_tooltip_text</a> ()</td></tr>
<tr class="memdesc:ac4843993dd5b1796e5d1d5848a6d3479 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">The contents of the tooltip for this widget. <a href="#ac4843993dd5b1796e5d1d5848a6d3479">More...</a><br /></td></tr>
<tr class="separator:ac4843993dd5b1796e5d1d5848a6d3479 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac1399bc7ef8357af039f71fd599fa788 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#ac1399bc7ef8357af039f71fd599fa788">property_tooltip_text</a> () const </td></tr>
<tr class="memdesc:ac1399bc7ef8357af039f71fd599fa788 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">The contents of the tooltip for this widget. <a href="#ac1399bc7ef8357af039f71fd599fa788">More...</a><br /></td></tr>
<tr class="separator:ac1399bc7ef8357af039f71fd599fa788 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a0124c4aa98c3e0e1a1d93458dc03671c inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGdk_1_1Window.html">Gdk::Window</a> > > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a0124c4aa98c3e0e1a1d93458dc03671c">property_window</a> () const </td></tr>
<tr class="memdesc:a0124c4aa98c3e0e1a1d93458dc03671c inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">The widget's window if it is realized. <a href="#a0124c4aa98c3e0e1a1d93458dc03671c">More...</a><br /></td></tr>
<tr class="separator:a0124c4aa98c3e0e1a1d93458dc03671c inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a89344169f366f7d57ba20b25532f68e0 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< bool > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a89344169f366f7d57ba20b25532f68e0">property_no_show_all</a> ()</td></tr>
<tr class="memdesc:a89344169f366f7d57ba20b25532f68e0 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Whether gtk_widget_show_all() should not affect this widget. <a href="#a89344169f366f7d57ba20b25532f68e0">More...</a><br /></td></tr>
<tr class="separator:a89344169f366f7d57ba20b25532f68e0 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a7b3bbd19155543c52ab8ca952013372b inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< bool > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a7b3bbd19155543c52ab8ca952013372b">property_no_show_all</a> () const </td></tr>
<tr class="memdesc:a7b3bbd19155543c52ab8ca952013372b inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Whether gtk_widget_show_all() should not affect this widget. <a href="#a7b3bbd19155543c52ab8ca952013372b">More...</a><br /></td></tr>
<tr class="separator:a7b3bbd19155543c52ab8ca952013372b inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aaab62dc6432f238b89f0931e3a2c6663 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< bool > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#aaab62dc6432f238b89f0931e3a2c6663">property_double_buffered</a> ()</td></tr>
<tr class="memdesc:aaab62dc6432f238b89f0931e3a2c6663 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Whether or not the widget is double buffered. <a href="#aaab62dc6432f238b89f0931e3a2c6663">More...</a><br /></td></tr>
<tr class="separator:aaab62dc6432f238b89f0931e3a2c6663 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa5861f962e11145bbacf74255e4daf58 inherit pub_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< bool > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#aa5861f962e11145bbacf74255e4daf58">property_double_buffered</a> () const </td></tr>
<tr class="memdesc:aa5861f962e11145bbacf74255e4daf58 inherit pub_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Whether or not the widget is double buffered. <a href="#aa5861f962e11145bbacf74255e4daf58">More...</a><br /></td></tr>
<tr class="separator:aa5861f962e11145bbacf74255e4daf58 inherit pub_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pub_methods_classGtk_1_1Object"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classGtk_1_1Object')"><img src="closed.png" alt="-"/> Public Member Functions inherited from <a class="el" href="classGtk_1_1Object.html">Gtk::Object</a></td></tr>
<tr class="memitem:a2012086b1ada81a5351d6d7c83f3946c inherit pub_methods_classGtk_1_1Object"><td class="memItemLeft" align="right" valign="top">virtual </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Object.html#a2012086b1ada81a5351d6d7c83f3946c">~Object</a> ()</td></tr>
<tr class="separator:a2012086b1ada81a5351d6d7c83f3946c inherit pub_methods_classGtk_1_1Object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae3541ec02d1b7cd56cfabe7295f8948f inherit pub_methods_classGtk_1_1Object"><td class="memItemLeft" align="right" valign="top">GtkObject* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Object.html#ae3541ec02d1b7cd56cfabe7295f8948f">gobj</a> ()</td></tr>
<tr class="memdesc:ae3541ec02d1b7cd56cfabe7295f8948f inherit pub_methods_classGtk_1_1Object"><td class="mdescLeft"> </td><td class="mdescRight">Provides access to the underlying C GtkObject. <a href="#ae3541ec02d1b7cd56cfabe7295f8948f">More...</a><br /></td></tr>
<tr class="separator:ae3541ec02d1b7cd56cfabe7295f8948f inherit pub_methods_classGtk_1_1Object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5a0e5941619df9ec0cc52feccad99005 inherit pub_methods_classGtk_1_1Object"><td class="memItemLeft" align="right" valign="top">const GtkObject* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Object.html#a5a0e5941619df9ec0cc52feccad99005">gobj</a> () const </td></tr>
<tr class="memdesc:a5a0e5941619df9ec0cc52feccad99005 inherit pub_methods_classGtk_1_1Object"><td class="mdescLeft"> </td><td class="mdescRight">Provides access to the underlying C GtkObject. <a href="#a5a0e5941619df9ec0cc52feccad99005">More...</a><br /></td></tr>
<tr class="separator:a5a0e5941619df9ec0cc52feccad99005 inherit pub_methods_classGtk_1_1Object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa9604f11e1a66f4518b0f0813bb32aca inherit pub_methods_classGtk_1_1Object"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< void* > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Object.html#aa9604f11e1a66f4518b0f0813bb32aca">property_user_data</a> ()</td></tr>
<tr class="memdesc:aa9604f11e1a66f4518b0f0813bb32aca inherit pub_methods_classGtk_1_1Object"><td class="mdescLeft"> </td><td class="mdescRight">Anonymous User Data Pointer. <a href="#aa9604f11e1a66f4518b0f0813bb32aca">More...</a><br /></td></tr>
<tr class="separator:aa9604f11e1a66f4518b0f0813bb32aca inherit pub_methods_classGtk_1_1Object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a6ed51e23dbac139103993b23d0253bb2 inherit pub_methods_classGtk_1_1Object"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< void* > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Object.html#a6ed51e23dbac139103993b23d0253bb2">property_user_data</a> () const </td></tr>
<tr class="memdesc:a6ed51e23dbac139103993b23d0253bb2 inherit pub_methods_classGtk_1_1Object"><td class="mdescLeft"> </td><td class="mdescRight">Anonymous User Data Pointer. <a href="#a6ed51e23dbac139103993b23d0253bb2">More...</a><br /></td></tr>
<tr class="separator:a6ed51e23dbac139103993b23d0253bb2 inherit pub_methods_classGtk_1_1Object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pub_methods_classGlib_1_1Object"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classGlib_1_1Object')"><img src="closed.png" alt="-"/> Public Member Functions inherited from <a class="el" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html">Glib::Object</a></td></tr>
<tr class="memitem:a0127f43140e01d6a6731d42f9419be27 inherit pub_methods_classGlib_1_1Object"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html#a0127f43140e01d6a6731d42f9419be27">Object</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html">Object</a> &)=delete</td></tr>
<tr class="separator:a0127f43140e01d6a6731d42f9419be27 inherit pub_methods_classGlib_1_1Object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a7081561a5684709718fdf8c1875c56c0 inherit pub_methods_classGlib_1_1Object"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html">Object</a> & </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html#a7081561a5684709718fdf8c1875c56c0">operator=</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html">Object</a> &)=delete</td></tr>
<tr class="separator:a7081561a5684709718fdf8c1875c56c0 inherit pub_methods_classGlib_1_1Object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a473ee068b40d5c949cee2c721d720c9a inherit pub_methods_classGlib_1_1Object"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html#a473ee068b40d5c949cee2c721d720c9a">Object</a> (<a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html">Object</a> &&src) noexcept</td></tr>
<tr class="separator:a473ee068b40d5c949cee2c721d720c9a inherit pub_methods_classGlib_1_1Object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2855131d475e54294dc34573f12ca9a0 inherit pub_methods_classGlib_1_1Object"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html">Object</a> & </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html#a2855131d475e54294dc34573f12ca9a0">operator=</a> (<a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html">Object</a> &&src) noexcept</td></tr>
<tr class="separator:a2855131d475e54294dc34573f12ca9a0 inherit pub_methods_classGlib_1_1Object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a0e6581bcbcc6197cca07df24bb91c492 inherit pub_methods_classGlib_1_1Object"><td class="memItemLeft" align="right" valign="top">void * </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html#a0e6581bcbcc6197cca07df24bb91c492">get_data</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1QueryQuark.html">QueryQuark</a> &key)</td></tr>
<tr class="separator:a0e6581bcbcc6197cca07df24bb91c492 inherit pub_methods_classGlib_1_1Object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:afff7a375a862f3f899daaa99710122fa inherit pub_methods_classGlib_1_1Object"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html#afff7a375a862f3f899daaa99710122fa">set_data</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Quark.html">Quark</a> &key, void *data)</td></tr>
<tr class="separator:afff7a375a862f3f899daaa99710122fa inherit pub_methods_classGlib_1_1Object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1febe3bae2dd71756e98e523cd33c1b4 inherit pub_methods_classGlib_1_1Object"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html#a1febe3bae2dd71756e98e523cd33c1b4">set_data</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Quark.html">Quark</a> &key, void *data, <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html#a969836f7bf4fec78eb50a1d790304d82">DestroyNotify</a> notify)</td></tr>
<tr class="separator:a1febe3bae2dd71756e98e523cd33c1b4 inherit pub_methods_classGlib_1_1Object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aada5b50844bda7ee02bed0ae2a715c00 inherit pub_methods_classGlib_1_1Object"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html#aada5b50844bda7ee02bed0ae2a715c00">remove_data</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1QueryQuark.html">QueryQuark</a> &quark)</td></tr>
<tr class="separator:aada5b50844bda7ee02bed0ae2a715c00 inherit pub_methods_classGlib_1_1Object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab454f71bd74403b0cc46d3cbbedd6b0e inherit pub_methods_classGlib_1_1Object"><td class="memItemLeft" align="right" valign="top">void * </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html#ab454f71bd74403b0cc46d3cbbedd6b0e">steal_data</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1QueryQuark.html">QueryQuark</a> &quark)</td></tr>
<tr class="separator:ab454f71bd74403b0cc46d3cbbedd6b0e inherit pub_methods_classGlib_1_1Object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae4dea9a8dc611d6e4400a5b6a3cb4e7f inherit pub_methods_classGlib_1_1Object"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html">Glib::Object</a> > </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html#ae4dea9a8dc611d6e4400a5b6a3cb4e7f">wrap</a> (GObject *object, bool take_copy=false)</td></tr>
<tr class="separator:ae4dea9a8dc611d6e4400a5b6a3cb4e7f inherit pub_methods_classGlib_1_1Object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pub_methods_classGlib_1_1ObjectBase"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classGlib_1_1ObjectBase')"><img src="closed.png" alt="-"/> Public Member Functions inherited from <a class="el" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html">Glib::ObjectBase</a></td></tr>
<tr class="memitem:aaf0e140e7192dcecddd9f57c46825434 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#aaf0e140e7192dcecddd9f57c46825434">ObjectBase</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html">ObjectBase</a> &)=delete</td></tr>
<tr class="separator:aaf0e140e7192dcecddd9f57c46825434 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a15f8834a320eac98dc1c1b8a9a2fd4c1 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html">ObjectBase</a> & </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a15f8834a320eac98dc1c1b8a9a2fd4c1">operator=</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html">ObjectBase</a> &)=delete</td></tr>
<tr class="separator:a15f8834a320eac98dc1c1b8a9a2fd4c1 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aab599d3eec4b4a9ddc95ccdc6100053d inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#aab599d3eec4b4a9ddc95ccdc6100053d">set_property_value</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> &property_name, const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ValueBase.html">Glib::ValueBase</a> &value)</td></tr>
<tr class="separator:aab599d3eec4b4a9ddc95ccdc6100053d inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5e30750441b92f0246c9d4ece95fc8a0 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a5e30750441b92f0246c9d4ece95fc8a0">get_property_value</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> &property_name, <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ValueBase.html">Glib::ValueBase</a> &value) const </td></tr>
<tr class="separator:a5e30750441b92f0246c9d4ece95fc8a0 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad37844f7ea2c0091a22d011e04c48820 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#ad37844f7ea2c0091a22d011e04c48820">set_property</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> &property_name, const PropertyType &value)</td></tr>
<tr class="separator:ad37844f7ea2c0091a22d011e04c48820 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5f894c9c36ad391fdc85552af67a8530 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a5f894c9c36ad391fdc85552af67a8530">get_property</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> &property_name, PropertyType &value) const </td></tr>
<tr class="separator:a5f894c9c36ad391fdc85552af67a8530 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:adc6c1e8f094275114d6e2c3ef3a33f98 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#adc6c1e8f094275114d6e2c3ef3a33f98">connect_property_changed</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> &property_name, const <a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/classsigc_1_1slot.html">sigc::slot</a>< void > &slot)</td></tr>
<tr class="separator:adc6c1e8f094275114d6e2c3ef3a33f98 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9fff4abb6ecc939866a6ff5d32808221 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a9fff4abb6ecc939866a6ff5d32808221">connect_property_changed</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> &property_name, <a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/classsigc_1_1slot.html">sigc::slot</a>< void > &&slot)</td></tr>
<tr class="separator:a9fff4abb6ecc939866a6ff5d32808221 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a896d7773c00bd2dcd310c861282ee8d1 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1connection.html">sigc::connection</a> </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a896d7773c00bd2dcd310c861282ee8d1">connect_property_changed_with_return</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> &property_name, const <a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/classsigc_1_1slot.html">sigc::slot</a>< void > &slot)</td></tr>
<tr class="separator:a896d7773c00bd2dcd310c861282ee8d1 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a00f0e2119fbb42efe42d66b8188a0daf inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1connection.html">sigc::connection</a> </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a00f0e2119fbb42efe42d66b8188a0daf">connect_property_changed_with_return</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> &property_name, <a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/classsigc_1_1slot.html">sigc::slot</a>< void > &&slot)</td></tr>
<tr class="separator:a00f0e2119fbb42efe42d66b8188a0daf inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a6e9e13b75f116c20212d318204ce8ea3 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a6e9e13b75f116c20212d318204ce8ea3">freeze_notify</a> ()</td></tr>
<tr class="separator:a6e9e13b75f116c20212d318204ce8ea3 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1bd8ea7bd8c4084ade6b3c27dddf06a4 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a1bd8ea7bd8c4084ade6b3c27dddf06a4">thaw_notify</a> ()</td></tr>
<tr class="separator:a1bd8ea7bd8c4084ade6b3c27dddf06a4 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a896a8a5db20043ea82956e3ef4b9c4ae inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a896a8a5db20043ea82956e3ef4b9c4ae">reference</a> () const </td></tr>
<tr class="separator:a896a8a5db20043ea82956e3ef4b9c4ae inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a3234b8ffb2a35b927e2978c8f3bfbfe3 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a3234b8ffb2a35b927e2978c8f3bfbfe3">unreference</a> () const </td></tr>
<tr class="separator:a3234b8ffb2a35b927e2978c8f3bfbfe3 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4c6efc18be8cb9c56e58fc0bd20fafbe inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">GObject * </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a4c6efc18be8cb9c56e58fc0bd20fafbe">gobj</a> ()</td></tr>
<tr class="separator:a4c6efc18be8cb9c56e58fc0bd20fafbe inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a778a94181132976bbfb0519793f3b32e inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">const GObject * </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a778a94181132976bbfb0519793f3b32e">gobj</a> () const </td></tr>
<tr class="separator:a778a94181132976bbfb0519793f3b32e inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9b2a5eb93102f1849e5419016e22a15f inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">GObject * </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a9b2a5eb93102f1849e5419016e22a15f">gobj_copy</a> () const </td></tr>
<tr class="separator:a9b2a5eb93102f1849e5419016e22a15f inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pub_methods_structsigc_1_1trackable"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_structsigc_1_1trackable')"><img src="closed.png" alt="-"/> Public Member Functions inherited from <a class="el" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html">sigc::trackable</a></td></tr>
<tr class="memitem:a7e1348841e762fb41b41c6f2ce9fa073 inherit pub_methods_structsigc_1_1trackable"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html#a7e1348841e762fb41b41c6f2ce9fa073">trackable</a> () noexcept</td></tr>
<tr class="separator:a7e1348841e762fb41b41c6f2ce9fa073 inherit pub_methods_structsigc_1_1trackable"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac8431d9452c9698a012597e6560c72fa inherit pub_methods_structsigc_1_1trackable"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html#ac8431d9452c9698a012597e6560c72fa">trackable</a> (const <a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html">trackable</a> &src) noexcept</td></tr>
<tr class="separator:ac8431d9452c9698a012597e6560c72fa inherit pub_methods_structsigc_1_1trackable"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aba42ed8afb6598106cf68c18a7387f18 inherit pub_methods_structsigc_1_1trackable"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html#aba42ed8afb6598106cf68c18a7387f18">trackable</a> (<a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html">trackable</a> &&src)</td></tr>
<tr class="separator:aba42ed8afb6598106cf68c18a7387f18 inherit pub_methods_structsigc_1_1trackable"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a75587da09e30031db7a2519843f1f4fb inherit pub_methods_structsigc_1_1trackable"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html#a75587da09e30031db7a2519843f1f4fb">~trackable</a> ()</td></tr>
<tr class="separator:a75587da09e30031db7a2519843f1f4fb inherit pub_methods_structsigc_1_1trackable"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab14931670837728e49bb5ca88fb16db5 inherit pub_methods_structsigc_1_1trackable"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html#ab14931670837728e49bb5ca88fb16db5">add_destroy_notify_callback</a> (void *data, <a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html#a3338954d7565534bd945290b798e13ed">func_destroy_notify</a> func) const </td></tr>
<tr class="separator:ab14931670837728e49bb5ca88fb16db5 inherit pub_methods_structsigc_1_1trackable"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af2e23cfe7adc1ca844a3350bbac557cb inherit pub_methods_structsigc_1_1trackable"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html#af2e23cfe7adc1ca844a3350bbac557cb">notify_callbacks</a> ()</td></tr>
<tr class="separator:af2e23cfe7adc1ca844a3350bbac557cb inherit pub_methods_structsigc_1_1trackable"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a7494fbad23a65932ff1457d00d4edaf5 inherit pub_methods_structsigc_1_1trackable"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html">trackable</a> & </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html#a7494fbad23a65932ff1457d00d4edaf5">operator=</a> (const <a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html">trackable</a> &src)</td></tr>
<tr class="separator:a7494fbad23a65932ff1457d00d4edaf5 inherit pub_methods_structsigc_1_1trackable"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac3d61cdb452dc46fcdc8a8d42d9c079d inherit pub_methods_structsigc_1_1trackable"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html">trackable</a> & </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html#ac3d61cdb452dc46fcdc8a8d42d9c079d">operator=</a> (<a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html">trackable</a> &&src)</td></tr>
<tr class="separator:ac3d61cdb452dc46fcdc8a8d42d9c079d inherit pub_methods_structsigc_1_1trackable"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a8b9dffa8a50ff13ba33e6c7f10468e2b inherit pub_methods_structsigc_1_1trackable"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html#a8b9dffa8a50ff13ba33e6c7f10468e2b">remove_destroy_notify_callback</a> (void *data) const </td></tr>
<tr class="separator:a8b9dffa8a50ff13ba33e6c7f10468e2b inherit pub_methods_structsigc_1_1trackable"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pub_methods_classAtk_1_1Implementor"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classAtk_1_1Implementor')"><img src="closed.png" alt="-"/> Public Member Functions inherited from <a class="el" href="http://library.gnome.org/devel/atkmm/unstable/classAtk_1_1Implementor.html">Atk::Implementor</a></td></tr>
<tr class="memitem:a107c3e711d707d84e43eecd412402989 inherit pub_methods_classAtk_1_1Implementor"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="atkmm-1.6.tag:http://library.gnome.org/devel/atkmm/unstable/" href="http://library.gnome.org/devel/atkmm/unstable/classAtk_1_1Implementor.html#a107c3e711d707d84e43eecd412402989">Implementor</a> (<a class="elRef" doxygen="atkmm-1.6.tag:http://library.gnome.org/devel/atkmm/unstable/" href="http://library.gnome.org/devel/atkmm/unstable/classAtk_1_1Implementor.html">Implementor</a> &&src) noexcept</td></tr>
<tr class="separator:a107c3e711d707d84e43eecd412402989 inherit pub_methods_classAtk_1_1Implementor"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a39733d7aba0cc26fbd085d1220c5fdd8 inherit pub_methods_classAtk_1_1Implementor"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="atkmm-1.6.tag:http://library.gnome.org/devel/atkmm/unstable/" href="http://library.gnome.org/devel/atkmm/unstable/classAtk_1_1Implementor.html">Implementor</a> & </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="atkmm-1.6.tag:http://library.gnome.org/devel/atkmm/unstable/" href="http://library.gnome.org/devel/atkmm/unstable/classAtk_1_1Implementor.html#a39733d7aba0cc26fbd085d1220c5fdd8">operator=</a> (<a class="elRef" doxygen="atkmm-1.6.tag:http://library.gnome.org/devel/atkmm/unstable/" href="http://library.gnome.org/devel/atkmm/unstable/classAtk_1_1Implementor.html">Implementor</a> &&src) noexcept</td></tr>
<tr class="separator:a39733d7aba0cc26fbd085d1220c5fdd8 inherit pub_methods_classAtk_1_1Implementor"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a38263a68e28a6788ce598dbec4c7a415 inherit pub_methods_classAtk_1_1Implementor"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="atkmm-1.6.tag:http://library.gnome.org/devel/atkmm/unstable/" href="http://library.gnome.org/devel/atkmm/unstable/classAtk_1_1Implementor.html#a38263a68e28a6788ce598dbec4c7a415">~Implementor</a> () noexceptoverride</td></tr>
<tr class="separator:a38263a68e28a6788ce598dbec4c7a415 inherit pub_methods_classAtk_1_1Implementor"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2ff0ebc78e6c37d678487f588be17ae6 inherit pub_methods_classAtk_1_1Implementor"><td class="memItemLeft" align="right" valign="top">AtkImplementor * </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="atkmm-1.6.tag:http://library.gnome.org/devel/atkmm/unstable/" href="http://library.gnome.org/devel/atkmm/unstable/classAtk_1_1Implementor.html#a2ff0ebc78e6c37d678487f588be17ae6">gobj</a> ()</td></tr>
<tr class="separator:a2ff0ebc78e6c37d678487f588be17ae6 inherit pub_methods_classAtk_1_1Implementor"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a468eb4b800275ac8d6ca2130496af275 inherit pub_methods_classAtk_1_1Implementor"><td class="memItemLeft" align="right" valign="top">const AtkImplementor * </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="atkmm-1.6.tag:http://library.gnome.org/devel/atkmm/unstable/" href="http://library.gnome.org/devel/atkmm/unstable/classAtk_1_1Implementor.html#a468eb4b800275ac8d6ca2130496af275">gobj</a> () const </td></tr>
<tr class="separator:a468eb4b800275ac8d6ca2130496af275 inherit pub_methods_classAtk_1_1Implementor"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a6b4ff8928c74e07e6c6655865baffbfb inherit pub_methods_classAtk_1_1Implementor"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="elRef" doxygen="atkmm-1.6.tag:http://library.gnome.org/devel/atkmm/unstable/" href="http://library.gnome.org/devel/atkmm/unstable/classAtk_1_1Implementor.html">Atk::Implementor</a> > </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="atkmm-1.6.tag:http://library.gnome.org/devel/atkmm/unstable/" href="http://library.gnome.org/devel/atkmm/unstable/classAtk_1_1Implementor.html#a6b4ff8928c74e07e6c6655865baffbfb">wrap</a> (AtkImplementor *object, bool take_copy=false)</td></tr>
<tr class="separator:a6b4ff8928c74e07e6c6655865baffbfb inherit pub_methods_classAtk_1_1Implementor"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pub_methods_classGlib_1_1Interface"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classGlib_1_1Interface')"><img src="closed.png" alt="-"/> Public Member Functions inherited from <a class="el" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Interface.html">Glib::Interface</a></td></tr>
<tr class="memitem:a3ab20f29c40967352d1bf2d88bfe11e5 inherit pub_methods_classGlib_1_1Interface"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Interface.html#a3ab20f29c40967352d1bf2d88bfe11e5">Interface</a> ()</td></tr>
<tr class="separator:a3ab20f29c40967352d1bf2d88bfe11e5 inherit pub_methods_classGlib_1_1Interface"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a83337dc270f966539b9f46804460ab75 inherit pub_methods_classGlib_1_1Interface"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Interface.html#a83337dc270f966539b9f46804460ab75">Interface</a> (<a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Interface.html">Interface</a> &&src) noexcept</td></tr>
<tr class="separator:a83337dc270f966539b9f46804460ab75 inherit pub_methods_classGlib_1_1Interface"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a411d66c7467e749dbb2c4b31c4d518b5 inherit pub_methods_classGlib_1_1Interface"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Interface.html">Interface</a> & </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Interface.html#a411d66c7467e749dbb2c4b31c4d518b5">operator=</a> (<a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Interface.html">Interface</a> &&src) noexcept</td></tr>
<tr class="separator:a411d66c7467e749dbb2c4b31c4d518b5 inherit pub_methods_classGlib_1_1Interface"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae05bf6a4ce0f0992c2ad01429d13f9f7 inherit pub_methods_classGlib_1_1Interface"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Interface.html#ae05bf6a4ce0f0992c2ad01429d13f9f7">Interface</a> (const Glib::Interface_Class &interface_class)</td></tr>
<tr class="separator:ae05bf6a4ce0f0992c2ad01429d13f9f7 inherit pub_methods_classGlib_1_1Interface"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a00253b22a76f751f1627865451cbc404 inherit pub_methods_classGlib_1_1Interface"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Interface.html#a00253b22a76f751f1627865451cbc404">Interface</a> (GObject *castitem)</td></tr>
<tr class="separator:a00253b22a76f751f1627865451cbc404 inherit pub_methods_classGlib_1_1Interface"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a50b6cc885cb02bc158ce779939dd4654 inherit pub_methods_classGlib_1_1Interface"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Interface.html#a50b6cc885cb02bc158ce779939dd4654">~Interface</a> () noexceptoverride</td></tr>
<tr class="separator:a50b6cc885cb02bc158ce779939dd4654 inherit pub_methods_classGlib_1_1Interface"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4bb27d294728f34452be66b4ec4cd757 inherit pub_methods_classGlib_1_1Interface"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Interface.html#a4bb27d294728f34452be66b4ec4cd757">Interface</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Interface.html">Interface</a> &)=delete</td></tr>
<tr class="separator:a4bb27d294728f34452be66b4ec4cd757 inherit pub_methods_classGlib_1_1Interface"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:acf322f95cef17aa4cc232d8ef25f2b42 inherit pub_methods_classGlib_1_1Interface"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Interface.html">Interface</a> & </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Interface.html#acf322f95cef17aa4cc232d8ef25f2b42">operator=</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Interface.html">Interface</a> &)=delete</td></tr>
<tr class="separator:acf322f95cef17aa4cc232d8ef25f2b42 inherit pub_methods_classGlib_1_1Interface"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a969e9396f75132a9577428f4fa932d42 inherit pub_methods_classGlib_1_1Interface"><td class="memItemLeft" align="right" valign="top">GObject * </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Interface.html#a969e9396f75132a9577428f4fa932d42">gobj</a> ()</td></tr>
<tr class="separator:a969e9396f75132a9577428f4fa932d42 inherit pub_methods_classGlib_1_1Interface"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a70a443071a69d3372c2cdd7128a91ed1 inherit pub_methods_classGlib_1_1Interface"><td class="memItemLeft" align="right" valign="top">const GObject * </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Interface.html#a70a443071a69d3372c2cdd7128a91ed1">gobj</a> () const </td></tr>
<tr class="separator:a70a443071a69d3372c2cdd7128a91ed1 inherit pub_methods_classGlib_1_1Interface"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-static-methods"></a>
Static Public Member Functions</h2></td></tr>
<tr class="memitem:a7061612826fd86c5a1386091ddc4be31"><td class="memItemLeft" align="right" valign="top">static void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a7061612826fd86c5a1386091ddc4be31">set_default_icon_list</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ListHandle.html">Glib::ListHandle</a>< <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGdk_1_1Pixbuf.html">Gdk::Pixbuf</a> > >& list)</td></tr>
<tr class="memdesc:a7061612826fd86c5a1386091ddc4be31"><td class="mdescLeft"> </td><td class="mdescRight">Sets an icon list to be used as fallback for windows that haven't had <a class="el" href="classGtk_1_1Window.html#a81ad667e5c42dada1dc24fafae7d81c5" title="Sets up the icon representing a Gtk::Window. ">set_icon_list()</a> called on them to set up a window-specific icon list. <a href="#a7061612826fd86c5a1386091ddc4be31">More...</a><br /></td></tr>
<tr class="separator:a7061612826fd86c5a1386091ddc4be31"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a6d5bdd6304e51b30d6c5167228164dce"><td class="memItemLeft" align="right" valign="top">static <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ListHandle.html">Glib::ListHandle</a>< <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGdk_1_1Pixbuf.html">Gdk::Pixbuf</a> > > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a6d5bdd6304e51b30d6c5167228164dce">get_default_icon_list</a> ()</td></tr>
<tr class="memdesc:a6d5bdd6304e51b30d6c5167228164dce"><td class="mdescLeft"> </td><td class="mdescRight">Gets the value set by <a class="el" href="classGtk_1_1Window.html#a7061612826fd86c5a1386091ddc4be31" title="Sets an icon list to be used as fallback for windows that haven't had set_icon_list() called on them ...">Gtk::Window::set_default_icon_list()</a>. <a href="#a6d5bdd6304e51b30d6c5167228164dce">More...</a><br /></td></tr>
<tr class="separator:a6d5bdd6304e51b30d6c5167228164dce"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a355e4704d6b2f24de627f182946f8782"><td class="memItemLeft" align="right" valign="top">static void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a355e4704d6b2f24de627f182946f8782">set_default_icon</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGdk_1_1Pixbuf.html">Gdk::Pixbuf</a> >& icon)</td></tr>
<tr class="memdesc:a355e4704d6b2f24de627f182946f8782"><td class="mdescLeft"> </td><td class="mdescRight">Sets an icon to be used as fallback for windows that haven't had <a class="el" href="classGtk_1_1Window.html#af8da32d981bcf1992d3d2361a9aec894" title="Sets up the icon representing a Gtk::Window. ">set_icon()</a> called on them from a pixbuf. <a href="#a355e4704d6b2f24de627f182946f8782">More...</a><br /></td></tr>
<tr class="separator:a355e4704d6b2f24de627f182946f8782"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a533d03e9b92d8ccd142ab3a44005cae4"><td class="memItemLeft" align="right" valign="top">static void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a533d03e9b92d8ccd142ab3a44005cae4">set_default_icon_name</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>& name)</td></tr>
<tr class="memdesc:a533d03e9b92d8ccd142ab3a44005cae4"><td class="mdescLeft"> </td><td class="mdescRight">Sets an icon to be used as fallback for windows that haven't had <a class="el" href="classGtk_1_1Window.html#a81ad667e5c42dada1dc24fafae7d81c5" title="Sets up the icon representing a Gtk::Window. ">set_icon_list()</a> called on them from a named themed icon, see <a class="el" href="classGtk_1_1Window.html#a80a7d07b5d126a17206a770d134c76c0" title="Sets the icon for the window from a named themed icon. ">set_icon_name()</a>. <a href="#a533d03e9b92d8ccd142ab3a44005cae4">More...</a><br /></td></tr>
<tr class="separator:a533d03e9b92d8ccd142ab3a44005cae4"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ada7d63162e412693d80a397096f46b0f"><td class="memItemLeft" align="right" valign="top">static bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#ada7d63162e412693d80a397096f46b0f">set_default_icon_from_file</a> (const <a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01681.html#ga32db3d9898c44d3b3a578b560f7758cc">std::string</a>& filename)</td></tr>
<tr class="memdesc:ada7d63162e412693d80a397096f46b0f"><td class="mdescLeft"> </td><td class="mdescRight">Sets an icon to be used as fallback for windows that haven't had <a class="el" href="classGtk_1_1Window.html#a81ad667e5c42dada1dc24fafae7d81c5" title="Sets up the icon representing a Gtk::Window. ">set_icon_list()</a> called on them from a file on disk. <a href="#ada7d63162e412693d80a397096f46b0f">More...</a><br /></td></tr>
<tr class="separator:ada7d63162e412693d80a397096f46b0f"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a17d7fbb99c147938b2f8af87cd1187f8"><td class="memItemLeft" align="right" valign="top">static void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a17d7fbb99c147938b2f8af87cd1187f8">set_auto_startup_notification</a> (bool setting=true)</td></tr>
<tr class="memdesc:a17d7fbb99c147938b2f8af87cd1187f8"><td class="mdescLeft"> </td><td class="mdescRight">By default, after showing the first <a class="el" href="classGtk_1_1Window.html" title="Toplevel Window This represents all widgets which are physical windows controlled by the window manag...">Gtk::Window</a>, GTK+ calls gdk_notify_startup_complete(). <a href="#a17d7fbb99c147938b2f8af87cd1187f8">More...</a><br /></td></tr>
<tr class="separator:a17d7fbb99c147938b2f8af87cd1187f8"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:adf14c5fd11660caf8c92db309d3620b7"><td class="memItemLeft" align="right" valign="top">static <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ListHandle.html">Glib::ListHandle</a>< <a class="el" href="classGtk_1_1Window.html">Window</a>* > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#adf14c5fd11660caf8c92db309d3620b7">list_toplevels</a> ()</td></tr>
<tr class="memdesc:adf14c5fd11660caf8c92db309d3620b7"><td class="mdescLeft"> </td><td class="mdescRight">Returns a list of all existing toplevel windows. <a href="#adf14c5fd11660caf8c92db309d3620b7">More...</a><br /></td></tr>
<tr class="separator:adf14c5fd11660caf8c92db309d3620b7"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pub_static_methods_classGtk_1_1Widget"><td colspan="2" onclick="javascript:toggleInherit('pub_static_methods_classGtk_1_1Widget')"><img src="closed.png" alt="-"/> Static Public Member Functions inherited from <a class="el" href="classGtk_1_1Widget.html">Gtk::Widget</a></td></tr>
<tr class="memitem:a6a94290259b2249247e3ab179698e852 inherit pub_static_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">static <a class="el" href="classGtk_1_1Widget.html">Widget</a>* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a6a94290259b2249247e3ab179698e852">get_current_modal_grab</a> ()</td></tr>
<tr class="memdesc:a6a94290259b2249247e3ab179698e852 inherit pub_static_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Retrieve the widget which is currently grabbing all events. <a href="#a6a94290259b2249247e3ab179698e852">More...</a><br /></td></tr>
<tr class="separator:a6a94290259b2249247e3ab179698e852 inherit pub_static_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa2da9a388c557e498cc1b4832ff26432 inherit pub_static_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">static void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#aa2da9a388c557e498cc1b4832ff26432">push_colormap</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< const <a class="el" href="classGdk_1_1Colormap.html">Gdk::Colormap</a> >& cmap)</td></tr>
<tr class="memdesc:aa2da9a388c557e498cc1b4832ff26432 inherit pub_static_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Pushes <em>cmap</em> onto a global stack of colormaps; the topmost colormap on the stack will be used to create all widgets. <a href="#aa2da9a388c557e498cc1b4832ff26432">More...</a><br /></td></tr>
<tr class="separator:aa2da9a388c557e498cc1b4832ff26432 inherit pub_static_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a21560e9bd17b2b391c2c1d6c2b327634 inherit pub_static_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">static void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a21560e9bd17b2b391c2c1d6c2b327634">pop_colormap</a> ()</td></tr>
<tr class="memdesc:a21560e9bd17b2b391c2c1d6c2b327634 inherit pub_static_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Removes a colormap pushed with <a class="el" href="classGtk_1_1Widget.html#aa2da9a388c557e498cc1b4832ff26432" title="Pushes cmap onto a global stack of colormaps; the topmost colormap on the stack will be used to creat...">push_colormap()</a>. <a href="#a21560e9bd17b2b391c2c1d6c2b327634">More...</a><br /></td></tr>
<tr class="separator:a21560e9bd17b2b391c2c1d6c2b327634 inherit pub_static_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad8ea7235a3cfc49d990e2ba66b1bc796 inherit pub_static_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">static void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#ad8ea7235a3cfc49d990e2ba66b1bc796">push_composite_child</a> ()</td></tr>
<tr class="memdesc:ad8ea7235a3cfc49d990e2ba66b1bc796 inherit pub_static_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Makes all newly-created widgets as composite children until the corresponding <a class="el" href="classGtk_1_1Widget.html#afa13de9a530c9dd69154691cd00cbefe" title="Cancels the effect of a previous call to push_composite_child(). ">pop_composite_child()</a> call. <a href="#ad8ea7235a3cfc49d990e2ba66b1bc796">More...</a><br /></td></tr>
<tr class="separator:ad8ea7235a3cfc49d990e2ba66b1bc796 inherit pub_static_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:afa13de9a530c9dd69154691cd00cbefe inherit pub_static_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">static void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#afa13de9a530c9dd69154691cd00cbefe">pop_composite_child</a> ()</td></tr>
<tr class="memdesc:afa13de9a530c9dd69154691cd00cbefe inherit pub_static_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Cancels the effect of a previous call to <a class="el" href="classGtk_1_1Widget.html#ad8ea7235a3cfc49d990e2ba66b1bc796" title="Makes all newly-created widgets as composite children until the corresponding pop_composite_child() c...">push_composite_child()</a>. <a href="#afa13de9a530c9dd69154691cd00cbefe">More...</a><br /></td></tr>
<tr class="separator:afa13de9a530c9dd69154691cd00cbefe inherit pub_static_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a37eb40c75d188b4e8912a498ce6aca8e inherit pub_static_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">static void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a37eb40c75d188b4e8912a498ce6aca8e">set_default_colormap</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< const <a class="el" href="classGdk_1_1Colormap.html">Gdk::Colormap</a> >& colormap)</td></tr>
<tr class="memdesc:a37eb40c75d188b4e8912a498ce6aca8e inherit pub_static_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Sets the default colormap to use when creating widgets. <a href="#a37eb40c75d188b4e8912a498ce6aca8e">More...</a><br /></td></tr>
<tr class="separator:a37eb40c75d188b4e8912a498ce6aca8e inherit pub_static_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa4a0cea7c7cad89bf5e43afa5218b5fe inherit pub_static_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">static <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGtk_1_1Style.html">Style</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#aa4a0cea7c7cad89bf5e43afa5218b5fe">get_default_style</a> ()</td></tr>
<tr class="memdesc:aa4a0cea7c7cad89bf5e43afa5218b5fe inherit pub_static_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Returns the default style used by all widgets initially. <a href="#aa4a0cea7c7cad89bf5e43afa5218b5fe">More...</a><br /></td></tr>
<tr class="separator:aa4a0cea7c7cad89bf5e43afa5218b5fe inherit pub_static_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a441481e0ec0de2b830f68f1a39fbb787 inherit pub_static_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">static <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGdk_1_1Colormap.html">Gdk::Colormap</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a441481e0ec0de2b830f68f1a39fbb787">get_default_colormap</a> ()</td></tr>
<tr class="memdesc:a441481e0ec0de2b830f68f1a39fbb787 inherit pub_static_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Obtains the default colormap used to create widgets. <a href="#a441481e0ec0de2b830f68f1a39fbb787">More...</a><br /></td></tr>
<tr class="separator:a441481e0ec0de2b830f68f1a39fbb787 inherit pub_static_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:add0e375a0b06d4a85bd0be24abb1c53e inherit pub_static_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">static <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGdk_1_1Visual.html">Gdk::Visual</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#add0e375a0b06d4a85bd0be24abb1c53e">get_default_visual</a> ()</td></tr>
<tr class="memdesc:add0e375a0b06d4a85bd0be24abb1c53e inherit pub_static_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Obtains the visual of the default colormap. <a href="#add0e375a0b06d4a85bd0be24abb1c53e">More...</a><br /></td></tr>
<tr class="separator:add0e375a0b06d4a85bd0be24abb1c53e inherit pub_static_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2cdb11d295e816d6dd63e65865457882 inherit pub_static_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">static void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a2cdb11d295e816d6dd63e65865457882">set_default_direction</a> (<a class="el" href="group__gtkmmEnums.html#gaabfcae0b9b0cf2aab01ee96352668d3d">TextDirection</a> dir)</td></tr>
<tr class="memdesc:a2cdb11d295e816d6dd63e65865457882 inherit pub_static_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Sets the default reading direction for widgets where the direction has not been explicitly set by <a class="el" href="classGtk_1_1Widget.html#a99ce7eb311e0c9fbc4470c845555b93d" title="Sets the reading direction on a particular widget. ">set_direction()</a>. <a href="#a2cdb11d295e816d6dd63e65865457882">More...</a><br /></td></tr>
<tr class="separator:a2cdb11d295e816d6dd63e65865457882 inherit pub_static_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a8380cc46ee85e6abda417dfb94831fa5 inherit pub_static_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">static <a class="el" href="group__gtkmmEnums.html#gaabfcae0b9b0cf2aab01ee96352668d3d">TextDirection</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a8380cc46ee85e6abda417dfb94831fa5">get_default_direction</a> ()</td></tr>
<tr class="memdesc:a8380cc46ee85e6abda417dfb94831fa5 inherit pub_static_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Obtains the current default reading direction. <a href="#a8380cc46ee85e6abda417dfb94831fa5">More...</a><br /></td></tr>
<tr class="separator:a8380cc46ee85e6abda417dfb94831fa5 inherit pub_static_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a98fc442b8bfb06510ea4c5fcfd4c62cd inherit pub_static_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">static <a class="el" href="classGtk_1_1Widget.html">Widget</a>* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a98fc442b8bfb06510ea4c5fcfd4c62cd">drag_get_source_widget</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGdk_1_1DragContext.html">Gdk::DragContext</a> >& context)</td></tr>
<tr class="separator:a98fc442b8bfb06510ea4c5fcfd4c62cd inherit pub_static_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pub_static_methods_classAtk_1_1Implementor"><td colspan="2" onclick="javascript:toggleInherit('pub_static_methods_classAtk_1_1Implementor')"><img src="closed.png" alt="-"/> Static Public Member Functions inherited from <a class="el" href="http://library.gnome.org/devel/atkmm/unstable/classAtk_1_1Implementor.html">Atk::Implementor</a></td></tr>
<tr class="memitem:a838764354ab8c6d2c84ff291b57fdb05 inherit pub_static_methods_classAtk_1_1Implementor"><td class="memItemLeft" align="right" valign="top">static void </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="atkmm-1.6.tag:http://library.gnome.org/devel/atkmm/unstable/" href="http://library.gnome.org/devel/atkmm/unstable/classAtk_1_1Implementor.html#a838764354ab8c6d2c84ff291b57fdb05">add_interface</a> (GType gtype_implementer)</td></tr>
<tr class="separator:a838764354ab8c6d2c84ff291b57fdb05 inherit pub_static_methods_classAtk_1_1Implementor"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9460675c87793cb667a377568f5d348e inherit pub_static_methods_classAtk_1_1Implementor"><td class="memItemLeft" align="right" valign="top">static GType </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="atkmm-1.6.tag:http://library.gnome.org/devel/atkmm/unstable/" href="http://library.gnome.org/devel/atkmm/unstable/classAtk_1_1Implementor.html#a9460675c87793cb667a377568f5d348e">get_type</a> ()</td></tr>
<tr class="separator:a9460675c87793cb667a377568f5d348e inherit pub_static_methods_classAtk_1_1Implementor"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pro-methods"></a>
Protected Member Functions</h2></td></tr>
<tr class="memitem:af47d9ef9fb72173016def01ecb60715c"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#af47d9ef9fb72173016def01ecb60715c">on_set_focus</a> (<a class="el" href="classGtk_1_1Widget.html">Widget</a>* focus)</td></tr>
<tr class="memdesc:af47d9ef9fb72173016def01ecb60715c"><td class="mdescLeft"> </td><td class="mdescRight">This is a default handler for the signal <a class="el" href="classGtk_1_1Window.html#a86312ebdff9e22fa5aad6a7f8fe17396">signal_set_focus()</a>. <a href="#af47d9ef9fb72173016def01ecb60715c">More...</a><br /></td></tr>
<tr class="separator:af47d9ef9fb72173016def01ecb60715c"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae581f3c73875fa8453a276b55867b613"><td class="memItemLeft" align="right" valign="top">virtual bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#ae581f3c73875fa8453a276b55867b613">on_frame_event</a> (GdkEvent*<a class="el" href="classGtk_1_1Widget.html#aff4e0463f492043197c7d70daaad7590">event</a>)</td></tr>
<tr class="memdesc:ae581f3c73875fa8453a276b55867b613"><td class="mdescLeft"> </td><td class="mdescRight">This is a default handler for the signal <a class="el" href="classGtk_1_1Window.html#ac47ffcba20791cf3f696f300d913377c">signal_frame_event()</a>. <a href="#ae581f3c73875fa8453a276b55867b613">More...</a><br /></td></tr>
<tr class="separator:ae581f3c73875fa8453a276b55867b613"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a230fe9d4577dc165d139f4d7463367ee"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a230fe9d4577dc165d139f4d7463367ee">destroy_</a> ()</td></tr>
<tr class="separator:a230fe9d4577dc165d139f4d7463367ee"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pro_methods_classGtk_1_1Bin"><td colspan="2" onclick="javascript:toggleInherit('pro_methods_classGtk_1_1Bin')"><img src="closed.png" alt="-"/> Protected Member Functions inherited from <a class="el" href="classGtk_1_1Bin.html">Gtk::Bin</a></td></tr>
<tr class="memitem:a30c4f95f2734bcd253e279a42117f9c1 inherit pro_methods_classGtk_1_1Bin"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Bin.html#a30c4f95f2734bcd253e279a42117f9c1">Bin</a> ()</td></tr>
<tr class="memdesc:a30c4f95f2734bcd253e279a42117f9c1 inherit pro_methods_classGtk_1_1Bin"><td class="mdescLeft"> </td><td class="mdescRight">This constructor is protected because only derived classes should be instantiated. <a href="#a30c4f95f2734bcd253e279a42117f9c1">More...</a><br /></td></tr>
<tr class="separator:a30c4f95f2734bcd253e279a42117f9c1 inherit pro_methods_classGtk_1_1Bin"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pro_methods_classGtk_1_1Container"><td colspan="2" onclick="javascript:toggleInherit('pro_methods_classGtk_1_1Container')"><img src="closed.png" alt="-"/> Protected Member Functions inherited from <a class="el" href="classGtk_1_1Container.html">Gtk::Container</a></td></tr>
<tr class="memitem:a4de2182fcf0106e1bc2d6a9b7cb9d4d5 inherit pro_methods_classGtk_1_1Container"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Container.html#a4de2182fcf0106e1bc2d6a9b7cb9d4d5">on_add</a> (<a class="el" href="classGtk_1_1Widget.html">Widget</a>* widget)</td></tr>
<tr class="memdesc:a4de2182fcf0106e1bc2d6a9b7cb9d4d5 inherit pro_methods_classGtk_1_1Container"><td class="mdescLeft"> </td><td class="mdescRight">This is a default handler for the signal <a class="el" href="classGtk_1_1Container.html#a2dd9cacbab5b93066edb7bbb3074aa2b">signal_add()</a>. <a href="#a4de2182fcf0106e1bc2d6a9b7cb9d4d5">More...</a><br /></td></tr>
<tr class="separator:a4de2182fcf0106e1bc2d6a9b7cb9d4d5 inherit pro_methods_classGtk_1_1Container"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aed9713485cb1aab3d4fe1a80c9a9b85a inherit pro_methods_classGtk_1_1Container"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Container.html#aed9713485cb1aab3d4fe1a80c9a9b85a">on_remove</a> (<a class="el" href="classGtk_1_1Widget.html">Widget</a>* widget)</td></tr>
<tr class="memdesc:aed9713485cb1aab3d4fe1a80c9a9b85a inherit pro_methods_classGtk_1_1Container"><td class="mdescLeft"> </td><td class="mdescRight">This is a default handler for the signal <a class="el" href="classGtk_1_1Container.html#ae6f5bf50798d2be4506cde3d0d58bf10">signal_remove()</a>. <a href="#aed9713485cb1aab3d4fe1a80c9a9b85a">More...</a><br /></td></tr>
<tr class="separator:aed9713485cb1aab3d4fe1a80c9a9b85a inherit pro_methods_classGtk_1_1Container"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aec9eb5bda956831c3a9164cd57c5fc8d inherit pro_methods_classGtk_1_1Container"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Container.html#aec9eb5bda956831c3a9164cd57c5fc8d">on_check_resize</a> ()</td></tr>
<tr class="memdesc:aec9eb5bda956831c3a9164cd57c5fc8d inherit pro_methods_classGtk_1_1Container"><td class="mdescLeft"> </td><td class="mdescRight">This is a default handler for the signal <a class="el" href="classGtk_1_1Container.html#a6f0597d09462834ecf1b8a210350e67a">signal_check_resize()</a>. <a href="#aec9eb5bda956831c3a9164cd57c5fc8d">More...</a><br /></td></tr>
<tr class="separator:aec9eb5bda956831c3a9164cd57c5fc8d inherit pro_methods_classGtk_1_1Container"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:afe2d036a76139c34ac5e0bf1f1569161 inherit pro_methods_classGtk_1_1Container"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Container.html#afe2d036a76139c34ac5e0bf1f1569161">on_set_focus_child</a> (<a class="el" href="classGtk_1_1Widget.html">Widget</a>* widget)</td></tr>
<tr class="memdesc:afe2d036a76139c34ac5e0bf1f1569161 inherit pro_methods_classGtk_1_1Container"><td class="mdescLeft"> </td><td class="mdescRight">This is a default handler for the signal <a class="el" href="classGtk_1_1Container.html#ac7659a0c723625c75928c58e338c3b81">signal_set_focus_child()</a>. <a href="#afe2d036a76139c34ac5e0bf1f1569161">More...</a><br /></td></tr>
<tr class="separator:afe2d036a76139c34ac5e0bf1f1569161 inherit pro_methods_classGtk_1_1Container"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:afb6a31d709af6516fb71592298991e14 inherit pro_methods_classGtk_1_1Container"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Container.html#afb6a31d709af6516fb71592298991e14">Container</a> ()</td></tr>
<tr class="separator:afb6a31d709af6516fb71592298991e14 inherit pro_methods_classGtk_1_1Container"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a54f262cc55bdebc4c2c9d2ed74fba203 inherit pro_methods_classGtk_1_1Container"><td class="memItemLeft" align="right" valign="top">virtual GType </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Container.html#a54f262cc55bdebc4c2c9d2ed74fba203">child_type_vfunc</a> () const </td></tr>
<tr class="separator:a54f262cc55bdebc4c2c9d2ed74fba203 inherit pro_methods_classGtk_1_1Container"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a38f26ed78538349e1e7f20819621a406 inherit pro_methods_classGtk_1_1Container"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Container.html#a38f26ed78538349e1e7f20819621a406">forall_vfunc</a> (gboolean include_internals, GtkCallback callback, gpointer callback_data)</td></tr>
<tr class="separator:a38f26ed78538349e1e7f20819621a406 inherit pro_methods_classGtk_1_1Container"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a50cfb34e55158055cbf6eb3624b24b0a inherit pro_methods_classGtk_1_1Container"><td class="memItemLeft" align="right" valign="top">virtual char* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Container.html#a50cfb34e55158055cbf6eb3624b24b0a">composite_name_vfunc</a> (GtkWidget* child)</td></tr>
<tr class="separator:a50cfb34e55158055cbf6eb3624b24b0a inherit pro_methods_classGtk_1_1Container"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2304813fb399409344b8fd9ad433d85b inherit pro_methods_classGtk_1_1Container"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Container.html#a2304813fb399409344b8fd9ad433d85b">set_child_property_vfunc</a> (GtkWidget* child, guint property_id, const GValue* value, GParamSpec* pspec)</td></tr>
<tr class="separator:a2304813fb399409344b8fd9ad433d85b inherit pro_methods_classGtk_1_1Container"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2c2cdd5d1c869a2b9f2b189483a99c21 inherit pro_methods_classGtk_1_1Container"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Container.html#a2c2cdd5d1c869a2b9f2b189483a99c21">get_child_property_vfunc</a> (GtkWidget* child, guint property_id, GValue* value, GParamSpec* pspec) const </td></tr>
<tr class="separator:a2c2cdd5d1c869a2b9f2b189483a99c21 inherit pro_methods_classGtk_1_1Container"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a70d73326ad3b1b6f9a118e761448b5e2 inherit pro_methods_classGtk_1_1Container"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< guint > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Container.html#a70d73326ad3b1b6f9a118e761448b5e2">property_border_width</a> ()</td></tr>
<tr class="memdesc:a70d73326ad3b1b6f9a118e761448b5e2 inherit pro_methods_classGtk_1_1Container"><td class="mdescLeft"> </td><td class="mdescRight">The width of the empty border outside the containers children. <a href="#a70d73326ad3b1b6f9a118e761448b5e2">More...</a><br /></td></tr>
<tr class="separator:a70d73326ad3b1b6f9a118e761448b5e2 inherit pro_methods_classGtk_1_1Container"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa5c69a4263368e8edee1ba41a4c73ac9 inherit pro_methods_classGtk_1_1Container"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< guint > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Container.html#aa5c69a4263368e8edee1ba41a4c73ac9">property_border_width</a> () const </td></tr>
<tr class="memdesc:aa5c69a4263368e8edee1ba41a4c73ac9 inherit pro_methods_classGtk_1_1Container"><td class="mdescLeft"> </td><td class="mdescRight">The width of the empty border outside the containers children. <a href="#aa5c69a4263368e8edee1ba41a4c73ac9">More...</a><br /></td></tr>
<tr class="separator:aa5c69a4263368e8edee1ba41a4c73ac9 inherit pro_methods_classGtk_1_1Container"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a019c70315ad6d126fa269b9506bf4ee0 inherit pro_methods_classGtk_1_1Container"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< <a class="el" href="group__gtkmmEnums.html#gad226b0aaa5fb1a2d445bee61e7acb9e0">ResizeMode</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Container.html#a019c70315ad6d126fa269b9506bf4ee0">property_resize_mode</a> ()</td></tr>
<tr class="memdesc:a019c70315ad6d126fa269b9506bf4ee0 inherit pro_methods_classGtk_1_1Container"><td class="mdescLeft"> </td><td class="mdescRight">Specify how resize events are handled. <a href="#a019c70315ad6d126fa269b9506bf4ee0">More...</a><br /></td></tr>
<tr class="separator:a019c70315ad6d126fa269b9506bf4ee0 inherit pro_methods_classGtk_1_1Container"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a12068fa0fa83c02475f77f0127e433ec inherit pro_methods_classGtk_1_1Container"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< <a class="el" href="group__gtkmmEnums.html#gad226b0aaa5fb1a2d445bee61e7acb9e0">ResizeMode</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Container.html#a12068fa0fa83c02475f77f0127e433ec">property_resize_mode</a> () const </td></tr>
<tr class="memdesc:a12068fa0fa83c02475f77f0127e433ec inherit pro_methods_classGtk_1_1Container"><td class="mdescLeft"> </td><td class="mdescRight">Specify how resize events are handled. <a href="#a12068fa0fa83c02475f77f0127e433ec">More...</a><br /></td></tr>
<tr class="separator:a12068fa0fa83c02475f77f0127e433ec inherit pro_methods_classGtk_1_1Container"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a7a11d0ef781429b1ef3d1bb0395df547 inherit pro_methods_classGtk_1_1Container"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__WriteOnly.html">Glib::PropertyProxy_WriteOnly</a>< <a class="el" href="classGtk_1_1Widget.html">Widget</a>* > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Container.html#a7a11d0ef781429b1ef3d1bb0395df547">property_child</a> ()</td></tr>
<tr class="memdesc:a7a11d0ef781429b1ef3d1bb0395df547 inherit pro_methods_classGtk_1_1Container"><td class="mdescLeft"> </td><td class="mdescRight">Can be used to add a new child to the container. <a href="#a7a11d0ef781429b1ef3d1bb0395df547">More...</a><br /></td></tr>
<tr class="separator:a7a11d0ef781429b1ef3d1bb0395df547 inherit pro_methods_classGtk_1_1Container"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pro_methods_classGtk_1_1Widget"><td colspan="2" onclick="javascript:toggleInherit('pro_methods_classGtk_1_1Widget')"><img src="closed.png" alt="-"/> Protected Member Functions inherited from <a class="el" href="classGtk_1_1Widget.html">Gtk::Widget</a></td></tr>
<tr class="memitem:a81ec450f7c382fbeb54f7531b5ccde39 inherit pro_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a81ec450f7c382fbeb54f7531b5ccde39">on_show</a> ()</td></tr>
<tr class="memdesc:a81ec450f7c382fbeb54f7531b5ccde39 inherit pro_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">This is a default handler for the signal <a class="el" href="classGtk_1_1Widget.html#a834f693986a2b7b73594e724d16a68a2">signal_show()</a>. <a href="#a81ec450f7c382fbeb54f7531b5ccde39">More...</a><br /></td></tr>
<tr class="separator:a81ec450f7c382fbeb54f7531b5ccde39 inherit pro_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a8a48e5ec59bf4908dc0d0c6a3ea18737 inherit pro_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a8a48e5ec59bf4908dc0d0c6a3ea18737">on_hide</a> ()</td></tr>
<tr class="memdesc:a8a48e5ec59bf4908dc0d0c6a3ea18737 inherit pro_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">This is a default handler for the signal <a class="el" href="classGtk_1_1Widget.html#a7c558781f5e2845b6fc8430b6e2b49bc">signal_hide()</a>. <a href="#a8a48e5ec59bf4908dc0d0c6a3ea18737">More...</a><br /></td></tr>
<tr class="separator:a8a48e5ec59bf4908dc0d0c6a3ea18737 inherit pro_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a54244d26703ffe722487f19cee9f4645 inherit pro_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a54244d26703ffe722487f19cee9f4645">on_map</a> ()</td></tr>
<tr class="memdesc:a54244d26703ffe722487f19cee9f4645 inherit pro_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">This is a default handler for the signal <a class="el" href="classGtk_1_1Widget.html#a8f8f80663cabf46c8c376595bfeaa49e" title="Emitted on mapping of a widget to the screen. ">signal_map()</a>. <a href="#a54244d26703ffe722487f19cee9f4645">More...</a><br /></td></tr>
<tr class="separator:a54244d26703ffe722487f19cee9f4645 inherit pro_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4c56f089b6a5bbe1c5352a9e76756c68 inherit pro_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a4c56f089b6a5bbe1c5352a9e76756c68">on_unmap</a> ()</td></tr>
<tr class="memdesc:a4c56f089b6a5bbe1c5352a9e76756c68 inherit pro_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">This is a default handler for the signal <a class="el" href="classGtk_1_1Widget.html#a1f6824bc1524f2586fe066db649fda92">signal_unmap()</a>. <a href="#a4c56f089b6a5bbe1c5352a9e76756c68">More...</a><br /></td></tr>
<tr class="separator:a4c56f089b6a5bbe1c5352a9e76756c68 inherit pro_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aded36450a809b452e7d402f2d541ad81 inherit pro_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#aded36450a809b452e7d402f2d541ad81">on_realize</a> ()</td></tr>
<tr class="memdesc:aded36450a809b452e7d402f2d541ad81 inherit pro_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">This is a default handler for the signal <a class="el" href="classGtk_1_1Widget.html#af97cf8416f96814aefb8cb1e88dfbf38" title="Emitted on realization of a widget. ">signal_realize()</a>. <a href="#aded36450a809b452e7d402f2d541ad81">More...</a><br /></td></tr>
<tr class="separator:aded36450a809b452e7d402f2d541ad81 inherit pro_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:abd7eaefa77cd3a98c0e313778954821a inherit pro_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#abd7eaefa77cd3a98c0e313778954821a">on_unrealize</a> ()</td></tr>
<tr class="memdesc:abd7eaefa77cd3a98c0e313778954821a inherit pro_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">This is a default handler for the signal <a class="el" href="classGtk_1_1Widget.html#af1d51a8e925529fee1cd4404e054d5d1">signal_unrealize()</a>. <a href="#abd7eaefa77cd3a98c0e313778954821a">More...</a><br /></td></tr>
<tr class="separator:abd7eaefa77cd3a98c0e313778954821a inherit pro_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a370b181c403f193bf422bc994fd1d6a7 inherit pro_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a370b181c403f193bf422bc994fd1d6a7">on_size_request</a> (<a class="el" href="namespaceGtk.html#a5ae8be4427f5ac86ecb38401ab7e4d78">Requisition</a>* requisition)</td></tr>
<tr class="memdesc:a370b181c403f193bf422bc994fd1d6a7 inherit pro_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">This is a default handler for the signal <a class="el" href="classGtk_1_1Widget.html#aad8da187afac06b0f2410c6685190826">signal_size_request()</a>. <a href="#a370b181c403f193bf422bc994fd1d6a7">More...</a><br /></td></tr>
<tr class="separator:a370b181c403f193bf422bc994fd1d6a7 inherit pro_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aaf76f0a77dc2ce107657e2a6a09aa91e inherit pro_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#aaf76f0a77dc2ce107657e2a6a09aa91e">on_size_allocate</a> (<a class="el" href="namespaceGtk.html#a8aafb0aa51d1034c06046f066563367b">Allocation</a>& allocation)</td></tr>
<tr class="memdesc:aaf76f0a77dc2ce107657e2a6a09aa91e inherit pro_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">This is a default handler for the signal <a class="el" href="classGtk_1_1Widget.html#a623e391260b8d3391438eb178fc7c861">signal_size_allocate()</a>. <a href="#aaf76f0a77dc2ce107657e2a6a09aa91e">More...</a><br /></td></tr>
<tr class="separator:aaf76f0a77dc2ce107657e2a6a09aa91e inherit pro_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad7479b33afda487f78b2ea14d2f3d1d3 inherit pro_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#ad7479b33afda487f78b2ea14d2f3d1d3">on_state_changed</a> (<a class="el" href="group__gtkmmEnums.html#gae389c7fef8176df3e8b7992c521d9661">Gtk::StateType</a> previous_state)</td></tr>
<tr class="memdesc:ad7479b33afda487f78b2ea14d2f3d1d3 inherit pro_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">This is a default handler for the signal <a class="el" href="classGtk_1_1Widget.html#a4c45808dc5ee8ca603bebad95579fbeb">signal_state_changed()</a>. <a href="#ad7479b33afda487f78b2ea14d2f3d1d3">More...</a><br /></td></tr>
<tr class="separator:ad7479b33afda487f78b2ea14d2f3d1d3 inherit pro_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a914584f6efc22f332826724729f53f4a inherit pro_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a914584f6efc22f332826724729f53f4a">on_parent_changed</a> (<a class="el" href="classGtk_1_1Widget.html">Widget</a>* previous_parent)</td></tr>
<tr class="memdesc:a914584f6efc22f332826724729f53f4a inherit pro_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">This is a default handler for the signal <a class="el" href="classGtk_1_1Widget.html#aa65b86271026cb4028a5cbcc977c4ceb" title="Informs objects that their parent changed. ">signal_parent_changed()</a>. <a href="#a914584f6efc22f332826724729f53f4a">More...</a><br /></td></tr>
<tr class="separator:a914584f6efc22f332826724729f53f4a inherit pro_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad15a2a52e3ce3463920d60c3030ec82f inherit pro_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#ad15a2a52e3ce3463920d60c3030ec82f">on_hierarchy_changed</a> (<a class="el" href="classGtk_1_1Widget.html">Widget</a>* previous_toplevel)</td></tr>
<tr class="memdesc:ad15a2a52e3ce3463920d60c3030ec82f inherit pro_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">This is a default handler for the signal <a class="el" href="classGtk_1_1Widget.html#a00c199d0eabf7ef2d0bdb86aa4ce0516">signal_hierarchy_changed()</a>. <a href="#ad15a2a52e3ce3463920d60c3030ec82f">More...</a><br /></td></tr>
<tr class="separator:ad15a2a52e3ce3463920d60c3030ec82f inherit pro_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad4df42dd3499b44ad9038a1c2bae6fae inherit pro_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#ad4df42dd3499b44ad9038a1c2bae6fae">on_style_changed</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGtk_1_1Style.html">Gtk::Style</a> >& previous_style)</td></tr>
<tr class="memdesc:ad4df42dd3499b44ad9038a1c2bae6fae inherit pro_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">This is a default handler for the signal <a class="el" href="classGtk_1_1Widget.html#a3af087aac57d652efb6e8d5ccb724578" title="The style-set signal is emitted when a new style has been set on a widget. ">signal_style_changed()</a>. <a href="#ad4df42dd3499b44ad9038a1c2bae6fae">More...</a><br /></td></tr>
<tr class="separator:ad4df42dd3499b44ad9038a1c2bae6fae inherit pro_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a7920fce59a82de96582dcfa862d44eb8 inherit pro_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a7920fce59a82de96582dcfa862d44eb8">on_direction_changed</a> (<a class="el" href="group__gtkmmEnums.html#gaabfcae0b9b0cf2aab01ee96352668d3d">TextDirection</a> direction)</td></tr>
<tr class="memdesc:a7920fce59a82de96582dcfa862d44eb8 inherit pro_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">This is a default handler for the signal <a class="el" href="classGtk_1_1Widget.html#a1fcd6bd1817e836168577463f6e6fb7b">signal_direction_changed()</a>. <a href="#a7920fce59a82de96582dcfa862d44eb8">More...</a><br /></td></tr>
<tr class="separator:a7920fce59a82de96582dcfa862d44eb8 inherit pro_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:abc81b49d9391c59b05040352a50afde7 inherit pro_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#abc81b49d9391c59b05040352a50afde7">on_grab_notify</a> (bool was_grabbed)</td></tr>
<tr class="memdesc:abc81b49d9391c59b05040352a50afde7 inherit pro_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">This is a default handler for the signal <a class="el" href="classGtk_1_1Widget.html#af3d816c5d7ff828375711ac532f2e1a3">signal_grab_notify()</a>. <a href="#abc81b49d9391c59b05040352a50afde7">More...</a><br /></td></tr>
<tr class="separator:abc81b49d9391c59b05040352a50afde7 inherit pro_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a21e5364d2b295a680bff407e42a612e9 inherit pro_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a21e5364d2b295a680bff407e42a612e9">on_child_notify</a> (GParamSpec* pspec)</td></tr>
<tr class="memdesc:a21e5364d2b295a680bff407e42a612e9 inherit pro_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">This is a default handler for the signal <a class="el" href="classGtk_1_1Widget.html#a2584896d844005c0ec19a10273a88473" title="The ::child-notify signal is emitted for each child property that has changed on an object...">signal_child_notify()</a>. <a href="#a21e5364d2b295a680bff407e42a612e9">More...</a><br /></td></tr>
<tr class="separator:a21e5364d2b295a680bff407e42a612e9 inherit pro_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a82e1eda392e833127565b6e25b570d60 inherit pro_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">virtual bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a82e1eda392e833127565b6e25b570d60">on_mnemonic_activate</a> (bool group_cycling)</td></tr>
<tr class="memdesc:a82e1eda392e833127565b6e25b570d60 inherit pro_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">This is a default handler for the signal <a class="el" href="classGtk_1_1Widget.html#a41eb8c621d88acad7afb18746a1663f4">signal_mnemonic_activate()</a>. <a href="#a82e1eda392e833127565b6e25b570d60">More...</a><br /></td></tr>
<tr class="separator:a82e1eda392e833127565b6e25b570d60 inherit pro_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a05b919b7f4537e0a2dd57b4a7c05677b inherit pro_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a05b919b7f4537e0a2dd57b4a7c05677b">on_grab_focus</a> ()</td></tr>
<tr class="memdesc:a05b919b7f4537e0a2dd57b4a7c05677b inherit pro_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">This is a default handler for the signal <a class="el" href="classGtk_1_1Widget.html#a0d4b1f239083bf747d67704fd25563e5">signal_grab_focus()</a>. <a href="#a05b919b7f4537e0a2dd57b4a7c05677b">More...</a><br /></td></tr>
<tr class="separator:a05b919b7f4537e0a2dd57b4a7c05677b inherit pro_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a715ef6d0485433a3a3971d6f24c053f2 inherit pro_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">virtual bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a715ef6d0485433a3a3971d6f24c053f2">on_focus</a> (<a class="el" href="group__gtkmmEnums.html#ga6c754c32a8421f746367b43c277e4d7b">DirectionType</a> direction)</td></tr>
<tr class="memdesc:a715ef6d0485433a3a3971d6f24c053f2 inherit pro_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">This is a default handler for the signal <a class="el" href="classGtk_1_1Widget.html#a26966a9fc3698a60e1bf19acd9781bf0">signal_focus()</a>. <a href="#a715ef6d0485433a3a3971d6f24c053f2">More...</a><br /></td></tr>
<tr class="separator:a715ef6d0485433a3a3971d6f24c053f2 inherit pro_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a467bc05a1fcd5002c1f2e9281d600f7a inherit pro_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">virtual bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a467bc05a1fcd5002c1f2e9281d600f7a">on_event</a> (GdkEvent*<a class="el" href="classGtk_1_1Widget.html#aff4e0463f492043197c7d70daaad7590">event</a>)</td></tr>
<tr class="memdesc:a467bc05a1fcd5002c1f2e9281d600f7a inherit pro_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">This is a default handler for the signal <a class="el" href="classGtk_1_1Widget.html#ae929903418f67370c54720f6d2b12259">signal_event()</a>. <a href="#a467bc05a1fcd5002c1f2e9281d600f7a">More...</a><br /></td></tr>
<tr class="separator:a467bc05a1fcd5002c1f2e9281d600f7a inherit pro_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aba72b7f8655d1a0eb1273a26894584e3 inherit pro_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">virtual bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#aba72b7f8655d1a0eb1273a26894584e3">on_button_press_event</a> (GdkEventButton*<a class="el" href="classGtk_1_1Widget.html#aff4e0463f492043197c7d70daaad7590">event</a>)</td></tr>
<tr class="memdesc:aba72b7f8655d1a0eb1273a26894584e3 inherit pro_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">This is a default handler for the signal <a class="el" href="classGtk_1_1Widget.html#a8e661bba77abc2fd0fbd81ad7b450cd8" title="Event triggered by user pressing button. ">signal_button_press_event()</a>. <a href="#aba72b7f8655d1a0eb1273a26894584e3">More...</a><br /></td></tr>
<tr class="separator:aba72b7f8655d1a0eb1273a26894584e3 inherit pro_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1da8ae840af3d397c89bd74c9ab2e2e5 inherit pro_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">virtual bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a1da8ae840af3d397c89bd74c9ab2e2e5">on_button_release_event</a> (GdkEventButton*<a class="el" href="classGtk_1_1Widget.html#aff4e0463f492043197c7d70daaad7590">event</a>)</td></tr>
<tr class="memdesc:a1da8ae840af3d397c89bd74c9ab2e2e5 inherit pro_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">This is a default handler for the signal <a class="el" href="classGtk_1_1Widget.html#a5cb7b096668d911e894051183fe5fc8c" title="Event triggered by user releasing button. ">signal_button_release_event()</a>. <a href="#a1da8ae840af3d397c89bd74c9ab2e2e5">More...</a><br /></td></tr>
<tr class="separator:a1da8ae840af3d397c89bd74c9ab2e2e5 inherit pro_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a96f84ae47ffb979a1c358aa083b2a815 inherit pro_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">virtual bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a96f84ae47ffb979a1c358aa083b2a815">on_scroll_event</a> (GdkEventScroll*<a class="el" href="classGtk_1_1Widget.html#aff4e0463f492043197c7d70daaad7590">event</a>)</td></tr>
<tr class="memdesc:a96f84ae47ffb979a1c358aa083b2a815 inherit pro_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">This is a default handler for the signal <a class="el" href="classGtk_1_1Widget.html#a9a3ec8dd94c30d084c6b557fbf32f240">signal_scroll_event()</a>. <a href="#a96f84ae47ffb979a1c358aa083b2a815">More...</a><br /></td></tr>
<tr class="separator:a96f84ae47ffb979a1c358aa083b2a815 inherit pro_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:acb8eb66d47bc1d91eb4b23684034ccb9 inherit pro_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">virtual bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#acb8eb66d47bc1d91eb4b23684034ccb9">on_motion_notify_event</a> (GdkEventMotion*<a class="el" href="classGtk_1_1Widget.html#aff4e0463f492043197c7d70daaad7590">event</a>)</td></tr>
<tr class="memdesc:acb8eb66d47bc1d91eb4b23684034ccb9 inherit pro_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">This is a default handler for the signal <a class="el" href="classGtk_1_1Widget.html#a46e819f54ebc992b9abb4edef6dcb4b1" title="Event triggered by user moving pointer. ">signal_motion_notify_event()</a>. <a href="#acb8eb66d47bc1d91eb4b23684034ccb9">More...</a><br /></td></tr>
<tr class="separator:acb8eb66d47bc1d91eb4b23684034ccb9 inherit pro_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa97a4453ec12f7fce163353c2bcaf580 inherit pro_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">virtual bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#aa97a4453ec12f7fce163353c2bcaf580">on_delete_event</a> (GdkEventAny*<a class="el" href="classGtk_1_1Widget.html#aff4e0463f492043197c7d70daaad7590">event</a>)</td></tr>
<tr class="memdesc:aa97a4453ec12f7fce163353c2bcaf580 inherit pro_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">This is a default handler for the signal <a class="el" href="classGtk_1_1Widget.html#a3986616c9bc5ed3bb3bcc450ec80d54c" title="The delete_event signal is emitted if a user requests that a toplevel window is closed. ">signal_delete_event()</a>. <a href="#aa97a4453ec12f7fce163353c2bcaf580">More...</a><br /></td></tr>
<tr class="separator:aa97a4453ec12f7fce163353c2bcaf580 inherit pro_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a95336d2ed3b47fb8e63f76e9fe96d520 inherit pro_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">virtual bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a95336d2ed3b47fb8e63f76e9fe96d520">on_expose_event</a> (GdkEventExpose*<a class="el" href="classGtk_1_1Widget.html#aff4e0463f492043197c7d70daaad7590">event</a>)</td></tr>
<tr class="memdesc:a95336d2ed3b47fb8e63f76e9fe96d520 inherit pro_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">This is a default handler for the signal <a class="el" href="classGtk_1_1Widget.html#a1d6981c890f9bd6729864e6039c73892" title="Event triggered by window requiring a refresh. ">signal_expose_event()</a>. <a href="#a95336d2ed3b47fb8e63f76e9fe96d520">More...</a><br /></td></tr>
<tr class="separator:a95336d2ed3b47fb8e63f76e9fe96d520 inherit pro_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a7a16007876d2f9ce80f1048a4134d2ab inherit pro_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">virtual bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a7a16007876d2f9ce80f1048a4134d2ab">on_key_press_event</a> (GdkEventKey*<a class="el" href="classGtk_1_1Widget.html#aff4e0463f492043197c7d70daaad7590">event</a>)</td></tr>
<tr class="memdesc:a7a16007876d2f9ce80f1048a4134d2ab inherit pro_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">This is a default handler for the signal <a class="el" href="classGtk_1_1Widget.html#a4b64421cad754fbd49ae17cbfe4814d0" title="Event triggered by a key press will widget has focus. ">signal_key_press_event()</a>. <a href="#a7a16007876d2f9ce80f1048a4134d2ab">More...</a><br /></td></tr>
<tr class="separator:a7a16007876d2f9ce80f1048a4134d2ab inherit pro_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a290d4971b33ca83ce76924a9b360bf48 inherit pro_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">virtual bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a290d4971b33ca83ce76924a9b360bf48">on_key_release_event</a> (GdkEventKey*<a class="el" href="classGtk_1_1Widget.html#aff4e0463f492043197c7d70daaad7590">event</a>)</td></tr>
<tr class="memdesc:a290d4971b33ca83ce76924a9b360bf48 inherit pro_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">This is a default handler for the signal <a class="el" href="classGtk_1_1Widget.html#a77ed7c92e1f8d93a225d59770f810f15" title="Event triggered by a key release will widget has focus. ">signal_key_release_event()</a>. <a href="#a290d4971b33ca83ce76924a9b360bf48">More...</a><br /></td></tr>
<tr class="separator:a290d4971b33ca83ce76924a9b360bf48 inherit pro_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a6701e7bedfc493473cd62b0266a35f18 inherit pro_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">virtual bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a6701e7bedfc493473cd62b0266a35f18">on_enter_notify_event</a> (GdkEventCrossing*<a class="el" href="classGtk_1_1Widget.html#aff4e0463f492043197c7d70daaad7590">event</a>)</td></tr>
<tr class="memdesc:a6701e7bedfc493473cd62b0266a35f18 inherit pro_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">This is a default handler for the signal <a class="el" href="classGtk_1_1Widget.html#a2b6498c40a5bf7288a32e60a28f8e82b" title="Event triggered by pointer entering widget area. ">signal_enter_notify_event()</a>. <a href="#a6701e7bedfc493473cd62b0266a35f18">More...</a><br /></td></tr>
<tr class="separator:a6701e7bedfc493473cd62b0266a35f18 inherit pro_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:acdc7af3103a1e681638e20c58dbb4516 inherit pro_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">virtual bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#acdc7af3103a1e681638e20c58dbb4516">on_leave_notify_event</a> (GdkEventCrossing*<a class="el" href="classGtk_1_1Widget.html#aff4e0463f492043197c7d70daaad7590">event</a>)</td></tr>
<tr class="memdesc:acdc7af3103a1e681638e20c58dbb4516 inherit pro_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">This is a default handler for the signal <a class="el" href="classGtk_1_1Widget.html#a65146e71fa6a7607d0ec546b25c4bc37" title="Event triggered by pointer leaving widget area. ">signal_leave_notify_event()</a>. <a href="#acdc7af3103a1e681638e20c58dbb4516">More...</a><br /></td></tr>
<tr class="separator:acdc7af3103a1e681638e20c58dbb4516 inherit pro_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a6121b095c21079cb118f95c4a03fb8b8 inherit pro_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">virtual bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a6121b095c21079cb118f95c4a03fb8b8">on_configure_event</a> (GdkEventConfigure*<a class="el" href="classGtk_1_1Widget.html#aff4e0463f492043197c7d70daaad7590">event</a>)</td></tr>
<tr class="memdesc:a6121b095c21079cb118f95c4a03fb8b8 inherit pro_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">This is a default handler for the signal <a class="el" href="classGtk_1_1Widget.html#a62cc55f24729244391085a357a34535f" title="Event triggered by a window resizing. ">signal_configure_event()</a>. <a href="#a6121b095c21079cb118f95c4a03fb8b8">More...</a><br /></td></tr>
<tr class="separator:a6121b095c21079cb118f95c4a03fb8b8 inherit pro_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aad493a77d55b43f4ebff59ccff8be029 inherit pro_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">virtual bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#aad493a77d55b43f4ebff59ccff8be029">on_focus_in_event</a> (GdkEventFocus*<a class="el" href="classGtk_1_1Widget.html#aff4e0463f492043197c7d70daaad7590">event</a>)</td></tr>
<tr class="memdesc:aad493a77d55b43f4ebff59ccff8be029 inherit pro_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">This is a default handler for the signal <a class="el" href="classGtk_1_1Widget.html#a17289c13fceb88e55967d3452e488b3d">signal_focus_in_event()</a>. <a href="#aad493a77d55b43f4ebff59ccff8be029">More...</a><br /></td></tr>
<tr class="separator:aad493a77d55b43f4ebff59ccff8be029 inherit pro_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a10ef5056c2445c15490f7314d64fcc40 inherit pro_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">virtual bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a10ef5056c2445c15490f7314d64fcc40">on_focus_out_event</a> (GdkEventFocus*<a class="el" href="classGtk_1_1Widget.html#aff4e0463f492043197c7d70daaad7590">event</a>)</td></tr>
<tr class="memdesc:a10ef5056c2445c15490f7314d64fcc40 inherit pro_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">This is a default handler for the signal <a class="el" href="classGtk_1_1Widget.html#a2839983fc66ced17183d318288713bc0">signal_focus_out_event()</a>. <a href="#a10ef5056c2445c15490f7314d64fcc40">More...</a><br /></td></tr>
<tr class="separator:a10ef5056c2445c15490f7314d64fcc40 inherit pro_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a8ad7f25345295229fa603323699e4222 inherit pro_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">virtual bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a8ad7f25345295229fa603323699e4222">on_map_event</a> (GdkEventAny*<a class="el" href="classGtk_1_1Widget.html#aff4e0463f492043197c7d70daaad7590">event</a>)</td></tr>
<tr class="memdesc:a8ad7f25345295229fa603323699e4222 inherit pro_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">This is a default handler for the signal <a class="el" href="classGtk_1_1Widget.html#aea8475d6ceb7fe9646af8ff32b291c59">signal_map_event()</a>. <a href="#a8ad7f25345295229fa603323699e4222">More...</a><br /></td></tr>
<tr class="separator:a8ad7f25345295229fa603323699e4222 inherit pro_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a13ac15f50800c01a9f9d4157a00a8dd9 inherit pro_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">virtual bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a13ac15f50800c01a9f9d4157a00a8dd9">on_unmap_event</a> (GdkEventAny*<a class="el" href="classGtk_1_1Widget.html#aff4e0463f492043197c7d70daaad7590">event</a>)</td></tr>
<tr class="memdesc:a13ac15f50800c01a9f9d4157a00a8dd9 inherit pro_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">This is a default handler for the signal <a class="el" href="classGtk_1_1Widget.html#a2297b32ad646cb15f4369e2d8da366e2">signal_unmap_event()</a>. <a href="#a13ac15f50800c01a9f9d4157a00a8dd9">More...</a><br /></td></tr>
<tr class="separator:a13ac15f50800c01a9f9d4157a00a8dd9 inherit pro_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a916bc5a4f4acd2e6a2db208dce703b06 inherit pro_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">virtual bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a916bc5a4f4acd2e6a2db208dce703b06">on_property_notify_event</a> (GdkEventProperty*<a class="el" href="classGtk_1_1Widget.html#aff4e0463f492043197c7d70daaad7590">event</a>)</td></tr>
<tr class="memdesc:a916bc5a4f4acd2e6a2db208dce703b06 inherit pro_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">This is a default handler for the signal <a class="el" href="classGtk_1_1Widget.html#afabffe99bb07d943d607616067396df5">signal_property_notify_event()</a>. <a href="#a916bc5a4f4acd2e6a2db208dce703b06">More...</a><br /></td></tr>
<tr class="separator:a916bc5a4f4acd2e6a2db208dce703b06 inherit pro_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:acda39f8d60244cdf48814d3499293648 inherit pro_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">virtual bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#acda39f8d60244cdf48814d3499293648">on_selection_clear_event</a> (GdkEventSelection*<a class="el" href="classGtk_1_1Widget.html#aff4e0463f492043197c7d70daaad7590">event</a>)</td></tr>
<tr class="memdesc:acda39f8d60244cdf48814d3499293648 inherit pro_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">This is a default handler for the signal <a class="el" href="classGtk_1_1Widget.html#a2068bc5a9ca63a14e6aaca5cfc33bdf1">signal_selection_clear_event()</a>. <a href="#acda39f8d60244cdf48814d3499293648">More...</a><br /></td></tr>
<tr class="separator:acda39f8d60244cdf48814d3499293648 inherit pro_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a0874e4b083df2b5e4e3015cee111324a inherit pro_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">virtual bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a0874e4b083df2b5e4e3015cee111324a">on_selection_request_event</a> (GdkEventSelection*<a class="el" href="classGtk_1_1Widget.html#aff4e0463f492043197c7d70daaad7590">event</a>)</td></tr>
<tr class="memdesc:a0874e4b083df2b5e4e3015cee111324a inherit pro_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">This is a default handler for the signal <a class="el" href="classGtk_1_1Widget.html#a1e92c81c13f6e2a27a282bbe77e74d35">signal_selection_request_event()</a>. <a href="#a0874e4b083df2b5e4e3015cee111324a">More...</a><br /></td></tr>
<tr class="separator:a0874e4b083df2b5e4e3015cee111324a inherit pro_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:afe2ff76906c9a2919a165299bf58c25b inherit pro_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">virtual bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#afe2ff76906c9a2919a165299bf58c25b">on_selection_notify_event</a> (GdkEventSelection*<a class="el" href="classGtk_1_1Widget.html#aff4e0463f492043197c7d70daaad7590">event</a>)</td></tr>
<tr class="memdesc:afe2ff76906c9a2919a165299bf58c25b inherit pro_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">This is a default handler for the signal <a class="el" href="classGtk_1_1Widget.html#a845e5c60be94e163aef079c1d46e570d">signal_selection_notify_event()</a>. <a href="#afe2ff76906c9a2919a165299bf58c25b">More...</a><br /></td></tr>
<tr class="separator:afe2ff76906c9a2919a165299bf58c25b inherit pro_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1903d95eb70f05f785d7fb02122d3140 inherit pro_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">virtual bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a1903d95eb70f05f785d7fb02122d3140">on_proximity_in_event</a> (GdkEventProximity*<a class="el" href="classGtk_1_1Widget.html#aff4e0463f492043197c7d70daaad7590">event</a>)</td></tr>
<tr class="memdesc:a1903d95eb70f05f785d7fb02122d3140 inherit pro_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">This is a default handler for the signal <a class="el" href="classGtk_1_1Widget.html#ac55d6c116e223884077b2fcf954fda76">signal_proximity_in_event()</a>. <a href="#a1903d95eb70f05f785d7fb02122d3140">More...</a><br /></td></tr>
<tr class="separator:a1903d95eb70f05f785d7fb02122d3140 inherit pro_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a59e4784f3e50bd965012c5c2d93e03ba inherit pro_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">virtual bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a59e4784f3e50bd965012c5c2d93e03ba">on_proximity_out_event</a> (GdkEventProximity*<a class="el" href="classGtk_1_1Widget.html#aff4e0463f492043197c7d70daaad7590">event</a>)</td></tr>
<tr class="memdesc:a59e4784f3e50bd965012c5c2d93e03ba inherit pro_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">This is a default handler for the signal <a class="el" href="classGtk_1_1Widget.html#af78d794ccc1b115193b9654b548d5731">signal_proximity_out_event()</a>. <a href="#a59e4784f3e50bd965012c5c2d93e03ba">More...</a><br /></td></tr>
<tr class="separator:a59e4784f3e50bd965012c5c2d93e03ba inherit pro_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac835b0f238fc616f3218fb4cca5dc8cd inherit pro_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">virtual bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#ac835b0f238fc616f3218fb4cca5dc8cd">on_visibility_notify_event</a> (GdkEventVisibility*<a class="el" href="classGtk_1_1Widget.html#aff4e0463f492043197c7d70daaad7590">event</a>)</td></tr>
<tr class="memdesc:ac835b0f238fc616f3218fb4cca5dc8cd inherit pro_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">This is a default handler for the signal <a class="el" href="classGtk_1_1Widget.html#a10099738635bb4679da853e1c39ae270">signal_visibility_notify_event()</a>. <a href="#ac835b0f238fc616f3218fb4cca5dc8cd">More...</a><br /></td></tr>
<tr class="separator:ac835b0f238fc616f3218fb4cca5dc8cd inherit pro_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa67f67afbcfefb19d5b8376910e9d178 inherit pro_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">virtual bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#aa67f67afbcfefb19d5b8376910e9d178">on_client_event</a> (GdkEventClient*<a class="el" href="classGtk_1_1Widget.html#aff4e0463f492043197c7d70daaad7590">event</a>)</td></tr>
<tr class="memdesc:aa67f67afbcfefb19d5b8376910e9d178 inherit pro_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">This is a default handler for the signal <a class="el" href="classGtk_1_1Widget.html#acf9dfe3b1898a3629cefb0ba7fd54741">signal_client_event()</a>. <a href="#aa67f67afbcfefb19d5b8376910e9d178">More...</a><br /></td></tr>
<tr class="separator:aa67f67afbcfefb19d5b8376910e9d178 inherit pro_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2b92808a7b2840c50a43c87a6f332df2 inherit pro_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">virtual bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a2b92808a7b2840c50a43c87a6f332df2">on_no_expose_event</a> (GdkEventAny*<a class="el" href="classGtk_1_1Widget.html#aff4e0463f492043197c7d70daaad7590">event</a>)</td></tr>
<tr class="memdesc:a2b92808a7b2840c50a43c87a6f332df2 inherit pro_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">This is a default handler for the signal <a class="el" href="classGtk_1_1Widget.html#a22eb5491e45b85e1f5b07f31044945c4">signal_no_expose_event()</a>. <a href="#a2b92808a7b2840c50a43c87a6f332df2">More...</a><br /></td></tr>
<tr class="separator:a2b92808a7b2840c50a43c87a6f332df2 inherit pro_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad013a0a92d5c09e97d15e60ca320c3d6 inherit pro_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">virtual bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#ad013a0a92d5c09e97d15e60ca320c3d6">on_window_state_event</a> (GdkEventWindowState*<a class="el" href="classGtk_1_1Widget.html#aff4e0463f492043197c7d70daaad7590">event</a>)</td></tr>
<tr class="memdesc:ad013a0a92d5c09e97d15e60ca320c3d6 inherit pro_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">This is a default handler for the signal <a class="el" href="classGtk_1_1Widget.html#a916c1ac13ef5b2bea57276c982803800">signal_window_state_event()</a>. <a href="#ad013a0a92d5c09e97d15e60ca320c3d6">More...</a><br /></td></tr>
<tr class="separator:ad013a0a92d5c09e97d15e60ca320c3d6 inherit pro_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a093d16bdb3af67e50ad388028ad39877 inherit pro_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a093d16bdb3af67e50ad388028ad39877">on_selection_get</a> (<a class="el" href="classGtk_1_1SelectionData.html">SelectionData</a>& selection_data, guint info, guint time)</td></tr>
<tr class="memdesc:a093d16bdb3af67e50ad388028ad39877 inherit pro_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">This is a default handler for the signal <a class="el" href="classGtk_1_1Widget.html#a59cfc6117b73e7027a8415e11d5c1180">signal_selection_get()</a>. <a href="#a093d16bdb3af67e50ad388028ad39877">More...</a><br /></td></tr>
<tr class="separator:a093d16bdb3af67e50ad388028ad39877 inherit pro_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5f779463e0b6cb0c296c8fe1906a9cb1 inherit pro_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a5f779463e0b6cb0c296c8fe1906a9cb1">on_selection_received</a> (const <a class="el" href="classGtk_1_1SelectionData.html">SelectionData</a>& selection_data, guint time)</td></tr>
<tr class="memdesc:a5f779463e0b6cb0c296c8fe1906a9cb1 inherit pro_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">This is a default handler for the signal <a class="el" href="classGtk_1_1Widget.html#a62c73a964b52a17b68861ea09a48b8a2">signal_selection_received()</a>. <a href="#a5f779463e0b6cb0c296c8fe1906a9cb1">More...</a><br /></td></tr>
<tr class="separator:a5f779463e0b6cb0c296c8fe1906a9cb1 inherit pro_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1f0f4c703429e7d9cc53c984c3cce8ea inherit pro_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a1f0f4c703429e7d9cc53c984c3cce8ea">on_drag_begin</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGdk_1_1DragContext.html">Gdk::DragContext</a> >& context)</td></tr>
<tr class="memdesc:a1f0f4c703429e7d9cc53c984c3cce8ea inherit pro_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">This is a default handler for the signal <a class="el" href="classGtk_1_1Widget.html#a2397f2ec240e87bd928c5727790b3128" title="The drag_begin signal is emitted on the drag source when a drag is started. ">signal_drag_begin()</a>. <a href="#a1f0f4c703429e7d9cc53c984c3cce8ea">More...</a><br /></td></tr>
<tr class="separator:a1f0f4c703429e7d9cc53c984c3cce8ea inherit pro_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af2686d05ccbf4604d66c2ef4f8135896 inherit pro_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#af2686d05ccbf4604d66c2ef4f8135896">on_drag_end</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGdk_1_1DragContext.html">Gdk::DragContext</a> >& context)</td></tr>
<tr class="memdesc:af2686d05ccbf4604d66c2ef4f8135896 inherit pro_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">This is a default handler for the signal <a class="el" href="classGtk_1_1Widget.html#a3f440be428b0f89813df1fc42bb7b218" title="The drag_end signal is emitted on the drag source when a drag is finished. ">signal_drag_end()</a>. <a href="#af2686d05ccbf4604d66c2ef4f8135896">More...</a><br /></td></tr>
<tr class="separator:af2686d05ccbf4604d66c2ef4f8135896 inherit pro_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab669a88054d72d7ba5d46f0995d67a88 inherit pro_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#ab669a88054d72d7ba5d46f0995d67a88">on_drag_data_get</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGdk_1_1DragContext.html">Gdk::DragContext</a> >& context, <a class="el" href="classGtk_1_1SelectionData.html">SelectionData</a>& selection_data, guint info, guint time)</td></tr>
<tr class="memdesc:ab669a88054d72d7ba5d46f0995d67a88 inherit pro_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">This is a default handler for the signal <a class="el" href="classGtk_1_1Widget.html#a36812c942bfea5a18fc6f59b17d911fd" title="The drag_data_get signal is emitted on the drag source when the drop site requests the data which is ...">signal_drag_data_get()</a>. <a href="#ab669a88054d72d7ba5d46f0995d67a88">More...</a><br /></td></tr>
<tr class="separator:ab669a88054d72d7ba5d46f0995d67a88 inherit pro_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aea1d89dfeae08d6dacb4a4d4ba625afc inherit pro_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#aea1d89dfeae08d6dacb4a4d4ba625afc">on_drag_data_delete</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGdk_1_1DragContext.html">Gdk::DragContext</a> >& context)</td></tr>
<tr class="memdesc:aea1d89dfeae08d6dacb4a4d4ba625afc inherit pro_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">This is a default handler for the signal <a class="el" href="classGtk_1_1Widget.html#adc260796d7163f06d21e939a97140950" title="The drag_data_delete signal is emitted on the drag source when a drag with the action Gdk::ACTION_MOV...">signal_drag_data_delete()</a>. <a href="#aea1d89dfeae08d6dacb4a4d4ba625afc">More...</a><br /></td></tr>
<tr class="separator:aea1d89dfeae08d6dacb4a4d4ba625afc inherit pro_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a0df223bdbee63bda89eb53830e08245e inherit pro_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a0df223bdbee63bda89eb53830e08245e">on_drag_leave</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGdk_1_1DragContext.html">Gdk::DragContext</a> >& context, guint time)</td></tr>
<tr class="memdesc:a0df223bdbee63bda89eb53830e08245e inherit pro_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">This is a default handler for the signal <a class="el" href="classGtk_1_1Widget.html#ad6f8fc0dd0948c15bc2c42215328e8a3" title="The drag_leave signal is emitted on the drop site when the cursor leaves the widget. ">signal_drag_leave()</a>. <a href="#a0df223bdbee63bda89eb53830e08245e">More...</a><br /></td></tr>
<tr class="separator:a0df223bdbee63bda89eb53830e08245e inherit pro_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9c762bbe39ff96b631293e2d748d39d6 inherit pro_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">virtual bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a9c762bbe39ff96b631293e2d748d39d6">on_drag_motion</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGdk_1_1DragContext.html">Gdk::DragContext</a> >& context, int x, int y, guint time)</td></tr>
<tr class="memdesc:a9c762bbe39ff96b631293e2d748d39d6 inherit pro_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">This is a default handler for the signal <a class="el" href="classGtk_1_1Widget.html#af4090d0508727ceb6c0f604470f84e07" title="The drag_motion signal is emitted on the drop site when the user moves the cursor over the widget dur...">signal_drag_motion()</a>. <a href="#a9c762bbe39ff96b631293e2d748d39d6">More...</a><br /></td></tr>
<tr class="separator:a9c762bbe39ff96b631293e2d748d39d6 inherit pro_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a0bf7fc81cf1f9c9d8f74a830246f988b inherit pro_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">virtual bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a0bf7fc81cf1f9c9d8f74a830246f988b">on_drag_drop</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGdk_1_1DragContext.html">Gdk::DragContext</a> >& context, int x, int y, guint time)</td></tr>
<tr class="memdesc:a0bf7fc81cf1f9c9d8f74a830246f988b inherit pro_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">This is a default handler for the signal <a class="el" href="classGtk_1_1Widget.html#a1736c2f534581749b3c5f2714db0d28e" title="The drag_drop signal is emitted on the drop site when the user drops the data onto the widget...">signal_drag_drop()</a>. <a href="#a0bf7fc81cf1f9c9d8f74a830246f988b">More...</a><br /></td></tr>
<tr class="separator:a0bf7fc81cf1f9c9d8f74a830246f988b inherit pro_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a3db5aeb195f3bc3d59f123c624a99cd3 inherit pro_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a3db5aeb195f3bc3d59f123c624a99cd3">on_drag_data_received</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGdk_1_1DragContext.html">Gdk::DragContext</a> >& context, int x, int y, const <a class="el" href="classGtk_1_1SelectionData.html">SelectionData</a>& selection_data, guint info, guint time)</td></tr>
<tr class="memdesc:a3db5aeb195f3bc3d59f123c624a99cd3 inherit pro_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">This is a default handler for the signal <a class="el" href="classGtk_1_1Widget.html#aa9874ac0ca5550679a0322d2c5b5fba2" title="The drag_data_received signal is emitted on the drop site when the dragged data has been received...">signal_drag_data_received()</a>. <a href="#a3db5aeb195f3bc3d59f123c624a99cd3">More...</a><br /></td></tr>
<tr class="separator:a3db5aeb195f3bc3d59f123c624a99cd3 inherit pro_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a0f834bbed714c11e8bc19770d112da5c inherit pro_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">virtual <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="elRef" doxygen="atkmm-1.6.tag:http://library.gnome.org/devel/atkmm/unstable/" href="http://library.gnome.org/devel/atkmm/unstable/classAtk_1_1Object.html">Atk::Object</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a0f834bbed714c11e8bc19770d112da5c">on_get_accessible</a> ()</td></tr>
<tr class="memdesc:a0f834bbed714c11e8bc19770d112da5c inherit pro_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">This is a default handler for the signal <a class="el" href="classGtk_1_1Widget.html#a3b8bdb41171e5384429d6676f0209f50">signal_get_accessible()</a>. <a href="#a0f834bbed714c11e8bc19770d112da5c">More...</a><br /></td></tr>
<tr class="separator:a0f834bbed714c11e8bc19770d112da5c inherit pro_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:abf2193e450620fde4457b2c062fc63cb inherit pro_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#abf2193e450620fde4457b2c062fc63cb">on_screen_changed</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGdk_1_1Screen.html">Gdk::Screen</a> >& previous_screen)</td></tr>
<tr class="memdesc:abf2193e450620fde4457b2c062fc63cb inherit pro_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">This is a default handler for the signal <a class="el" href="classGtk_1_1Widget.html#af6dec49906dcdba00c175b8a97f33c39">signal_screen_changed()</a>. <a href="#abf2193e450620fde4457b2c062fc63cb">More...</a><br /></td></tr>
<tr class="separator:abf2193e450620fde4457b2c062fc63cb inherit pro_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4a9274d8a9e41788781a849987d09d26 inherit pro_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a4a9274d8a9e41788781a849987d09d26">dispatch_child_properties_changed_vfunc</a> (guint p1, GParamSpec** p2)</td></tr>
<tr class="separator:a4a9274d8a9e41788781a849987d09d26 inherit pro_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5f8e8c191ec90f857ac3fae5616b6257 inherit pro_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a5f8e8c191ec90f857ac3fae5616b6257">show_all_vfunc</a> ()</td></tr>
<tr class="separator:a5f8e8c191ec90f857ac3fae5616b6257 inherit pro_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5a054f0d84af8f18e87f9088900f5895 inherit pro_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a5a054f0d84af8f18e87f9088900f5895">hide_all_vfunc</a> ()</td></tr>
<tr class="separator:a5a054f0d84af8f18e87f9088900f5895 inherit pro_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae17892755c40b589b356e6ce8e0c5e86 inherit pro_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">virtual <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="elRef" doxygen="atkmm-1.6.tag:http://library.gnome.org/devel/atkmm/unstable/" href="http://library.gnome.org/devel/atkmm/unstable/classAtk_1_1Object.html">Atk::Object</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#ae17892755c40b589b356e6ce8e0c5e86">get_accessible_vfunc</a> ()</td></tr>
<tr class="separator:ae17892755c40b589b356e6ce8e0c5e86 inherit pro_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a00a53168b1f374abe4289950136056dd inherit pro_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a00a53168b1f374abe4289950136056dd">Widget</a> ()</td></tr>
<tr class="separator:a00a53168b1f374abe4289950136056dd inherit pro_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a3331962a5e38bf2bb107ecc3c8c24f39 inherit pro_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a3331962a5e38bf2bb107ecc3c8c24f39">realize</a> ()</td></tr>
<tr class="memdesc:a3331962a5e38bf2bb107ecc3c8c24f39 inherit pro_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Creates the GDK (windowing system) resources associated with a widget. <a href="#a3331962a5e38bf2bb107ecc3c8c24f39">More...</a><br /></td></tr>
<tr class="separator:a3331962a5e38bf2bb107ecc3c8c24f39 inherit pro_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a57f8ffcd77d8daf86534710a04f25454 inherit pro_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a57f8ffcd77d8daf86534710a04f25454">unrealize</a> ()</td></tr>
<tr class="memdesc:a57f8ffcd77d8daf86534710a04f25454 inherit pro_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">This function is only useful in widget implementations. <a href="#a57f8ffcd77d8daf86534710a04f25454">More...</a><br /></td></tr>
<tr class="separator:a57f8ffcd77d8daf86534710a04f25454 inherit pro_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a17296ea11bb985e129879c5e774b7c9f inherit pro_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a17296ea11bb985e129879c5e774b7c9f">set_mapped</a> (bool mapped=true)</td></tr>
<tr class="memdesc:a17296ea11bb985e129879c5e774b7c9f inherit pro_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Marks the widget as being realized. <a href="#a17296ea11bb985e129879c5e774b7c9f">More...</a><br /></td></tr>
<tr class="separator:a17296ea11bb985e129879c5e774b7c9f inherit pro_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a48746e48a18cf080893dd4027f1bed63 inherit pro_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a48746e48a18cf080893dd4027f1bed63">set_realized</a> (bool realized=true)</td></tr>
<tr class="memdesc:a48746e48a18cf080893dd4027f1bed63 inherit pro_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Marks the widget as being realized. <a href="#a48746e48a18cf080893dd4027f1bed63">More...</a><br /></td></tr>
<tr class="separator:a48746e48a18cf080893dd4027f1bed63 inherit pro_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aefd8a832b82c206cc798b5f541717435 inherit pro_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#aefd8a832b82c206cc798b5f541717435">style_attach</a> ()</td></tr>
<tr class="memdesc:aefd8a832b82c206cc798b5f541717435 inherit pro_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">This function attaches the widget's <a class="el" href="classGtk_1_1Style.html">Gtk::Style</a> to the widget's <a class="el" href="classGdk_1_1Window.html" title="A Gdk::Window is a rectangular region on the screen. ">Gdk::Window</a>. <a href="#aefd8a832b82c206cc798b5f541717435">More...</a><br /></td></tr>
<tr class="separator:aefd8a832b82c206cc798b5f541717435 inherit pro_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5fc1e4ff299f66b96b198c6f6cd341ca inherit pro_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a5fc1e4ff299f66b96b198c6f6cd341ca">get_child_requisition</a> (<a class="el" href="namespaceGtk.html#a5ae8be4427f5ac86ecb38401ab7e4d78">Requisition</a>& requisition) const </td></tr>
<tr class="memdesc:a5fc1e4ff299f66b96b198c6f6cd341ca inherit pro_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">This function is only for use in widget implementations. <a href="#a5fc1e4ff299f66b96b198c6f6cd341ca">More...</a><br /></td></tr>
<tr class="separator:a5fc1e4ff299f66b96b198c6f6cd341ca inherit pro_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a39df2302b6674eee8f296db1999b80e2 inherit pro_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a39df2302b6674eee8f296db1999b80e2">get_style_property_value</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>& the_property_name, <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ValueBase.html">Glib::ValueBase</a>& value) const </td></tr>
<tr class="memdesc:a39df2302b6674eee8f296db1999b80e2 inherit pro_methods_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Gets the value of a style property of <em>widget</em>. <a href="#a39df2302b6674eee8f296db1999b80e2">More...</a><br /></td></tr>
<tr class="separator:a39df2302b6674eee8f296db1999b80e2 inherit pro_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a63f7f40764edd8b668dff6431eb92387 inherit pro_methods_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a63f7f40764edd8b668dff6431eb92387">realize_if_needed</a> ()</td></tr>
<tr class="separator:a63f7f40764edd8b668dff6431eb92387 inherit pro_methods_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pro_methods_classGlib_1_1Object"><td colspan="2" onclick="javascript:toggleInherit('pro_methods_classGlib_1_1Object')"><img src="closed.png" alt="-"/> Protected Member Functions inherited from <a class="el" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html">Glib::Object</a></td></tr>
<tr class="memitem:ad43f7c5ad0336e1eb3af622392a112eb inherit pro_methods_classGlib_1_1Object"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html#ad43f7c5ad0336e1eb3af622392a112eb">Object</a> ()</td></tr>
<tr class="separator:ad43f7c5ad0336e1eb3af622392a112eb inherit pro_methods_classGlib_1_1Object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a6d72588496bd7ac03f72420021fb94a5 inherit pro_methods_classGlib_1_1Object"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html#a6d72588496bd7ac03f72420021fb94a5">Object</a> (const Glib::ConstructParams &construct_params)</td></tr>
<tr class="separator:a6d72588496bd7ac03f72420021fb94a5 inherit pro_methods_classGlib_1_1Object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a6f490eeaeb71db673c36799a0f729be5 inherit pro_methods_classGlib_1_1Object"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html#a6f490eeaeb71db673c36799a0f729be5">Object</a> (GObject *castitem)</td></tr>
<tr class="separator:a6f490eeaeb71db673c36799a0f729be5 inherit pro_methods_classGlib_1_1Object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1a156a738ca71cff3789fd6bafaf8903 inherit pro_methods_classGlib_1_1Object"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html#a1a156a738ca71cff3789fd6bafaf8903">~Object</a> () noexceptoverride</td></tr>
<tr class="separator:a1a156a738ca71cff3789fd6bafaf8903 inherit pro_methods_classGlib_1_1Object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pro_methods_classGlib_1_1ObjectBase"><td colspan="2" onclick="javascript:toggleInherit('pro_methods_classGlib_1_1ObjectBase')"><img src="closed.png" alt="-"/> Protected Member Functions inherited from <a class="el" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html">Glib::ObjectBase</a></td></tr>
<tr class="memitem:a27d3451d9ca28d6a2f00838d7c56d545 inherit pro_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a27d3451d9ca28d6a2f00838d7c56d545">ObjectBase</a> ()</td></tr>
<tr class="separator:a27d3451d9ca28d6a2f00838d7c56d545 inherit pro_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad4ef18214894c6874579313ab21d1018 inherit pro_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#ad4ef18214894c6874579313ab21d1018">ObjectBase</a> (const char *custom_type_name)</td></tr>
<tr class="separator:ad4ef18214894c6874579313ab21d1018 inherit pro_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a3d59b4d85b0ee72a727e6b2e1b31a2ff inherit pro_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a3d59b4d85b0ee72a727e6b2e1b31a2ff">ObjectBase</a> (const <a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a00947.html">std::type_info</a> &custom_type_info)</td></tr>
<tr class="separator:a3d59b4d85b0ee72a727e6b2e1b31a2ff inherit pro_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a7e2e177061f6a6e09c4cf3da49c6dfd3 inherit pro_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a7e2e177061f6a6e09c4cf3da49c6dfd3">ObjectBase</a> (<a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html">ObjectBase</a> &&src) noexcept</td></tr>
<tr class="separator:a7e2e177061f6a6e09c4cf3da49c6dfd3 inherit pro_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2e968f118314ba4d5debfd2850d18003 inherit pro_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html">ObjectBase</a> & </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a2e968f118314ba4d5debfd2850d18003">operator=</a> (<a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html">ObjectBase</a> &&src) noexcept</td></tr>
<tr class="separator:a2e968f118314ba4d5debfd2850d18003 inherit pro_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae56ec45e9ebeaacf24be4fb54ed2eea3 inherit pro_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">virtual </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#ae56ec45e9ebeaacf24be4fb54ed2eea3">~ObjectBase</a> () noexcept=0</td></tr>
<tr class="separator:ae56ec45e9ebeaacf24be4fb54ed2eea3 inherit pro_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a3faafb14c4f0ca60fbf0f5f5c4d549d0 inherit pro_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a3faafb14c4f0ca60fbf0f5f5c4d549d0">initialize</a> (GObject *castitem)</td></tr>
<tr class="separator:a3faafb14c4f0ca60fbf0f5f5c4d549d0 inherit pro_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a44ddc123cd98ed0083aa06364365c8d3 inherit pro_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a44ddc123cd98ed0083aa06364365c8d3">initialize_move</a> (GObject *castitem, <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html">Glib::ObjectBase</a> *previous_wrapper)</td></tr>
<tr class="separator:a44ddc123cd98ed0083aa06364365c8d3 inherit pro_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pro_methods_classAtk_1_1Implementor"><td colspan="2" onclick="javascript:toggleInherit('pro_methods_classAtk_1_1Implementor')"><img src="closed.png" alt="-"/> Protected Member Functions inherited from <a class="el" href="http://library.gnome.org/devel/atkmm/unstable/classAtk_1_1Implementor.html">Atk::Implementor</a></td></tr>
<tr class="memitem:a7c5105ae5d57982fa69fcacdb891e24d inherit pro_methods_classAtk_1_1Implementor"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="atkmm-1.6.tag:http://library.gnome.org/devel/atkmm/unstable/" href="http://library.gnome.org/devel/atkmm/unstable/classAtk_1_1Implementor.html#a7c5105ae5d57982fa69fcacdb891e24d">Implementor</a> ()</td></tr>
<tr class="separator:a7c5105ae5d57982fa69fcacdb891e24d inherit pro_methods_classAtk_1_1Implementor"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:acc47f90d8800b06b702ac316677283b8 inherit pro_methods_classAtk_1_1Implementor"><td class="memItemLeft" align="right" valign="top">virtual <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="elRef" doxygen="atkmm-1.6.tag:http://library.gnome.org/devel/atkmm/unstable/" href="http://library.gnome.org/devel/atkmm/unstable/classAtk_1_1Object.html">Object</a> > </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="atkmm-1.6.tag:http://library.gnome.org/devel/atkmm/unstable/" href="http://library.gnome.org/devel/atkmm/unstable/classAtk_1_1Implementor.html#acc47f90d8800b06b702ac316677283b8">ref_accessibile_vfunc</a> ()</td></tr>
<tr class="separator:acc47f90d8800b06b702ac316677283b8 inherit pro_methods_classAtk_1_1Implementor"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="related"></a>
Related Functions</h2></td></tr>
<tr><td class="ititle" colspan="2"><p>(Note that these are not member functions.) </p>
</td></tr>
<tr class="memitem:ae450767a1f7f277ee50a0acb197f3e08"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGtk_1_1Window.html">Gtk::Window</a>* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#ae450767a1f7f277ee50a0acb197f3e08">wrap</a> (GtkWindow* object, bool take_copy=false)</td></tr>
<tr class="memdesc:ae450767a1f7f277ee50a0acb197f3e08"><td class="mdescLeft"> </td><td class="mdescRight">A <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/namespaceGlib.html#a671306f4a3a0cae5ab4d7a9d54886592">Glib::wrap()</a> method for this object. <a href="#ae450767a1f7f277ee50a0acb197f3e08">More...</a><br /></td></tr>
<tr class="separator:ae450767a1f7f277ee50a0acb197f3e08"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header related_classGtk_1_1Bin"><td colspan="2" onclick="javascript:toggleInherit('related_classGtk_1_1Bin')"><img src="closed.png" alt="-"/> Related Functions inherited from <a class="el" href="classGtk_1_1Bin.html">Gtk::Bin</a></td></tr>
<tr class="memitem:a3fef7943ef681ada63356ac3ec232f90 inherit related_classGtk_1_1Bin"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGtk_1_1Bin.html">Gtk::Bin</a>* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Bin.html#a3fef7943ef681ada63356ac3ec232f90">wrap</a> (GtkBin* object, bool take_copy=false)</td></tr>
<tr class="memdesc:a3fef7943ef681ada63356ac3ec232f90 inherit related_classGtk_1_1Bin"><td class="mdescLeft"> </td><td class="mdescRight">A <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/namespaceGlib.html#a671306f4a3a0cae5ab4d7a9d54886592">Glib::wrap()</a> method for this object. <a href="#a3fef7943ef681ada63356ac3ec232f90">More...</a><br /></td></tr>
<tr class="separator:a3fef7943ef681ada63356ac3ec232f90 inherit related_classGtk_1_1Bin"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header related_classGtk_1_1Container"><td colspan="2" onclick="javascript:toggleInherit('related_classGtk_1_1Container')"><img src="closed.png" alt="-"/> Related Functions inherited from <a class="el" href="classGtk_1_1Container.html">Gtk::Container</a></td></tr>
<tr class="memitem:a965362568db379a38818c7dc23f765c6 inherit related_classGtk_1_1Container"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGtk_1_1Container.html">Gtk::Container</a>* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Container.html#a965362568db379a38818c7dc23f765c6">wrap</a> (GtkContainer* object, bool take_copy=false)</td></tr>
<tr class="memdesc:a965362568db379a38818c7dc23f765c6 inherit related_classGtk_1_1Container"><td class="mdescLeft"> </td><td class="mdescRight">A <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/namespaceGlib.html#a671306f4a3a0cae5ab4d7a9d54886592">Glib::wrap()</a> method for this object. <a href="#a965362568db379a38818c7dc23f765c6">More...</a><br /></td></tr>
<tr class="separator:a965362568db379a38818c7dc23f765c6 inherit related_classGtk_1_1Container"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header related_classGtk_1_1Widget"><td colspan="2" onclick="javascript:toggleInherit('related_classGtk_1_1Widget')"><img src="closed.png" alt="-"/> Related Functions inherited from <a class="el" href="classGtk_1_1Widget.html">Gtk::Widget</a></td></tr>
<tr class="memitem:a0372036e64e26d6847c9e121dad1ae95 inherit related_classGtk_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGtk_1_1Widget.html">Gtk::Widget</a>* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Widget.html#a0372036e64e26d6847c9e121dad1ae95">wrap</a> (GtkWidget* object, bool take_copy=false)</td></tr>
<tr class="memdesc:a0372036e64e26d6847c9e121dad1ae95 inherit related_classGtk_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">A <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/namespaceGlib.html#a671306f4a3a0cae5ab4d7a9d54886592">Glib::wrap()</a> method for this object. <a href="#a0372036e64e26d6847c9e121dad1ae95">More...</a><br /></td></tr>
<tr class="separator:a0372036e64e26d6847c9e121dad1ae95 inherit related_classGtk_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header related_classGtk_1_1Object"><td colspan="2" onclick="javascript:toggleInherit('related_classGtk_1_1Object')"><img src="closed.png" alt="-"/> Related Functions inherited from <a class="el" href="classGtk_1_1Object.html">Gtk::Object</a></td></tr>
<tr class="memitem:adad5ba1a4159e3566b2e091ef7bc2f4d inherit related_classGtk_1_1Object"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGtk_1_1Object.html">Gtk::Object</a>* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Object.html#adad5ba1a4159e3566b2e091ef7bc2f4d">wrap</a> (GtkObject* object, bool take_copy=false)</td></tr>
<tr class="memdesc:adad5ba1a4159e3566b2e091ef7bc2f4d inherit related_classGtk_1_1Object"><td class="mdescLeft"> </td><td class="mdescRight">A <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/namespaceGlib.html#a671306f4a3a0cae5ab4d7a9d54886592">Glib::wrap()</a> method for this object. <a href="#adad5ba1a4159e3566b2e091ef7bc2f4d">More...</a><br /></td></tr>
<tr class="separator:adad5ba1a4159e3566b2e091ef7bc2f4d inherit related_classGtk_1_1Object"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="inherited"></a>
Additional Inherited Members</h2></td></tr>
<tr class="inherit_header pub_types_classGtk_1_1Container"><td colspan="2" onclick="javascript:toggleInherit('pub_types_classGtk_1_1Container')"><img src="closed.png" alt="-"/> Public Types inherited from <a class="el" href="classGtk_1_1Container.html">Gtk::Container</a></td></tr>
<tr class="memitem:a1aae47f0766a743730dca5fac6126cf1 inherit pub_types_classGtk_1_1Container"><td class="memItemLeft" align="right" valign="top">typedef <a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/classsigc_1_1slot.html">sigc::slot</a>< void, <a class="el" href="classGtk_1_1Widget.html">Widget</a>& > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Container.html#a1aae47f0766a743730dca5fac6126cf1">ForeachSlot</a></td></tr>
<tr class="memdesc:a1aae47f0766a743730dca5fac6126cf1 inherit pub_types_classGtk_1_1Container"><td class="mdescLeft"> </td><td class="mdescRight">For instance, void on_foreach(Gtk::Widget* widget);. <a href="#a1aae47f0766a743730dca5fac6126cf1">More...</a><br /></td></tr>
<tr class="separator:a1aae47f0766a743730dca5fac6126cf1 inherit pub_types_classGtk_1_1Container"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pub_types_classGlib_1_1Object"><td colspan="2" onclick="javascript:toggleInherit('pub_types_classGlib_1_1Object')"><img src="closed.png" alt="-"/> Public Types inherited from <a class="el" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html">Glib::Object</a></td></tr>
<tr class="memitem:a969836f7bf4fec78eb50a1d790304d82 inherit pub_types_classGlib_1_1Object"><td class="memItemLeft" align="right" valign="top">typedef void(*)(gpointer data </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html#a969836f7bf4fec78eb50a1d790304d82">DestroyNotify</a>)</td></tr>
<tr class="separator:a969836f7bf4fec78eb50a1d790304d82 inherit pub_types_classGlib_1_1Object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pub_types_structsigc_1_1trackable"><td colspan="2" onclick="javascript:toggleInherit('pub_types_structsigc_1_1trackable')"><img src="closed.png" alt="-"/> Public Types inherited from <a class="el" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html">sigc::trackable</a></td></tr>
<tr class="memitem:a3338954d7565534bd945290b798e13ed inherit pub_types_structsigc_1_1trackable"><td class="memItemLeft" align="right" valign="top">typedef internal::func_destroy_notify </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html#a3338954d7565534bd945290b798e13ed">func_destroy_notify</a></td></tr>
<tr class="separator:a3338954d7565534bd945290b798e13ed inherit pub_types_structsigc_1_1trackable"><td class="memSeparator" colspan="2"> </td></tr>
</table>
<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2>
<div class="textblock"><p>Toplevel <a class="el" href="classGtk_1_1Window.html" title="Toplevel Window This represents all widgets which are physical windows controlled by the window manag...">Window</a> This represents all widgets which are physical windows controlled by the window manager. </p>
<p>The window will be hidden when the window manager's close button is clicked. Override <a class="el" href="classGtk_1_1Widget.html#aa97a4453ec12f7fce163353c2bcaf580" title="This is a default handler for the signal signal_delete_event(). ">on_delete_event()</a> to stop this.</p>
<p><a class="el" href="namespaceGtk.html#a753d0ddca83bd0d0decdfdcd1e93076a" title="Mark a Gtk::Object as owned by its parent container widget, so you don't need to delete it manually...">Gtk::manage()</a> has no effect on Windows because they have no parent Containers. </p>
</div><h2 class="groupheader">Constructor & Destructor Documentation</h2>
<a class="anchor" id="a00a05cbd643be38f2f231e1712c8c6d2"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual Gtk::Window::~Window </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="aa3273081166e86df1850738a17ecdb09"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">Gtk::Window::Window </td>
<td>(</td>
<td class="paramtype"><a class="el" href="group__gtkmmEnums.html#ga8c724168aabf37953fbb194b35ad250f">WindowType</a> </td>
<td class="paramname"><em>type</em> = <code><a class="el" href="group__gtkmmEnums.html#gga8c724168aabf37953fbb194b35ad250fa755ae9e09ad10c7da7b3bc6131522a05">WINDOW_TOPLEVEL</a></code></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">explicit</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<h2 class="groupheader">Member Function Documentation</h2>
<a class="anchor" id="a1ddd9d6b107a250a921140159bd90cb3"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gtk::Window::activate_default </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Activates the default widget for the window, unless the current focused widget has been configured to receive the default action (see <a class="el" href="classGtk_1_1Widget.html#a781389940fbd7baa528eee5ed6108ac5" title="Specifies whether widget will be treated as the default widget within its toplevel when it has the fo...">Gtk::Widget::set_receives_default()</a>), in which case the focused widget is activated. </p>
<dl class="section return"><dt>Returns</dt><dd><code>true</code> if a widget got activated. </dd></dl>
</div>
</div>
<a class="anchor" id="aae55e31e4dc2925ae813c31aeddfcbe4"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gtk::Window::activate_focus </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Activates the current focused widget within the window. </p>
<dl class="section return"><dt>Returns</dt><dd><code>true</code> if a widget got activated. </dd></dl>
</div>
</div>
<a class="anchor" id="ad15a4530150d8464ee06bb2218e582e9"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::Window::add_accel_group </td>
<td>(</td>
<td class="paramtype">const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGtk_1_1AccelGroup.html">AccelGroup</a> >& </td>
<td class="paramname"><em>accel_group</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Associate <em>accel_group</em> with <em>window</em>, such that calling gtk_accel_groups_activate() on <em>window</em> will activate accelerators in <em>accel_group</em>. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">accel_group</td><td>A <a class="el" href="classGtk_1_1AccelGroup.html" title="A Gtk::AccelGroup represents a group of keyboard accelerators, typically attached to a toplevel Gtk::...">Gtk::AccelGroup</a>. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a47a63388df150583cf1cef2970ecb93d"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::Window::add_mnemonic </td>
<td>(</td>
<td class="paramtype">guint </td>
<td class="paramname"><em>keyval</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="classGtk_1_1Widget.html">Widget</a>& </td>
<td class="paramname"><em>target</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Adds a mnemonic to this window. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">keyval</td><td>The mnemonic. </td></tr>
<tr><td class="paramname">target</td><td>The widget that gets activated by the mnemonic. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="aad83e3e6690a6f2a1869edd38b82b02c"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::Window::begin_move_drag </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"><em>button</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>root_x</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>root_y</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">guint32 </td>
<td class="paramname"><em>timestamp</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Starts moving a window. </p>
<p>This function is used if an application has window movement grips. When GDK can support it, the window movement will be done using the standard mechanism for the window manager or windowing system. Otherwise, GDK will try to emulate window movement, potentially not all that well, depending on the windowing system.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">button</td><td>Mouse button that initiated the drag. </td></tr>
<tr><td class="paramname">root_x</td><td>X position where the user clicked to initiate the drag, in root window coordinates. </td></tr>
<tr><td class="paramname">root_y</td><td>Y position where the user clicked to initiate the drag. </td></tr>
<tr><td class="paramname">timestamp</td><td>Timestamp from the click event that initiated the drag. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a2528d53c9ff2eb309216e2ce02e486d4"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::Window::begin_resize_drag </td>
<td>(</td>
<td class="paramtype"><a class="el" href="group__gdkmmEnums.html#gae31896bd6d904848c07ef7f929063c0c">Gdk::WindowEdge</a> </td>
<td class="paramname"><em>edge</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>button</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>root_x</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>root_y</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">guint32 </td>
<td class="paramname"><em>timestamp</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Starts resizing a window. </p>
<p>This function is used if an application has window resizing controls. When GDK can support it, the resize will be done using the standard mechanism for the window manager or windowing system. Otherwise, GDK will try to emulate window resizing, potentially not all that well, depending on the windowing system.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">button</td><td>Mouse button that initiated the drag. </td></tr>
<tr><td class="paramname">edge</td><td>Position of the resize control. </td></tr>
<tr><td class="paramname">root_x</td><td>X position where the user clicked to initiate the drag, in root window coordinates. </td></tr>
<tr><td class="paramname">root_y</td><td>Y position where the user clicked to initiate the drag. </td></tr>
<tr><td class="paramname">timestamp</td><td>Timestamp from the click event that initiated the drag. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="afd764f06b99906f6730f36ea45ad23e4"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::Window::deiconify </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Asks to deiconify (i.e. unminimize) the specified <em>window</em>. </p>
<p>Note that you shouldn't assume the window is definitely deiconified afterward, because other entities (e.g. the user or window manager) could iconify it again before your code which assumes deiconification gets to run.</p>
<p>You can track iconification via the "window-state-event" signal on <a class="el" href="classGtk_1_1Widget.html" title="Abstract Widget (Base class for all widgets) ">Gtk::Widget</a>. </p>
</div>
</div>
<a class="anchor" id="a230fe9d4577dc165d139f4d7463367ee"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">void Gtk::Window::destroy_ </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="a2343d2ece18fc8cf4db9e9de4764f386"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::Window::fullscreen </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Asks to place <em>window</em> in the fullscreen state. </p>
<p>Note that you shouldn't assume the window is definitely full screen afterward, because other entities (e.g. the user or window manager) could unfullscreen it again, and not all window managers honor requests to fullscreen windows. But normally the window will end up fullscreen. Just don't write code that crashes if not.</p>
<p>You can track the fullscreen state via the "window-state-event" signal on <a class="el" href="classGtk_1_1Widget.html" title="Abstract Widget (Base class for all widgets) ">Gtk::Widget</a>.</p>
<dl class="since_2_2"><dt><b><a class="el" href="since_2_2.html#_since_2_2000131">Since gtkmm 2.2:</a></b></dt><dd></dd></dl>
</div>
</div>
<a class="anchor" id="a30de41223b51216f573305b03c6e20ba"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a><<a class="el" href="classGtk_1_1AccelGroup.html">AccelGroup</a>> Gtk::Window::get_accel_group </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns a default accel group for this window This is a gtkmm-specific function. </p>
<p>This accel group can not be removed. </p>
</div>
</div>
<a class="anchor" id="a43e546a1678f86f0b4165eb9a9076775"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gtk::Window::get_accept_focus </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Gets the value set by <a class="el" href="classGtk_1_1Window.html#a9fc2a01d8aa1ab126060d9f363b5d8c5" title="Windows may set a hint asking the desktop environment not to receive the input focus. ">set_accept_focus()</a>. </p>
<dl class="since_2_4"><dt><b><a class="el" href="since_2_4.html#_since_2_4000338">Since gtkmm 2.4:</a></b></dt><dd></dd></dl>
<dl class="section return"><dt>Returns</dt><dd><code>true</code> if window should receive the input focus. </dd></dl>
</div>
</div>
<a class="anchor" id="aa20c5dafc990ba10d8cce9d152848ce9"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gtk::Window::get_decorated </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns whether the window has been set to have decorations such as a title bar via <a class="el" href="classGtk_1_1Window.html#a67adb1d8051a38e0e5272f141bb8778c" title="By default, windows are decorated with a title bar, resize controls, etc. ">set_decorated()</a>. </p>
<dl class="section return"><dt>Returns</dt><dd><code>true</code> if the window has been set to have decorations. </dd></dl>
</div>
</div>
<a class="anchor" id="a6d5bdd6304e51b30d6c5167228164dce"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">static <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ListHandle.html">Glib::ListHandle</a>< <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a><<a class="el" href="classGdk_1_1Pixbuf.html">Gdk::Pixbuf</a>> > Gtk::Window::get_default_icon_list </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Gets the value set by <a class="el" href="classGtk_1_1Window.html#a7061612826fd86c5a1386091ddc4be31" title="Sets an icon list to be used as fallback for windows that haven't had set_icon_list() called on them ...">Gtk::Window::set_default_icon_list()</a>. </p>
<dl class="section return"><dt>Returns</dt><dd>Copy of default icon list. </dd></dl>
</div>
</div>
<a class="anchor" id="a055c345c2d2c0c5814d3792d912aeed7"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::Window::get_default_size </td>
<td>(</td>
<td class="paramtype">int & </td>
<td class="paramname"><em>width</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int & </td>
<td class="paramname"><em>height</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Gets the default size of the window. </p>
<p>A value of -1 for the width or height indicates that a default size has not been explicitly set for that dimension, so the "natural" size of the window will be used.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">width</td><td>Location to store the default width. </td></tr>
<tr><td class="paramname">height</td><td>Location to store the default height. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a49477f0c880d7fd0190505858d8e08bb"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gtk::Window::get_deletable </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns whether the window has been set to have a close button via <a class="el" href="classGtk_1_1Window.html#a986276f116d90d61f00bb50d2f87d69c" title="By default, windows have a close button in the window frame. ">set_deletable()</a>. </p>
<dl class="since_2_10"><dt><b><a class="el" href="since_2_10.html#_since_2_10000344">Since gtkmm 2.10:</a></b></dt><dd></dd></dl>
<dl class="section return"><dt>Returns</dt><dd><code>true</code> if the window has been set to have a close button. </dd></dl>
</div>
</div>
<a class="anchor" id="a0cde210bd450e6dfcf59f9104e66860c"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gtk::Window::get_destroy_with_parent </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns whether the window will be destroyed with its transient parent. </p>
<p>See set_destroy_with_parent().</p>
<dl class="section return"><dt>Returns</dt><dd><code>true</code> if the window will be destroyed with its transient parent. </dd></dl>
</div>
</div>
<a class="anchor" id="a1997d080c805ba2e2e6821781992c54b"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classGtk_1_1Widget.html">Widget</a>* Gtk::Window::get_focus </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Retrieves the current focused widget within the window. </p>
<p>Note that this is the widget that would have the focus if the toplevel window focused; if the toplevel window is not focused then <code>gtk_widget_has_focus (widget)</code> will not be <code>true</code> for the widget.</p>
<dl class="section return"><dt>Returns</dt><dd>The currently focused widget, or <code>nullptr</code> if there is none. </dd></dl>
</div>
</div>
<a class="anchor" id="a7e697a9060ae5994631f5e00762304cf"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">const <a class="el" href="classGtk_1_1Widget.html">Widget</a>* Gtk::Window::get_focus </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Retrieves the current focused widget within the window. </p>
<p>Note that this is the widget that would have the focus if the toplevel window focused; if the toplevel window is not focused then <code>gtk_widget_has_focus (widget)</code> will not be <code>true</code> for the widget.</p>
<dl class="section return"><dt>Returns</dt><dd>The currently focused widget, or <code>nullptr</code> if there is none. </dd></dl>
</div>
</div>
<a class="anchor" id="a2dc043bb88d969715793415e84cd6a04"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gtk::Window::get_focus_on_map </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Gets the value set by <a class="el" href="classGtk_1_1Window.html#a3a2c87ab12bb354d4ac0262748fb6aea" title="Windows may set a hint asking the desktop environment not to receive the input focus when the window ...">set_focus_on_map()</a>. </p>
<dl class="since_2_6"><dt><b><a class="el" href="since_2_6.html#_since_2_6000163">Since gtkmm 2.6:</a></b></dt><dd></dd></dl>
<dl class="section return"><dt>Returns</dt><dd><code>true</code> if window should receive the input focus when mapped. </dd></dl>
</div>
</div>
<a class="anchor" id="a5f8db9bfe5bd90300152272692a6b0d6"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a><<a class="el" href="classGdk_1_1Window.html">Gdk::Window</a>> Gtk::Window::get_frame </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<dl class="deprecated"><dt><b><a class="el" href="deprecated.html#_deprecated000160">Deprecated:</a></b></dt><dd>You should not need to call this method.</dd></dl>
</div>
</div>
<a class="anchor" id="a5d2bf8f0f11ab1aff43cfba8e083d4bf"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a><const <a class="el" href="classGdk_1_1Window.html">Gdk::Window</a>> Gtk::Window::get_frame </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="af714d5a1e1c87ccb911558f1d0b95b0c"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::Window::get_frame_dimensions </td>
<td>(</td>
<td class="paramtype">int & </td>
<td class="paramname"><em>left</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int & </td>
<td class="paramname"><em>top</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int & </td>
<td class="paramname"><em>right</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int & </td>
<td class="paramname"><em>bottom</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>(Note: this is a special-purpose function intended for the framebuffer port; see <a class="el" href="classGtk_1_1Window.html#a7cf0d119b57e73136353ef075eca5d26" title="(Note: this is a special-purpose function for the framebuffer port, that causes GTK+ to draw its own ...">set_has_frame()</a>. </p>
<p>It will not return the size of the window border drawn by the window manager, which is the normal case when using a windowing system. See gdk_window_get_frame_extents() to get the standard window border extents.)</p>
<p>Retrieves the dimensions of the frame window for this toplevel. See <a class="el" href="classGtk_1_1Window.html#a7cf0d119b57e73136353ef075eca5d26" title="(Note: this is a special-purpose function for the framebuffer port, that causes GTK+ to draw its own ...">set_has_frame()</a>, <a class="el" href="classGtk_1_1Window.html#a17dad6dfdbf039ce8a54a04f80ea8477" title="(Note: this is a special-purpose function intended for the framebuffer port; see set_has_frame(). ">set_frame_dimensions()</a>.</p>
<p>Deprecated: 2.24: This function will be removed in GTK+ 3</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">left</td><td>Location to store the width of the frame at the left. </td></tr>
<tr><td class="paramname">top</td><td>Location to store the height of the frame at the top. </td></tr>
<tr><td class="paramname">right</td><td>Location to store the width of the frame at the returns. </td></tr>
<tr><td class="paramname">bottom</td><td>Location to store the height of the frame at the bottom. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a6d7031408bc8d6b18d6d30bd0b1c69e3"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="group__gdkmmEnums.html#ga1bb9235871d434d3c55411d8261b075e">Gdk::Gravity</a> Gtk::Window::get_gravity </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Gets the value set by <a class="el" href="classGtk_1_1Window.html#a0ba6f596398c8685fa5535c77c2c9184" title="Window gravity defines the meaning of coordinates passed to move(). ">set_gravity()</a>. </p>
<dl class="section return"><dt>Returns</dt><dd><a class="el" href="classGtk_1_1Window.html" title="Toplevel Window This represents all widgets which are physical windows controlled by the window manag...">Window</a> gravity. </dd></dl>
</div>
</div>
<a class="anchor" id="a620c3988fd31c158bd03222db7a8d804"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a><<a class="el" href="classGtk_1_1WindowGroup.html">WindowGroup</a>> Gtk::Window::get_group </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns the group for <em>window</em> or the default group, if <em>window</em> is <code>nullptr</code> or if <em>window</em> does not have an explicit window group. </p>
<dl class="since_2_10"><dt><b><a class="el" href="since_2_10.html#_since_2_10000345">Since gtkmm 2.10:</a></b></dt><dd></dd></dl>
<dl class="section return"><dt>Returns</dt><dd>The <a class="el" href="classGtk_1_1WindowGroup.html" title="Limit the effect of grabs. ">Gtk::WindowGroup</a> for a window or the default group. </dd></dl>
</div>
</div>
<a class="anchor" id="a042da43137619606cb8639b22c3f5c43"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a><const <a class="el" href="classGtk_1_1WindowGroup.html">WindowGroup</a>> Gtk::Window::get_group </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns the group for <em>window</em> or the default group, if <em>window</em> is <code>nullptr</code> or if <em>window</em> does not have an explicit window group. </p>
<dl class="since_2_10"><dt><b><a class="el" href="since_2_10.html#_since_2_10000346">Since gtkmm 2.10:</a></b></dt><dd></dd></dl>
<dl class="section return"><dt>Returns</dt><dd>The <a class="el" href="classGtk_1_1WindowGroup.html" title="Limit the effect of grabs. ">Gtk::WindowGroup</a> for a window or the default group. </dd></dl>
</div>
</div>
<a class="anchor" id="aa065a7c4bc331cb07221d8365738afbc"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gtk::Window::get_has_frame </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Accessor for whether the window has a frame window exterior to <em>window->window</em>. </p>
<p>Gets the value set by <a class="el" href="classGtk_1_1Window.html#a7cf0d119b57e73136353ef075eca5d26" title="(Note: this is a special-purpose function for the framebuffer port, that causes GTK+ to draw its own ...">set_has_frame()</a>.</p>
<p>Deprecated: 2.24: This function will be removed in GTK+ 3</p>
<dl class="section return"><dt>Returns</dt><dd><code>true</code> if a frame has been added to the window via <a class="el" href="classGtk_1_1Window.html#a7cf0d119b57e73136353ef075eca5d26" title="(Note: this is a special-purpose function for the framebuffer port, that causes GTK+ to draw its own ...">set_has_frame()</a>. </dd></dl>
</div>
</div>
<a class="anchor" id="a807394d193c3605b8922cae7385fdc06"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a><<a class="el" href="classGdk_1_1Pixbuf.html">Gdk::Pixbuf</a>> Gtk::Window::get_icon </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Gets the value set by <a class="el" href="classGtk_1_1Window.html#af8da32d981bcf1992d3d2361a9aec894" title="Sets up the icon representing a Gtk::Window. ">set_icon()</a> (or if you've called <a class="el" href="classGtk_1_1Window.html#a81ad667e5c42dada1dc24fafae7d81c5" title="Sets up the icon representing a Gtk::Window. ">set_icon_list()</a>, gets the first icon in the icon list). </p>
<dl class="section return"><dt>Returns</dt><dd>Icon for window. </dd></dl>
</div>
</div>
<a class="anchor" id="a68c50f90a51b2b7dc09538afa18da1cb"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a><const <a class="el" href="classGdk_1_1Pixbuf.html">Gdk::Pixbuf</a>> Gtk::Window::get_icon </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Gets the value set by <a class="el" href="classGtk_1_1Window.html#af8da32d981bcf1992d3d2361a9aec894" title="Sets up the icon representing a Gtk::Window. ">set_icon()</a> (or if you've called <a class="el" href="classGtk_1_1Window.html#a81ad667e5c42dada1dc24fafae7d81c5" title="Sets up the icon representing a Gtk::Window. ">set_icon_list()</a>, gets the first icon in the icon list). </p>
<dl class="section return"><dt>Returns</dt><dd>Icon for window. </dd></dl>
</div>
</div>
<a class="anchor" id="a8138bd38733751663bffbcd49f74c418"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ListHandle.html">Glib::ListHandle</a>< <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a><<a class="el" href="classGdk_1_1Pixbuf.html">Gdk::Pixbuf</a>> > Gtk::Window::get_icon_list </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Retrieves the list of icons set by <a class="el" href="classGtk_1_1Window.html#a81ad667e5c42dada1dc24fafae7d81c5" title="Sets up the icon representing a Gtk::Window. ">set_icon_list()</a>. </p>
<p>The list is copied, but the reference count on each member won't be incremented.</p>
<dl class="section return"><dt>Returns</dt><dd>Copy of window's icon list. </dd></dl>
</div>
</div>
<a class="anchor" id="ac1fc3b01c76dfc9436a23aa47221524b"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ListHandle.html">Glib::ListHandle</a>< <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a><const <a class="el" href="classGdk_1_1Pixbuf.html">Gdk::Pixbuf</a>> > Gtk::Window::get_icon_list </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Retrieves the list of icons set by <a class="el" href="classGtk_1_1Window.html#a81ad667e5c42dada1dc24fafae7d81c5" title="Sets up the icon representing a Gtk::Window. ">set_icon_list()</a>. </p>
<p>The list is copied, but the reference count on each member won't be incremented.</p>
<dl class="section return"><dt>Returns</dt><dd>Copy of window's icon list. </dd></dl>
</div>
</div>
<a class="anchor" id="afac8ae8360168fbc9466947aa985d7ef"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> Gtk::Window::get_icon_name </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns the name of the themed icon for the window, see <a class="el" href="classGtk_1_1Window.html#a80a7d07b5d126a17206a770d134c76c0" title="Sets the icon for the window from a named themed icon. ">set_icon_name()</a>. </p>
<dl class="since_2_6"><dt><b><a class="el" href="since_2_6.html#_since_2_6000165">Since gtkmm 2.6:</a></b></dt><dd></dd></dl>
<dl class="section return"><dt>Returns</dt><dd>The icon name or <code>nullptr</code> if the window has no themed icon. </dd></dl>
</div>
</div>
<a class="anchor" id="ab6ebf5365ba765657aa69d6f14a42406"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="group__gdkmmEnums.html#ga734c2979005c87dbe51223a0128cdd97">Gdk::ModifierType</a> Gtk::Window::get_mnemonic_modifier </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns the mnemonic modifier for this window. </p>
<p>See <a class="el" href="classGtk_1_1Window.html#aa9e48f426c507de6ef00efabf25ab9b3" title="Sets the mnemonic modifier for this window. ">set_mnemonic_modifier()</a>.</p>
<dl class="section return"><dt>Returns</dt><dd>The modifier mask used to activate mnemonics on this window. </dd></dl>
</div>
</div>
<a class="anchor" id="ad4116f9a6c86303e793869e91977ea19"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gtk::Window::get_mnemonics_visible </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="a856066475ff362ddadca9559afc33728"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gtk::Window::get_modal </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns whether the window is modal. </p>
<p>See <a class="el" href="classGtk_1_1Window.html#a1f70b3c35e8c477ab3c1f9503a37a6a1" title="Sets a window modal or non-modal. ">set_modal()</a>.</p>
<dl class="section return"><dt>Returns</dt><dd><code>true</code> if the window is set to be modal and establishes a grab when shown. </dd></dl>
</div>
</div>
<a class="anchor" id="a228fc868afdf6c88b0dfbe03be29723e"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">double Gtk::Window::get_opacity </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Fetches the requested opacity for this window. </p>
<p>See <a class="el" href="classGtk_1_1Window.html#a54af1fe27d57afc59744862a9ef922f1" title="Request the windowing system to make window partially transparent, with opacity 0 being fully transpa...">set_opacity()</a>.</p>
<dl class="since_2_12"><dt><b><a class="el" href="since_2_12.html#_since_2_12000135">Since gtkmm 2.12:</a></b></dt><dd></dd></dl>
<dl class="section return"><dt>Returns</dt><dd>The requested opacity for this window. </dd></dl>
</div>
</div>
<a class="anchor" id="ad3a063730ccbf0e4fa26f89e220f55e4"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::Window::get_position </td>
<td>(</td>
<td class="paramtype">int & </td>
<td class="paramname"><em>root_x</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int & </td>
<td class="paramname"><em>root_y</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>This function returns the position you need to pass to <a class="el" href="classGtk_1_1Window.html#aabece927b3c31478f0d22a437d340b62" title="Asks the window manager to move window to the given position. ">move()</a> to keep <em>window</em> in its current position. </p>
<p>This means that the meaning of the returned value varies with window gravity. See <a class="el" href="classGtk_1_1Window.html#aabece927b3c31478f0d22a437d340b62" title="Asks the window manager to move window to the given position. ">move()</a> for more details.</p>
<p>If you haven't changed the window gravity, its gravity will be <a class="el" href="group__gdkmmEnums.html#gga1bb9235871d434d3c55411d8261b075eae18dc80dbede5c1e9b86c3184842f5cf">Gdk::GRAVITY_NORTH_WEST</a>. This means that <a class="el" href="classGtk_1_1Window.html#ad3a063730ccbf0e4fa26f89e220f55e4" title="This function returns the position you need to pass to move() to keep window in its current position...">get_position()</a> gets the position of the top-left corner of the window manager frame for the window. <a class="el" href="classGtk_1_1Window.html#aabece927b3c31478f0d22a437d340b62" title="Asks the window manager to move window to the given position. ">move()</a> sets the position of this same top-left corner.</p>
<p><a class="el" href="classGtk_1_1Window.html#ad3a063730ccbf0e4fa26f89e220f55e4" title="This function returns the position you need to pass to move() to keep window in its current position...">get_position()</a> is not 100% reliable because the X Window System does not specify a way to obtain the geometry of the decorations placed on a window by the window manager. Thus GTK+ is using a "best guess" that works with most window managers.</p>
<p>Moreover, nearly all window managers are historically broken with respect to their handling of window gravity. So moving a window to its current position as returned by <a class="el" href="classGtk_1_1Window.html#ad3a063730ccbf0e4fa26f89e220f55e4" title="This function returns the position you need to pass to move() to keep window in its current position...">get_position()</a> tends to result in moving the window slightly. Window managers are slowly getting better over time.</p>
<p>If a window has gravity <a class="el" href="group__gdkmmEnums.html#gga1bb9235871d434d3c55411d8261b075ea65b74e512a802210f8a1f65154e3ef3f">Gdk::GRAVITY_STATIC</a> the window manager frame is not relevant, and thus <a class="el" href="classGtk_1_1Window.html#ad3a063730ccbf0e4fa26f89e220f55e4" title="This function returns the position you need to pass to move() to keep window in its current position...">get_position()</a> will always produce accurate results. However you can't use static gravity to do things like place a window in a corner of the screen, because static gravity ignores the window manager decorations.</p>
<p>If you are saving and restoring your application's window positions, you should know that it's impossible for applications to do this without getting it somewhat wrong because applications do not have sufficient knowledge of window manager state. The Correct Mechanism is to support the session management protocol (see the "GnomeClient" object in the GNOME libraries for example) and allow the window manager to save your window sizes and positions.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">root_x</td><td>Return location for X coordinate of gravity-determined reference point. </td></tr>
<tr><td class="paramname">root_y</td><td>Return location for Y coordinate of gravity-determined reference point. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a08da78e575d5da70a28b33e5bdfef8f3"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gtk::Window::get_resizable </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Gets the value set by <a class="el" href="classGtk_1_1Window.html#a1ec816449fe941e5fe330bfa509eeb7f" title="Sets whether the user can resize a window. ">set_resizable()</a>. </p>
<dl class="section return"><dt>Returns</dt><dd><code>true</code> if the user can resize the window. </dd></dl>
</div>
</div>
<a class="anchor" id="a68ab33adf52b35794667839954a6460e"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> Gtk::Window::get_role </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns the role of the window. </p>
<p>See <a class="el" href="classGtk_1_1Window.html#a0bc20c48120eb7ea4fc5e6170da050db" title="This function is only useful on X11, not with other GTK+ targets. ">set_role()</a> for further explanation.</p>
<dl class="section return"><dt>Returns</dt><dd>The role of the window if set, or <code>nullptr</code>. The returned is owned by the widget and must not be modified or freed. </dd></dl>
</div>
</div>
<a class="anchor" id="a46de90efae27ecd474f3c7855ace3d3f"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a><<a class="el" href="classGdk_1_1Screen.html">Gdk::Screen</a>> Gtk::Window::get_screen </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns the <a class="el" href="classGdk_1_1Screen.html" title="Object representing a physical screen Gdk::Screen objects are the GDK representation of a physical sc...">Gdk::Screen</a> associated with <em>window</em>. </p>
<dl class="since_2_2"><dt><b><a class="el" href="since_2_2.html#_since_2_2000127">Since gtkmm 2.2:</a></b></dt><dd></dd></dl>
<dl class="section return"><dt>Returns</dt><dd>A <a class="el" href="classGdk_1_1Screen.html" title="Object representing a physical screen Gdk::Screen objects are the GDK representation of a physical sc...">Gdk::Screen</a>. </dd></dl>
</div>
</div>
<a class="anchor" id="ad538e5c73635b06327ef18d3225f6e80"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a><const <a class="el" href="classGdk_1_1Screen.html">Gdk::Screen</a>> Gtk::Window::get_screen </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns the <a class="el" href="classGdk_1_1Screen.html" title="Object representing a physical screen Gdk::Screen objects are the GDK representation of a physical sc...">Gdk::Screen</a> associated with <em>window</em>. </p>
<dl class="since_2_2"><dt><b><a class="el" href="since_2_2.html#_since_2_2000128">Since gtkmm 2.2:</a></b></dt><dd></dd></dl>
<dl class="section return"><dt>Returns</dt><dd>A <a class="el" href="classGdk_1_1Screen.html" title="Object representing a physical screen Gdk::Screen objects are the GDK representation of a physical sc...">Gdk::Screen</a>. </dd></dl>
</div>
</div>
<a class="anchor" id="a34c05f04c75ef2acc745b585259632a2"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::Window::get_size </td>
<td>(</td>
<td class="paramtype">int & </td>
<td class="paramname"><em>width</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int & </td>
<td class="paramname"><em>height</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Obtains the current size of <em>window</em>. </p>
<p>If <em>window</em> is not onscreen, it returns the size GTK+ will suggest to the window manager for the initial window size (but this is not reliably the same as the size the window manager will actually select). The size obtained by <a class="el" href="classGtk_1_1Window.html#a34c05f04c75ef2acc745b585259632a2" title="Obtains the current size of window. ">get_size()</a> is the last size received in a Gdk::EventConfigure, that is, GTK+ uses its locally-stored size, rather than querying the X server for the size. As a result, if you call <a class="el" href="classGtk_1_1Window.html#ad6d1fc27730d7f26402a1924c3495787" title="Resizes the window as if the user had done so, obeying geometry constraints. ">resize()</a> then immediately call <a class="el" href="classGtk_1_1Window.html#a34c05f04c75ef2acc745b585259632a2" title="Obtains the current size of window. ">get_size()</a>, the size won't have taken effect yet. After the window manager processes the resize request, GTK+ receives notification that the size has changed via a configure event, and the size of the window gets updated.</p>
<dl class="section note"><dt>Note</dt><dd>Nearly any use of this function creates a race condition, because the size of the window may change between the time that you get the size and the time that you perform some action assuming that size is the current size. To avoid race conditions, connect to "configure-event" on the window and adjust your size-dependent state to match the size delivered in the Gdk::EventConfigure.</dd>
<dd>
The returned size does <em>not</em> include the size of the window manager decorations (aka the window frame or border). Those are not drawn by GTK+ and GTK+ has no reliable method of determining their size.</dd>
<dd>
If you are getting a window size in order to position the window onscreen, there may be a better way. The preferred way is to simply set the window's semantic type with <a class="el" href="classGtk_1_1Window.html#a61321cd59c3630d1b9f0c07781a6029b" title="By setting the type hint for the window, you allow the window manager to decorate and handle the wind...">set_type_hint()</a>, which allows the window manager to e.g. center dialogs. Also, if you set the transient parent of dialogs with <a class="el" href="classGtk_1_1Window.html#a4dc2db7c44546300a7843314cfa21bc8" title="Dialog windows should be set transient for the main application window they were spawned from...">set_transient_for()</a> window managers will often center the dialog over its parent window. It's much preferred to let the window manager handle these things rather than doing it yourself, because all apps will behave consistently and according to user prefs if the window manager handles it. Also, the window manager can take the size of the window decorations/border into account, while your application cannot.</dd></dl>
<p>In any case, if you insist on application-specified window positioning, there's <em>still</em> a better way than doing it yourself - <a class="el" href="classGtk_1_1Window.html#ace2f64d36b5c1574073fc7c6e03df7a3" title="Sets a position constraint for this window. ">set_position()</a> will frequently handle the details for you.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">width</td><td>Return location for width. </td></tr>
<tr><td class="paramname">height</td><td>Return location for height. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="ae6cfb5d9e6cbefd5de869c4b777e314e"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gtk::Window::get_skip_pager_hint </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Gets the value set by <a class="el" href="classGtk_1_1Window.html#a4cdea59994940ba8edc41f17e31f31a9" title="Windows may set a hint asking the desktop environment not to display the window in the pager...">set_skip_pager_hint()</a>. </p>
<dl class="since_2_2"><dt><b><a class="el" href="since_2_2.html#_since_2_2000125">Since gtkmm 2.2:</a></b></dt><dd></dd></dl>
<dl class="section return"><dt>Returns</dt><dd><code>true</code> if window shouldn't be in pager. </dd></dl>
</div>
</div>
<a class="anchor" id="ad291d4cf458b10577015f8a0efae2811"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gtk::Window::get_skip_taskbar_hint </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Gets the value set by <a class="el" href="classGtk_1_1Window.html#a0b88348a3d7c69b8930a0e2e11a63a88" title="Windows may set a hint asking the desktop environment not to display the window in the task bar...">set_skip_taskbar_hint()</a> </p>
<dl class="since_2_2"><dt><b><a class="el" href="since_2_2.html#_since_2_2000123">Since gtkmm 2.2:</a></b></dt><dd></dd></dl>
<dl class="section return"><dt>Returns</dt><dd><code>true</code> if window shouldn't be in taskbar. </dd></dl>
</div>
</div>
<a class="anchor" id="aaf6a808dccae2fc202e2a3cb2d57210d"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> Gtk::Window::get_title </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Retrieves the title of the window. </p>
<p>See <a class="el" href="classGtk_1_1Window.html#a10c072ee6b41d5eea0002d986aa03c07" title="Sets the title of the Gtk::Window. ">set_title()</a>.</p>
<dl class="section return"><dt>Returns</dt><dd>The title of the window, or <code>nullptr</code> if none has been set explicitely. The returned string is owned by the widget and must not be modified or freed. </dd></dl>
</div>
</div>
<a class="anchor" id="a3188cb795d9ad419d69cf24f55d1381b"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classGtk_1_1Window.html">Window</a>* Gtk::Window::get_transient_for </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Fetches the transient parent for this window. </p>
<p>See <a class="el" href="classGtk_1_1Window.html#a4dc2db7c44546300a7843314cfa21bc8" title="Dialog windows should be set transient for the main application window they were spawned from...">set_transient_for()</a>.</p>
<dl class="section return"><dt>Returns</dt><dd>The transient parent for this window, or <code>nullptr</code> if no transient parent has been set. </dd></dl>
</div>
</div>
<a class="anchor" id="a0ccef655a1467db95eeb3c5257135f5b"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">const <a class="el" href="classGtk_1_1Window.html">Window</a>* Gtk::Window::get_transient_for </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Fetches the transient parent for this window. </p>
<p>See <a class="el" href="classGtk_1_1Window.html#a4dc2db7c44546300a7843314cfa21bc8" title="Dialog windows should be set transient for the main application window they were spawned from...">set_transient_for()</a>.</p>
<dl class="section return"><dt>Returns</dt><dd>The transient parent for this window, or <code>nullptr</code> if no transient parent has been set. </dd></dl>
</div>
</div>
<a class="anchor" id="a177088eca35e1f270543941c6855b680"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="group__gdkmmEnums.html#ga1f75a8db0f289997ac16bba0891776c9">Gdk::WindowTypeHint</a> Gtk::Window::get_type_hint </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Gets the type hint for this window. </p>
<p>See <a class="el" href="classGtk_1_1Window.html#a61321cd59c3630d1b9f0c07781a6029b" title="By setting the type hint for the window, you allow the window manager to decorate and handle the wind...">set_type_hint()</a>.</p>
<dl class="section return"><dt>Returns</dt><dd>The type hint for <em>window</em>. </dd></dl>
</div>
</div>
<a class="anchor" id="aa90d7ada4335bf2f35461696ef2297d8"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gtk::Window::get_urgency_hint </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Gets the value set by <a class="el" href="classGtk_1_1Window.html#afd7971d45db2936c2102faaa57e55279" title="Windows may set a hint asking the desktop environment to draw the users attention to the window...">set_urgency_hint()</a> </p>
<dl class="since_2_8"><dt><b><a class="el" href="since_2_8.html#_since_2_8000057">Since gtkmm 2.8:</a></b></dt><dd></dd></dl>
<dl class="section return"><dt>Returns</dt><dd><code>true</code> if window is urgent. </dd></dl>
</div>
</div>
<a class="anchor" id="a4acaad013ade234eb2b83d636f14a998"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="group__gtkmmEnums.html#ga8c724168aabf37953fbb194b35ad250f">WindowType</a> Gtk::Window::get_window_type </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Gets the type of the window. </p>
<p>See <a class="el" href="group__gtkmmEnums.html#ga8c724168aabf37953fbb194b35ad250f">Gtk::WindowType</a>.</p>
<dl class="since_2_20"><dt><b><a class="el" href="since_2_20.html#_since_2_20000099">Since gtkmm 2.20:</a></b></dt><dd></dd></dl>
<dl class="section return"><dt>Returns</dt><dd>The type of the window. </dd></dl>
</div>
</div>
<a class="anchor" id="a467102527550b51eb4036390caeedb5c"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">GtkWindow* Gtk::Window::gobj </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Provides access to the underlying C GtkObject. </p>
</div>
</div>
<a class="anchor" id="afe314a1e65505be026688060dc98ad3a"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">const GtkWindow* Gtk::Window::gobj </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Provides access to the underlying C GtkObject. </p>
</div>
</div>
<a class="anchor" id="a4fc7d8adb9059f51d4b9216b755e30e2"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::Window::iconify </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Asks to iconify (i.e. minimize) the specified <em>window</em>. </p>
<p>Note that you shouldn't assume the window is definitely iconified afterward, because other entities (e.g. the user or window manager) could deiconify it again, or there may not be a window manager in which case iconification isn't possible, etc. But normally the window will end up iconified. Just don't write code that crashes if not.</p>
<p>It's permitted to call this function before showing a window, in which case the window will be iconified before it ever appears onscreen.</p>
<p>You can track iconification via the "window-state-event" signal on <a class="el" href="classGtk_1_1Widget.html" title="Abstract Widget (Base class for all widgets) ">Gtk::Widget</a>. </p>
</div>
</div>
<a class="anchor" id="a24dc3ad6da6c8342ba5ca0fd87d2340e"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gtk::Window::is_popup </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<dl class="deprecated"><dt><b><a class="el" href="deprecated.html#_deprecated000159">Deprecated:</a></b></dt><dd>Use <a class="el" href="classGtk_1_1Window.html#a4acaad013ade234eb2b83d636f14a998" title="Gets the type of the window. ">get_window_type()</a>.</dd></dl>
</div>
</div>
<a class="anchor" id="a932b1c81b9c0559a60ba2b8c2b1ce179"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gtk::Window::is_toplevel </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<dl class="deprecated"><dt><b><a class="el" href="deprecated.html#_deprecated000158">Deprecated:</a></b></dt><dd>Use <a class="el" href="classGtk_1_1Widget.html#a06d954e357299ff48ed2ebe157dbe777">Gtk::Widget::is_toplevel()</a>.</dd></dl>
</div>
</div>
<a class="anchor" id="adf14c5fd11660caf8c92db309d3620b7"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">static <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ListHandle.html">Glib::ListHandle</a><<a class="el" href="classGtk_1_1Window.html">Window</a>*> Gtk::Window::list_toplevels </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns a list of all existing toplevel windows. </p>
<p>The widgets in the list are not individually referenced. If you want to iterate through the list and perform actions involving callbacks that might destroy the widgets, you <em>must</em> call <code>g_list_foreach (result, (GFunc)g_object_ref, <code>nullptr</code>)</code> first, and then unref all the widgets afterwards.</p>
<dl class="section return"><dt>Returns</dt><dd>List of toplevel widgets. </dd></dl>
</div>
</div>
<a class="anchor" id="a23f2755248ee7aaa39802ccb37bba618"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::Window::maximize </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Asks to maximize <em>window</em>, so that it becomes full-screen. </p>
<p>Note that you shouldn't assume the window is definitely maximized afterward, because other entities (e.g. the user or window manager) could unmaximize it again, and not all window managers support maximization. But normally the window will end up maximized. Just don't write code that crashes if not.</p>
<p>It's permitted to call this function before showing a window, in which case the window will be maximized when it appears onscreen initially.</p>
<p>You can track maximization via the "window-state-event" signal on <a class="el" href="classGtk_1_1Widget.html" title="Abstract Widget (Base class for all widgets) ">Gtk::Widget</a>. </p>
</div>
</div>
<a class="anchor" id="abfee73f9bcceba54007644b2f9d49fa5"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gtk::Window::mnemonic_activate </td>
<td>(</td>
<td class="paramtype">guint </td>
<td class="paramname"><em>keyval</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="group__gdkmmEnums.html#ga734c2979005c87dbe51223a0128cdd97">Gdk::ModifierType</a> </td>
<td class="paramname"><em>modifier</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Activates the targets associated with the mnemonic. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">keyval</td><td>The mnemonic. </td></tr>
<tr><td class="paramname">modifier</td><td>The modifiers. </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd><code>true</code> if the activation is done. </dd></dl>
</div>
</div>
<a class="anchor" id="aabece927b3c31478f0d22a437d340b62"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::Window::move </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"><em>x</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>y</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Asks the window manager to move <em>window</em> to the given position. </p>
<p>Window managers are free to ignore this; most window managers ignore requests for initial window positions (instead using a user-defined placement algorithm) and honor requests after the window has already been shown.</p>
<dl class="section note"><dt>Note</dt><dd>the position is the position of the gravity-determined reference point for the window. The gravity determines two things: first, the location of the reference point in root window coordinates; and second, which point on the window is positioned at the reference point.</dd></dl>
<p>By default the gravity is <a class="el" href="group__gdkmmEnums.html#gga1bb9235871d434d3c55411d8261b075eae18dc80dbede5c1e9b86c3184842f5cf">Gdk::GRAVITY_NORTH_WEST</a>, so the reference point is simply the <em>x</em>, <em>y</em> supplied to <a class="el" href="classGtk_1_1Window.html#aabece927b3c31478f0d22a437d340b62" title="Asks the window manager to move window to the given position. ">move()</a>. The top-left corner of the window decorations (aka window frame or border) will be placed at <em>x</em>, <em>y</em>. Therefore, to position a window at the top left of the screen, you want to use the default gravity (which is <a class="el" href="group__gdkmmEnums.html#gga1bb9235871d434d3c55411d8261b075eae18dc80dbede5c1e9b86c3184842f5cf">Gdk::GRAVITY_NORTH_WEST</a>) and move the window to 0,0.</p>
<p>To position a window at the bottom right corner of the screen, you would set <a class="el" href="group__gdkmmEnums.html#gga1bb9235871d434d3c55411d8261b075eaa0a7d8aee2f30bae7c87b79c87e6f2f9">Gdk::GRAVITY_SOUTH_EAST</a>, which means that the reference point is at <em>x</em> + the window width and <em>y</em> + the window height, and the bottom-right corner of the window border will be placed at that reference point. So, to place a window in the bottom right corner you would first set gravity to south east, then write: <code>gtk_window_move (window, gdk_screen_width() - window_width, gdk_screen_height() - window_height)</code> (note that this example does not take multi-head scenarios into account).</p>
<p>The Extended <a class="el" href="classGtk_1_1Window.html" title="Toplevel Window This represents all widgets which are physical windows controlled by the window manag...">Window</a> Manager Hints specification at <a href="http://www.freedesktop.org/Standards/wm-spec">http://www.freedesktop.org/Standards/wm-spec</a> has a nice table of gravities in the "implementation notes" section.</p>
<p>The <a class="el" href="classGtk_1_1Window.html#ad3a063730ccbf0e4fa26f89e220f55e4" title="This function returns the position you need to pass to move() to keep window in its current position...">get_position()</a> documentation may also be relevant.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">x</td><td>X coordinate to move window to. </td></tr>
<tr><td class="paramname">y</td><td>Y coordinate to move window to. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="ae581f3c73875fa8453a276b55867b613"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual bool Gtk::Window::on_frame_event </td>
<td>(</td>
<td class="paramtype">GdkEvent * </td>
<td class="paramname"><em>event</em></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>This is a default handler for the signal <a class="el" href="classGtk_1_1Window.html#ac47ffcba20791cf3f696f300d913377c">signal_frame_event()</a>. </p>
</div>
</div>
<a class="anchor" id="af47d9ef9fb72173016def01ecb60715c"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual void Gtk::Window::on_set_focus </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classGtk_1_1Widget.html">Widget</a>* </td>
<td class="paramname"><em>focus</em></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>This is a default handler for the signal <a class="el" href="classGtk_1_1Window.html#a86312ebdff9e22fa5aad6a7f8fe17396">signal_set_focus()</a>. </p>
</div>
</div>
<a class="anchor" id="ad6b20c1940fefe7da528171a34ecd416"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gtk::Window::parse_geometry </td>
<td>(</td>
<td class="paramtype">const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> & </td>
<td class="paramname"><em>geometry</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Parses a standard X Window System geometry string - see the manual page for X (type 'man X') for details on this. </p>
<p><a class="el" href="classGtk_1_1Window.html#ad6b20c1940fefe7da528171a34ecd416" title="Parses a standard X Window System geometry string - see the manual page for X (type 'man X') for deta...">parse_geometry()</a> does work on all GTK+ ports including Win32 but is primarily intended for an X environment.</p>
<p>If either a size or a position can be extracted from the geometry string, <a class="el" href="classGtk_1_1Window.html#ad6b20c1940fefe7da528171a34ecd416" title="Parses a standard X Window System geometry string - see the manual page for X (type 'man X') for deta...">parse_geometry()</a> returns <code>true</code> and calls <a class="el" href="classGtk_1_1Window.html#ac7bddf34f109fd2ed006ff95f1ae881c" title="Sets the default size of a window. ">set_default_size()</a> and/or <a class="el" href="classGtk_1_1Window.html#aabece927b3c31478f0d22a437d340b62" title="Asks the window manager to move window to the given position. ">move()</a> to resize/move the window.</p>
<p>If <a class="el" href="classGtk_1_1Window.html#ad6b20c1940fefe7da528171a34ecd416" title="Parses a standard X Window System geometry string - see the manual page for X (type 'man X') for deta...">parse_geometry()</a> returns <code>true</code>, it will also set the <a class="el" href="group__gdkmmEnums.html#gga7dd31e80216f3452a1e080bd22fcfd9ca12e48d5592a043d48a33578c7c128e73">Gdk::HINT_USER_POS</a> and/or <a class="el" href="group__gdkmmEnums.html#gga7dd31e80216f3452a1e080bd22fcfd9ca187b249f8ec2c51120e9136c1eeca84a">Gdk::HINT_USER_SIZE</a> hints indicating to the window manager that the size/position of the window was user-specified. This causes most window managers to honor the geometry.</p>
<p>Note that for <a class="el" href="classGtk_1_1Window.html#ad6b20c1940fefe7da528171a34ecd416" title="Parses a standard X Window System geometry string - see the manual page for X (type 'man X') for deta...">parse_geometry()</a> to work as expected, it has to be called when the window has its "final" size, i.e. after calling <a class="el" href="classGtk_1_1Widget.html#a4fab2509c3afe1952a408494561295c0" title="Recursively shows a widget, and any child widgets (if the widget is a container). ...">Gtk::Widget::show_all()</a> on the contents and <a class="el" href="classGtk_1_1Window.html#a4564d6044ee0c89e02244559b6b5f916" title="This function sets up hints about how a window can be resized by the user. ">set_geometry_hints()</a> on the window.</p>
<p>[C example ellipted]</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">geometry</td><td>Geometry string. </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd><code>true</code> if string was parsed successfully. </dd></dl>
</div>
</div>
<a class="anchor" id="a7d848c59fc1a42f4a296461515c0476e"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::Window::present </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Presents a window to the user. </p>
<p>This may mean raising the window in the stacking order, deiconifying it, moving it to the current desktop, and/or giving it the keyboard focus, possibly dependent on the user's platform, window manager, and preferences.</p>
<p>If <em>window</em> is hidden, this function calls <a class="el" href="classGtk_1_1Widget.html#aa791d86a0bb3658e378e81d731dd0121" title="Flags a widget to be displayed. ">Gtk::Widget::show()</a> as well.</p>
<p>This function should be used when the user tries to open a window that's already open. Say for example the preferences dialog is currently open, and the user chooses Preferences from the menu a second time; use <a class="el" href="classGtk_1_1Window.html#a7d848c59fc1a42f4a296461515c0476e" title="Presents a window to the user. ">present()</a> to move the already-open dialog where the user can see it.</p>
<p>If you are calling this function in response to a user interaction, it is preferable to use present_with_time(). </p>
</div>
</div>
<a class="anchor" id="a0724ad6e36d55fd1182e2481fb52cd04"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::Window::present </td>
<td>(</td>
<td class="paramtype">guint32 </td>
<td class="paramname"><em>timestamp</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Presents a window to the user in response to a user interaction. </p>
<p>If you need to present a window without a timestamp, use <a class="el" href="classGtk_1_1Window.html#a7d848c59fc1a42f4a296461515c0476e" title="Presents a window to the user. ">present()</a>. See <a class="el" href="classGtk_1_1Window.html#a7d848c59fc1a42f4a296461515c0476e" title="Presents a window to the user. ">present()</a> for details.</p>
<dl class="since_2_8"><dt><b><a class="el" href="since_2_8.html#_since_2_8000058">Since gtkmm 2.8:</a></b></dt><dd></dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">timestamp</td><td>The timestamp of the user interaction (typically a button or key press event) which triggered this call. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="afbbfb9c240f9a124cd28e5b69f41b3f5"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< bool > Gtk::Window::property_accept_focus </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>TRUE if the window should receive the input focus. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy that allows you to get or set the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="a1f25cd02ae126874409a4910ebe8d459"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< bool > Gtk::Window::property_accept_focus </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>TRUE if the window should receive the input focus. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="a2da64701781034fabdafea50122cca1b"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< bool > Gtk::Window::property_allow_grow </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>If TRUE, users can expand the window beyond its minimum size. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy that allows you to get or set the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="a19898e90c753c3310e46d4fb3a0ea1b1"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< bool > Gtk::Window::property_allow_grow </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>If TRUE, users can expand the window beyond its minimum size. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="a6ffd6f3bfbde26f6be8887684e299e9a"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< bool > Gtk::Window::property_allow_shrink </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>If TRUE, the window has no mimimum size. </p>
<p>Setting this to TRUE is 99% of the time a bad idea.</p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy that allows you to get or set the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="ad69bb271b136c49dece0277145d1aac9"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< bool > Gtk::Window::property_allow_shrink </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>If TRUE, the window has no mimimum size. </p>
<p>Setting this to TRUE is 99% of the time a bad idea.</p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="a72e77120d08be8eaa56e6e62bf15a318"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< bool > Gtk::Window::property_decorated </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Whether the window should be decorated by the window manager. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy that allows you to get or set the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="a33662ef7416395bf5d87284206c64438"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< bool > Gtk::Window::property_decorated </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Whether the window should be decorated by the window manager. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="a316a5b09a17727844dafd176db341ee0"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< int > Gtk::Window::property_default_height </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>The default height of the window, used when initially showing the window. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy that allows you to get or set the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="a4f2f47a6c544818da89fbc149c21091c"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< int > Gtk::Window::property_default_height </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>The default height of the window, used when initially showing the window. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="a5ff52412ac909b78d61534670ccbaf83"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< int > Gtk::Window::property_default_width </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>The default width of the window, used when initially showing the window. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy that allows you to get or set the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="ac755ae54409172b3ee34b8454647a56f"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< int > Gtk::Window::property_default_width </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>The default width of the window, used when initially showing the window. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="ae103a1bd1fb5196aea4f613bce33ee05"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< bool > Gtk::Window::property_deletable </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Whether the window frame should have a close button. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy that allows you to get or set the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="acdb07fd2f4afab4483fb752368e5795e"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< bool > Gtk::Window::property_deletable </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Whether the window frame should have a close button. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="ad2441478aabc311118d0bbb7247e96cd"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< bool > Gtk::Window::property_destroy_with_parent </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>If this window should be destroyed when the parent is destroyed. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy that allows you to get or set the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="afaad843d2a00c9772125626ba5513c9c"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< bool > Gtk::Window::property_destroy_with_parent </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>If this window should be destroyed when the parent is destroyed. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="adfc55532fd732782aedfe59ed653e87b"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< bool > Gtk::Window::property_focus_on_map </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>TRUE if the window should receive the input focus when mapped. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy that allows you to get or set the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="a9caa021260c6e0306629de3249aa9f57"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< bool > Gtk::Window::property_focus_on_map </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>TRUE if the window should receive the input focus when mapped. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="ac82f2a69edb1708bfd776df7d69d8272"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< <a class="el" href="group__gdkmmEnums.html#ga1bb9235871d434d3c55411d8261b075e">Gdk::Gravity</a> > Gtk::Window::property_gravity </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>The window gravity of the window. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy that allows you to get or set the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="a7ed9fca2d6e4c811b0c48c073d163bbd"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< <a class="el" href="group__gdkmmEnums.html#ga1bb9235871d434d3c55411d8261b075e">Gdk::Gravity</a> > Gtk::Window::property_gravity </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>The window gravity of the window. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="a5c94024a3804f7db63095fceae06c352"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< bool > Gtk::Window::property_has_toplevel_focus </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Whether the input focus is within this GtkWindow. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="a6f815ca5a742d06b5f636d2db481774c"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a><<a class="el" href="classGdk_1_1Pixbuf.html">Gdk::Pixbuf</a>> > Gtk::Window::property_icon </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Icon for this window. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy that allows you to get or set the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="a27b6b9ec07d45a7901f59ecb41df3549"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a><<a class="el" href="classGdk_1_1Pixbuf.html">Gdk::Pixbuf</a>> > Gtk::Window::property_icon </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Icon for this window. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="a61b485e2dfcfd60a129c258ab1a78820"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> > Gtk::Window::property_icon_name </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Name of the themed icon for this window. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy that allows you to get or set the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="a2acea03c44c7780255f2f364e3d4a8da"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> > Gtk::Window::property_icon_name </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Name of the themed icon for this window. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="a180c39b4df322786aeb19cfb3fed03c3"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< bool > Gtk::Window::property_is_active </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Whether the toplevel is the current active window. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="a10ca629f2b9835f8b060727e5f8c217a"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< bool > Gtk::Window::property_mnemonics_visible </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Whether mnemonics are currently visible in this window. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy that allows you to get or set the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="ad4657287025b18d3dbe68be2a69c34c9"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< bool > Gtk::Window::property_mnemonics_visible </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Whether mnemonics are currently visible in this window. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="af0b2dadb08e50d80aa6ddabba7c87194"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< bool > Gtk::Window::property_modal </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>If TRUE, the window is modal (other windows are not usable while this one is up). </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy that allows you to get or set the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="a1885c856bd379d4752c274853127e54d"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< bool > Gtk::Window::property_modal </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>If TRUE, the window is modal (other windows are not usable while this one is up). </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="a23830cf899967c6bc42933410a8556f1"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< double > Gtk::Window::property_opacity </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>The opacity of the window, from 0 to 1. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy that allows you to get or set the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="adf27a44ecc5687df5e6083ba2511de98"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< double > Gtk::Window::property_opacity </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>The opacity of the window, from 0 to 1. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="aff0e464d74986442844442b6e4d3457d"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< bool > Gtk::Window::property_resizable </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>If TRUE, users can resize the window. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy that allows you to get or set the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="a322035ace7ae2664f4bf0d31741840a2"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< bool > Gtk::Window::property_resizable </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>If TRUE, users can resize the window. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="a2c0a56242e0dbe8838b519f5046d1709"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> > Gtk::Window::property_role </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Unique identifier for the window to be used when restoring a session. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy that allows you to get or set the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="aba1252b76120a76ab321a4a9e71a83ba"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> > Gtk::Window::property_role </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Unique identifier for the window to be used when restoring a session. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="a02775b4be90428c53359834fbc1d6d6f"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a><<a class="el" href="classGdk_1_1Screen.html">Gdk::Screen</a>> > Gtk::Window::property_screen </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>The screen where this window will be displayed. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy that allows you to get or set the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="a46d4ec8b50289a45c488e856177c9126"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a><<a class="el" href="classGdk_1_1Screen.html">Gdk::Screen</a>> > Gtk::Window::property_screen </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>The screen where this window will be displayed. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="a5508330bacabc91f9998b7ac3a4330fc"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< bool > Gtk::Window::property_skip_pager_hint </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>TRUE if the window should not be in the pager. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy that allows you to get or set the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="a4bd5f8b67bc56ca12bb96e4729b31ba3"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< bool > Gtk::Window::property_skip_pager_hint </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>TRUE if the window should not be in the pager. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="a7d287695f11f4d799bbfe0880e072eef"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< bool > Gtk::Window::property_skip_taskbar_hint </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>TRUE if the window should not be in the task bar. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy that allows you to get or set the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="ac769938b37a8d07a65ee7357a51c9634"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< bool > Gtk::Window::property_skip_taskbar_hint </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>TRUE if the window should not be in the task bar. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="ae475322dcbef74f5e6c6b110c95df951"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__WriteOnly.html">Glib::PropertyProxy_WriteOnly</a>< <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> > Gtk::Window::property_startup_id </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Unique startup identifier for the window used by startup-notification. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy_WriteOnly that allows you to set the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="a5e2f6d0cb6222820b76e66ea3ffc9d2e"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> > Gtk::Window::property_title </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>The title of the window. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy that allows you to get or set the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="a0f9533eef8c793e72df15f97d9a01b6c"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> > Gtk::Window::property_title </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>The title of the window. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="a47a1c6980a498888612d6cf60445cb2d"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< <a class="el" href="classGtk_1_1Window.html">Window</a>* > Gtk::Window::property_transient_for </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>The transient parent of the dialog. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy that allows you to get or set the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="ac0acaffdddbe5941ac5661e551ef5b3b"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< <a class="el" href="classGtk_1_1Window.html">Window</a>* > Gtk::Window::property_transient_for </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>The transient parent of the dialog. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="ab9cdc2523019726b09d820d9592d859a"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< <a class="el" href="group__gtkmmEnums.html#ga8c724168aabf37953fbb194b35ad250f">WindowType</a> > Gtk::Window::property_type </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>The type of the window. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="abe5ff8be0ba9f36b3f4ec223abfb159a"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< GdkWindowTypeHint > Gtk::Window::property_type_hint </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Hint to help the desktop environment understand what kind of window this is and how to treat it. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy that allows you to get or set the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="adffd6d7dc6a689be7bb19a030e7433ef"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< GdkWindowTypeHint > Gtk::Window::property_type_hint </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Hint to help the desktop environment understand what kind of window this is and how to treat it. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="ae5a26cc9f2c4eb79f84cc0289fea8e99"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< bool > Gtk::Window::property_urgency_hint </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>TRUE if the window should be brought to the user's attention. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy that allows you to get or set the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="a99dd2fad04c6953dcc0a24196c622f2d"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< bool > Gtk::Window::property_urgency_hint </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>TRUE if the window should be brought to the user's attention. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="a94ee36871572c82c3cd9c46e0b4fb735"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< <a class="el" href="group__gtkmmEnums.html#gabfa67443f852c48477b2d55b15982e21">WindowPosition</a> > Gtk::Window::property_window_position </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>The initial position of the window. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy that allows you to get or set the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="a9623d6475b7556945877a240f3b8cff8"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< <a class="el" href="group__gtkmmEnums.html#gabfa67443f852c48477b2d55b15982e21">WindowPosition</a> > Gtk::Window::property_window_position </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>The initial position of the window. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="ad61a5ddefd7b84f178460635c6448ef8"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual void Gtk::Window::raise </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Brings the window to the front. </p>
<p>This is just a more obvious convenience wrapper for <a class="el" href="classGtk_1_1Widget.html#a403777253417c5c7653aac9e932de76b" title="Returns the widget's window if it is realized, nullptr otherwise. ">get_window()</a>-><a class="el" href="classGtk_1_1Window.html#ad61a5ddefd7b84f178460635c6448ef8" title="Brings the window to the front. ">raise()</a>. </p>
</div>
</div>
<a class="anchor" id="afe7b9acac2c46e63948aa0bdf719dce2"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::Window::remove_accel_group </td>
<td>(</td>
<td class="paramtype">const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGtk_1_1AccelGroup.html">AccelGroup</a> >& </td>
<td class="paramname"><em>accel_group</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Reverses the effects of <a class="el" href="classGtk_1_1Window.html#ad15a4530150d8464ee06bb2218e582e9" title="Associate accel_group with window, such that calling gtk_accel_groups_activate() on window will activ...">add_accel_group()</a>. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">accel_group</td><td>A <a class="el" href="classGtk_1_1AccelGroup.html" title="A Gtk::AccelGroup represents a group of keyboard accelerators, typically attached to a toplevel Gtk::...">Gtk::AccelGroup</a>. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a8a4a99151b257228f68f6fc643653b52"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::Window::remove_mnemonic </td>
<td>(</td>
<td class="paramtype">guint </td>
<td class="paramname"><em>keyval</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="classGtk_1_1Widget.html">Widget</a>& </td>
<td class="paramname"><em>target</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Removes a mnemonic from this window. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">keyval</td><td>The mnemonic. </td></tr>
<tr><td class="paramname">target</td><td>The widget that gets activated by the mnemonic. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a7acae2440f5436966dab4b023318a37a"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::Window::reshow_with_initial_size </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Hides <em>window</em>, then reshows it, resetting the default size and position of the window. </p>
<p>Used by GUI builders only. </p>
</div>
</div>
<a class="anchor" id="ad6d1fc27730d7f26402a1924c3495787"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::Window::resize </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"><em>width</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>height</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Resizes the window as if the user had done so, obeying geometry constraints. </p>
<p>The default geometry constraint is that windows may not be smaller than their size request; to override this constraint, call <a class="el" href="classGtk_1_1Widget.html#a5e95431f630a226b0b7297e4815ee945" title="Sets the minimum size of a widget; that is, the widget's size request will be width by height...">Gtk::Widget::set_size_request()</a> to set the window's request to a smaller value.</p>
<p>If <a class="el" href="classGtk_1_1Window.html#ad6d1fc27730d7f26402a1924c3495787" title="Resizes the window as if the user had done so, obeying geometry constraints. ">resize()</a> is called before showing a window for the first time, it overrides any default size set with <a class="el" href="classGtk_1_1Window.html#ac7bddf34f109fd2ed006ff95f1ae881c" title="Sets the default size of a window. ">set_default_size()</a>.</p>
<p>Windows may not be resized smaller than 1 by 1 pixels.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">width</td><td>Width in pixels to resize the window to. </td></tr>
<tr><td class="paramname">height</td><td>Height in pixels to resize the window to. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a9fc2a01d8aa1ab126060d9f363b5d8c5"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::Window::set_accept_focus </td>
<td>(</td>
<td class="paramtype">bool </td>
<td class="paramname"><em>setting</em> = <code>true</code></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Windows may set a hint asking the desktop environment not to receive the input focus. </p>
<p>This function sets this hint.</p>
<dl class="since_2_4"><dt><b><a class="el" href="since_2_4.html#_since_2_4000337">Since gtkmm 2.4:</a></b></dt><dd></dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">setting</td><td><code>true</code> to let this window receive input focus. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a17d7fbb99c147938b2f8af87cd1187f8"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">static void Gtk::Window::set_auto_startup_notification </td>
<td>(</td>
<td class="paramtype">bool </td>
<td class="paramname"><em>setting</em> = <code>true</code></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>By default, after showing the first <a class="el" href="classGtk_1_1Window.html" title="Toplevel Window This represents all widgets which are physical windows controlled by the window manag...">Gtk::Window</a>, GTK+ calls gdk_notify_startup_complete(). </p>
<p>Call this function to disable the automatic startup notification. You might do this if your first window is a splash screen, and you want to delay notification until after your real main window has been shown, for example.</p>
<p>In that example, you would disable startup notification temporarily, show your splash screen, then re-enable it so that showing the main window would automatically result in notification.</p>
<dl class="since_2_2"><dt><b><a class="el" href="since_2_2.html#_since_2_2000130">Since gtkmm 2.2:</a></b></dt><dd></dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">setting</td><td><code>true</code> to automatically do startup notification. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a67adb1d8051a38e0e5272f141bb8778c"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::Window::set_decorated </td>
<td>(</td>
<td class="paramtype">bool </td>
<td class="paramname"><em>setting</em> = <code>true</code></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>By default, windows are decorated with a title bar, resize controls, etc. </p>
<p>Some window managers allow GTK+ to disable these decorations, creating a borderless window. If you set the decorated property to <code>false</code> using this function, GTK+ will do its best to convince the window manager not to decorate the window. Depending on the system, this function may not have any effect when called on a window that is already visible, so you should call it before calling gtk_window_show().</p>
<p>On Windows, this function always works, since there's no window manager policy involved.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">setting</td><td><code>true</code> to decorate the window. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a8a5fcf84b5222de8d4dea390b79969de"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::Window::set_default </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classGtk_1_1Widget.html">Gtk::Widget</a>& </td>
<td class="paramname"><em>default_widget</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>The default widget is the widget that's activated when the user presses Enter in a dialog (for example). </p>
<p>This function sets the default widget for a <a class="el" href="classGtk_1_1Window.html" title="Toplevel Window This represents all widgets which are physical windows controlled by the window manag...">Gtk::Window</a>. When setting (rather than unsetting) the default widget it's generally easier to call <a class="el" href="classGtk_1_1Widget.html#a4c376dd31e5b4d616d8f914338fea8b6" title="Causes widget to have the keyboard focus for the Gtk::Window it's inside. ">Gtk::Widget::grab_focus()</a> on the widget. Before making a widget the default widget, you must set the <a class="el" href="group__gtkmmEnums.html#gga3d42e9e6671e48764b3b42bcc8da0b47af4d68bafb695d9cdbfd69add0cdf475f">Gtk::CAN_DEFAULT</a> flag on the widget you'd like to make the default using GTK_WIDGET_SET_FLAGS().</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">default_widget</td><td><a class="el" href="classGtk_1_1Widget.html" title="Abstract Widget (Base class for all widgets) ">Widget</a> to be the default. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a355e4704d6b2f24de627f182946f8782"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">static void Gtk::Window::set_default_icon </td>
<td>(</td>
<td class="paramtype">const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGdk_1_1Pixbuf.html">Gdk::Pixbuf</a> >& </td>
<td class="paramname"><em>icon</em></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets an icon to be used as fallback for windows that haven't had <a class="el" href="classGtk_1_1Window.html#af8da32d981bcf1992d3d2361a9aec894" title="Sets up the icon representing a Gtk::Window. ">set_icon()</a> called on them from a pixbuf. </p>
<dl class="since_2_4"><dt><b><a class="el" href="since_2_4.html#_since_2_4000339">Since gtkmm 2.4:</a></b></dt><dd></dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">icon</td><td>The icon. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="ada7d63162e412693d80a397096f46b0f"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">static bool Gtk::Window::set_default_icon_from_file </td>
<td>(</td>
<td class="paramtype">const <a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01681.html#ga32db3d9898c44d3b3a578b560f7758cc">std::string</a> & </td>
<td class="paramname"><em>filename</em></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets an icon to be used as fallback for windows that haven't had <a class="el" href="classGtk_1_1Window.html#a81ad667e5c42dada1dc24fafae7d81c5" title="Sets up the icon representing a Gtk::Window. ">set_icon_list()</a> called on them from a file on disk. </p>
<p>Warns on failure if <em>err</em> is <code>nullptr</code>.</p>
<dl class="since_2_2"><dt><b><a class="el" href="since_2_2.html#_since_2_2000129">Since gtkmm 2.2:</a></b></dt><dd></dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">filename</td><td>Location of icon file. </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd><code>true</code> if setting the icon succeeded. </dd></dl>
</div>
</div>
<a class="anchor" id="a7061612826fd86c5a1386091ddc4be31"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">static void Gtk::Window::set_default_icon_list </td>
<td>(</td>
<td class="paramtype">const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ListHandle.html">Glib::ListHandle</a>< <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGdk_1_1Pixbuf.html">Gdk::Pixbuf</a> > >& </td>
<td class="paramname"><em>list</em></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets an icon list to be used as fallback for windows that haven't had <a class="el" href="classGtk_1_1Window.html#a81ad667e5c42dada1dc24fafae7d81c5" title="Sets up the icon representing a Gtk::Window. ">set_icon_list()</a> called on them to set up a window-specific icon list. </p>
<p>This function allows you to set up the icon for all windows in your app at once.</p>
<p>See <a class="el" href="classGtk_1_1Window.html#a81ad667e5c42dada1dc24fafae7d81c5" title="Sets up the icon representing a Gtk::Window. ">set_icon_list()</a> for more details.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">list</td><td>A list of <a class="el" href="classGdk_1_1Pixbuf.html">Gdk::Pixbuf</a>. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a533d03e9b92d8ccd142ab3a44005cae4"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">static void Gtk::Window::set_default_icon_name </td>
<td>(</td>
<td class="paramtype">const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> & </td>
<td class="paramname"><em>name</em></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets an icon to be used as fallback for windows that haven't had <a class="el" href="classGtk_1_1Window.html#a81ad667e5c42dada1dc24fafae7d81c5" title="Sets up the icon representing a Gtk::Window. ">set_icon_list()</a> called on them from a named themed icon, see <a class="el" href="classGtk_1_1Window.html#a80a7d07b5d126a17206a770d134c76c0" title="Sets the icon for the window from a named themed icon. ">set_icon_name()</a>. </p>
<dl class="since_2_6"><dt><b><a class="el" href="since_2_6.html#_since_2_6000166">Since gtkmm 2.6:</a></b></dt><dd></dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">name</td><td>The name of the themed icon. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="ac7bddf34f109fd2ed006ff95f1ae881c"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::Window::set_default_size </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"><em>width</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>height</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets the default size of a window. </p>
<p>If the window's "natural" size (its size request) is larger than the default, the default will be ignored. More generally, if the default size does not obey the geometry hints for the window (<a class="el" href="classGtk_1_1Window.html#a4564d6044ee0c89e02244559b6b5f916" title="This function sets up hints about how a window can be resized by the user. ">set_geometry_hints()</a> can be used to set these explicitly), the default size will be clamped to the nearest permitted size.</p>
<p>Unlike <a class="el" href="classGtk_1_1Widget.html#a5e95431f630a226b0b7297e4815ee945" title="Sets the minimum size of a widget; that is, the widget's size request will be width by height...">Gtk::Widget::set_size_request()</a>, which sets a size request for a widget and thus would keep users from shrinking the window, this function only sets the initial size, just as if the user had resized the window themselves. Users can still shrink the window again as they normally would. Setting a default size of -1 means to use the "natural" default size (the size request of the window).</p>
<p>For more control over a window's initial size and how resizing works, investigate <a class="el" href="classGtk_1_1Window.html#a4564d6044ee0c89e02244559b6b5f916" title="This function sets up hints about how a window can be resized by the user. ">set_geometry_hints()</a>.</p>
<p>For some uses, <a class="el" href="classGtk_1_1Window.html#ad6d1fc27730d7f26402a1924c3495787" title="Resizes the window as if the user had done so, obeying geometry constraints. ">resize()</a> is a more appropriate function. <a class="el" href="classGtk_1_1Window.html#ad6d1fc27730d7f26402a1924c3495787" title="Resizes the window as if the user had done so, obeying geometry constraints. ">resize()</a> changes the current size of the window, rather than the size to be used on initial display. <a class="el" href="classGtk_1_1Window.html#ad6d1fc27730d7f26402a1924c3495787" title="Resizes the window as if the user had done so, obeying geometry constraints. ">resize()</a> always affects the window itself, not the geometry widget.</p>
<p>The default size of a window only affects the first time a window is shown; if a window is hidden and re-shown, it will remember the size it had prior to hiding, rather than using the default size.</p>
<p>Windows can't actually be 0x0 in size, they must be at least 1x1, but passing 0 for <em>width</em> and <em>height</em> is OK, resulting in a 1x1 default size.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">width</td><td>Width in pixels, or -1 to unset the default width. </td></tr>
<tr><td class="paramname">height</td><td>Height in pixels, or -1 to unset the default height. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a986276f116d90d61f00bb50d2f87d69c"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::Window::set_deletable </td>
<td>(</td>
<td class="paramtype">bool </td>
<td class="paramname"><em>setting</em> = <code>true</code></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>By default, windows have a close button in the window frame. </p>
<p>Some window managers allow GTK+ to disable this button. If you set the deletable property to <code>false</code> using this function, GTK+ will do its best to convince the window manager not to show a close button. Depending on the system, this function may not have any effect when called on a window that is already visible, so you should call it before calling gtk_window_show().</p>
<p>On Windows, this function always works, since there's no window manager policy involved.</p>
<dl class="since_2_10"><dt><b><a class="el" href="since_2_10.html#_since_2_10000343">Since gtkmm 2.10:</a></b></dt><dd></dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">setting</td><td><code>true</code> to decorate the window as deletable. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a8589880384bc7cd7b39c5bcfa6d2932a"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::Window::set_focus </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classGtk_1_1Widget.html">Gtk::Widget</a>& </td>
<td class="paramname"><em>focus</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>If <em>focus</em> is not the current focus widget, and is focusable, sets it as the focus widget for the window. </p>
<p>To set the focus to a particular widget in the toplevel, it is usually more convenient to use <a class="el" href="classGtk_1_1Widget.html#a4c376dd31e5b4d616d8f914338fea8b6" title="Causes widget to have the keyboard focus for the Gtk::Window it's inside. ">Gtk::Widget::grab_focus()</a> instead of this function.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">focus</td><td><a class="el" href="classGtk_1_1Widget.html" title="Abstract Widget (Base class for all widgets) ">Widget</a> to be the new focus widget. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a3a2c87ab12bb354d4ac0262748fb6aea"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::Window::set_focus_on_map </td>
<td>(</td>
<td class="paramtype">bool </td>
<td class="paramname"><em>setting</em> = <code>true</code></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Windows may set a hint asking the desktop environment not to receive the input focus when the window is mapped. </p>
<p>This function sets this hint.</p>
<dl class="since_2_6"><dt><b><a class="el" href="since_2_6.html#_since_2_6000162">Since gtkmm 2.6:</a></b></dt><dd></dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">setting</td><td><code>true</code> to let this window receive input focus on map. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a17dad6dfdbf039ce8a54a04f80ea8477"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::Window::set_frame_dimensions </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"><em>left</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>top</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>right</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>bottom</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>(Note: this is a special-purpose function intended for the framebuffer port; see <a class="el" href="classGtk_1_1Window.html#a7cf0d119b57e73136353ef075eca5d26" title="(Note: this is a special-purpose function for the framebuffer port, that causes GTK+ to draw its own ...">set_has_frame()</a>. </p>
<p>It will have no effect on the window border drawn by the window manager, which is the normal case when using the X Window system.)</p>
<p>For windows with frames (see <a class="el" href="classGtk_1_1Window.html#a7cf0d119b57e73136353ef075eca5d26" title="(Note: this is a special-purpose function for the framebuffer port, that causes GTK+ to draw its own ...">set_has_frame()</a>) this function can be used to change the size of the frame border.</p>
<p>Deprecated: 2.24: This function will be removed in GTK+ 3</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">left</td><td>The width of the left border. </td></tr>
<tr><td class="paramname">top</td><td>The height of the top border. </td></tr>
<tr><td class="paramname">right</td><td>The width of the right border. </td></tr>
<tr><td class="paramname">bottom</td><td>The height of the bottom border. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a4564d6044ee0c89e02244559b6b5f916"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::Window::set_geometry_hints </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classGtk_1_1Widget.html">Widget</a>& </td>
<td class="paramname"><em>geometry_widget</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="namespaceGdk.html#af6948e754cab4e79c6430fb94e438d83">Gdk::Geometry</a>& </td>
<td class="paramname"><em>geometry</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="group__gdkmmEnums.html#ga7dd31e80216f3452a1e080bd22fcfd9c">Gdk::WindowHints</a> </td>
<td class="paramname"><em>geom_mask</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>This function sets up hints about how a window can be resized by the user. </p>
<p>You can set a minimum and maximum size; allowed resize increments (e.g. for xterm, you can only resize by the size of a character); aspect ratios; and more. See the <a class="el" href="namespaceGdk.html#af6948e754cab4e79c6430fb94e438d83">Gdk::Geometry</a> struct.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">geometry_widget</td><td><a class="el" href="classGtk_1_1Widget.html" title="Abstract Widget (Base class for all widgets) ">Widget</a> the geometry hints will be applied to. </td></tr>
<tr><td class="paramname">geometry</td><td>Struct containing geometry information. </td></tr>
<tr><td class="paramname">geom_mask</td><td>Mask indicating which struct fields should be paid attention to. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a0ba6f596398c8685fa5535c77c2c9184"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::Window::set_gravity </td>
<td>(</td>
<td class="paramtype"><a class="el" href="group__gdkmmEnums.html#ga1bb9235871d434d3c55411d8261b075e">Gdk::Gravity</a> </td>
<td class="paramname"><em>gravity</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p><a class="el" href="classGtk_1_1Window.html" title="Toplevel Window This represents all widgets which are physical windows controlled by the window manag...">Window</a> gravity defines the meaning of coordinates passed to <a class="el" href="classGtk_1_1Window.html#aabece927b3c31478f0d22a437d340b62" title="Asks the window manager to move window to the given position. ">move()</a>. </p>
<p>See <a class="el" href="classGtk_1_1Window.html#aabece927b3c31478f0d22a437d340b62" title="Asks the window manager to move window to the given position. ">move()</a> and <a class="el" href="group__gdkmmEnums.html#ga1bb9235871d434d3c55411d8261b075e">Gdk::Gravity</a> for more details.</p>
<p>The default window gravity is <a class="el" href="group__gdkmmEnums.html#gga1bb9235871d434d3c55411d8261b075eae18dc80dbede5c1e9b86c3184842f5cf">Gdk::GRAVITY_NORTH_WEST</a> which will typically "do what you mean."</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">gravity</td><td><a class="el" href="classGtk_1_1Window.html" title="Toplevel Window This represents all widgets which are physical windows controlled by the window manag...">Window</a> gravity. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a7cf0d119b57e73136353ef075eca5d26"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::Window::set_has_frame </td>
<td>(</td>
<td class="paramtype">bool </td>
<td class="paramname"><em>setting</em> = <code>true</code></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>(Note: this is a special-purpose function for the framebuffer port, that causes GTK+ to draw its own window border. </p>
<p>For most applications, you want <a class="el" href="classGtk_1_1Window.html#a67adb1d8051a38e0e5272f141bb8778c" title="By default, windows are decorated with a title bar, resize controls, etc. ">set_decorated()</a> instead, which tells the window manager whether to draw the window border.)</p>
<p>If this function is called on a window with setting of <code>true</code>, before it is realized or showed, it will have a "frame" window around <em>window->window</em>, accessible in <em>window->frame</em>. Using the signal frame_event you can receive all events targeted at the frame.</p>
<p>This function is used by the linux-fb port to implement managed windows, but it could conceivably be used by X-programs that want to do their own window decorations.</p>
<p>Deprecated: 2.24: This function will be removed in GTK+ 3</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">setting</td><td>A boolean. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="af8da32d981bcf1992d3d2361a9aec894"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::Window::set_icon </td>
<td>(</td>
<td class="paramtype">const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGdk_1_1Pixbuf.html">Gdk::Pixbuf</a> >& </td>
<td class="paramname"><em>icon</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets up the icon representing a <a class="el" href="classGtk_1_1Window.html" title="Toplevel Window This represents all widgets which are physical windows controlled by the window manag...">Gtk::Window</a>. </p>
<p>This icon is used when the window is minimized (also known as iconified). Some window managers or desktop environments may also place it in the window frame, or display it in other contexts.</p>
<p>The icon should be provided in whatever size it was naturally drawn; that is, don't scale the image before passing it to GTK+. Scaling is postponed until the last minute, when the desired final size is known, to allow best quality.</p>
<p>If you have your icon hand-drawn in multiple sizes, use <a class="el" href="classGtk_1_1Window.html#a81ad667e5c42dada1dc24fafae7d81c5" title="Sets up the icon representing a Gtk::Window. ">set_icon_list()</a>. Then the best size will be used.</p>
<p>This function is equivalent to calling <a class="el" href="classGtk_1_1Window.html#a81ad667e5c42dada1dc24fafae7d81c5" title="Sets up the icon representing a Gtk::Window. ">set_icon_list()</a> with a 1-element list.</p>
<p>See also <a class="el" href="classGtk_1_1Window.html#a7061612826fd86c5a1386091ddc4be31" title="Sets an icon list to be used as fallback for windows that haven't had set_icon_list() called on them ...">set_default_icon_list()</a> to set the icon for all windows in your application in one go.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">icon</td><td>Icon image, or <code>nullptr</code>. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a2cde5d111ad787f58e9d3908f0bf8bbd"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gtk::Window::set_icon_from_file </td>
<td>(</td>
<td class="paramtype">const <a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01681.html#ga32db3d9898c44d3b3a578b560f7758cc">std::string</a> & </td>
<td class="paramname"><em>filename</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets the icon for the window. </p>
<p>This function is equivalent to calling <a class="el" href="classGtk_1_1Window.html#af8da32d981bcf1992d3d2361a9aec894" title="Sets up the icon representing a Gtk::Window. ">set_icon()</a> with a pixbuf created by loading the image from <em>filename</em>.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">filename</td><td>Location of icon file. </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd><code>true</code> if setting the icon succeeded. </dd></dl>
</div>
</div>
<a class="anchor" id="a81ad667e5c42dada1dc24fafae7d81c5"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::Window::set_icon_list </td>
<td>(</td>
<td class="paramtype">const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ListHandle.html">Glib::ListHandle</a>< <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGdk_1_1Pixbuf.html">Gdk::Pixbuf</a> > >& </td>
<td class="paramname"><em>list</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets up the icon representing a <a class="el" href="classGtk_1_1Window.html" title="Toplevel Window This represents all widgets which are physical windows controlled by the window manag...">Gtk::Window</a>. </p>
<p>The icon is used when the window is minimized (also known as iconified). Some window managers or desktop environments may also place it in the window frame, or display it in other contexts.</p>
<p><a class="el" href="classGtk_1_1Window.html#a81ad667e5c42dada1dc24fafae7d81c5" title="Sets up the icon representing a Gtk::Window. ">set_icon_list()</a> allows you to pass in the same icon in several hand-drawn sizes. The list should contain the natural sizes your icon is available in; that is, don't scale the image before passing it to GTK+. Scaling is postponed until the last minute, when the desired final size is known, to allow best quality.</p>
<p>By passing several sizes, you may improve the final image quality of the icon, by reducing or eliminating automatic image scaling.</p>
<p>Recommended sizes to provide: 16x16, 32x32, 48x48 at minimum, and larger images (64x64, 128x128) if you have them.</p>
<p>See also <a class="el" href="classGtk_1_1Window.html#a7061612826fd86c5a1386091ddc4be31" title="Sets an icon list to be used as fallback for windows that haven't had set_icon_list() called on them ...">set_default_icon_list()</a> to set the icon for all windows in your application in one go.</p>
<p>Note that transient windows (those who have been set transient for another window using <a class="el" href="classGtk_1_1Window.html#a4dc2db7c44546300a7843314cfa21bc8" title="Dialog windows should be set transient for the main application window they were spawned from...">set_transient_for()</a>) will inherit their icon from their transient parent. So there's no need to explicitly set the icon on transient windows.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">list</td><td>List of <a class="el" href="classGdk_1_1Pixbuf.html">Gdk::Pixbuf</a>. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a80a7d07b5d126a17206a770d134c76c0"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::Window::set_icon_name </td>
<td>(</td>
<td class="paramtype">const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> & </td>
<td class="paramname"><em>name</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets the icon for the window from a named themed icon. </p>
<p>See the docs for <a class="el" href="classGtk_1_1IconTheme.html">Gtk::IconTheme</a> for more details.</p>
<p>Note that this has nothing to do with the WM_ICON_NAME property which is mentioned in the ICCCM.</p>
<dl class="since_2_6"><dt><b><a class="el" href="since_2_6.html#_since_2_6000164">Since gtkmm 2.6:</a></b></dt><dd></dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">name</td><td>The name of the themed icon. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a1233d35c8c1108ed4446c4b0c8d97e35"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::Window::set_keep_above </td>
<td>(</td>
<td class="paramtype">bool </td>
<td class="paramname"><em>setting</em> = <code>true</code></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Asks to keep <em>window</em> above, so that it stays on top. </p>
<p>Note that you shouldn't assume the window is definitely above afterward, because other entities (e.g. the user or window manager) could not keep it above, and not all window managers support keeping windows above. But normally the window will end kept above. Just don't write code that crashes if not.</p>
<p>It's permitted to call this function before showing a window, in which case the window will be kept above when it appears onscreen initially.</p>
<p>You can track the above state via the "window-state-event" signal on <a class="el" href="classGtk_1_1Widget.html" title="Abstract Widget (Base class for all widgets) ">Gtk::Widget</a>.</p>
<p>Note that, according to the Extended <a class="el" href="classGtk_1_1Window.html" title="Toplevel Window This represents all widgets which are physical windows controlled by the window manag...">Window</a> Manager Hints specification, the above state is mainly meant for user preferences and should not be used by applications e.g. for drawing attention to their dialogs.</p>
<dl class="since_2_4"><dt><b><a class="el" href="since_2_4.html#_since_2_4000340">Since gtkmm 2.4:</a></b></dt><dd></dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">setting</td><td>Whether to keep <em>window</em> above other windows. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="ad671b4dcca5e8e659b9126e0deed74f2"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::Window::set_keep_below </td>
<td>(</td>
<td class="paramtype">bool </td>
<td class="paramname"><em>setting</em> = <code>true</code></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Asks to keep <em>window</em> below, so that it stays in bottom. </p>
<p>Note that you shouldn't assume the window is definitely below afterward, because other entities (e.g. the user or window manager) could not keep it below, and not all window managers support putting windows below. But normally the window will be kept below. Just don't write code that crashes if not.</p>
<p>It's permitted to call this function before showing a window, in which case the window will be kept below when it appears onscreen initially.</p>
<p>You can track the below state via the "window-state-event" signal on <a class="el" href="classGtk_1_1Widget.html" title="Abstract Widget (Base class for all widgets) ">Gtk::Widget</a>.</p>
<p>Note that, according to the Extended <a class="el" href="classGtk_1_1Window.html" title="Toplevel Window This represents all widgets which are physical windows controlled by the window manag...">Window</a> Manager Hints specification, the above state is mainly meant for user preferences and should not be used by applications e.g. for drawing attention to their dialogs.</p>
<dl class="since_2_4"><dt><b><a class="el" href="since_2_4.html#_since_2_4000341">Since gtkmm 2.4:</a></b></dt><dd></dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">setting</td><td>Whether to keep <em>window</em> below other windows. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a707c97e32be83c712b4a414c3e37d13c"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual void Gtk::Window::set_manage </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Overriden to warn that it doesn't make sense to use <a class="el" href="namespaceGtk.html#a753d0ddca83bd0d0decdfdcd1e93076a" title="Mark a Gtk::Object as owned by its parent container widget, so you don't need to delete it manually...">Gtk::manage()</a> on this class because it has no parent container. </p>
</div>
</div>
<a class="anchor" id="aa9e48f426c507de6ef00efabf25ab9b3"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::Window::set_mnemonic_modifier </td>
<td>(</td>
<td class="paramtype"><a class="el" href="group__gdkmmEnums.html#ga734c2979005c87dbe51223a0128cdd97">Gdk::ModifierType</a> </td>
<td class="paramname"><em>modifier</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets the mnemonic modifier for this window. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">modifier</td><td>The modifier mask used to activate mnemonics on this window. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a44cd7531e6d69b94e742e6a5da953d4e"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::Window::set_mnemonics_visible </td>
<td>(</td>
<td class="paramtype">bool </td>
<td class="paramname"><em>setting</em> = <code>true</code></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets the <a class="el" href="classGtk_1_1Window.html#a10ca629f2b9835f8b060727e5f8c217a" title="Whether mnemonics are currently visible in this window. ">Gtk::Window::property_mnemonics_visible()</a> property. </p>
<dl class="since_2_20"><dt><b><a class="el" href="since_2_20.html#_since_2_20000098">Since gtkmm 2.20:</a></b></dt><dd></dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">setting</td><td>The new value. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a1f70b3c35e8c477ab3c1f9503a37a6a1"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::Window::set_modal </td>
<td>(</td>
<td class="paramtype">bool </td>
<td class="paramname"><em>modal</em> = <code>true</code></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets a window modal or non-modal. </p>
<p>Modal windows prevent interaction with other windows in the same application. To keep modal dialogs on top of main application windows, use <a class="el" href="classGtk_1_1Window.html#a4dc2db7c44546300a7843314cfa21bc8" title="Dialog windows should be set transient for the main application window they were spawned from...">set_transient_for()</a> to make the dialog transient for the parent; most window managers will then disallow lowering the dialog below the parent.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">modal</td><td>Whether the window is modal. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a54af1fe27d57afc59744862a9ef922f1"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::Window::set_opacity </td>
<td>(</td>
<td class="paramtype">double </td>
<td class="paramname"><em>opacity</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Request the windowing system to make <em>window</em> partially transparent, with opacity 0 being fully transparent and 1 fully opaque. </p>
<p>(Values of the opacity parameter are clamped to the [0,1] range.) On X11 this has any effect only on X screens with a compositing manager running. See <a class="el" href="classGtk_1_1Widget.html#a06ee94eb3c601b3a400a9a1ceef97d01" title="Whether widget can rely on having its alpha channel drawn correctly. ">Gtk::Widget::is_composited()</a>. On Windows it should work always.</p>
<p>Note that setting a window's opacity after the window has been shown causes it to flicker once on Windows.</p>
<dl class="since_2_12"><dt><b><a class="el" href="since_2_12.html#_since_2_12000134">Since gtkmm 2.12:</a></b></dt><dd></dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">opacity</td><td>Desired opacity, between 0 and 1. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="ace2f64d36b5c1574073fc7c6e03df7a3"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::Window::set_position </td>
<td>(</td>
<td class="paramtype"><a class="el" href="group__gtkmmEnums.html#gabfa67443f852c48477b2d55b15982e21">WindowPosition</a> </td>
<td class="paramname"><em>position</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets a position constraint for this window. </p>
<p>If the old or new constraint is <a class="el" href="group__gtkmmEnums.html#ggabfa67443f852c48477b2d55b15982e21a8f72105fd448d50c1b0333d2d77935c0">Gtk::WIN_POS_CENTER_ALWAYS</a>, this will also cause the window to be repositioned to satisfy the new constraint.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">position</td><td>A position constraint. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a1ec816449fe941e5fe330bfa509eeb7f"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::Window::set_resizable </td>
<td>(</td>
<td class="paramtype">bool </td>
<td class="paramname"><em>resizable</em> = <code>true</code></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets whether the user can resize a window. </p>
<p>Windows are user resizable by default.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">resizable</td><td><code>true</code> if the user can resize this window. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a0bc20c48120eb7ea4fc5e6170da050db"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::Window::set_role </td>
<td>(</td>
<td class="paramtype">const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> & </td>
<td class="paramname"><em>role</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>This function is only useful on X11, not with other GTK+ targets. </p>
<p>In combination with the window title, the window role allows a window manager to identify "the
same" window when an application is restarted. So for example you might set the "toolbox" role on your app's toolbox window, so that when the user restarts their session, the window manager can put the toolbox back in the same place.</p>
<p>If a window already has a unique title, you don't need to set the role, since the WM can use the title to identify the window when restoring the session.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">role</td><td>Unique identifier for the window to be used when restoring a session. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a8019e1426461d32385bfea734b5e63a8"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::Window::set_screen </td>
<td>(</td>
<td class="paramtype">const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGdk_1_1Screen.html">Gdk::Screen</a> >& </td>
<td class="paramname"><em>screen</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets the <a class="el" href="classGdk_1_1Screen.html" title="Object representing a physical screen Gdk::Screen objects are the GDK representation of a physical sc...">Gdk::Screen</a> where the <em>window</em> is displayed; if the window is already mapped, it will be unmapped, and then remapped on the new screen. </p>
<dl class="since_2_2"><dt><b><a class="el" href="since_2_2.html#_since_2_2000126">Since gtkmm 2.2:</a></b></dt><dd></dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">screen</td><td>A <a class="el" href="classGdk_1_1Screen.html" title="Object representing a physical screen Gdk::Screen objects are the GDK representation of a physical sc...">Gdk::Screen</a>. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a4cdea59994940ba8edc41f17e31f31a9"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::Window::set_skip_pager_hint </td>
<td>(</td>
<td class="paramtype">bool </td>
<td class="paramname"><em>setting</em> = <code>true</code></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Windows may set a hint asking the desktop environment not to display the window in the pager. </p>
<p>This function sets this hint. (A "pager" is any desktop navigation tool such as a workspace switcher that displays a thumbnail representation of the windows on the screen.)</p>
<dl class="since_2_2"><dt><b><a class="el" href="since_2_2.html#_since_2_2000124">Since gtkmm 2.2:</a></b></dt><dd></dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">setting</td><td><code>true</code> to keep this window from appearing in the pager. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a0b88348a3d7c69b8930a0e2e11a63a88"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::Window::set_skip_taskbar_hint </td>
<td>(</td>
<td class="paramtype">bool </td>
<td class="paramname"><em>setting</em> = <code>true</code></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Windows may set a hint asking the desktop environment not to display the window in the task bar. </p>
<p>This function sets this hint.</p>
<dl class="since_2_2"><dt><b><a class="el" href="since_2_2.html#_since_2_2000122">Since gtkmm 2.2:</a></b></dt><dd></dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">setting</td><td><code>true</code> to keep this window from appearing in the task bar. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a10c072ee6b41d5eea0002d986aa03c07"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::Window::set_title </td>
<td>(</td>
<td class="paramtype">const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> & </td>
<td class="paramname"><em>title</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets the title of the <a class="el" href="classGtk_1_1Window.html" title="Toplevel Window This represents all widgets which are physical windows controlled by the window manag...">Gtk::Window</a>. </p>
<p>The title of a window will be displayed in its title bar; on the X Window System, the title bar is rendered by the window manager, so exactly how the title appears to users may vary according to a user's exact configuration. The title should help a user distinguish this window from other windows they may have open. A good title might include the application name and current document filename, for example.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">title</td><td>Title of the window. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a4dc2db7c44546300a7843314cfa21bc8"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::Window::set_transient_for </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classGtk_1_1Window.html">Window</a>& </td>
<td class="paramname"><em>parent</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p><a class="el" href="classGtk_1_1Dialog.html" title="Create popup windows. ">Dialog</a> windows should be set transient for the main application window they were spawned from. </p>
<p>This allows window managers to e.g. keep the dialog on top of the main window, or center the dialog over the main window. Gtk::Dialog::new_with_buttons() and other convenience functions in GTK+ will sometimes call <a class="el" href="classGtk_1_1Window.html#a4dc2db7c44546300a7843314cfa21bc8" title="Dialog windows should be set transient for the main application window they were spawned from...">set_transient_for()</a> on your behalf.</p>
<p>Passing <code>nullptr</code> for <em>parent</em> unsets the current transient window.</p>
<p>On Windows, this function puts the child window on top of the parent, much as the window manager would have done on X.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">parent</td><td>Parent window, or <code>nullptr</code>. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a61321cd59c3630d1b9f0c07781a6029b"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::Window::set_type_hint </td>
<td>(</td>
<td class="paramtype"><a class="el" href="group__gdkmmEnums.html#ga1f75a8db0f289997ac16bba0891776c9">Gdk::WindowTypeHint</a> </td>
<td class="paramname"><em>hint</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>By setting the type hint for the window, you allow the window manager to decorate and handle the window in a way which is suitable to the function of the window in your application. </p>
<p>This function should be called before the window becomes visible.</p>
<p>Gtk::Dialog::new_with_buttons() and other convenience functions in GTK+ will sometimes call <a class="el" href="classGtk_1_1Window.html#a61321cd59c3630d1b9f0c07781a6029b" title="By setting the type hint for the window, you allow the window manager to decorate and handle the wind...">set_type_hint()</a> on your behalf.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">hint</td><td>The window type. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="afd7971d45db2936c2102faaa57e55279"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::Window::set_urgency_hint </td>
<td>(</td>
<td class="paramtype">bool </td>
<td class="paramname"><em>setting</em> = <code>true</code></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Windows may set a hint asking the desktop environment to draw the users attention to the window. </p>
<p>This function sets this hint.</p>
<dl class="since_2_8"><dt><b><a class="el" href="since_2_8.html#_since_2_8000056">Since gtkmm 2.8:</a></b></dt><dd></dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">setting</td><td><code>true</code> to mark this window as urgent. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="ac6a7119c34bcfc31fdc27a8061a6f8f1"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::Window::set_wmclass </td>
<td>(</td>
<td class="paramtype">const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> & </td>
<td class="paramname"><em>wmclass_name</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> & </td>
<td class="paramname"><em>wmclass_class</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Don't use this function. </p>
<p>It sets the X Window System "class" and "name" hints for a window. According to the ICCCM, you should always set these to the same value for all windows in an application, and GTK+ sets them to that value by default, so calling this function is sort of pointless. However, you may want to call <a class="el" href="classGtk_1_1Window.html#a0bc20c48120eb7ea4fc5e6170da050db" title="This function is only useful on X11, not with other GTK+ targets. ">set_role()</a> on each window in your application, for the benefit of the session manager. Setting the role allows the window manager to restore window positions when loading a saved session.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">wmclass_name</td><td><a class="el" href="classGtk_1_1Window.html" title="Toplevel Window This represents all widgets which are physical windows controlled by the window manag...">Window</a> name hint. </td></tr>
<tr><td class="paramname">wmclass_class</td><td><a class="el" href="classGtk_1_1Window.html" title="Toplevel Window This represents all widgets which are physical windows controlled by the window manag...">Window</a> class hint. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="ac47ffcba20791cf3f696f300d913377c"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< bool,GdkEvent* > Gtk::Window::signal_frame_event </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<dl class="section user"><dt>Slot Prototype:</dt><dd><code>bool on_my_frame_event(GdkEvent* event)</code> </dd></dl>
</div>
</div>
<a class="anchor" id="a86312ebdff9e22fa5aad6a7f8fe17396"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< void,<a class="el" href="classGtk_1_1Widget.html">Widget</a>* > Gtk::Window::signal_set_focus </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<dl class="section user"><dt>Slot Prototype:</dt><dd><code>void on_my_set_focus(Widget* focus)</code> </dd></dl>
</div>
</div>
<a class="anchor" id="aaadaf48bd2ce3def9eb69e5347a415aa"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::Window::stick </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Asks to stick <em>window</em>, which means that it will appear on all user desktops. </p>
<p>Note that you shouldn't assume the window is definitely stuck afterward, because other entities (e.g. the user or window manager) could unstick it again, and some window managers do not support sticking windows. But normally the window will end up stuck. Just don't write code that crashes if not.</p>
<p>It's permitted to call this function before showing a window.</p>
<p>You can track stickiness via the "window-state-event" signal on <a class="el" href="classGtk_1_1Widget.html" title="Abstract Widget (Base class for all widgets) ">Gtk::Widget</a>. </p>
</div>
</div>
<a class="anchor" id="aa426c8fca5b776d5266da732293f6dab"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::Window::unfullscreen </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Asks to toggle off the fullscreen state for <em>window</em>. </p>
<p>Note that you shouldn't assume the window is definitely not full screen afterward, because other entities (e.g. the user or window manager) could fullscreen it again, and not all window managers honor requests to unfullscreen windows. But normally the window will end up restored to its normal state. Just don't write code that crashes if not.</p>
<p>You can track the fullscreen state via the "window-state-event" signal on <a class="el" href="classGtk_1_1Widget.html" title="Abstract Widget (Base class for all widgets) ">Gtk::Widget</a>.</p>
<dl class="since_2_2"><dt><b><a class="el" href="since_2_2.html#_since_2_2000132">Since gtkmm 2.2:</a></b></dt><dd></dd></dl>
</div>
</div>
<a class="anchor" id="a78bca41d0915b84f285187f3bfcd1e9c"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::Window::unmaximize </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Asks to unmaximize <em>window</em>. </p>
<p>Note that you shouldn't assume the window is definitely unmaximized afterward, because other entities (e.g. the user or window manager) could maximize it again, and not all window managers honor requests to unmaximize. But normally the window will end up unmaximized. Just don't write code that crashes if not.</p>
<p>You can track maximization via the "window-state-event" signal on <a class="el" href="classGtk_1_1Widget.html" title="Abstract Widget (Base class for all widgets) ">Gtk::Widget</a>. </p>
</div>
</div>
<a class="anchor" id="ad17e8ca434b1284ee2778daaddc3f5b3"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::Window::unset_default </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="a8dbaf6fd2f692b1dda1e9eb2d7fb9edf"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::Window::unset_focus </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="a8765c60eaa06575d86d877cd5ba75d6d"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::Window::unset_transient_for </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Unsets the current transient window. </p>
<dl class="section see"><dt>See also</dt><dd><a class="el" href="classGtk_1_1Window.html#a4dc2db7c44546300a7843314cfa21bc8" title="Dialog windows should be set transient for the main application window they were spawned from...">set_transient_for()</a>. </dd></dl>
<dl class="since_2_20"><dt><b><a class="el" href="since_2_20.html#_since_2_20000097">Since gtkmm 2.20:</a></b></dt><dd></dd></dl>
</div>
</div>
<a class="anchor" id="ae2b53147692cf07b5738e0a76c27f50f"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::Window::unstick </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Asks to unstick <em>window</em>, which means that it will appear on only one of the user's desktops. </p>
<p>Note that you shouldn't assume the window is definitely unstuck afterward, because other entities (e.g. the user or window manager) could stick it again. But normally the window will end up stuck. Just don't write code that crashes if not.</p>
<p>You can track stickiness via the "window-state-event" signal on <a class="el" href="classGtk_1_1Widget.html" title="Abstract Widget (Base class for all widgets) ">Gtk::Widget</a>. </p>
</div>
</div>
<h2 class="groupheader">Friends And Related Function Documentation</h2>
<a class="anchor" id="ae450767a1f7f277ee50a0acb197f3e08"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classGtk_1_1Window.html">Gtk::Window</a>* wrap </td>
<td>(</td>
<td class="paramtype">GtkWindow * </td>
<td class="paramname"><em>object</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">bool </td>
<td class="paramname"><em>take_copy</em> = <code>false</code> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">related</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>A <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/namespaceGlib.html#a671306f4a3a0cae5ab4d7a9d54886592">Glib::wrap()</a> method for this object. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">object</td><td>The C instance. </td></tr>
<tr><td class="paramname">take_copy</td><td>False if the result should take ownership of the C instance. True if it should take a new copy or ref. </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>A C++ instance that wraps this C instance. </dd></dl>
</div>
</div>
<hr/>The documentation for this class was generated from the following file:<ul>
<li>gtkmm/window.h</li>
</ul>
</div><!-- contents -->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated by  <a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.8.11
</small></address>
</body>
</html>
|