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
|
<!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"/>
<title>gtkmm: Gdk::Window Class Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<!-- Generated by Doxygen 1.7.3 -->
<div id="top">
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td style="padding-left: 0.5em;">
<div id="projectname">gtkmm <span id="projectnumber">2.24.2</span></div>
</td>
</tr>
</tbody>
</table>
</div>
<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="namespaceGdk.html">Gdk</a> </li>
<li class="navelem"><a class="el" href="classGdk_1_1Window.html">Window</a> </li>
</ul>
</div>
</div>
<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> </div>
<div class="headertitle">
<h1>Gdk::Window Class Reference</h1> </div>
</div>
<div class="contents">
<!-- doxytag: class="Gdk::Window" --><!-- doxytag: inherits="Gdk::Drawable" -->
<p>A <a class="el" href="classGdk_1_1Window.html" title="A Gdk::Window is a rectangular region on the screen.">Gdk::Window</a> is a rectangular region on the screen. <a href="#_details">More...</a></p>
<div class="dynheader">
Inheritance diagram for Gdk::Window:</div>
<div class="dyncontent">
<div class="center"><img src="classGdk_1_1Window__inherit__graph.png" border="0" usemap="#Gdk_1_1Window_inherit__map" alt="Inheritance graph"/></div>
<map name="Gdk_1_1Window_inherit__map" id="Gdk_1_1Window_inherit__map">
<area shape="rect" id="node2" href="classGdk_1_1Drawable.html" title="Drawing Primitives." alt="" coords="12,246,119,277"/><area shape="rect" id="node4" 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="20,166,111,197"/><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_1ObjectBase.html" title="Glib::ObjectBase" alt="" coords="5,86,125,117"/><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="12,6,119,37"/></map>
<center><span class="legend">[<a href="graph_legend.html">legend</a>]</span></center></div>
<div class="dynheader">
Collaboration diagram for Gdk::Window:</div>
<div class="dyncontent">
<div class="center"><img src="classGdk_1_1Window__coll__graph.png" border="0" usemap="#Gdk_1_1Window_coll__map" alt="Collaboration graph"/></div>
<map name="Gdk_1_1Window_coll__map" id="Gdk_1_1Window_coll__map">
<area shape="rect" id="node2" href="classGdk_1_1Drawable.html" title="Drawing Primitives." alt="" coords="12,246,119,277"/><area shape="rect" id="node4" 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="20,166,111,197"/><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_1ObjectBase.html" title="Glib::ObjectBase" alt="" coords="5,86,125,117"/><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="12,6,119,37"/></map>
<center><span class="legend">[<a href="graph_legend.html">legend</a>]</span></center></div>
<p><a href="classGdk_1_1Window-members.html">List of all members.</a></p>
<table class="memberdecls">
<tr><td colspan="2"><h2><a name="pub-methods"></a>
Public Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">virtual </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a84984d0d1a1a4dd893133a80fbd25ec5">~Window</a> ()</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">GdkWindow* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a0bc9fc92bac3c509b0a0d754488903b0">gobj</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Provides access to the underlying C GObject. <a href="#a0bc9fc92bac3c509b0a0d754488903b0"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">const GdkWindow* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a9cd1fbdc140ff77e1b005938bd439f49">gobj</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Provides access to the underlying C GObject. <a href="#a9cd1fbdc140ff77e1b005938bd439f49"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">GdkWindow* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#addb464bdf61c63040afe7bae6d1ed4bf">gobj_copy</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Provides access to the underlying C instance. The caller is responsible for unrefing it. Use when directly setting fields in structs. <a href="#addb464bdf61c63040afe7bae6d1ed4bf"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="group__gdkmmEnums.html#ga2b9f4daf18d16a75d9bfe279f5340c02">WindowType</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#aa5d6f691b65a70deae5ee6d5883e9a6d">get_window_type</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Gets the type of the window. <a href="#aa5d6f691b65a70deae5ee6d5883e9a6d"></a><br/></td></tr>
<tr><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">Visual</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#aabc72c3289d98337ccd9f6aefe3ce73e">get_visual</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Gets the <a class="el" href="classGdk_1_1Visual.html" title="A Gdk::Visual describes a particular video hardware display format.">Gdk::Visual</a> describing the pixel format of <em>window</em>. <a href="#aabc72c3289d98337ccd9f6aefe3ce73e"></a><br/></td></tr>
<tr><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_1Visual.html">Visual</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a580477f095475cdd8e95e2fff639c7ed">get_visual</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Gets the <a class="el" href="classGdk_1_1Visual.html" title="A Gdk::Visual describes a particular video hardware display format.">Gdk::Visual</a> describing the pixel format of <em>window</em>. <a href="#a580477f095475cdd8e95e2fff639c7ed"></a><br/></td></tr>
<tr><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">Screen</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a920547238d11df9caac830cb2b34b422">get_screen</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Gets 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 a <a class="el" href="classGdk_1_1Window.html" title="A Gdk::Window is a rectangular region on the screen.">Gdk::Window</a>. <a href="#a920547238d11df9caac830cb2b34b422"></a><br/></td></tr>
<tr><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">Screen</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#add4e4705ed662f072205228466825bea">get_screen</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Gets 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 a <a class="el" href="classGdk_1_1Window.html" title="A Gdk::Window is a rectangular region on the screen.">Gdk::Window</a>. <a href="#add4e4705ed662f072205228466825bea"></a><br/></td></tr>
<tr><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">Display</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#ad0e14b3c95f183a8dbff3a8104184efc">get_display</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Gets 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 man...">Gdk::Display</a> associated with a <a class="el" href="classGdk_1_1Window.html" title="A Gdk::Window is a rectangular region on the screen.">Gdk::Window</a>. <a href="#ad0e14b3c95f183a8dbff3a8104184efc"></a><br/></td></tr>
<tr><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">Display</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a30d56b5d03afdb4c25ef783b747fd479">get_display</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Gets 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 man...">Gdk::Display</a> associated with a <a class="el" href="classGdk_1_1Window.html" title="A Gdk::Window is a rectangular region on the screen.">Gdk::Window</a>. <a href="#a30d56b5d03afdb4c25ef783b747fd479"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#ad850f17e45522107fb498de8641766f7">show</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Like <a class="el" href="classGdk_1_1Window.html#a2c6d829cf3fc060ab52a4bdc7d77973a" title="Shows a Gdk::Window onscreen, but does not modify its stacking order.">show_unraised()</a>, but also raises the window to the top of the window stack (moves the window to the front of the Z-order). <a href="#ad850f17e45522107fb498de8641766f7"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a2850d6c550e5c2f73f82fe0043b091b1">hide</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">For toplevel windows, withdraws them, so they will no longer be known to the window manager; for all windows, unmaps them, so they won't be displayed. <a href="#a2850d6c550e5c2f73f82fe0043b091b1"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#aa7a5705224d062fe6351a426781597fa">withdraw</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Withdraws a window (unmaps it and asks the window manager to forget about it). <a href="#aa7a5705224d062fe6351a426781597fa"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a2c6d829cf3fc060ab52a4bdc7d77973a">show_unraised</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Shows a <a class="el" href="classGdk_1_1Window.html" title="A Gdk::Window is a rectangular region on the screen.">Gdk::Window</a> onscreen, but does not modify its stacking order. <a href="#a2c6d829cf3fc060ab52a4bdc7d77973a"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#abdaf2a58abef5b8bc4f7a36d7109076e">move</a> (int x, int y)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Repositions a window relative to its parent window. <a href="#abdaf2a58abef5b8bc4f7a36d7109076e"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#ac24547040d1662585c8ee64fe56780f6">resize</a> (int width, int height)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Resizes <em>window</em>; for toplevel windows, asks the window manager to resize the window. <a href="#ac24547040d1662585c8ee64fe56780f6"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#afa7df5ed11a3b022c567e644d64ada07">move_resize</a> (int x, int y, int width, int height)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Equivalent to calling <a class="el" href="classGdk_1_1Window.html#abdaf2a58abef5b8bc4f7a36d7109076e" title="Repositions a window relative to its parent window.">move()</a> and <a class="el" href="classGdk_1_1Window.html#ac24547040d1662585c8ee64fe56780f6" title="Resizes window; for toplevel windows, asks the window manager to resize the window.">resize()</a>, except that both operations are performed at once, avoiding strange visual effects. <a href="#afa7df5ed11a3b022c567e644d64ada07"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a1de4d3f12a7f2e7e866f1d9909a9a001">reparent</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">Window</a> >& new_parent, int x, int y)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Reparents <em>window</em> into the given <em>new_parent</em>. <a href="#a1de4d3f12a7f2e7e866f1d9909a9a001"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a62057e2fe9726f664dd01319e645f7b1">clear</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Clears an entire <em>window</em> to the background color or background pixmap. <a href="#a62057e2fe9726f664dd01319e645f7b1"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a5d0030ccfb0a62bd6d734c49cb706a51">clear_area</a> (int x, int y, int width, int height)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Clears an area of <em>window</em> to the background color or background pixmap. <a href="#a5d0030ccfb0a62bd6d734c49cb706a51"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a1b9659f60941e5f14b3497409d03409a">clear_area_e</a> (int x, int y, int width, int height)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Like <a class="el" href="classGdk_1_1Window.html#a5d0030ccfb0a62bd6d734c49cb706a51" title="Clears an area of window to the background color or background pixmap.">clear_area()</a>, but also generates an expose event for the cleared area. <a href="#a1b9659f60941e5f14b3497409d03409a"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a6eef65b862344ad01b01e527f2c39741">raise</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Raises <em>window</em> to the top of the Z-order (stacking order), so that other windows with the same parent window appear below <em>window</em>. <a href="#a6eef65b862344ad01b01e527f2c39741"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a275d4424691fee615c469f7c6bdd59bf">lower</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Lowers <em>window</em> to the bottom of the Z-order (stacking order), so that other windows with the same parent window appear above <em>window</em>. <a href="#a275d4424691fee615c469f7c6bdd59bf"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a8f8b1a1988ee739869b683082bf6746c">restack</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">Window</a> >& sibling, bool above)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Changes the position of <em>window</em> in the Z-order (stacking order), so that it is above <em>sibling</em> (if <em>above</em> is <code>true</code>) or below <em>sibling</em> (if <em>above</em> is <code>false</code>). <a href="#a8f8b1a1988ee739869b683082bf6746c"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a15acff14c1947278d1e1d20fc0115e89">restack</a> (bool above)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Changes the position of this window in the Z-order (stacking order). <a href="#a15acff14c1947278d1e1d20fc0115e89"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a7b30990c3efc8d50215fcb6f8cde0546">focus</a> (guint32 timestamp)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Sets keyboard focus to <em>window</em>. <a href="#a7b30990c3efc8d50215fcb6f8cde0546"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a6e895c78858224262b90564b68759b62">set_user_data</a> (gpointer user_data)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">For most purposes this function is deprecated in favor of Glib::object_set_data(). <a href="#a6e895c78858224262b90564b68759b62"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#aad09335b20323d81cb214e549ba201e6">set_override_redirect</a> (bool override_redirect=true)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">An override redirect window is not under the control of the window manager. <a href="#aad09335b20323d81cb214e549ba201e6"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a413863a30bbac24d6d1a207401c07caf">add_filter</a> (GdkFilterFunc function, gpointer data)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Adds an event filter to <em>window</em>, allowing you to intercept events before they reach GDK. <a href="#a413863a30bbac24d6d1a207401c07caf"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#aa0b04aed6d338ce78f10060b025ceb3f">remove_filter</a> (GdkFilterFunc function, gpointer data)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Remove a filter previously added with <a class="el" href="classGdk_1_1Window.html#a413863a30bbac24d6d1a207401c07caf" title="Adds an event filter to window, allowing you to intercept events before they reach GDK...">add_filter()</a>. <a href="#aa0b04aed6d338ce78f10060b025ceb3f"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a7c96ca3674bbf8dbd71602d2f7893b8e">scroll</a> (int dx, int dy)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Scroll the contents of its window, both pixels and children, by the given amount. <a href="#a7c96ca3674bbf8dbd71602d2f7893b8e"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a1c1e8c3af5bdd711be6ef487ff01cd8a">move_region</a> (const <a class="el" href="classGdk_1_1Region.html">Region</a>& region, int dx, int dy)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Move the part of <em>window</em> indicated by <em>region</em> by <em>dy</em> pixels in the Y direction and <em>dx</em> pixels in the X direction. <a href="#a1c1e8c3af5bdd711be6ef487ff01cd8a"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a2e9608e67a7d3ee02d4a94139b9213d8">ensure_native</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Tries to ensure that there is a window-system native window for this GdkWindow. <a href="#a2e9608e67a7d3ee02d4a94139b9213d8"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a7e7ccbbb8a86215d0478b9fc041dce34">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>< <a class="el" href="classGdk_1_1Bitmap.html">Bitmap</a> >& mask, int x, int y)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Applies a shape mask to <em>window</em>. <a href="#a7e7ccbbb8a86215d0478b9fc041dce34"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a8f3bfc50b1db35f74e9af21fc81591a0">unset_shape_combine_mask</a> ()</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a4ddecf82c0b07e4ad106caf90f17ca8f">shape_combine_region</a> (const <a class="el" href="classGdk_1_1Region.html">Region</a>& shape_region, int offset_x, int offset_y)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Makes pixels in <em>window</em> outside <em>shape_region</em> be transparent, so that the window may be nonrectangular. <a href="#a4ddecf82c0b07e4ad106caf90f17ca8f"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a0573c6c2876784956e463eccebb55c6f">set_child_shapes</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Sets the shape mask of <em>window</em> to the union of shape masks for all children of <em>window</em>, ignoring the shape mask of <em>window</em> itself. <a href="#a0573c6c2876784956e463eccebb55c6f"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a4ca088effd48d610849dca1912c0b0b5">get_composited</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Determines whether <em>window</em> is composited. <a href="#a4ca088effd48d610849dca1912c0b0b5"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#aba9d5bea3de05b31eff0da2bed753db8">set_composited</a> (bool composited=TRUE)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Sets a <a class="el" href="classGdk_1_1Window.html" title="A Gdk::Window is a rectangular region on the screen.">Gdk::Window</a> as composited, or unsets it. <a href="#aba9d5bea3de05b31eff0da2bed753db8"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a48118e2ebc867bc3c726d85f5eec0659">merge_child_shapes</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Merges the shape masks for any child windows into the shape mask for <em>window</em>. <a href="#a48118e2ebc867bc3c726d85f5eec0659"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a4b0c0b20adc4bcf3f0e4d665059573d3">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>< <a class="el" href="classGdk_1_1Bitmap.html">Bitmap</a> >& mask, int x, int y)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Like <a class="el" href="classGdk_1_1Window.html#a7e7ccbbb8a86215d0478b9fc041dce34" title="Applies a shape mask to window.">shape_combine_mask()</a>, but the shape applies only to event handling. <a href="#a4b0c0b20adc4bcf3f0e4d665059573d3"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#afca024064999914065da4014a14a9f17">input_shape_combine_region</a> (const <a class="el" href="classGdk_1_1Region.html">Region</a>& shape_region, int offset_x, int offset_y)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Like <a class="el" href="classGdk_1_1Window.html#a4ddecf82c0b07e4ad106caf90f17ca8f" title="Makes pixels in window outside shape_region be transparent, so that the window may be nonrectangular...">shape_combine_region()</a>, but the shape applies only to event handling. <a href="#afca024064999914065da4014a14a9f17"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a4c4a3eff84349ff97ecf1d24972cc751">set_child_input_shapes</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Sets the input shape mask of <em>window</em> to the union of input shape masks for all children of <em>window</em>, ignoring the input shape mask of <em>window</em> itself. <a href="#a4c4a3eff84349ff97ecf1d24972cc751"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#adf4f0442926e39a327843a6b5946e4c5">merge_child_input_shapes</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Merges the input shape masks for any child windows into the input shape mask for <em>window</em>. <a href="#adf4f0442926e39a327843a6b5946e4c5"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a44d6daf9e5cd55b18891a5173956d3bf">is_visible</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Checks whether the window has been mapped (with <a class="el" href="classGdk_1_1Window.html#ad850f17e45522107fb498de8641766f7" title="Like show_unraised(), but also raises the window to the top of the window stack (moves the window to ...">show()</a> or <a class="el" href="classGdk_1_1Window.html#a2c6d829cf3fc060ab52a4bdc7d77973a" title="Shows a Gdk::Window onscreen, but does not modify its stacking order.">show_unraised()</a>). <a href="#a44d6daf9e5cd55b18891a5173956d3bf"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a9e4506546231e69eebebc398627de723">is_viewable</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Check if the window and all ancestors of the window are mapped. <a href="#a9e4506546231e69eebebc398627de723"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a93048bb6eea2a051a5b88a0227f848ff">is_input_only</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Determines whether or not the window is an input only window. <a href="#a93048bb6eea2a051a5b88a0227f848ff"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#ae0f8676d3c9b69be7b0e613b4eda30b8">is_shaped</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Determines whether or not the window is shaped. <a href="#ae0f8676d3c9b69be7b0e613b4eda30b8"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="group__gdkmmEnums.html#ga52281110716dc2727d7f1e8303f9b950">WindowState</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a0e3921982caec87dedde90140e134d3f">get_state</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Gets the bitwise OR of the currently active window state flags, from the Gdk::WindowState enumeration. <a href="#a0e3921982caec87dedde90140e134d3f"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a7886467cef616c0c07ba482888490059">set_static_gravities</a> (bool use_static=true)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Set the bit gravity of the given window to static, and flag it so all children get static subwindow gravity. <a href="#a7886467cef616c0c07ba482888490059"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a452e3fb67d720d99bd83c800bd35ac39">has_native</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Checks whether the window has a native window or not. <a href="#a452e3fb67d720d99bd83c800bd35ac39"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a4505331d1882e0e02d076782ddfaa2ff">set_type_hint</a> (<a class="el" href="group__gdkmmEnums.html#ga1f75a8db0f289997ac16bba0891776c9">WindowTypeHint</a> hint)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">The application can use this call to provide a hint to the window manager about the functionality of a window. <a href="#a4505331d1882e0e02d076782ddfaa2ff"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="group__gdkmmEnums.html#ga1f75a8db0f289997ac16bba0891776c9">WindowTypeHint</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a7c0dd035d50de014a5abe8b0a41b82b7">get_type_hint</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This function returns the type hint set for a window. <a href="#a7c0dd035d50de014a5abe8b0a41b82b7"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a56629a916ebc38ee9c10d925e5bba44b">get_modal_hint</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Determines whether or not the window manager is hinted that <em>window</em> has modal behaviour. <a href="#a56629a916ebc38ee9c10d925e5bba44b"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a22dc81b0749d30bbbdf5906059459482">set_modal_hint</a> (bool modal=true)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">The application can use this hint to tell the window manager that a certain window has modal behaviour. <a href="#a22dc81b0749d30bbbdf5906059459482"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a6ec3d94409fddef481e3e57714c577fa">set_geometry_hints</a> (const <a class="el" href="namespaceGdk.html#af6948e754cab4e79c6430fb94e438d83">Geometry</a>& geometry, <a class="el" href="group__gdkmmEnums.html#ga7dd31e80216f3452a1e080bd22fcfd9c">WindowHints</a> geom_mask)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Sets the geometry hints for <em>window</em>. <a href="#a6ec3d94409fddef481e3e57714c577fa"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#aa0cc483d4278e4c7fb0cee2d109095ba">begin_paint_rect</a> (<a class="el" href="classGdk_1_1Rectangle.html">Rectangle</a>& rectangle)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">A convenience wrapper around <a class="el" href="classGdk_1_1Window.html#ae9b866577d6a20aa250b74a1144dca3f" title="Indicates that you are beginning the process of redrawing region.">begin_paint_region()</a> which creates a rectangular region for you. <a href="#aa0cc483d4278e4c7fb0cee2d109095ba"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#ae9b866577d6a20aa250b74a1144dca3f">begin_paint_region</a> (const <a class="el" href="classGdk_1_1Region.html">Region</a>& region)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Indicates that you are beginning the process of redrawing <em>region</em>. <a href="#ae9b866577d6a20aa250b74a1144dca3f"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a21c920c3f5903e7d338b68c68f09e645">end_paint</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Indicates that the backing store created by the most recent call to <a class="el" href="classGdk_1_1Window.html#ae9b866577d6a20aa250b74a1144dca3f" title="Indicates that you are beginning the process of redrawing region.">begin_paint_region()</a> should be copied onscreen and deleted, leaving the next-most-recent backing store or no backing store at all as the active paint region. <a href="#a21c920c3f5903e7d338b68c68f09e645"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a2cbd12adcdaf1039d215cd2c11e32962">flush</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Flush all outstanding cached operations on a window, leaving the window in a state which reflects all that has been drawn before. <a href="#a2cbd12adcdaf1039d215cd2c11e32962"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a89c47b105ce213eb1b075d1c8dd34ab6">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><td class="mdescLeft"> </td><td class="mdescRight">Sets the title of a toplevel window, to be displayed in the titlebar. <a href="#a89c47b105ce213eb1b075d1c8dd34ab6"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#af0af1130cfb882913b80d9a82123479e">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><td class="mdescLeft"> </td><td class="mdescRight">When using GTK+, typically you should use gtk_window_set_role() instead of this low-level function. <a href="#af0af1130cfb882913b80d9a82123479e"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a246b2c39068bf02f4e981fde58f8d776">set_startup_id</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>& startup_id)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">When using GTK+, typically you should use gtk_window_set_startup_id() instead of this low-level function. <a href="#a246b2c39068bf02f4e981fde58f8d776"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#ab8e6f4a6758057f249a41eccb3c59061">set_transient_for</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">Window</a> >& parent)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Indicates to the window manager that <em>window</em> is a transient dialog associated with the application window <em>parent</em>. <a href="#ab8e6f4a6758057f249a41eccb3c59061"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a3beabdcf6f6f2c36f03288aaba209863">set_background</a> (const <a class="el" href="classGdk_1_1Color.html">Color</a>& color)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Sets the background color of <em>window</em>. <a href="#a3beabdcf6f6f2c36f03288aaba209863"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a27f458f963e431f559b0b64c3134e40c">set_back_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">Pixmap</a> >& pixmap, bool parent_relative=true)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Sets the background pixmap of <em>window</em>. <a href="#a27f458f963e431f559b0b64c3134e40c"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a729b9a7dfc3d4da8bfb0761d78b626d4">unset_back_pixmap</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Unsets the background pixmap of <em>window</em> so that the window will have no background. <a href="#a729b9a7dfc3d4da8bfb0761d78b626d4"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="cairomm-1.0.tag:http://www.cairographics.org/documentation/cairomm/reference/" href="http://www.cairographics.org/documentation/cairomm/reference/classCairo_1_1RefPtr.html">Cairo::RefPtr</a>< <a class="elRef" doxygen="cairomm-1.0.tag:http://www.cairographics.org/documentation/cairomm/reference/" href="http://www.cairographics.org/documentation/cairomm/reference/classCairo_1_1Pattern.html">Cairo::Pattern</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a718c4f3ffa2a479be5dc2ace78c442b9">get_background_pattern</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Gets the pattern used to clear the background on <em>window</em>. <a href="#a718c4f3ffa2a479be5dc2ace78c442b9"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="cairomm-1.0.tag:http://www.cairographics.org/documentation/cairomm/reference/" href="http://www.cairographics.org/documentation/cairomm/reference/classCairo_1_1RefPtr.html">Cairo::RefPtr</a>< const <br class="typebreak"/>
<a class="elRef" doxygen="cairomm-1.0.tag:http://www.cairographics.org/documentation/cairomm/reference/" href="http://www.cairographics.org/documentation/cairomm/reference/classCairo_1_1Pattern.html">Cairo::Pattern</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a9bd46cbb385397f06782b9fb8fe8fefc">get_background_pattern</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Gets the pattern used to clear the background on <em>window</em>. <a href="#a9bd46cbb385397f06782b9fb8fe8fefc"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#abb73b1f599ce6cb72d2e184c63610fd0">set_cursor</a> (const <a class="el" href="classGdk_1_1Cursor.html">Cursor</a>& cursor)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Sets the mouse pointer for a <a class="el" href="classGdk_1_1Window.html" title="A Gdk::Window is a rectangular region on the screen.">Gdk::Window</a>. <a href="#abb73b1f599ce6cb72d2e184c63610fd0"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#aba9323e496965a473e37566140cc9a10">set_cursor</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Use the parent window's cursor. <a href="#aba9323e496965a473e37566140cc9a10"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a82d50ebb9c1f2bce00437eecc3f2b21c">get_user_data</a> (gpointer* data)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Retrieves the user data for <em>window</em>, which is normally the widget that <em>window</em> belongs to. <a href="#a82d50ebb9c1f2bce00437eecc3f2b21c"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a6833d29726c3d995c39b74310d21326e">get_geometry</a> (int& x, int& y, int& width, int& height, int& depth) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Any of the return location arguments to this function may be <code>0</code>, if you aren't interested in getting the value of that field. <a href="#a6833d29726c3d995c39b74310d21326e"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a38a8d33efb536561d975c71346e51f67">get_width</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Returns the width of the given <em>window</em>. <a href="#a38a8d33efb536561d975c71346e51f67"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#ab136e3c46305bbad2960ce3e40867c28">get_height</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Returns the height of the given <em>window</em>. <a href="#ab136e3c46305bbad2960ce3e40867c28"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a86dcf2d6fe032353e1ef76c69887dae7">get_position</a> (int& x, int& y) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Obtains the position of the window as reported in the most-recently-processed Gdk::EventConfigure. <a href="#a86dcf2d6fe032353e1ef76c69887dae7"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#af7eef7c273c02fbc0fd02c075b57309f">get_origin</a> (int& x, int& y) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Obtains the position of a window in root window coordinates. <a href="#af7eef7c273c02fbc0fd02c075b57309f"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a1be3c81129f5b1aac0cfa4344717fb80">get_root_coords</a> (int x, int y, int& root_x, int& root_y)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Obtains the position of a window position in root window coordinates. <a href="#a1be3c81129f5b1aac0cfa4344717fb80"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a2c659a54a8f1d84562a3f5befcf62d26">coords_to_parent</a> (double x, double y, double& parent_x, double& parent_y)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Transforms window coordinates from a child window to its parent window, where the parent window is the normal parent as returned by <a class="el" href="classGdk_1_1Window.html#ac09f2facb64137aa5b05623c2b41063a" title="Obtains the parent of window, as known to GDK.">get_parent()</a> for normal windows, and the window's embedder as returned by gdk_offscreen_window_get_embedder() for offscreen windows. <a href="#a2c659a54a8f1d84562a3f5befcf62d26"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a1b187b52dd8fefc49aca3d02d05882ed">coords_from_parent</a> (double parent_x, double parent_y, double& x, double& y)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Transforms window coordinates from a parent window to a child window, where the parent window is the normal parent as returned by <a class="el" href="classGdk_1_1Window.html#ac09f2facb64137aa5b05623c2b41063a" title="Obtains the parent of window, as known to GDK.">get_parent()</a> for normal windows, and the window's embedder as returned by gdk_offscreen_window_get_embedder() for offscreen windows. <a href="#a1b187b52dd8fefc49aca3d02d05882ed"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#ae886fd01bfaa25d1c843bafeb745790f">get_root_origin</a> (int& x, int& y) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Obtains the top-left corner of the window manager frame in root window coordinates. <a href="#ae886fd01bfaa25d1c843bafeb745790f"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#ab518e9b6a14392722f71cb2174c40d55">get_frame_extents</a> (<a class="el" href="classGdk_1_1Rectangle.html">Rectangle</a>& rect)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Obtains the bounding box of the window, including window manager titlebar/borders if any. <a href="#ab518e9b6a14392722f71cb2174c40d55"></a><br/></td></tr>
<tr><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">Window</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a7b72ec86d47d628bd9112a803d61089f">get_pointer</a> (int& x, int& y, <a class="el" href="group__gdkmmEnums.html#ga734c2979005c87dbe51223a0128cdd97">ModifierType</a>& mask)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Obtains the current pointer position and modifier state. <a href="#a7b72ec86d47d628bd9112a803d61089f"></a><br/></td></tr>
<tr><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">Window</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#ac09f2facb64137aa5b05623c2b41063a">get_parent</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Obtains the parent of <em>window</em>, as known to GDK. <a href="#ac09f2facb64137aa5b05623c2b41063a"></a><br/></td></tr>
<tr><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">Window</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#ab5485601dc363c5aa40862113a1a40ff">get_parent</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Obtains the parent of <em>window</em>, as known to GDK. <a href="#ab5485601dc363c5aa40862113a1a40ff"></a><br/></td></tr>
<tr><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">Window</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a13b651e86823b82bb7c06249b30f95de">get_toplevel</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Gets the toplevel window that's an ancestor of <em>window</em>. <a href="#a13b651e86823b82bb7c06249b30f95de"></a><br/></td></tr>
<tr><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">Window</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a025df98a25bb99ef3144004cb9547878">get_toplevel</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Gets the toplevel window that's an ancestor of <em>window</em>. <a href="#a025df98a25bb99ef3144004cb9547878"></a><br/></td></tr>
<tr><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">Window</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a10d716ddea592b6cae558f9462a21244">get_effective_parent</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Obtains the parent of <em>window</em>, as known to GDK. <a href="#a10d716ddea592b6cae558f9462a21244"></a><br/></td></tr>
<tr><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">Window</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a969ef8f54573f9535839b03c08a30589">get_effective_parent</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Obtains the parent of <em>window</em>, as known to GDK. <a href="#a969ef8f54573f9535839b03c08a30589"></a><br/></td></tr>
<tr><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">Window</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a585079dc5788f71aec8be74463720636">get_effective_toplevel</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Gets the toplevel window that's an ancestor of <em>window</em>. <a href="#a585079dc5788f71aec8be74463720636"></a><br/></td></tr>
<tr><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><br class="typebreak"/>
< <a class="el" href="classGdk_1_1Window.html">Window</a> > > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a64ed74dec0ef11678a2b70286da1c3dc">get_children</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Gets the list of children of <em>window</em> known to GDK. <a href="#a64ed74dec0ef11678a2b70286da1c3dc"></a><br/></td></tr>
<tr><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><br class="typebreak"/>
< const <a class="el" href="classGdk_1_1Window.html">Window</a> > > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a058a3a892228ea6b061b27d0b4bc5f90">get_children</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Gets the list of children of <em>window</em> known to GDK. <a href="#a058a3a892228ea6b061b27d0b4bc5f90"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="group__gdkmmEnums.html#ga0288c23e93ded8c0326235f1f1120c61">EventMask</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a41eaa04d1b75d309be5be8639b1bf1b0">get_events</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Gets the event mask for <em>window</em>. <a href="#a41eaa04d1b75d309be5be8639b1bf1b0"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#abe022e72429562865fa0d31587056890">set_events</a> (<a class="el" href="group__gdkmmEnums.html#ga0288c23e93ded8c0326235f1f1120c61">EventMask</a> event_mask)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">The event mask for a window determines which events will be reported for that window. <a href="#abe022e72429562865fa0d31587056890"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#aafd2706d1abf1f2ed0de4cbb3708d7cb">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> > >& pixbufs)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Sets a list of icons for the window. <a href="#aafd2706d1abf1f2ed0de4cbb3708d7cb"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a0f9e1a266aec25fb998accc03c90d6c4">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_1Window.html">Window</a> >& icon_window, 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">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">Bitmap</a> >& mask)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Sets the icon of <em>window</em> as a pixmap or window. <a href="#a0f9e1a266aec25fb998accc03c90d6c4"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a8eba9690001e09932eccc46c08aff05c">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_1Window.html">Window</a> >& icon_window, 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">Pixmap</a> >& pixmap)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a700b396befa605d159f2cd697a1f6014">unset_icon</a> ()</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#ac5e3fbd4f07bed0a5060b32a07a127b6">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><td class="mdescLeft"> </td><td class="mdescRight">Windows may have a name used while minimized, distinct from the name they display in their titlebar. <a href="#ac5e3fbd4f07bed0a5060b32a07a127b6"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#ac45fc54f035a56f9b8c6a1f5a8a63ed3">set_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="classGdk_1_1Window.html">Window</a> >& leader)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Sets the group leader window for <em>window</em>. <a href="#ac45fc54f035a56f9b8c6a1f5a8a63ed3"></a><br/></td></tr>
<tr><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">Window</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#ad151acb64c1a34158cd3ace71889f260">get_group</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Returns the group leader window for <em>window</em>. <a href="#ad151acb64c1a34158cd3ace71889f260"></a><br/></td></tr>
<tr><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">Window</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a1faf6b134e161a09ad9ce937585176bd">get_group</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Returns the group leader window for <em>window</em>. <a href="#a1faf6b134e161a09ad9ce937585176bd"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a851f5cf4a7e203d8f6f6078818b7f80d">set_decorations</a> (<a class="el" href="group__gdkmmEnums.html#ga1164863f498802821810010d1f3202a4">WMDecoration</a> decorations)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">"Decorations" are the features the window manager adds to a toplevel <a class="el" href="classGdk_1_1Window.html" title="A Gdk::Window is a rectangular region on the screen.">Gdk::Window</a>. <a href="#a851f5cf4a7e203d8f6f6078818b7f80d"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#af006eb45e3ce4884a731a33913493290">get_decorations</a> (<a class="el" href="group__gdkmmEnums.html#ga1164863f498802821810010d1f3202a4">WMDecoration</a>& decorations) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Returns the decorations set on the GdkWindow with #gdk_window_set_decorations. <a href="#af006eb45e3ce4884a731a33913493290"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a2ada3527bed8ba03670d83203c09a446">set_functions</a> (<a class="el" href="group__gdkmmEnums.html#gae86c2fc4eac7ecb9c6c9dd841b1ba6af">WMFunction</a> functions)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Sets hints about the window management functions to make available via buttons on the window frame. <a href="#a2ada3527bed8ba03670d83203c09a446"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="cairomm-1.0.tag:http://www.cairographics.org/documentation/cairomm/reference/" href="http://www.cairographics.org/documentation/cairomm/reference/classCairo_1_1RefPtr.html">Cairo::RefPtr</a>< <a class="elRef" doxygen="cairomm-1.0.tag:http://www.cairographics.org/documentation/cairomm/reference/" href="http://www.cairographics.org/documentation/cairomm/reference/classCairo_1_1Surface.html">Cairo::Surface</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a47895246b15dd4893a3e54c4c7d1d6c2">create_similar_surface</a> (<a class="elRef" doxygen="cairomm-1.0.tag:http://www.cairographics.org/documentation/cairomm/reference/" href="http://www.cairographics.org/documentation/cairomm/reference/namespaceCairo.html#a1f0f5d82599dfeabbeb2396dbfd767d0">Cairo::Content</a> content, int width, int height)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Create a new surface that is as compatible as possible with the given <em>window</em>. <a href="#a47895246b15dd4893a3e54c4c7d1d6c2"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#afba92b3ac4244483186e68cc17ded2d5">beep</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Emits a short beep associated to <em>window</em> in the appropriate display, if supported. <a href="#afba92b3ac4244483186e68cc17ded2d5"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a6d14f032c5f40a83ded5e9817cafaae3">iconify</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Asks to iconify (minimize) <em>window</em>. <a href="#a6d14f032c5f40a83ded5e9817cafaae3"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a2c43698b27dc5e31b4c7c1ca76496a03">deiconify</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Attempt to deiconify (unminimize) <em>window</em>. <a href="#a2c43698b27dc5e31b4c7c1ca76496a03"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a72cddee1b5ed8a663b6f245e59132473">stick</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">"Pins" a window such that it's on all workspaces and does not scroll with viewports, for window managers that have scrollable viewports. <a href="#a72cddee1b5ed8a663b6f245e59132473"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a22e499aeadc19f7373972355ae2872cb">unstick</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Reverse operation for <a class="el" href="classGdk_1_1Window.html#a72cddee1b5ed8a663b6f245e59132473" title=""Pins" a window such that it's on all workspaces and does not scroll with viewports...">stick()</a>; see <a class="el" href="classGdk_1_1Window.html#a72cddee1b5ed8a663b6f245e59132473" title=""Pins" a window such that it's on all workspaces and does not scroll with viewports...">stick()</a>, and gtk_window_unstick(). <a href="#a22e499aeadc19f7373972355ae2872cb"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a4cc88ddb51aff3135603a5282073f625">maximize</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Maximizes the window. <a href="#a4cc88ddb51aff3135603a5282073f625"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#ad9325d93af96ee6774ffa4fa354d1d25">unmaximize</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Unmaximizes the window. <a href="#ad9325d93af96ee6774ffa4fa354d1d25"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a53a80a911aab9875900da568c57b0cee">register_dnd</a> ()</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a4e2292672c3e82f7b25503db8d9c0266">begin_resize_drag</a> (<a class="el" href="group__gdkmmEnums.html#gae31896bd6d904848c07ef7f929063c0c">WindowEdge</a> edge, int button, int root_x, int root_y, guint32 timestamp)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Begins a window resize operation (for a toplevel window). <a href="#a4e2292672c3e82f7b25503db8d9c0266"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#af6a0afd0f7d850e04a3cdc5d76115c56">begin_move_drag</a> (int button, int root_x, int root_y, guint32 timestamp)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Begins a window move operation (for a toplevel window). <a href="#af6a0afd0f7d850e04a3cdc5d76115c56"></a><br/></td></tr>
<tr><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">DragContext</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#aa1456c4781e4c38e336039b7168302d2">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_1ArrayHandle.html">Glib::StringArrayHandle</a>& targets)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Starts a drag and creates a new drag context for it. <a href="#aa1456c4781e4c38e336039b7168302d2"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#afd705d134dd0753dfd5d76bcb4988c27">invalidate_rect</a> (const <a class="el" href="classGdk_1_1Rectangle.html">Rectangle</a>& rect, bool invalidate_children)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">A convenience wrapper around <a class="el" href="classGdk_1_1Window.html#a1a68d500a7be88de01d87e781aa2be89" title="Adds region to the update area for window.">invalidate_region()</a> which invalidates a rectangular region. <a href="#afd705d134dd0753dfd5d76bcb4988c27"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#ab7cec9c90d9a9738ec59a0686fc832cc">invalidate</a> (bool invalidate_children)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">A convenience wrapper around <a class="el" href="classGdk_1_1Window.html#a1a68d500a7be88de01d87e781aa2be89" title="Adds region to the update area for window.">invalidate_region()</a> which invalidates the whole region. <a href="#ab7cec9c90d9a9738ec59a0686fc832cc"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a1a68d500a7be88de01d87e781aa2be89">invalidate_region</a> (const <a class="el" href="classGdk_1_1Region.html">Region</a>& region, bool invalidate_children=true)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Adds <em>region</em> to the update area for <em>window</em>. <a href="#a1a68d500a7be88de01d87e781aa2be89"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGdk_1_1Region.html">Region</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a6145bbac95071f5783752504d169c7b4">get_update_area</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Transfers ownership of the update area from <em>window</em> to the caller of the function. <a href="#a6145bbac95071f5783752504d169c7b4"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a15ebab2c454f75f0a5342542626cbdde">freeze_updates</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Temporarily freezes a window such that it won't receive expose events. <a href="#a15ebab2c454f75f0a5342542626cbdde"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a128616c32cb210b0181a74d6f6bfa4a5">thaw_updates</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Thaws a window frozen with <a class="el" href="classGdk_1_1Window.html#a15ebab2c454f75f0a5342542626cbdde" title="Temporarily freezes a window such that it won't receive expose events.">Gdk::Window::freeze_updates()</a>. <a href="#a128616c32cb210b0181a74d6f6bfa4a5"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a6ec5f7e788470159672511c964771285">process_updates</a> (bool update_children)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Sends one or more expose events to <em>window</em>. <a href="#a6ec5f7e788470159672511c964771285"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a9a88b194ecdcee52fd7d37118d5375db">get_internal_paint_info</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">Drawable</a> >& real_drawable, int& x_offset, int& y_offset) const </td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a356e4e19207606e91f87346a378e1b1f">enable_synchronized_configure</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Indicates that the application will cooperate with the window system in synchronizing the window repaint with the window manager during resizing operations. <a href="#a356e4e19207606e91f87346a378e1b1f"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#aebb7266930dad01675f28abe8e5c4cf1">configure_finished</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Signal to the window system that the application has finished handling Configure events it has received. <a href="#aebb7266930dad01675f28abe8e5c4cf1"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a34b9d99e30afd4e4106d66408d007fdd">set_skip_taskbar_hint</a> (bool skips_taskbar=true)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Toggles whether a window should appear in a task list or window list. <a href="#a34b9d99e30afd4e4106d66408d007fdd"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#aa4900976eda16fc8a6280eb0bd325f8c">set_skip_pager_hint</a> (bool skips_pager=true)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Toggles whether a window should appear in a pager (workspace switcher, or other desktop utility program that displays a small thumbnail representation of the windows on the desktop). <a href="#aa4900976eda16fc8a6280eb0bd325f8c"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a9f22c1db8469dbe6fa8229e80d344434">set_urgency_hint</a> (bool urgent=true)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Toggles whether a window needs the user's urgent attention. <a href="#a9f22c1db8469dbe6fa8229e80d344434"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a09a8cf95b58f8cdcc819d6064f6dc984">fullscreen</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Moves the window into fullscreen mode. <a href="#a09a8cf95b58f8cdcc819d6064f6dc984"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a46d71da2107832855f8d047b3effbb67">unfullscreen</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Moves the window out of fullscreen mode. <a href="#a46d71da2107832855f8d047b3effbb67"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="group__gdkmmEnums.html#gab3918cc69c861b97779ac08dfa48610f">GrabStatus</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a6bcc579d9de9494524681890e69147c7">pointer_grab</a> (bool owner_events, <a class="el" href="group__gdkmmEnums.html#ga0288c23e93ded8c0326235f1f1120c61">EventMask</a> event_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_1RefPtr.html">Glib::RefPtr</a>< const <a class="el" href="classGdk_1_1Window.html">Window</a> >& confine_to, const <a class="el" href="classGdk_1_1Cursor.html">Cursor</a>& cursor, guint32 time_)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="group__gdkmmEnums.html#gab3918cc69c861b97779ac08dfa48610f">GrabStatus</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#aa448a6cd06d1421d519d78da43ae6b8f">pointer_grab</a> (bool owner_events, <a class="el" href="group__gdkmmEnums.html#ga0288c23e93ded8c0326235f1f1120c61">EventMask</a> event_mask, const <a class="el" href="classGdk_1_1Cursor.html">Cursor</a>& cursor, guint32 timestamp)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Grabs the pointer to a specific window. <a href="#aa448a6cd06d1421d519d78da43ae6b8f"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="group__gdkmmEnums.html#gab3918cc69c861b97779ac08dfa48610f">GrabStatus</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a2bcea48b9e4a8f747f8c6ace58fc4651">pointer_grab</a> (bool owner_events, <a class="el" href="group__gdkmmEnums.html#ga0288c23e93ded8c0326235f1f1120c61">EventMask</a> event_mask, guint32 timestamp)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Grabs the pointer to a specific window. <a href="#a2bcea48b9e4a8f747f8c6ace58fc4651"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="group__gdkmmEnums.html#gab3918cc69c861b97779ac08dfa48610f">GrabStatus</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#aeece1b9a0e700b161b86471843a906ac">keyboard_grab</a> (bool owner_events, guint32 timestamp)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a2e961a8cba7b796e7787ab1857340ded">set_keep_above</a> (bool setting=true)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Set if <em>window</em> must be kept above other windows. <a href="#a2e961a8cba7b796e7787ab1857340ded"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a1e740ff027fc23170a1fd3cd12cbd3d0">set_keep_below</a> (bool setting=true)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Set if <em>window</em> must be kept below other windows. <a href="#a1e740ff027fc23170a1fd3cd12cbd3d0"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#af70da6bc12c5997b6cd77f4cd14e5129">set_opacity</a> (double opacity)</td></tr>
<tr><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="#af70da6bc12c5997b6cd77f4cd14e5129"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a5008b5bb10128e510ef8c7cc199f2151">get_accept_focus</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Determines whether or not the desktop environment shuld be hinted that the window does not want to receive input focus. <a href="#a5008b5bb10128e510ef8c7cc199f2151"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#acb1d7d6cbd6691a38b699a39d2eecc30">set_accept_focus</a> (bool accept_focus=true)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Setting <em>accept_focus</em> to <code>false</code> hints the desktop environment that the window doesn't want to receive input focus. <a href="#acb1d7d6cbd6691a38b699a39d2eecc30"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a8d742b2e4c4f7b616ad2ac2c794a06dd">get_focus_on_map</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Determines whether or not the desktop environment should be hinted that the window does not want to receive input focus when it is mapped. <a href="#a8d742b2e4c4f7b616ad2ac2c794a06dd"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#adf1d9237560226bc8b78ae48c9172e08">set_focus_on_map</a> (bool focus_on_map)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Setting <em>focus_on_map</em> to <code>false</code> hints the desktop environment that the window doesn't want to receive input focus when it is mapped. <a href="#adf1d9237560226bc8b78ae48c9172e08"></a><br/></td></tr>
<tr><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">Pixmap</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a343f27de4df806b6e7f701521592ed56">get_offscreen_pixmap</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Gets the offscreen pixmap that an offscreen window renders into. <a href="#a343f27de4df806b6e7f701521592ed56"></a><br/></td></tr>
<tr><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_1Pixmap.html">Pixmap</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#ab956125c61b6f99c94d5e4fc02b3ba90">get_offscreen_pixmap</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Gets the offscreen pixmap that an offscreen window renders into. <a href="#ab956125c61b6f99c94d5e4fc02b3ba90"></a><br/></td></tr>
<tr><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">Window</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a50471ca056168fa50117f7458ba0fbac">get_offscreen_embedder</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Gets the window that <em>window</em> is embedded in. <a href="#a50471ca056168fa50117f7458ba0fbac"></a><br/></td></tr>
<tr><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">Window</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#aba399e89ed40c05ca86508c174c57437">get_offscreen_embedder</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Gets the window that <em>window</em> is embedded in. <a href="#aba399e89ed40c05ca86508c174c57437"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#abc5878a18ad2da8f7ae9af24601baff4">set_offscreen_embedder</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">Window</a> >& embedder)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Sets <em>window</em> to be embedded in <em>embedder</em>. <a href="#abc5878a18ad2da8f7ae9af24601baff4"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#aac5e5fe4ff5d0ec1d56d6e352b30f034">redirect_to_drawable</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_1Drawable.html">Drawable</a> >& drawable, int src_x, int src_y, int dest_x, int dest_y, int width, int height)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Redirects drawing into <em>window</em> so that drawing to the window in the rectangle specified by <em>src_x</em>, <em>src_y</em>, <em>width</em> and <em>height</em> is also drawn into <em>drawable</em> at <em>dest_x</em>, <em>dest_y</em>. <a href="#aac5e5fe4ff5d0ec1d56d6e352b30f034"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a5b1be8f613f046df28c44f54a076b59e">remove_redirection</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Removes any active redirection started by <a class="el" href="classGdk_1_1Window.html#aac5e5fe4ff5d0ec1d56d6e352b30f034" title="Redirects drawing into window so that drawing to the window in the rectangle specified by src_x...">redirect_to_drawable()</a>. <a href="#a5b1be8f613f046df28c44f54a076b59e"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#af3885543eb728625b093cb5373734c40">geometry_changed</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This function informs GDK that the geometry of an embedded offscreen window has changed. <a href="#af3885543eb728625b093cb5373734c40"></a><br/></td></tr>
<tr><td colspan="2"><h2><a name="pub-static-methods"></a>
Static Public Member Functions</h2></td></tr>
<tr><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_1Window.html">Window</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a4895a2e0fd6d5dcc1c6f1ffe712c65a6">create</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGdk_1_1Window.html">Window</a> >& parent, GdkWindowAttr* attributes, int attributes_mask)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">static void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a5c7958efa9bf3499bf411bff07edc39d">set_sm_client_id</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>& sm_client_id)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Sets the <literal>SM_CLIENT_ID</literal> property on the application's leader window so that the window manager can save the application's state using the X11R6 ICCCM session management protocol. <a href="#a5c7958efa9bf3499bf411bff07edc39d"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">static void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#ab8b3893818a244b31fed8460586cd2d6">unset_sm_client_id</a> ()</td></tr>
<tr><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><br class="typebreak"/>
< <a 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">Window</a> > > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#abdcf6aa7127b2e1911fc6773b801a2fc">get_toplevels</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Obtains a list of all toplevel windows known to GDK on the default screen (see gdk_window_get_toplevels_for_screen()). <a href="#abdcf6aa7127b2e1911fc6773b801a2fc"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">static void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a3fc76fbdf9948b92dacfd1a9e340184b">process_all_updates</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Calls <a class="el" href="classGdk_1_1Window.html#a6ec5f7e788470159672511c964771285" title="Sends one or more expose events to window.">process_updates()</a> for all windows (see <a class="el" href="classGdk_1_1Window.html" title="A Gdk::Window is a rectangular region on the screen.">Gdk::Window</a>) in the application. <a href="#a3fc76fbdf9948b92dacfd1a9e340184b"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">static void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a736baef4396a9255cc820ba60245769a">set_debug_updates</a> (bool setting=true)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">With update debugging enabled, calls to <a class="el" href="classGdk_1_1Window.html#a1a68d500a7be88de01d87e781aa2be89" title="Adds region to the update area for window.">invalidate_region()</a> clear the invalidated region of the screen to a noticeable color, and GDK pauses for a short time before sending exposes to windows during <a class="el" href="classGdk_1_1Window.html#a6ec5f7e788470159672511c964771285" title="Sends one or more expose events to window.">process_updates()</a>. <a href="#a736baef4396a9255cc820ba60245769a"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">static void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a79cdc422025b7ce7be99ef20ff20bafe">constrain_size</a> (const <a class="el" href="namespaceGdk.html#af6948e754cab4e79c6430fb94e438d83">Geometry</a>& geometry, guint flags, int width, int height, int& new_width, int& new_height)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Constrains a desired width and height according to a set of geometry hints (such as minimum and maximum size). <a href="#a79cdc422025b7ce7be99ef20ff20bafe"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">static void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#ac8586f7f64a088277347ac0725bbe2c0">pointer_ungrab</a> (guint32 timestamp)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Ungrabs the pointer on the default display, if it is grabbed by this application. <a href="#ac8586f7f64a088277347ac0725bbe2c0"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">static void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#ad9a73b6b522030512fb87acd9739eda9">keyboard_ungrab</a> (guint32 timestamp)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Ungrabs the keyboard on the default display, if it is grabbed by this application. <a href="#ad9a73b6b522030512fb87acd9739eda9"></a><br/></td></tr>
<tr><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_1Window.html">Window</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a67dd93686b7a8542e9eb4f464a3f4265">get_default_root_window</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Obtains the root window (parent all other windows are inside) for the default display and screen. <a href="#a67dd93686b7a8542e9eb4f464a3f4265"></a><br/></td></tr>
<tr><td colspan="2"><h2><a name="pro-methods"></a>
Protected Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Window.html#a8442ac0f1bfbfcdd748903685589fa5e">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">Window</a> >& parent, GdkWindowAttr* attributes, int attributes_mask)</td></tr>
<tr><td colspan="2"><h2><a name="related"></a>
Related Functions</h2></td></tr>
<tr><td colspan="2">(Note that these are not member functions.) <br/></td></tr>
<tr><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="classGdk_1_1Window.html#ac7eeaceb12343803db90524716bf7bd0">wrap</a> (GdkWindowObject* object, bool take_copy=false)</td></tr>
<tr><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="#ac7eeaceb12343803db90524716bf7bd0"></a><br/></td></tr>
</table>
<hr/><a name="_details"></a><h2>Detailed Description</h2>
<div class="textblock"><p>A <a class="el" href="classGdk_1_1Window.html" title="A Gdk::Window is a rectangular region on the screen.">Gdk::Window</a> is a rectangular region on the screen. </p>
<p>It's a low-level object, used to implement high-level objects such as <a class="el" href="classGtk_1_1Widget.html" title="Abstract Widget (Base class for all widgets)">Gtk::Widget</a> and <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> on the GTK+ level. 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> is a toplevel window, the thing a user might think of as a "window" with a titlebar and so on; 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> may contain many Gdk::Windows. For example, each <a class="el" href="classGtk_1_1Button.html" title="A widget that creates a signal when clicked on.">Gtk::Button</a> has a <a class="el" href="classGdk_1_1Window.html" title="A Gdk::Window is a rectangular region on the screen.">Gdk::Window</a> associated with it. </p>
</div><hr/><h2>Constructor & Destructor Documentation</h2>
<a class="anchor" id="a84984d0d1a1a4dd893133a80fbd25ec5"></a><!-- doxytag: member="Gdk::Window::~Window" ref="a84984d0d1a1a4dd893133a80fbd25ec5" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual Gdk::Window::~Window </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td><code> [virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="a8442ac0f1bfbfcdd748903685589fa5e"></a><!-- doxytag: member="Gdk::Window::Window" ref="a8442ac0f1bfbfcdd748903685589fa5e" args="(const Glib::RefPtr< Window > &parent, GdkWindowAttr *attributes, int attributes_mask)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">Gdk::Window::Window </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_1Window.html">Window</a> >& </td>
<td class="paramname"><em>parent</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">GdkWindowAttr * </td>
<td class="paramname"><em>attributes</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>attributes_mask</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td><code> [protected]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<hr/><h2>Member Function Documentation</h2>
<a class="anchor" id="a413863a30bbac24d6d1a207401c07caf"></a><!-- doxytag: member="Gdk::Window::add_filter" ref="a413863a30bbac24d6d1a207401c07caf" args="(GdkFilterFunc function, gpointer data)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::Window::add_filter </td>
<td>(</td>
<td class="paramtype">GdkFilterFunc </td>
<td class="paramname"><em>function</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">gpointer </td>
<td class="paramname"><em>data</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Adds an event filter to <em>window</em>, allowing you to intercept events before they reach GDK. </p>
<p>This is a low-level operation and makes it easy to break GDK and/or GTK+, so you have to know what you're doing. Pass <code>0</code> for <em>window</em> to get all events for all windows, instead of events for a specific window.</p>
<p>See <a class="el" href="classGdk_1_1Display.html#a6c4f9ccf0ed0da91dd2d88f7a58aa73d" title="Adds a filter to be called when X ClientMessage events are received.">Gdk::Display::add_client_message_filter()</a> if you are interested in X ClientMessage events. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">function</td><td>Filter callback. </td></tr>
<tr><td class="paramname">data</td><td>Data to pass to filter callback. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="afba92b3ac4244483186e68cc17ded2d5"></a><!-- doxytag: member="Gdk::Window::beep" ref="afba92b3ac4244483186e68cc17ded2d5" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::Window::beep </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Emits a short beep associated to <em>window</em> in the appropriate display, if supported. </p>
<p>Otherwise, emits a short beep on the display just as <a class="el" href="classGdk_1_1Display.html#a63ff8a09aa81f2bf1f7581ddba39fe69" title="Emits a short beep on display.">Gdk::Display::beep()</a>.</p>
<dl class="since_2_12"><dt><b><a class="el" href="since_2_12.html#_since_2_12000010">Since gtkmm 2.12:</a></b></dt><dd></dd></dl>
</div>
</div>
<a class="anchor" id="af6a0afd0f7d850e04a3cdc5d76115c56"></a><!-- doxytag: member="Gdk::Window::begin_move_drag" ref="af6a0afd0f7d850e04a3cdc5d76115c56" args="(int button, int root_x, int root_y, guint32 timestamp)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::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>Begins a window move operation (for a toplevel window). </p>
<p>You might use this function to implement a "window move grip," for example. The function works best with window managers that support the , but has a fallback implementation for other window managers. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">button</td><td>The button being used to drag. </td></tr>
<tr><td class="paramname">root_x</td><td>Root window X coordinate of mouse click that began the drag. </td></tr>
<tr><td class="paramname">root_y</td><td>Root window Y coordinate of mouse click that began the drag. </td></tr>
<tr><td class="paramname">timestamp</td><td>Timestamp of mouse click that began the drag. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="aa0cc483d4278e4c7fb0cee2d109095ba"></a><!-- doxytag: member="Gdk::Window::begin_paint_rect" ref="aa0cc483d4278e4c7fb0cee2d109095ba" args="(Rectangle &rectangle)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::Window::begin_paint_rect </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classGdk_1_1Rectangle.html">Rectangle</a>& </td>
<td class="paramname"><em>rectangle</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>A convenience wrapper around <a class="el" href="classGdk_1_1Window.html#ae9b866577d6a20aa250b74a1144dca3f" title="Indicates that you are beginning the process of redrawing region.">begin_paint_region()</a> which creates a rectangular region for you. </p>
<p>See <a class="el" href="classGdk_1_1Window.html#ae9b866577d6a20aa250b74a1144dca3f" title="Indicates that you are beginning the process of redrawing region.">begin_paint_region()</a> for details. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">rectangle</td><td><a class="el" href="classGdk_1_1Rectangle.html" title="Gdk::Rectangle is a structure holding the position and size of a rectangle.">Rectangle</a> you intend to draw to. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="ae9b866577d6a20aa250b74a1144dca3f"></a><!-- doxytag: member="Gdk::Window::begin_paint_region" ref="ae9b866577d6a20aa250b74a1144dca3f" args="(const Region &region)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::Window::begin_paint_region </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classGdk_1_1Region.html">Region</a>& </td>
<td class="paramname"><em>region</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Indicates that you are beginning the process of redrawing <em>region</em>. </p>
<p>A backing store (offscreen buffer) large enough to contain <em>region</em> will be created. The backing store will be initialized with the background color or background pixmap for <em>window</em>. Then, all drawing operations performed on <em>window</em> will be diverted to the backing store. When you call <a class="el" href="classGdk_1_1Window.html#a21c920c3f5903e7d338b68c68f09e645" title="Indicates that the backing store created by the most recent call to begin_paint_region() should be co...">end_paint()</a>, the backing store will be copied to <em>window</em>, making it visible onscreen. Only the part of <em>window</em> contained in <em>region</em> will be modified; that is, drawing operations are clipped to <em>region</em>.</p>
<p>The net result of all this is to remove flicker, because the user sees the finished product appear all at once when you call <a class="el" href="classGdk_1_1Window.html#a21c920c3f5903e7d338b68c68f09e645" title="Indicates that the backing store created by the most recent call to begin_paint_region() should be co...">end_paint()</a>. If you draw to <em>window</em> directly without calling <a class="el" href="classGdk_1_1Window.html#ae9b866577d6a20aa250b74a1144dca3f" title="Indicates that you are beginning the process of redrawing region.">begin_paint_region()</a>, the user may see flicker as individual drawing operations are performed in sequence. The clipping and background-initializing features of <a class="el" href="classGdk_1_1Window.html#ae9b866577d6a20aa250b74a1144dca3f" title="Indicates that you are beginning the process of redrawing region.">begin_paint_region()</a> are conveniences for the programmer, so you can avoid doing that work yourself.</p>
<p>When using GTK+, the widget system automatically places calls to <a class="el" href="classGdk_1_1Window.html#ae9b866577d6a20aa250b74a1144dca3f" title="Indicates that you are beginning the process of redrawing region.">begin_paint_region()</a> and <a class="el" href="classGdk_1_1Window.html#a21c920c3f5903e7d338b68c68f09e645" title="Indicates that the backing store created by the most recent call to begin_paint_region() should be co...">end_paint()</a> around emissions of the expose_event signal. That is, if you're writing an expose event handler, you can assume that the exposed area in Gdk::EventExpose has already been cleared to the window background, is already set as the clip region, and already has a backing store. Therefore in most cases, application code need not call <a class="el" href="classGdk_1_1Window.html#ae9b866577d6a20aa250b74a1144dca3f" title="Indicates that you are beginning the process of redrawing region.">begin_paint_region()</a>. (You can disable the automatic calls around expose events on a widget-by-widget basis by calling gtk_widget_set_double_buffered().)</p>
<p>If you call this function multiple times before calling the matching <a class="el" href="classGdk_1_1Window.html#a21c920c3f5903e7d338b68c68f09e645" title="Indicates that the backing store created by the most recent call to begin_paint_region() should be co...">end_paint()</a>, the backing stores are pushed onto a stack. <a class="el" href="classGdk_1_1Window.html#a21c920c3f5903e7d338b68c68f09e645" title="Indicates that the backing store created by the most recent call to begin_paint_region() should be co...">end_paint()</a> copies the topmost backing store onscreen, subtracts the topmost region from all other regions in the stack, and pops the stack. All drawing operations affect only the topmost backing store in the stack. One matching call to <a class="el" href="classGdk_1_1Window.html#a21c920c3f5903e7d338b68c68f09e645" title="Indicates that the backing store created by the most recent call to begin_paint_region() should be co...">end_paint()</a> is required for each call to <a class="el" href="classGdk_1_1Window.html#ae9b866577d6a20aa250b74a1144dca3f" title="Indicates that you are beginning the process of redrawing region.">begin_paint_region()</a>. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">region</td><td><a class="el" href="classGdk_1_1Region.html" title="This is an opaque data type holding a set of arbitrary pixels, and is usually used for clipping graph...">Region</a> you intend to draw to. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a4e2292672c3e82f7b25503db8d9c0266"></a><!-- doxytag: member="Gdk::Window::begin_resize_drag" ref="a4e2292672c3e82f7b25503db8d9c0266" args="(WindowEdge edge, int button, int root_x, int root_y, guint32 timestamp)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::Window::begin_resize_drag </td>
<td>(</td>
<td class="paramtype"><a class="el" href="group__gdkmmEnums.html#gae31896bd6d904848c07ef7f929063c0c">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>Begins a window resize operation (for a toplevel window). </p>
<p>You might use this function to implement a "window resize grip," for example; in fact <a class="el" href="classGtk_1_1Statusbar.html" title="Text status indicator This widget is used to display status information.">Gtk::Statusbar</a> uses it. The function works best with window managers that support the , but has a fallback implementation for other window managers. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">edge</td><td>The edge or corner from which the drag is started. </td></tr>
<tr><td class="paramname">button</td><td>The button being used to drag. </td></tr>
<tr><td class="paramname">root_x</td><td>Root window X coordinate of mouse click that began the drag. </td></tr>
<tr><td class="paramname">root_y</td><td>Root window Y coordinate of mouse click that began the drag. </td></tr>
<tr><td class="paramname">timestamp</td><td>Timestamp of mouse click that began the drag (use <a class="el" href="classGdk_1_1Event.html#a6d785b16c3532cdcd0794d7d4161c40e" title="Returns the time stamp from event, if there is one; otherwise returns Gdk::CURRENT_TIME.">Gdk::Event::get_time()</a>). </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a62057e2fe9726f664dd01319e645f7b1"></a><!-- doxytag: member="Gdk::Window::clear" ref="a62057e2fe9726f664dd01319e645f7b1" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::Window::clear </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Clears an entire <em>window</em> to the background color or background pixmap. </p>
</div>
</div>
<a class="anchor" id="a5d0030ccfb0a62bd6d734c49cb706a51"></a><!-- doxytag: member="Gdk::Window::clear_area" ref="a5d0030ccfb0a62bd6d734c49cb706a51" args="(int x, int y, int width, int height)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::Window::clear_area </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"><em>x</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>y</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>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>Clears an area of <em>window</em> to the background color or background pixmap. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">x</td><td>X coordinate of rectangle to clear. </td></tr>
<tr><td class="paramname">y</td><td>Y coordinate of rectangle to clear. </td></tr>
<tr><td class="paramname">width</td><td>Width of rectangle to clear. </td></tr>
<tr><td class="paramname">height</td><td>Height of rectangle to clear. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a1b9659f60941e5f14b3497409d03409a"></a><!-- doxytag: member="Gdk::Window::clear_area_e" ref="a1b9659f60941e5f14b3497409d03409a" args="(int x, int y, int width, int height)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::Window::clear_area_e </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"><em>x</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>y</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>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>Like <a class="el" href="classGdk_1_1Window.html#a5d0030ccfb0a62bd6d734c49cb706a51" title="Clears an area of window to the background color or background pixmap.">clear_area()</a>, but also generates an expose event for the cleared area. </p>
<p>This function has a stupid name because it dates back to the mists time, pre-GDK-1.0. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">x</td><td>X coordinate of rectangle to clear. </td></tr>
<tr><td class="paramname">y</td><td>Y coordinate of rectangle to clear. </td></tr>
<tr><td class="paramname">width</td><td>Width of rectangle to clear. </td></tr>
<tr><td class="paramname">height</td><td>Height of rectangle to clear. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="aebb7266930dad01675f28abe8e5c4cf1"></a><!-- doxytag: member="Gdk::Window::configure_finished" ref="aebb7266930dad01675f28abe8e5c4cf1" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::Window::configure_finished </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Signal to the window system that the application has finished handling Configure events it has received. </p>
<p><a class="el" href="classGdk_1_1Window.html" title="A Gdk::Window is a rectangular region on the screen.">Window</a> Managers can use this to better synchronize the frame repaint with the application. GTK+ applications will automatically call this function when appropriate.</p>
<p>This function can only be called if <a class="el" href="classGdk_1_1Window.html#a356e4e19207606e91f87346a378e1b1f" title="Indicates that the application will cooperate with the window system in synchronizing the window repa...">enable_synchronized_configure()</a> was called previously.</p>
<dl class="since_2_6"><dt><b><a class="el" href="since_2_6.html#_since_2_6000006">Since gtkmm 2.6:</a></b></dt><dd></dd></dl>
</div>
</div>
<a class="anchor" id="a79cdc422025b7ce7be99ef20ff20bafe"></a><!-- doxytag: member="Gdk::Window::constrain_size" ref="a79cdc422025b7ce7be99ef20ff20bafe" args="(const Geometry &geometry, guint flags, int width, int height, int &new_width, int &new_height)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">static void Gdk::Window::constrain_size </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="namespaceGdk.html#af6948e754cab4e79c6430fb94e438d83">Geometry</a>& </td>
<td class="paramname"><em>geometry</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">guint </td>
<td class="paramname"><em>flags</em>, </td>
</tr>
<tr>
<td class="paramkey"></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 class="paramkey"></td>
<td></td>
<td class="paramtype">int & </td>
<td class="paramname"><em>new_width</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int & </td>
<td class="paramname"><em>new_height</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td><code> [static]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Constrains a desired width and height according to a set of geometry hints (such as minimum and maximum size). </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">geometry</td><td>A <a class="el" href="namespaceGdk.html#af6948e754cab4e79c6430fb94e438d83">Gdk::Geometry</a> structure. </td></tr>
<tr><td class="paramname">flags</td><td>A mask indicating what portions of <em>geometry</em> are set. </td></tr>
<tr><td class="paramname">width</td><td>Desired width of window. </td></tr>
<tr><td class="paramname">height</td><td>Desired height of the window. </td></tr>
<tr><td class="paramname">new_width</td><td>Location to store resulting width. </td></tr>
<tr><td class="paramname">new_height</td><td>Location to store resulting height. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a1b187b52dd8fefc49aca3d02d05882ed"></a><!-- doxytag: member="Gdk::Window::coords_from_parent" ref="a1b187b52dd8fefc49aca3d02d05882ed" args="(double parent_x, double parent_y, double &x, double &y)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::Window::coords_from_parent </td>
<td>(</td>
<td class="paramtype">double </td>
<td class="paramname"><em>parent_x</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">double </td>
<td class="paramname"><em>parent_y</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">double & </td>
<td class="paramname"><em>x</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">double & </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>Transforms window coordinates from a parent window to a child window, where the parent window is the normal parent as returned by <a class="el" href="classGdk_1_1Window.html#ac09f2facb64137aa5b05623c2b41063a" title="Obtains the parent of window, as known to GDK.">get_parent()</a> for normal windows, and the window's embedder as returned by gdk_offscreen_window_get_embedder() for offscreen windows. </p>
<p>For normal windows, calling this function is equivalent to subtracting the return values of <a class="el" href="classGdk_1_1Window.html#a86dcf2d6fe032353e1ef76c69887dae7" title="Obtains the position of the window as reported in the most-recently-processed Gdk::EventConfigure.">get_position()</a> from the parent coordinates. For offscreen windows however (which can be arbitrarily transformed), this function calls the GdkWindow::from-embedder: signal to translate the coordinates.</p>
<p>You should always use this function when writing generic code that walks down a window hierarchy.</p>
<p>See also: <a class="el" href="classGdk_1_1Window.html#a2c659a54a8f1d84562a3f5befcf62d26" title="Transforms window coordinates from a child window to its parent window, where the parent window is th...">coords_to_parent()</a></p>
<dl class="since_2_22"><dt><b><a class="el" href="since_2_22.html#_since_2_22000045">Since gtkmm 2.22:</a></b></dt><dd></dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">parent_x</td><td>X coordinate in parent's coordinate system. </td></tr>
<tr><td class="paramname">parent_y</td><td>Y coordinate in parent's coordinate system. </td></tr>
<tr><td class="paramname">x</td><td>Return location for X coordinate in child's coordinate system. </td></tr>
<tr><td class="paramname">y</td><td>Return location for Y coordinate in child's coordinate system. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a2c659a54a8f1d84562a3f5befcf62d26"></a><!-- doxytag: member="Gdk::Window::coords_to_parent" ref="a2c659a54a8f1d84562a3f5befcf62d26" args="(double x, double y, double &parent_x, double &parent_y)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::Window::coords_to_parent </td>
<td>(</td>
<td class="paramtype">double </td>
<td class="paramname"><em>x</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">double </td>
<td class="paramname"><em>y</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">double & </td>
<td class="paramname"><em>parent_x</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">double & </td>
<td class="paramname"><em>parent_y</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Transforms window coordinates from a child window to its parent window, where the parent window is the normal parent as returned by <a class="el" href="classGdk_1_1Window.html#ac09f2facb64137aa5b05623c2b41063a" title="Obtains the parent of window, as known to GDK.">get_parent()</a> for normal windows, and the window's embedder as returned by gdk_offscreen_window_get_embedder() for offscreen windows. </p>
<p>For normal windows, calling this function is equivalent to adding the return values of <a class="el" href="classGdk_1_1Window.html#a86dcf2d6fe032353e1ef76c69887dae7" title="Obtains the position of the window as reported in the most-recently-processed Gdk::EventConfigure.">get_position()</a> to the child coordinates. For offscreen windows however (which can be arbitrarily transformed), this function calls the GdkWindow::to-embedder: signal to translate the coordinates.</p>
<p>You should always use this function when writing generic code that walks up a window hierarchy.</p>
<p>See also: <a class="el" href="classGdk_1_1Window.html#a1b187b52dd8fefc49aca3d02d05882ed" title="Transforms window coordinates from a parent window to a child window, where the parent window is the ...">coords_from_parent()</a></p>
<dl class="since_2_22"><dt><b><a class="el" href="since_2_22.html#_since_2_22000044">Since gtkmm 2.22:</a></b></dt><dd></dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">x</td><td>X coordinate in child's coordinate system. </td></tr>
<tr><td class="paramname">y</td><td>Y coordinate in child's coordinate system. </td></tr>
<tr><td class="paramname">parent_x</td><td>Return location for X coordinate in parent's coordinate system, or <code>0</code>. </td></tr>
<tr><td class="paramname">parent_y</td><td>Return location for Y coordinate in parent's coordinate system, or <code>0</code>. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a4895a2e0fd6d5dcc1c6f1ffe712c65a6"></a><!-- doxytag: member="Gdk::Window::create" ref="a4895a2e0fd6d5dcc1c6f1ffe712c65a6" args="(const Glib::RefPtr< Window > &parent, GdkWindowAttr *attributes, int attributes_mask)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">static <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a><<a class="el" href="classGdk_1_1Window.html">Window</a>> Gdk::Window::create </td>
<td>(</td>
<td class="paramtype">const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGdk_1_1Window.html">Window</a> >& </td>
<td class="paramname"><em>parent</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">GdkWindowAttr * </td>
<td class="paramname"><em>attributes</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>attributes_mask</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td><code> [static]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="a47895246b15dd4893a3e54c4c7d1d6c2"></a><!-- doxytag: member="Gdk::Window::create_similar_surface" ref="a47895246b15dd4893a3e54c4c7d1d6c2" args="(Cairo::Content content, int width, int height)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="cairomm-1.0.tag:http://www.cairographics.org/documentation/cairomm/reference/" href="http://www.cairographics.org/documentation/cairomm/reference/classCairo_1_1RefPtr.html">Cairo::RefPtr</a><<a class="elRef" doxygen="cairomm-1.0.tag:http://www.cairographics.org/documentation/cairomm/reference/" href="http://www.cairographics.org/documentation/cairomm/reference/classCairo_1_1Surface.html">Cairo::Surface</a>> Gdk::Window::create_similar_surface </td>
<td>(</td>
<td class="paramtype"><a class="elRef" doxygen="cairomm-1.0.tag:http://www.cairographics.org/documentation/cairomm/reference/" href="http://www.cairographics.org/documentation/cairomm/reference/namespaceCairo.html#a1f0f5d82599dfeabbeb2396dbfd767d0">Cairo::Content</a> </td>
<td class="paramname"><em>content</em>, </td>
</tr>
<tr>
<td class="paramkey"></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>Create a new surface that is as compatible as possible with the given <em>window</em>. </p>
<p>For example the new surface will have the same fallback resolution and font options as <em>window</em>. Generally, the new surface will also use the same backend as <em>window</em>, unless that is not possible for some reason. The type of the returned surface may be examined with cairo_surface_get_type().</p>
<p>Initially the surface contents are all 0 (transparent if contents have transparency, black otherwise.)</p>
<dl class="since_2_22"><dt><b><a class="el" href="since_2_22.html#_since_2_22000049">Since gtkmm 2.22:</a></b></dt><dd></dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">content</td><td>The content for the new surface. </td></tr>
<tr><td class="paramname">width</td><td>Width of the new surface. </td></tr>
<tr><td class="paramname">height</td><td>Height of the new surface. </td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>A pointer to the newly allocated surface. The caller owns the surface and should call cairo_surface_destroy() when done with it.</dd></dl>
<p>This function always returns a valid pointer, but it will return a pointer to a "nil" surface if <em>other</em> is already in an error state or any other error occurs. </p>
</div>
</div>
<a class="anchor" id="a2c43698b27dc5e31b4c7c1ca76496a03"></a><!-- doxytag: member="Gdk::Window::deiconify" ref="a2c43698b27dc5e31b4c7c1ca76496a03" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::Window::deiconify </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Attempt to deiconify (unminimize) <em>window</em>. </p>
<p>On X11 the window manager may choose to ignore the request to deiconify. When using GTK+, use gtk_window_deiconify() instead of the <a class="el" href="classGdk_1_1Window.html" title="A Gdk::Window is a rectangular region on the screen.">Gdk::Window</a> variant. Or better yet, you probably want to use gtk_window_present(), which raises the window, focuses it, unminimizes it, and puts it on the current desktop. </p>
</div>
</div>
<a class="anchor" id="aa1456c4781e4c38e336039b7168302d2"></a><!-- doxytag: member="Gdk::Window::drag_begin" ref="aa1456c4781e4c38e336039b7168302d2" args="(const Glib::StringArrayHandle &targets)" -->
<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_1DragContext.html">DragContext</a>> Gdk::Window::drag_begin </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_1ArrayHandle.html">Glib::StringArrayHandle</a> & </td>
<td class="paramname"><em>targets</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Starts a drag and creates a new drag context for it. </p>
<p>This method is called by the drag source. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">window</td><td>The source window for this drag. </td></tr>
<tr><td class="paramname">targets</td><td>A list of the offered targets names. </td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>A newly created <a class="el" href="classGdk_1_1DragContext.html" title="A Gdk::DragContext holds information about a drag in progress.">Gdk::DragContext</a>.</dd></dl>
<dl class="since_2_24"><dt><b><a class="el" href="since_2_24.html#_since_2_24000007">Since gtkmm 2.24:</a></b></dt><dd></dd></dl>
</div>
</div>
<a class="anchor" id="a356e4e19207606e91f87346a378e1b1f"></a><!-- doxytag: member="Gdk::Window::enable_synchronized_configure" ref="a356e4e19207606e91f87346a378e1b1f" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::Window::enable_synchronized_configure </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Indicates that the application will cooperate with the window system in synchronizing the window repaint with the window manager during resizing operations. </p>
<p>After an application calls this function, it must call <a class="el" href="classGdk_1_1Window.html#aebb7266930dad01675f28abe8e5c4cf1" title="Signal to the window system that the application has finished handling Configure events it has receiv...">configure_finished()</a> every time it has finished all processing associated with a set of Configure events. Toplevel GTK+ windows automatically use this protocol.</p>
<p>On X, calling this function makes <em>window</em> participate in the _NET_WM_SYNC_REQUEST window manager protocol.</p>
<dl class="since_2_6"><dt><b><a class="el" href="since_2_6.html#_since_2_6000005">Since gtkmm 2.6:</a></b></dt><dd></dd></dl>
</div>
</div>
<a class="anchor" id="a21c920c3f5903e7d338b68c68f09e645"></a><!-- doxytag: member="Gdk::Window::end_paint" ref="a21c920c3f5903e7d338b68c68f09e645" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::Window::end_paint </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Indicates that the backing store created by the most recent call to <a class="el" href="classGdk_1_1Window.html#ae9b866577d6a20aa250b74a1144dca3f" title="Indicates that you are beginning the process of redrawing region.">begin_paint_region()</a> should be copied onscreen and deleted, leaving the next-most-recent backing store or no backing store at all as the active paint region. </p>
<p>See <a class="el" href="classGdk_1_1Window.html#ae9b866577d6a20aa250b74a1144dca3f" title="Indicates that you are beginning the process of redrawing region.">begin_paint_region()</a> for full details. It is an error to call this function without a matching <a class="el" href="classGdk_1_1Window.html#ae9b866577d6a20aa250b74a1144dca3f" title="Indicates that you are beginning the process of redrawing region.">begin_paint_region()</a> first. </p>
</div>
</div>
<a class="anchor" id="a2e9608e67a7d3ee02d4a94139b9213d8"></a><!-- doxytag: member="Gdk::Window::ensure_native" ref="a2e9608e67a7d3ee02d4a94139b9213d8" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gdk::Window::ensure_native </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Tries to ensure that there is a window-system native window for this GdkWindow. </p>
<p>This may fail in some situations, returning <code>false</code>.</p>
<p>Offscreen window and children of them can never have native windows.</p>
<p>Some backends may not support native child windows.</p>
<dl class="since_2_18"><dt><b><a class="el" href="since_2_18.html#_since_2_18000003">Since gtkmm 2.18:</a></b></dt><dd></dd></dl>
<dl class="return"><dt><b>Returns:</b></dt><dd><code>true</code> if the window has a native window, <code>false</code> otherwise. </dd></dl>
</div>
</div>
<a class="anchor" id="a2cbd12adcdaf1039d215cd2c11e32962"></a><!-- doxytag: member="Gdk::Window::flush" ref="a2cbd12adcdaf1039d215cd2c11e32962" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::Window::flush </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Flush all outstanding cached operations on a window, leaving the window in a state which reflects all that has been drawn before. </p>
<p><a class="el" href="namespaceGdk.html">Gdk</a> uses multiple kinds of caching to get better performance and nicer drawing. For instance, during exposes all paints to a window using double buffered rendering are keep on a pixmap until the last window has been exposed. It also delays window moves/scrolls until as long as possible until next update to avoid tearing when moving windows.</p>
<p>Normally this should be completely invisible to applications, as we automatically flush the windows when required, but this might be needed if you for instance mix direct native drawing with gdk drawing. For <a class="el" href="namespaceGtk.html">Gtk</a> widgets that don't use double buffering this will be called automatically before sending the expose event.</p>
<dl class="since_2_18"><dt><b><a class="el" href="since_2_18.html#_since_2_18000004">Since gtkmm 2.18:</a></b></dt><dd></dd></dl>
</div>
</div>
<a class="anchor" id="a7b30990c3efc8d50215fcb6f8cde0546"></a><!-- doxytag: member="Gdk::Window::focus" ref="a7b30990c3efc8d50215fcb6f8cde0546" args="(guint32 timestamp)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::Window::focus </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>Sets keyboard focus to <em>window</em>. </p>
<p>In most cases, gtk_window_present() should be used on 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>, rather than calling this function. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">timestamp</td><td>Timestamp of the event triggering the window focus. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a15ebab2c454f75f0a5342542626cbdde"></a><!-- doxytag: member="Gdk::Window::freeze_updates" ref="a15ebab2c454f75f0a5342542626cbdde" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::Window::freeze_updates </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Temporarily freezes a window such that it won't receive expose events. </p>
<p>The window will begin receiving expose events again when <a class="el" href="classGdk_1_1Window.html#a128616c32cb210b0181a74d6f6bfa4a5" title="Thaws a window frozen with Gdk::Window::freeze_updates().">Gdk::Window::thaw_updates()</a> is called. If <a class="el" href="classGdk_1_1Window.html#a15ebab2c454f75f0a5342542626cbdde" title="Temporarily freezes a window such that it won't receive expose events.">Gdk::Window::freeze_updates()</a> has been called more than once, <a class="el" href="classGdk_1_1Window.html#a128616c32cb210b0181a74d6f6bfa4a5" title="Thaws a window frozen with Gdk::Window::freeze_updates().">Gdk::Window::thaw_updates()</a> must be called an equal number of times to begin processing exposes. </p>
</div>
</div>
<a class="anchor" id="a09a8cf95b58f8cdcc819d6064f6dc984"></a><!-- doxytag: member="Gdk::Window::fullscreen" ref="a09a8cf95b58f8cdcc819d6064f6dc984" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::Window::fullscreen </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Moves the window into fullscreen mode. </p>
<p>This means the window covers the entire screen and is above any panels or task bars.</p>
<p>If the window was already fullscreen, then this function does nothing.</p>
<p>On X11, asks the window manager to put <em>window</em> in a fullscreen state, if the window manager supports this operation. Not all window managers support this, and some deliberately ignore it or don't have a concept of "fullscreen"; so you can't rely on the fullscreenification actually happening. But it will happen with most standard window managers, and GDK makes a best effort to get it to happen.</p>
<dl class="since_2_2"><dt><b><a class="el" href="since_2_2.html#_since_2_2000089">Since gtkmm 2.2:</a></b></dt><dd></dd></dl>
</div>
</div>
<a class="anchor" id="af3885543eb728625b093cb5373734c40"></a><!-- doxytag: member="Gdk::Window::geometry_changed" ref="af3885543eb728625b093cb5373734c40" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::Window::geometry_changed </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>This function informs GDK that the geometry of an embedded offscreen window has changed. </p>
<p>This is necessary for GDK to keep track of which offscreen window the pointer is in.</p>
<dl class="since_2_18"><dt><b><a class="el" href="since_2_18.html#_since_2_18000011">Since gtkmm 2.18:</a></b></dt><dd></dd></dl>
</div>
</div>
<a class="anchor" id="a5008b5bb10128e510ef8c7cc199f2151"></a><!-- doxytag: member="Gdk::Window::get_accept_focus" ref="a5008b5bb10128e510ef8c7cc199f2151" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gdk::Window::get_accept_focus </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Determines whether or not the desktop environment shuld be hinted that the window does not want to receive input focus. </p>
<dl class="since_2_22"><dt><b><a class="el" href="since_2_22.html#_since_2_22000050">Since gtkmm 2.22:</a></b></dt><dd></dd></dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Whether or not the window should receive input focus. </dd></dl>
</div>
</div>
<a class="anchor" id="a718c4f3ffa2a479be5dc2ace78c442b9"></a><!-- doxytag: member="Gdk::Window::get_background_pattern" ref="a718c4f3ffa2a479be5dc2ace78c442b9" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="cairomm-1.0.tag:http://www.cairographics.org/documentation/cairomm/reference/" href="http://www.cairographics.org/documentation/cairomm/reference/classCairo_1_1RefPtr.html">Cairo::RefPtr</a><<a class="elRef" doxygen="cairomm-1.0.tag:http://www.cairographics.org/documentation/cairomm/reference/" href="http://www.cairographics.org/documentation/cairomm/reference/classCairo_1_1Pattern.html">Cairo::Pattern</a>> Gdk::Window::get_background_pattern </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Gets the pattern used to clear the background on <em>window</em>. </p>
<p>If <em>window</em> does not have its own background and reuses the parent's, <code>0</code> is returned and you'll have to query it yourself.</p>
<dl class="since_2_22"><dt><b><a class="el" href="since_2_22.html#_since_2_22000042">Since gtkmm 2.22:</a></b></dt><dd></dd></dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>The pattern to use for the background or <code>0</code> to use the parent's background. </dd></dl>
</div>
</div>
<a class="anchor" id="a9bd46cbb385397f06782b9fb8fe8fefc"></a><!-- doxytag: member="Gdk::Window::get_background_pattern" ref="a9bd46cbb385397f06782b9fb8fe8fefc" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="cairomm-1.0.tag:http://www.cairographics.org/documentation/cairomm/reference/" href="http://www.cairographics.org/documentation/cairomm/reference/classCairo_1_1RefPtr.html">Cairo::RefPtr</a><const <a class="elRef" doxygen="cairomm-1.0.tag:http://www.cairographics.org/documentation/cairomm/reference/" href="http://www.cairographics.org/documentation/cairomm/reference/classCairo_1_1Pattern.html">Cairo::Pattern</a>> Gdk::Window::get_background_pattern </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Gets the pattern used to clear the background on <em>window</em>. </p>
<p>If <em>window</em> does not have its own background and reuses the parent's, <code>0</code> is returned and you'll have to query it yourself.</p>
<dl class="since_2_22"><dt><b><a class="el" href="since_2_22.html#_since_2_22000043">Since gtkmm 2.22:</a></b></dt><dd></dd></dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>The pattern to use for the background or <code>0</code> to use the parent's background. </dd></dl>
</div>
</div>
<a class="anchor" id="a64ed74dec0ef11678a2b70286da1c3dc"></a><!-- doxytag: member="Gdk::Window::get_children" ref="a64ed74dec0ef11678a2b70286da1c3dc" args="()" -->
<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_1Window.html">Window</a>> > Gdk::Window::get_children </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Gets the list of children of <em>window</em> known to GDK. </p>
<p>This function only returns children created via GDK, so for example it's useless when used with the root window; it only returns windows an application created itself.</p>
<p>The returned list must be freed, but the elements in the list need not be. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>List of child windows inside <em>window</em>. </dd></dl>
</div>
</div>
<a class="anchor" id="a058a3a892228ea6b061b27d0b4bc5f90"></a><!-- doxytag: member="Gdk::Window::get_children" ref="a058a3a892228ea6b061b27d0b4bc5f90" args="() const " -->
<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_1Window.html">Window</a>> > Gdk::Window::get_children </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Gets the list of children of <em>window</em> known to GDK. </p>
<p>This function only returns children created via GDK, so for example it's useless when used with the root window; it only returns windows an application created itself.</p>
<p>The returned list must be freed, but the elements in the list need not be. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>List of child windows inside <em>window</em>. </dd></dl>
</div>
</div>
<a class="anchor" id="a4ca088effd48d610849dca1912c0b0b5"></a><!-- doxytag: member="Gdk::Window::get_composited" ref="a4ca088effd48d610849dca1912c0b0b5" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gdk::Window::get_composited </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Determines whether <em>window</em> is composited. </p>
<p>See <a class="el" href="classGdk_1_1Window.html#aba9d5bea3de05b31eff0da2bed753db8" title="Sets a Gdk::Window as composited, or unsets it.">set_composited()</a>.</p>
<dl class="since_2_22"><dt><b><a class="el" href="since_2_22.html#_since_2_22000037">Since gtkmm 2.22:</a></b></dt><dd></dd></dl>
<dl class="return"><dt><b>Returns:</b></dt><dd><code>true</code> if the window is composited. </dd></dl>
</div>
</div>
<a class="anchor" id="af006eb45e3ce4884a731a33913493290"></a><!-- doxytag: member="Gdk::Window::get_decorations" ref="af006eb45e3ce4884a731a33913493290" args="(WMDecoration &decorations) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gdk::Window::get_decorations </td>
<td>(</td>
<td class="paramtype"><a class="el" href="group__gdkmmEnums.html#ga1164863f498802821810010d1f3202a4">WMDecoration</a>& </td>
<td class="paramname"><em>decorations</em></td><td>)</td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Returns the decorations set on the GdkWindow with #gdk_window_set_decorations. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">decorations</td><td>The window decorations will be written here. </td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd><code>true</code> if the window has decorations set, <code>false</code> otherwise. </dd></dl>
</div>
</div>
<a class="anchor" id="a67dd93686b7a8542e9eb4f464a3f4265"></a><!-- doxytag: member="Gdk::Window::get_default_root_window" ref="a67dd93686b7a8542e9eb4f464a3f4265" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">static <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a><<a class="el" href="classGdk_1_1Window.html">Window</a>> Gdk::Window::get_default_root_window </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td><code> [static]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Obtains the root window (parent all other windows are inside) for the default display and screen. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>The default root window. </dd></dl>
</div>
</div>
<a class="anchor" id="ad0e14b3c95f183a8dbff3a8104184efc"></a><!-- doxytag: member="Gdk::Window::get_display" ref="ad0e14b3c95f183a8dbff3a8104184efc" args="()" -->
<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_1Display.html">Display</a>> Gdk::Window::get_display </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Gets 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 man...">Gdk::Display</a> associated with a <a class="el" href="classGdk_1_1Window.html" title="A Gdk::Window is a rectangular region on the screen.">Gdk::Window</a>. </p>
<dl class="since_2_24"><dt><b><a class="el" href="since_2_24.html#_since_2_24000003">Since gtkmm 2.24:</a></b></dt><dd></dd></dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>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 man...">Gdk::Display</a> associated with <em>window</em>. </dd></dl>
<p>Reimplemented from <a class="el" href="classGdk_1_1Drawable.html#aefdf42d02473609fc552aec4cc718be5">Gdk::Drawable</a>.</p>
</div>
</div>
<a class="anchor" id="a30d56b5d03afdb4c25ef783b747fd479"></a><!-- doxytag: member="Gdk::Window::get_display" ref="a30d56b5d03afdb4c25ef783b747fd479" args="() const " -->
<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_1Display.html">Display</a>> Gdk::Window::get_display </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Gets 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 man...">Gdk::Display</a> associated with a <a class="el" href="classGdk_1_1Window.html" title="A Gdk::Window is a rectangular region on the screen.">Gdk::Window</a>. </p>
<dl class="since_2_24"><dt><b><a class="el" href="since_2_24.html#_since_2_24000004">Since gtkmm 2.24:</a></b></dt><dd></dd></dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>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 man...">Gdk::Display</a> associated with <em>window</em>. </dd></dl>
<p>Reimplemented from <a class="el" href="classGdk_1_1Drawable.html#a18d3a8e6a9c7cb5338a19a7768404c6a">Gdk::Drawable</a>.</p>
</div>
</div>
<a class="anchor" id="a10d716ddea592b6cae558f9462a21244"></a><!-- doxytag: member="Gdk::Window::get_effective_parent" ref="a10d716ddea592b6cae558f9462a21244" args="()" -->
<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">Window</a>> Gdk::Window::get_effective_parent </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Obtains the parent of <em>window</em>, as known to GDK. </p>
<p>Works like <a class="el" href="classGdk_1_1Window.html#ac09f2facb64137aa5b05623c2b41063a" title="Obtains the parent of window, as known to GDK.">get_parent()</a> for normal windows, but returns the window's embedder for offscreen windows.</p>
<p>See also: gdk_offscreen_window_get_embedder()</p>
<dl class="since_2_22"><dt><b><a class="el" href="since_2_22.html#_since_2_22000046">Since gtkmm 2.22:</a></b></dt><dd></dd></dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Effective parent of <em>window</em>. </dd></dl>
</div>
</div>
<a class="anchor" id="a969ef8f54573f9535839b03c08a30589"></a><!-- doxytag: member="Gdk::Window::get_effective_parent" ref="a969ef8f54573f9535839b03c08a30589" args="() const " -->
<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">Window</a>> Gdk::Window::get_effective_parent </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Obtains the parent of <em>window</em>, as known to GDK. </p>
<p>Works like <a class="el" href="classGdk_1_1Window.html#ac09f2facb64137aa5b05623c2b41063a" title="Obtains the parent of window, as known to GDK.">get_parent()</a> for normal windows, but returns the window's embedder for offscreen windows.</p>
<p>See also: gdk_offscreen_window_get_embedder()</p>
<dl class="since_2_22"><dt><b><a class="el" href="since_2_22.html#_since_2_22000047">Since gtkmm 2.22:</a></b></dt><dd></dd></dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Effective parent of <em>window</em>. </dd></dl>
</div>
</div>
<a class="anchor" id="a585079dc5788f71aec8be74463720636"></a><!-- doxytag: member="Gdk::Window::get_effective_toplevel" ref="a585079dc5788f71aec8be74463720636" args="()" -->
<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">Window</a>> Gdk::Window::get_effective_toplevel </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Gets the toplevel window that's an ancestor of <em>window</em>. </p>
<p>Works like <a class="el" href="classGdk_1_1Window.html#a13b651e86823b82bb7c06249b30f95de" title="Gets the toplevel window that's an ancestor of window.">get_toplevel()</a>, but treats an offscreen window's embedder as its parent, using <a class="el" href="classGdk_1_1Window.html#a10d716ddea592b6cae558f9462a21244" title="Obtains the parent of window, as known to GDK.">get_effective_parent()</a>.</p>
<p>See also: gdk_offscreen_window_get_embedder()</p>
<dl class="since_2_22"><dt><b><a class="el" href="since_2_22.html#_since_2_22000048">Since gtkmm 2.22:</a></b></dt><dd></dd></dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>The effective toplevel window containing <em>window</em>. </dd></dl>
</div>
</div>
<a class="anchor" id="a41eaa04d1b75d309be5be8639b1bf1b0"></a><!-- doxytag: member="Gdk::Window::get_events" ref="a41eaa04d1b75d309be5be8639b1bf1b0" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="group__gdkmmEnums.html#ga0288c23e93ded8c0326235f1f1120c61">EventMask</a> Gdk::Window::get_events </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Gets the event mask for <em>window</em>. </p>
<p>See <a class="el" href="classGdk_1_1Window.html#abe022e72429562865fa0d31587056890" title="The event mask for a window determines which events will be reported for that window.">set_events()</a>. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd><a class="el" href="classGdk_1_1Event.html">Event</a> mask for <em>window</em>. </dd></dl>
</div>
</div>
<a class="anchor" id="a8d742b2e4c4f7b616ad2ac2c794a06dd"></a><!-- doxytag: member="Gdk::Window::get_focus_on_map" ref="a8d742b2e4c4f7b616ad2ac2c794a06dd" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gdk::Window::get_focus_on_map </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Determines whether or not the desktop environment should be hinted that the window does not want to receive input focus when it is mapped. </p>
<dl class="since_2_22"><dt><b><a class="el" href="since_2_22.html#_since_2_22000051">Since gtkmm 2.22:</a></b></dt><dd></dd></dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Whether or not the window wants to receive input focus when it is mapped. </dd></dl>
</div>
</div>
<a class="anchor" id="ab518e9b6a14392722f71cb2174c40d55"></a><!-- doxytag: member="Gdk::Window::get_frame_extents" ref="ab518e9b6a14392722f71cb2174c40d55" args="(Rectangle &rect)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::Window::get_frame_extents </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classGdk_1_1Rectangle.html">Rectangle</a>& </td>
<td class="paramname"><em>rect</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Obtains the bounding box of the window, including window manager titlebar/borders if any. </p>
<p>The frame position is given in root window coordinates. To get the position of the window itself (rather than the frame) in root window coordinates, use <a class="el" href="classGdk_1_1Window.html#af7eef7c273c02fbc0fd02c075b57309f" title="Obtains the position of a window in root window coordinates.">get_origin()</a>. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">rect</td><td><a class="el" href="classGdk_1_1Rectangle.html" title="Gdk::Rectangle is a structure holding the position and size of a rectangle.">Rectangle</a> to fill with bounding box of the window frame. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a6833d29726c3d995c39b74310d21326e"></a><!-- doxytag: member="Gdk::Window::get_geometry" ref="a6833d29726c3d995c39b74310d21326e" args="(int &x, int &y, int &width, int &height, int &depth) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::Window::get_geometry </td>
<td>(</td>
<td class="paramtype">int & </td>
<td class="paramname"><em>x</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int & </td>
<td class="paramname"><em>y</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int & </td>
<td class="paramname"><em>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 class="paramkey"></td>
<td></td>
<td class="paramtype">int & </td>
<td class="paramname"><em>depth</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Any of the return location arguments to this function may be <code>0</code>, if you aren't interested in getting the value of that field. </p>
<p>The X and Y coordinates returned are relative to the parent window of <em>window</em>, which for toplevels usually means relative to the window decorations (titlebar, etc.) rather than relative to the root window (screen-size background window).</p>
<p>On the X11 platform, the geometry is obtained from the X server, so reflects the latest position of <em>window</em>; this may be out-of-sync with the position of <em>window</em> delivered in the most-recently-processed Gdk::EventConfigure. <a class="el" href="classGdk_1_1Window.html#a86dcf2d6fe032353e1ef76c69887dae7" title="Obtains the position of the window as reported in the most-recently-processed Gdk::EventConfigure.">get_position()</a> in contrast gets the position from the most recent configure event.</p>
<p><note> If <em>window</em> is not a toplevel, it is <em>much</em> better to call <a class="el" href="classGdk_1_1Window.html#a86dcf2d6fe032353e1ef76c69887dae7" title="Obtains the position of the window as reported in the most-recently-processed Gdk::EventConfigure.">get_position()</a> and <a class="el" href="classGdk_1_1Drawable.html#a938f9da906aafcfa089a9aab8e30749d" title="Fills* width and* height with the size of drawable.">Gdk::Drawable::get_size()</a> instead, because it avoids the roundtrip to the X server and because <a class="el" href="classGdk_1_1Drawable.html#a938f9da906aafcfa089a9aab8e30749d" title="Fills* width and* height with the size of drawable.">Gdk::Drawable::get_size()</a> supports the full 32-bit coordinate space, whereas <a class="el" href="classGdk_1_1Window.html#a6833d29726c3d995c39b74310d21326e" title="Any of the return location arguments to this function may be 0, if you aren't interested in getti...">get_geometry()</a> is restricted to the 16-bit coordinates of X11. </note> </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">x</td><td>Return location for X coordinate of window (relative to its parent). </td></tr>
<tr><td class="paramname">y</td><td>Return location for Y coordinate of window (relative to its parent). </td></tr>
<tr><td class="paramname">width</td><td>Return location for width of window. </td></tr>
<tr><td class="paramname">height</td><td>Return location for height of window. </td></tr>
<tr><td class="paramname">depth</td><td>Return location for bit depth of window. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="ad151acb64c1a34158cd3ace71889f260"></a><!-- doxytag: member="Gdk::Window::get_group" ref="ad151acb64c1a34158cd3ace71889f260" args="()" -->
<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">Window</a>> Gdk::Window::get_group </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Returns the group leader window for <em>window</em>. </p>
<p>See <a class="el" href="classGdk_1_1Window.html#ac45fc54f035a56f9b8c6a1f5a8a63ed3" title="Sets the group leader window for window.">set_group()</a>.</p>
<dl class="since_2_4"><dt><b><a class="el" href="since_2_4.html#_since_2_4000009">Since gtkmm 2.4:</a></b></dt><dd></dd></dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>The group leader window for <em>window</em>. </dd></dl>
</div>
</div>
<a class="anchor" id="a1faf6b134e161a09ad9ce937585176bd"></a><!-- doxytag: member="Gdk::Window::get_group" ref="a1faf6b134e161a09ad9ce937585176bd" args="() const " -->
<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">Window</a>> Gdk::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 leader window for <em>window</em>. </p>
<p>See <a class="el" href="classGdk_1_1Window.html#ac45fc54f035a56f9b8c6a1f5a8a63ed3" title="Sets the group leader window for window.">set_group()</a>.</p>
<dl class="since_2_4"><dt><b><a class="el" href="since_2_4.html#_since_2_4000010">Since gtkmm 2.4:</a></b></dt><dd></dd></dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>The group leader window for <em>window</em>. </dd></dl>
</div>
</div>
<a class="anchor" id="ab136e3c46305bbad2960ce3e40867c28"></a><!-- doxytag: member="Gdk::Window::get_height" ref="ab136e3c46305bbad2960ce3e40867c28" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">int Gdk::Window::get_height </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Returns the height of the given <em>window</em>. </p>
<p>On the X11 platform the returned size is the size reported in the most-recently-processed configure event, rather than the current size on the X server.</p>
<dl class="since_2_24"><dt><b><a class="el" href="since_2_24.html#_since_2_24000006">Since gtkmm 2.24:</a></b></dt><dd></dd></dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>The height of <em>window</em>. </dd></dl>
</div>
</div>
<a class="anchor" id="a9a88b194ecdcee52fd7d37118d5375db"></a><!-- doxytag: member="Gdk::Window::get_internal_paint_info" ref="a9a88b194ecdcee52fd7d37118d5375db" args="(Glib::RefPtr< Drawable > &real_drawable, int &x_offset, int &y_offset) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::Window::get_internal_paint_info </td>
<td>(</td>
<td class="paramtype"><a 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">Drawable</a> >& </td>
<td class="paramname"><em>real_drawable</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int & </td>
<td class="paramname"><em>x_offset</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int & </td>
<td class="paramname"><em>y_offset</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="a56629a916ebc38ee9c10d925e5bba44b"></a><!-- doxytag: member="Gdk::Window::get_modal_hint" ref="a56629a916ebc38ee9c10d925e5bba44b" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gdk::Window::get_modal_hint </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Determines whether or not the window manager is hinted that <em>window</em> has modal behaviour. </p>
<dl class="since_2_22"><dt><b><a class="el" href="since_2_22.html#_since_2_22000041">Since gtkmm 2.22:</a></b></dt><dd></dd></dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Whether or not the window has the modal hint set. </dd></dl>
</div>
</div>
<a class="anchor" id="a50471ca056168fa50117f7458ba0fbac"></a><!-- doxytag: member="Gdk::Window::get_offscreen_embedder" ref="a50471ca056168fa50117f7458ba0fbac" args="()" -->
<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">Window</a>> Gdk::Window::get_offscreen_embedder </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Gets the window that <em>window</em> is embedded in. </p>
<dl class="since_2_18"><dt><b><a class="el" href="since_2_18.html#_since_2_18000008">Since gtkmm 2.18:</a></b></dt><dd></dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">window</td><td>A <a class="el" href="classGdk_1_1Window.html" title="A Gdk::Window is a rectangular region on the screen.">Gdk::Window</a>. </td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>The embedding <a class="el" href="classGdk_1_1Window.html" title="A Gdk::Window is a rectangular region on the screen.">Gdk::Window</a>, or <code>0</code> if <em>window</em> is not an embedded offscreen window. </dd></dl>
</div>
</div>
<a class="anchor" id="aba399e89ed40c05ca86508c174c57437"></a><!-- doxytag: member="Gdk::Window::get_offscreen_embedder" ref="aba399e89ed40c05ca86508c174c57437" args="() const " -->
<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">Window</a>> Gdk::Window::get_offscreen_embedder </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Gets the window that <em>window</em> is embedded in. </p>
<dl class="since_2_18"><dt><b><a class="el" href="since_2_18.html#_since_2_18000009">Since gtkmm 2.18:</a></b></dt><dd></dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">window</td><td>A <a class="el" href="classGdk_1_1Window.html" title="A Gdk::Window is a rectangular region on the screen.">Gdk::Window</a>. </td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>The embedding <a class="el" href="classGdk_1_1Window.html" title="A Gdk::Window is a rectangular region on the screen.">Gdk::Window</a>, or <code>0</code> if <em>window</em> is not an embedded offscreen window. </dd></dl>
</div>
</div>
<a class="anchor" id="a343f27de4df806b6e7f701521592ed56"></a><!-- doxytag: member="Gdk::Window::get_offscreen_pixmap" ref="a343f27de4df806b6e7f701521592ed56" args="()" -->
<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_1Pixmap.html">Pixmap</a>> Gdk::Window::get_offscreen_pixmap </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Gets the offscreen pixmap that an offscreen window renders into. </p>
<p>If you need to keep this around over window resizes, you need to add a reference to it.</p>
<dl class="since_2_18"><dt><b><a class="el" href="since_2_18.html#_since_2_18000006">Since gtkmm 2.18:</a></b></dt><dd></dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">window</td><td>A <a class="el" href="classGdk_1_1Window.html" title="A Gdk::Window is a rectangular region on the screen.">Gdk::Window</a>. </td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>The offscreen pixmap, or <code>0</code> if not offscreen. </dd></dl>
</div>
</div>
<a class="anchor" id="ab956125c61b6f99c94d5e4fc02b3ba90"></a><!-- doxytag: member="Gdk::Window::get_offscreen_pixmap" ref="ab956125c61b6f99c94d5e4fc02b3ba90" args="() const " -->
<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_1Pixmap.html">Pixmap</a>> Gdk::Window::get_offscreen_pixmap </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Gets the offscreen pixmap that an offscreen window renders into. </p>
<p>If you need to keep this around over window resizes, you need to add a reference to it.</p>
<dl class="since_2_18"><dt><b><a class="el" href="since_2_18.html#_since_2_18000007">Since gtkmm 2.18:</a></b></dt><dd></dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">window</td><td>A <a class="el" href="classGdk_1_1Window.html" title="A Gdk::Window is a rectangular region on the screen.">Gdk::Window</a>. </td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>The offscreen pixmap, or <code>0</code> if not offscreen. </dd></dl>
</div>
</div>
<a class="anchor" id="af7eef7c273c02fbc0fd02c075b57309f"></a><!-- doxytag: member="Gdk::Window::get_origin" ref="af7eef7c273c02fbc0fd02c075b57309f" args="(int &x, int &y) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">int Gdk::Window::get_origin </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> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Obtains the position of a window in root window coordinates. </p>
<p>(Compare with <a class="el" href="classGdk_1_1Window.html#a86dcf2d6fe032353e1ef76c69887dae7" title="Obtains the position of the window as reported in the most-recently-processed Gdk::EventConfigure.">get_position()</a> and <a class="el" href="classGdk_1_1Window.html#a6833d29726c3d995c39b74310d21326e" title="Any of the return location arguments to this function may be 0, if you aren't interested in getti...">get_geometry()</a> which return the position of a window relative to its parent window.) </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">x</td><td>Return location for X coordinate. </td></tr>
<tr><td class="paramname">y</td><td>Return location for Y coordinate. </td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Not meaningful, ignore. </dd></dl>
</div>
</div>
<a class="anchor" id="ac09f2facb64137aa5b05623c2b41063a"></a><!-- doxytag: member="Gdk::Window::get_parent" ref="ac09f2facb64137aa5b05623c2b41063a" args="()" -->
<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">Window</a>> Gdk::Window::get_parent </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Obtains the parent of <em>window</em>, as known to GDK. </p>
<p>Does not query the X server; thus this returns the parent as passed to new(), not the actual parent. This should never matter unless you're using Xlib calls mixed with GDK calls on the X11 platform. It may also matter for toplevel windows, because the window manager may choose to reparent them.</p>
<p>Note that you should use <a class="el" href="classGdk_1_1Window.html#a10d716ddea592b6cae558f9462a21244" title="Obtains the parent of window, as known to GDK.">get_effective_parent()</a> when writing generic code that walks up a window hierarchy, because <a class="el" href="classGdk_1_1Window.html#ac09f2facb64137aa5b05623c2b41063a" title="Obtains the parent of window, as known to GDK.">get_parent()</a> will most likely not do what you expect if there are offscreen windows in the hierarchy. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>Parent of <em>window</em>. </dd></dl>
</div>
</div>
<a class="anchor" id="ab5485601dc363c5aa40862113a1a40ff"></a><!-- doxytag: member="Gdk::Window::get_parent" ref="ab5485601dc363c5aa40862113a1a40ff" args="() const " -->
<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">Window</a>> Gdk::Window::get_parent </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Obtains the parent of <em>window</em>, as known to GDK. </p>
<p>Does not query the X server; thus this returns the parent as passed to new(), not the actual parent. This should never matter unless you're using Xlib calls mixed with GDK calls on the X11 platform. It may also matter for toplevel windows, because the window manager may choose to reparent them.</p>
<p>Note that you should use <a class="el" href="classGdk_1_1Window.html#a10d716ddea592b6cae558f9462a21244" title="Obtains the parent of window, as known to GDK.">get_effective_parent()</a> when writing generic code that walks up a window hierarchy, because <a class="el" href="classGdk_1_1Window.html#ac09f2facb64137aa5b05623c2b41063a" title="Obtains the parent of window, as known to GDK.">get_parent()</a> will most likely not do what you expect if there are offscreen windows in the hierarchy. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>Parent of <em>window</em>. </dd></dl>
</div>
</div>
<a class="anchor" id="a7b72ec86d47d628bd9112a803d61089f"></a><!-- doxytag: member="Gdk::Window::get_pointer" ref="a7b72ec86d47d628bd9112a803d61089f" args="(int &x, int &y, ModifierType &mask)" -->
<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">Window</a>> Gdk::Window::get_pointer </td>
<td>(</td>
<td class="paramtype">int & </td>
<td class="paramname"><em>x</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int & </td>
<td class="paramname"><em>y</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="group__gdkmmEnums.html#ga734c2979005c87dbe51223a0128cdd97">ModifierType</a>& </td>
<td class="paramname"><em>mask</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Obtains the current pointer position and modifier state. </p>
<p>The position is given in coordinates relative to the upper left corner of <em>window</em>. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">x</td><td>Return location for X coordinate of pointer or <code>0</code> to not return the X coordinate. </td></tr>
<tr><td class="paramname">y</td><td>Return location for Y coordinate of pointer or <code>0</code> to not return the Y coordinate. </td></tr>
<tr><td class="paramname">mask</td><td>Return location for modifier mask or <code>0</code> to not return the modifier mask. </td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>The window containing the pointer (as with at_pointer()), or <code>0</code> if the window containing the pointer isn't known to GDK. </dd></dl>
</div>
</div>
<a class="anchor" id="a86dcf2d6fe032353e1ef76c69887dae7"></a><!-- doxytag: member="Gdk::Window::get_position" ref="a86dcf2d6fe032353e1ef76c69887dae7" args="(int &x, int &y) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::Window::get_position </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> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Obtains the position of the window as reported in the most-recently-processed Gdk::EventConfigure. </p>
<p>Contrast with <a class="el" href="classGdk_1_1Window.html#a6833d29726c3d995c39b74310d21326e" title="Any of the return location arguments to this function may be 0, if you aren't interested in getti...">get_geometry()</a> which queries the X server for the current window position, regardless of which events have been received or processed.</p>
<p>The position coordinates are relative to the window's parent window. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">x</td><td>X coordinate of window. </td></tr>
<tr><td class="paramname">y</td><td>Y coordinate of window. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a1be3c81129f5b1aac0cfa4344717fb80"></a><!-- doxytag: member="Gdk::Window::get_root_coords" ref="a1be3c81129f5b1aac0cfa4344717fb80" args="(int x, int y, int &root_x, int &root_y)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::Window::get_root_coords </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"><em>x</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>y</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int & </td>
<td class="paramname"><em>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></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Obtains the position of a window position in root window coordinates. </p>
<p>This is similar to <a class="el" href="classGdk_1_1Window.html#af7eef7c273c02fbc0fd02c075b57309f" title="Obtains the position of a window in root window coordinates.">get_origin()</a> but allows you go pass in any position in the window, not just the origin.</p>
<dl class="since_2_18"><dt><b><a class="el" href="since_2_18.html#_since_2_18000005">Since gtkmm 2.18:</a></b></dt><dd></dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">x</td><td>X coordinate in window. </td></tr>
<tr><td class="paramname">y</td><td>Y coordinate in window. </td></tr>
<tr><td class="paramname">root_x</td><td>Return location for X coordinate. </td></tr>
<tr><td class="paramname">root_y</td><td>Return location for Y coordinate. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="ae886fd01bfaa25d1c843bafeb745790f"></a><!-- doxytag: member="Gdk::Window::get_root_origin" ref="ae886fd01bfaa25d1c843bafeb745790f" args="(int &x, int &y) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::Window::get_root_origin </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> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Obtains the top-left corner of the window manager frame in root window coordinates. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">x</td><td>Return location for X position of window frame. </td></tr>
<tr><td class="paramname">y</td><td>Return location for Y position of window frame. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="add4e4705ed662f072205228466825bea"></a><!-- doxytag: member="Gdk::Window::get_screen" ref="add4e4705ed662f072205228466825bea" args="() const " -->
<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">Screen</a>> Gdk::Window::get_screen </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Gets 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 a <a class="el" href="classGdk_1_1Window.html" title="A Gdk::Window is a rectangular region on the screen.">Gdk::Window</a>. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>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>. </dd></dl>
<p>Reimplemented from <a class="el" href="classGdk_1_1Drawable.html#a9985ca42f887388dc2f51b0d8d3eaf18">Gdk::Drawable</a>.</p>
</div>
</div>
<a class="anchor" id="a920547238d11df9caac830cb2b34b422"></a><!-- doxytag: member="Gdk::Window::get_screen" ref="a920547238d11df9caac830cb2b34b422" args="()" -->
<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">Screen</a>> Gdk::Window::get_screen </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Gets 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 a <a class="el" href="classGdk_1_1Window.html" title="A Gdk::Window is a rectangular region on the screen.">Gdk::Window</a>. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>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>. </dd></dl>
<p>Reimplemented from <a class="el" href="classGdk_1_1Drawable.html#aef4f5224e3cdf93a3de4aca91758f50c">Gdk::Drawable</a>.</p>
</div>
</div>
<a class="anchor" id="a0e3921982caec87dedde90140e134d3f"></a><!-- doxytag: member="Gdk::Window::get_state" ref="a0e3921982caec87dedde90140e134d3f" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="group__gdkmmEnums.html#ga52281110716dc2727d7f1e8303f9b950">WindowState</a> Gdk::Window::get_state </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Gets the bitwise OR of the currently active window state flags, from the Gdk::WindowState enumeration. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd><a class="el" href="classGdk_1_1Window.html" title="A Gdk::Window is a rectangular region on the screen.">Window</a> state bitfield. </dd></dl>
</div>
</div>
<a class="anchor" id="a13b651e86823b82bb7c06249b30f95de"></a><!-- doxytag: member="Gdk::Window::get_toplevel" ref="a13b651e86823b82bb7c06249b30f95de" args="()" -->
<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">Window</a>> Gdk::Window::get_toplevel </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Gets the toplevel window that's an ancestor of <em>window</em>. </p>
<p>Any window type but Gdk::WINDOW_CHILD is considered a toplevel window, as is a Gdk::WINDOW_CHILD window that has a root window as parent.</p>
<p>Note that you should use <a class="el" href="classGdk_1_1Window.html#a585079dc5788f71aec8be74463720636" title="Gets the toplevel window that's an ancestor of window.">get_effective_toplevel()</a> when you want to get to a window's toplevel as seen on screen, because <a class="el" href="classGdk_1_1Window.html#a13b651e86823b82bb7c06249b30f95de" title="Gets the toplevel window that's an ancestor of window.">get_toplevel()</a> will most likely not do what you expect if there are offscreen windows in the hierarchy. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>The toplevel window containing <em>window</em>. </dd></dl>
</div>
</div>
<a class="anchor" id="a025df98a25bb99ef3144004cb9547878"></a><!-- doxytag: member="Gdk::Window::get_toplevel" ref="a025df98a25bb99ef3144004cb9547878" args="() const " -->
<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">Window</a>> Gdk::Window::get_toplevel </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Gets the toplevel window that's an ancestor of <em>window</em>. </p>
<p>Any window type but Gdk::WINDOW_CHILD is considered a toplevel window, as is a Gdk::WINDOW_CHILD window that has a root window as parent.</p>
<p>Note that you should use <a class="el" href="classGdk_1_1Window.html#a585079dc5788f71aec8be74463720636" title="Gets the toplevel window that's an ancestor of window.">get_effective_toplevel()</a> when you want to get to a window's toplevel as seen on screen, because <a class="el" href="classGdk_1_1Window.html#a13b651e86823b82bb7c06249b30f95de" title="Gets the toplevel window that's an ancestor of window.">get_toplevel()</a> will most likely not do what you expect if there are offscreen windows in the hierarchy. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>The toplevel window containing <em>window</em>. </dd></dl>
</div>
</div>
<a class="anchor" id="abdcf6aa7127b2e1911fc6773b801a2fc"></a><!-- doxytag: member="Gdk::Window::get_toplevels" ref="abdcf6aa7127b2e1911fc6773b801a2fc" args="()" -->
<div class="memitem">
<div class="memproto">
<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_1Window.html">Window</a>> > Gdk::Window::get_toplevels </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td><code> [static]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Obtains a list of all toplevel windows known to GDK on the default screen (see gdk_window_get_toplevels_for_screen()). </p>
<p>A toplevel window is a child of the root window (see gdk_get_default_root_window()). </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>List of toplevel windows. </dd></dl>
</div>
</div>
<a class="anchor" id="a7c0dd035d50de014a5abe8b0a41b82b7"></a><!-- doxytag: member="Gdk::Window::get_type_hint" ref="a7c0dd035d50de014a5abe8b0a41b82b7" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="group__gdkmmEnums.html#ga1f75a8db0f289997ac16bba0891776c9">WindowTypeHint</a> Gdk::Window::get_type_hint </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>This function returns the type hint set for a window. </p>
<dl class="since_2_10"><dt><b><a class="el" href="since_2_10.html#_since_2_10000016">Since gtkmm 2.10:</a></b></dt><dd></dd></dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>The type hint set for <em>window</em>. </dd></dl>
</div>
</div>
<a class="anchor" id="a6145bbac95071f5783752504d169c7b4"></a><!-- doxytag: member="Gdk::Window::get_update_area" ref="a6145bbac95071f5783752504d169c7b4" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classGdk_1_1Region.html">Region</a> Gdk::Window::get_update_area </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Transfers ownership of the update area from <em>window</em> to the caller of the function. </p>
<p>That is, after calling this function, <em>window</em> will no longer have an invalid/dirty region; the update area is removed from <em>window</em> and handed to you. If a window has no update area, <a class="el" href="classGdk_1_1Window.html#a6145bbac95071f5783752504d169c7b4" title="Transfers ownership of the update area from window to the caller of the function.">get_update_area()</a> returns an invalid <a class="el" href="classGdk_1_1Region.html" title="This is an opaque data type holding a set of arbitrary pixels, and is usually used for clipping graph...">Region</a>. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>The update area for <em>window</em>. </dd></dl>
</div>
</div>
<a class="anchor" id="a82d50ebb9c1f2bce00437eecc3f2b21c"></a><!-- doxytag: member="Gdk::Window::get_user_data" ref="a82d50ebb9c1f2bce00437eecc3f2b21c" args="(gpointer *data)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::Window::get_user_data </td>
<td>(</td>
<td class="paramtype">gpointer * </td>
<td class="paramname"><em>data</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Retrieves the user data for <em>window</em>, which is normally the widget that <em>window</em> belongs to. </p>
<p>See <a class="el" href="classGdk_1_1Window.html#a6e895c78858224262b90564b68759b62" title="For most purposes this function is deprecated in favor of Glib::object_set_data().">set_user_data()</a>. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">data</td><td>Return location for user data. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="aabc72c3289d98337ccd9f6aefe3ce73e"></a><!-- doxytag: member="Gdk::Window::get_visual" ref="aabc72c3289d98337ccd9f6aefe3ce73e" args="()" -->
<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_1Visual.html">Visual</a>> Gdk::Window::get_visual </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Gets the <a class="el" href="classGdk_1_1Visual.html" title="A Gdk::Visual describes a particular video hardware display format.">Gdk::Visual</a> describing the pixel format of <em>window</em>. </p>
<dl class="since_2_24"><dt><b><a class="el" href="since_2_24.html#_since_2_24000001">Since gtkmm 2.24:</a></b></dt><dd></dd></dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>A <a class="el" href="classGdk_1_1Visual.html" title="A Gdk::Visual describes a particular video hardware display format.">Gdk::Visual</a>. </dd></dl>
<p>Reimplemented from <a class="el" href="classGdk_1_1Drawable.html#a24118338658bd2bf7d56c9f6dc7eafbf">Gdk::Drawable</a>.</p>
</div>
</div>
<a class="anchor" id="a580477f095475cdd8e95e2fff639c7ed"></a><!-- doxytag: member="Gdk::Window::get_visual" ref="a580477f095475cdd8e95e2fff639c7ed" args="() const " -->
<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_1Visual.html">Visual</a>> Gdk::Window::get_visual </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Gets the <a class="el" href="classGdk_1_1Visual.html" title="A Gdk::Visual describes a particular video hardware display format.">Gdk::Visual</a> describing the pixel format of <em>window</em>. </p>
<dl class="since_2_24"><dt><b><a class="el" href="since_2_24.html#_since_2_24000002">Since gtkmm 2.24:</a></b></dt><dd></dd></dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>A <a class="el" href="classGdk_1_1Visual.html" title="A Gdk::Visual describes a particular video hardware display format.">Gdk::Visual</a>. </dd></dl>
</div>
</div>
<a class="anchor" id="a38a8d33efb536561d975c71346e51f67"></a><!-- doxytag: member="Gdk::Window::get_width" ref="a38a8d33efb536561d975c71346e51f67" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">int Gdk::Window::get_width </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Returns the width of the given <em>window</em>. </p>
<p>On the X11 platform the returned size is the size reported in the most-recently-processed configure event, rather than the current size on the X server.</p>
<dl class="since_2_24"><dt><b><a class="el" href="since_2_24.html#_since_2_24000005">Since gtkmm 2.24:</a></b></dt><dd></dd></dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>The width of <em>window</em>. </dd></dl>
</div>
</div>
<a class="anchor" id="aa5d6f691b65a70deae5ee6d5883e9a6d"></a><!-- doxytag: member="Gdk::Window::get_window_type" ref="aa5d6f691b65a70deae5ee6d5883e9a6d" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="group__gdkmmEnums.html#ga2b9f4daf18d16a75d9bfe279f5340c02">WindowType</a> Gdk::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 Gdk::WindowType. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>Type of window. </dd></dl>
</div>
</div>
<a class="anchor" id="a9cd1fbdc140ff77e1b005938bd439f49"></a><!-- doxytag: member="Gdk::Window::gobj" ref="a9cd1fbdc140ff77e1b005938bd439f49" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">const GdkWindow* Gdk::Window::gobj </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const<code> [inline]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Provides access to the underlying C GObject. </p>
<p>Reimplemented from <a class="el" href="classGdk_1_1Drawable.html#a42a8fa022e5ba2b06e3cfd0f2a9b656f">Gdk::Drawable</a>.</p>
</div>
</div>
<a class="anchor" id="a0bc9fc92bac3c509b0a0d754488903b0"></a><!-- doxytag: member="Gdk::Window::gobj" ref="a0bc9fc92bac3c509b0a0d754488903b0" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GdkWindow* Gdk::Window::gobj </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td><code> [inline]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Provides access to the underlying C GObject. </p>
<p>Reimplemented from <a class="el" href="classGdk_1_1Drawable.html#a935facc32f620b59c0cfb2e1fd1f5675">Gdk::Drawable</a>.</p>
</div>
</div>
<a class="anchor" id="addb464bdf61c63040afe7bae6d1ed4bf"></a><!-- doxytag: member="Gdk::Window::gobj_copy" ref="addb464bdf61c63040afe7bae6d1ed4bf" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GdkWindow* Gdk::Window::gobj_copy </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Provides access to the underlying C instance. The caller is responsible for unrefing it. Use when directly setting fields in structs. </p>
<p>Reimplemented from <a class="el" href="classGdk_1_1Drawable.html#a1500131ec8c995df7f20203c885ca4a8">Gdk::Drawable</a>.</p>
</div>
</div>
<a class="anchor" id="a452e3fb67d720d99bd83c800bd35ac39"></a><!-- doxytag: member="Gdk::Window::has_native" ref="a452e3fb67d720d99bd83c800bd35ac39" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gdk::Window::has_native </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Checks whether the window has a native window or not. </p>
<p>Note that you can use <a class="el" href="classGdk_1_1Window.html#a2e9608e67a7d3ee02d4a94139b9213d8" title="Tries to ensure that there is a window-system native window for this GdkWindow.">ensure_native()</a> if a native window is needed.</p>
<dl class="since_2_22"><dt><b><a class="el" href="since_2_22.html#_since_2_22000040">Since gtkmm 2.22:</a></b></dt><dd></dd></dl>
<dl class="return"><dt><b>Returns:</b></dt><dd><code>true</code> if the window has a native window, <code>false</code> otherwise. </dd></dl>
</div>
</div>
<a class="anchor" id="a2850d6c550e5c2f73f82fe0043b091b1"></a><!-- doxytag: member="Gdk::Window::hide" ref="a2850d6c550e5c2f73f82fe0043b091b1" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::Window::hide </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>For toplevel windows, withdraws them, so they will no longer be known to the window manager; for all windows, unmaps them, so they won't be displayed. </p>
<p>Normally done automatically as part of gtk_widget_hide(). </p>
</div>
</div>
<a class="anchor" id="a6d14f032c5f40a83ded5e9817cafaae3"></a><!-- doxytag: member="Gdk::Window::iconify" ref="a6d14f032c5f40a83ded5e9817cafaae3" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::Window::iconify </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Asks to iconify (minimize) <em>window</em>. </p>
<p>The window manager may choose to ignore the request, but normally will honor it. Using gtk_window_iconify() is preferred, if you have 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> widget.</p>
<p>This function only makes sense when <em>window</em> is a toplevel window. </p>
</div>
</div>
<a class="anchor" id="a4b0c0b20adc4bcf3f0e4d665059573d3"></a><!-- doxytag: member="Gdk::Window::input_shape_combine_mask" ref="a4b0c0b20adc4bcf3f0e4d665059573d3" args="(const Glib::RefPtr< Bitmap > &mask, int x, int y)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::Window::input_shape_combine_mask </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_1Bitmap.html">Bitmap</a> >& </td>
<td class="paramname"><em>mask</em>, </td>
</tr>
<tr>
<td class="paramkey"></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>Like <a class="el" href="classGdk_1_1Window.html#a7e7ccbbb8a86215d0478b9fc041dce34" title="Applies a shape mask to window.">shape_combine_mask()</a>, but the shape applies only to event handling. </p>
<p>Mouse events which happen while the pointer position corresponds to an unset bit in the mask will be passed on the window below <em>window</em>.</p>
<p>An input shape is typically used with RGBA windows. The alpha channel of the window defines which pixels are invisible and allows for nicely antialiased borders, and the input shape controls where the window is "clickable".</p>
<p>On the X11 platform, this requires version 1.1 of the shape extension.</p>
<p>On the Win32 platform, this functionality is not present and the function does nothing.</p>
<dl class="since_2_10"><dt><b><a class="el" href="since_2_10.html#_since_2_10000012">Since gtkmm 2.10:</a></b></dt><dd></dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">mask</td><td>Shape mask, or <code>0</code>. </td></tr>
<tr><td class="paramname">x</td><td>X position of shape mask with respect to <em>window</em>. </td></tr>
<tr><td class="paramname">y</td><td>Y position of shape mask with respect to <em>window</em>. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="afca024064999914065da4014a14a9f17"></a><!-- doxytag: member="Gdk::Window::input_shape_combine_region" ref="afca024064999914065da4014a14a9f17" args="(const Region &shape_region, int offset_x, int offset_y)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::Window::input_shape_combine_region </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classGdk_1_1Region.html">Region</a>& </td>
<td class="paramname"><em>shape_region</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>offset_x</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>offset_y</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Like <a class="el" href="classGdk_1_1Window.html#a4ddecf82c0b07e4ad106caf90f17ca8f" title="Makes pixels in window outside shape_region be transparent, so that the window may be nonrectangular...">shape_combine_region()</a>, but the shape applies only to event handling. </p>
<p>Mouse events which happen while the pointer position corresponds to an unset bit in the mask will be passed on the window below <em>window</em>.</p>
<p>An input shape is typically used with RGBA windows. The alpha channel of the window defines which pixels are invisible and allows for nicely antialiased borders, and the input shape controls where the window is "clickable".</p>
<p>On the X11 platform, this requires version 1.1 of the shape extension.</p>
<p>On the Win32 platform, this functionality is not present and the function does nothing.</p>
<dl class="since_2_10"><dt><b><a class="el" href="since_2_10.html#_since_2_10000013">Since gtkmm 2.10:</a></b></dt><dd></dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">shape_region</td><td><a class="el" href="classGdk_1_1Region.html" title="This is an opaque data type holding a set of arbitrary pixels, and is usually used for clipping graph...">Region</a> of window to be non-transparent. </td></tr>
<tr><td class="paramname">offset_x</td><td>X position of <em>shape_region</em> in <em>window</em> coordinates. </td></tr>
<tr><td class="paramname">offset_y</td><td>Y position of <em>shape_region</em> in <em>window</em> coordinates. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="ab7cec9c90d9a9738ec59a0686fc832cc"></a><!-- doxytag: member="Gdk::Window::invalidate" ref="ab7cec9c90d9a9738ec59a0686fc832cc" args="(bool invalidate_children)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::Window::invalidate </td>
<td>(</td>
<td class="paramtype">bool </td>
<td class="paramname"><em>invalidate_children</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>A convenience wrapper around <a class="el" href="classGdk_1_1Window.html#a1a68d500a7be88de01d87e781aa2be89" title="Adds region to the update area for window.">invalidate_region()</a> which invalidates the whole region. </p>
<p>See <a class="el" href="classGdk_1_1Window.html#a1a68d500a7be88de01d87e781aa2be89" title="Adds region to the update area for window.">invalidate_region()</a> for details. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">invalidate_children</td><td>Whether to also invalidate child windows. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="afd705d134dd0753dfd5d76bcb4988c27"></a><!-- doxytag: member="Gdk::Window::invalidate_rect" ref="afd705d134dd0753dfd5d76bcb4988c27" args="(const Rectangle &rect, bool invalidate_children)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::Window::invalidate_rect </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classGdk_1_1Rectangle.html">Rectangle</a>& </td>
<td class="paramname"><em>rect</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">bool </td>
<td class="paramname"><em>invalidate_children</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>A convenience wrapper around <a class="el" href="classGdk_1_1Window.html#a1a68d500a7be88de01d87e781aa2be89" title="Adds region to the update area for window.">invalidate_region()</a> which invalidates a rectangular region. </p>
<p>See <a class="el" href="classGdk_1_1Window.html#a1a68d500a7be88de01d87e781aa2be89" title="Adds region to the update area for window.">invalidate_region()</a> for details. See also the <a class="el" href="classGdk_1_1Window.html#afd705d134dd0753dfd5d76bcb4988c27" title="A convenience wrapper around invalidate_region() which invalidates a rectangular region.">invalidate_rect()</a> method overload with no rect parameter, to invalidate the whole region. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">rect</td><td><a class="el" href="classGdk_1_1Rectangle.html" title="Gdk::Rectangle is a structure holding the position and size of a rectangle.">Rectangle</a> to invalidate. </td></tr>
<tr><td class="paramname">invalidate_children</td><td>Whether to also invalidate child windows. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a1a68d500a7be88de01d87e781aa2be89"></a><!-- doxytag: member="Gdk::Window::invalidate_region" ref="a1a68d500a7be88de01d87e781aa2be89" args="(const Region &region, bool invalidate_children=true)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::Window::invalidate_region </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classGdk_1_1Region.html">Region</a>& </td>
<td class="paramname"><em>region</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">bool </td>
<td class="paramname"><em>invalidate_children</em> = <code>true</code> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Adds <em>region</em> to the update area for <em>window</em>. </p>
<p>The update area is the region that needs to be redrawn, or "dirty region." The call <a class="el" href="classGdk_1_1Window.html#a6ec5f7e788470159672511c964771285" title="Sends one or more expose events to window.">process_updates()</a> sends one or more expose events to the window, which together cover the entire update area. An application would normally redraw the contents of <em>window</em> in response to those expose events.</p>
<p>GDK will call <a class="el" href="classGdk_1_1Window.html#a3fc76fbdf9948b92dacfd1a9e340184b" title="Calls process_updates() for all windows (see Gdk::Window) in the application.">process_all_updates()</a> on your behalf whenever your program returns to the main loop and becomes idle, so normally there's no need to do that manually, you just need to invalidate regions that you know should be redrawn.</p>
<p>The <em>invalidate_children</em> parameter controls whether the region of each child window that intersects <em>region</em> will also be invalidated. If <code>false</code>, then the update area for child windows will remain unaffected. See gdk_window_invalidate_maybe_recurse if you need fine grained control over which children are invalidated. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">region</td><td>A <a class="el" href="classGdk_1_1Region.html" title="This is an opaque data type holding a set of arbitrary pixels, and is usually used for clipping graph...">Gdk::Region</a>. </td></tr>
<tr><td class="paramname">invalidate_children</td><td><code>true</code> to also invalidate child windows. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a93048bb6eea2a051a5b88a0227f848ff"></a><!-- doxytag: member="Gdk::Window::is_input_only" ref="a93048bb6eea2a051a5b88a0227f848ff" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gdk::Window::is_input_only </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Determines whether or not the window is an input only window. </p>
<dl class="since_2_22"><dt><b><a class="el" href="since_2_22.html#_since_2_22000038">Since gtkmm 2.22:</a></b></dt><dd></dd></dl>
<dl class="return"><dt><b>Returns:</b></dt><dd><code>true</code> if <em>window</em> is input only. </dd></dl>
</div>
</div>
<a class="anchor" id="ae0f8676d3c9b69be7b0e613b4eda30b8"></a><!-- doxytag: member="Gdk::Window::is_shaped" ref="ae0f8676d3c9b69be7b0e613b4eda30b8" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gdk::Window::is_shaped </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Determines whether or not the window is shaped. </p>
<dl class="since_2_22"><dt><b><a class="el" href="since_2_22.html#_since_2_22000039">Since gtkmm 2.22:</a></b></dt><dd></dd></dl>
<dl class="return"><dt><b>Returns:</b></dt><dd><code>true</code> if <em>window</em> is shaped. </dd></dl>
</div>
</div>
<a class="anchor" id="a9e4506546231e69eebebc398627de723"></a><!-- doxytag: member="Gdk::Window::is_viewable" ref="a9e4506546231e69eebebc398627de723" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gdk::Window::is_viewable </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Check if the window and all ancestors of the window are mapped. </p>
<p>(This is not necessarily "viewable" in the X sense, since we only check as far as we have GDK window parents, not to the root window.) </p>
<dl class="return"><dt><b>Returns:</b></dt><dd><code>true</code> if the window is viewable. </dd></dl>
</div>
</div>
<a class="anchor" id="a44d6daf9e5cd55b18891a5173956d3bf"></a><!-- doxytag: member="Gdk::Window::is_visible" ref="a44d6daf9e5cd55b18891a5173956d3bf" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gdk::Window::is_visible </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Checks whether the window has been mapped (with <a class="el" href="classGdk_1_1Window.html#ad850f17e45522107fb498de8641766f7" title="Like show_unraised(), but also raises the window to the top of the window stack (moves the window to ...">show()</a> or <a class="el" href="classGdk_1_1Window.html#a2c6d829cf3fc060ab52a4bdc7d77973a" title="Shows a Gdk::Window onscreen, but does not modify its stacking order.">show_unraised()</a>). </p>
<dl class="return"><dt><b>Returns:</b></dt><dd><code>true</code> if the window is mapped. </dd></dl>
</div>
</div>
<a class="anchor" id="aeece1b9a0e700b161b86471843a906ac"></a><!-- doxytag: member="Gdk::Window::keyboard_grab" ref="aeece1b9a0e700b161b86471843a906ac" args="(bool owner_events, guint32 timestamp)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="group__gdkmmEnums.html#gab3918cc69c861b97779ac08dfa48610f">GrabStatus</a> Gdk::Window::keyboard_grab </td>
<td>(</td>
<td class="paramtype">bool </td>
<td class="paramname"><em>owner_events</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">
</div>
</div>
<a class="anchor" id="ad9a73b6b522030512fb87acd9739eda9"></a><!-- doxytag: member="Gdk::Window::keyboard_ungrab" ref="ad9a73b6b522030512fb87acd9739eda9" args="(guint32 timestamp)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">static void Gdk::Window::keyboard_ungrab </td>
<td>(</td>
<td class="paramtype">guint32 </td>
<td class="paramname"><em>timestamp</em></td><td>)</td>
<td><code> [static]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Ungrabs the keyboard on the default display, if it is grabbed by this application. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">timestamp</td><td>A timestamp from a <a class="el" href="classGdk_1_1Event.html">Gdk::Event</a>, or Gdk::CURRENT_TIME if no timestamp is available. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a275d4424691fee615c469f7c6bdd59bf"></a><!-- doxytag: member="Gdk::Window::lower" ref="a275d4424691fee615c469f7c6bdd59bf" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::Window::lower </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Lowers <em>window</em> to the bottom of the Z-order (stacking order), so that other windows with the same parent window appear above <em>window</em>. </p>
<p>This is true whether or not the other windows are visible.</p>
<p>If <em>window</em> is a toplevel, the window manager may choose to deny the request to move the window in the Z-order, <a class="el" href="classGdk_1_1Window.html#a275d4424691fee615c469f7c6bdd59bf" title="Lowers window to the bottom of the Z-order (stacking order), so that other windows with the same pare...">lower()</a> only requests the restack, does not guarantee it.</p>
<p>Note that <a class="el" href="classGdk_1_1Window.html#ad850f17e45522107fb498de8641766f7" title="Like show_unraised(), but also raises the window to the top of the window stack (moves the window to ...">show()</a> raises the window again, so don't call this function before <a class="el" href="classGdk_1_1Window.html#ad850f17e45522107fb498de8641766f7" title="Like show_unraised(), but also raises the window to the top of the window stack (moves the window to ...">show()</a>. (Try <a class="el" href="classGdk_1_1Window.html#a2c6d829cf3fc060ab52a4bdc7d77973a" title="Shows a Gdk::Window onscreen, but does not modify its stacking order.">show_unraised()</a>.) </p>
</div>
</div>
<a class="anchor" id="a4cc88ddb51aff3135603a5282073f625"></a><!-- doxytag: member="Gdk::Window::maximize" ref="a4cc88ddb51aff3135603a5282073f625" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::Window::maximize </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Maximizes the window. </p>
<p>If the window was already maximized, then this function does nothing.</p>
<p>On X11, asks the window manager to maximize <em>window</em>, if the window manager supports this operation. Not all window managers support this, and some deliberately ignore it or don't have a concept of "maximized"; so you can't rely on the maximization actually happening. But it will happen with most standard window managers, and GDK makes a best effort to get it to happen.</p>
<p>On Windows, reliably maximizes the window. </p>
</div>
</div>
<a class="anchor" id="adf4f0442926e39a327843a6b5946e4c5"></a><!-- doxytag: member="Gdk::Window::merge_child_input_shapes" ref="adf4f0442926e39a327843a6b5946e4c5" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::Window::merge_child_input_shapes </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Merges the input shape masks for any child windows into the input shape mask for <em>window</em>. </p>
<p>i.e. the union of all input masks for <em>window</em> and its children will become the new input mask for <em>window</em>. See <a class="el" href="classGdk_1_1Window.html#a4b0c0b20adc4bcf3f0e4d665059573d3" title="Like shape_combine_mask(), but the shape applies only to event handling.">input_shape_combine_mask()</a>.</p>
<p>This function is distinct from <a class="el" href="classGdk_1_1Window.html#a4c4a3eff84349ff97ecf1d24972cc751" title="Sets the input shape mask of window to the union of input shape masks for all children of window...">set_child_input_shapes()</a> because it includes <em>window's</em> input shape mask in the set of shapes to be merged.</p>
<dl class="since_2_10"><dt><b><a class="el" href="since_2_10.html#_since_2_10000015">Since gtkmm 2.10:</a></b></dt><dd></dd></dl>
</div>
</div>
<a class="anchor" id="a48118e2ebc867bc3c726d85f5eec0659"></a><!-- doxytag: member="Gdk::Window::merge_child_shapes" ref="a48118e2ebc867bc3c726d85f5eec0659" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::Window::merge_child_shapes </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Merges the shape masks for any child windows into the shape mask for <em>window</em>. </p>
<p>i.e. the union of all masks for <em>window</em> and its children will become the new mask for <em>window</em>. See <a class="el" href="classGdk_1_1Window.html#a7e7ccbbb8a86215d0478b9fc041dce34" title="Applies a shape mask to window.">shape_combine_mask()</a>.</p>
<p>This function is distinct from <a class="el" href="classGdk_1_1Window.html#a0573c6c2876784956e463eccebb55c6f" title="Sets the shape mask of window to the union of shape masks for all children of window, ignoring the shape mask of window itself.">set_child_shapes()</a> because it includes <em>window's</em> shape mask in the set of shapes to be merged. </p>
</div>
</div>
<a class="anchor" id="abdaf2a58abef5b8bc4f7a36d7109076e"></a><!-- doxytag: member="Gdk::Window::move" ref="abdaf2a58abef5b8bc4f7a36d7109076e" args="(int x, int y)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::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>Repositions a window relative to its parent window. </p>
<p>For toplevel windows, window managers may ignore or modify the move; you should probably use gtk_window_move() on 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> widget anyway, instead of using GDK functions. For child windows, the move will reliably succeed.</p>
<p>If you're also planning to resize the window, use <a class="el" href="classGdk_1_1Window.html#afa7df5ed11a3b022c567e644d64ada07" title="Equivalent to calling move() and resize(), except that both operations are performed at once...">move_resize()</a> to both move and resize simultaneously, for a nicer visual effect. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">x</td><td>X coordinate relative to window's parent. </td></tr>
<tr><td class="paramname">y</td><td>Y coordinate relative to window's parent. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a1c1e8c3af5bdd711be6ef487ff01cd8a"></a><!-- doxytag: member="Gdk::Window::move_region" ref="a1c1e8c3af5bdd711be6ef487ff01cd8a" args="(const Region &region, int dx, int dy)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::Window::move_region </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classGdk_1_1Region.html">Region</a>& </td>
<td class="paramname"><em>region</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>dx</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>dy</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Move the part of <em>window</em> indicated by <em>region</em> by <em>dy</em> pixels in the Y direction and <em>dx</em> pixels in the X direction. </p>
<p>The portions of <em>region</em> that not covered by the new position of <em>region</em> are invalidated.</p>
<p>Child windows are not moved.</p>
<dl class="since_2_8"><dt><b><a class="el" href="since_2_8.html#_since_2_8000008">Since gtkmm 2.8:</a></b></dt><dd></dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">region</td><td>The <a class="el" href="classGdk_1_1Region.html" title="This is an opaque data type holding a set of arbitrary pixels, and is usually used for clipping graph...">Gdk::Region</a> to move. </td></tr>
<tr><td class="paramname">dx</td><td>Amount to move in the X direction. </td></tr>
<tr><td class="paramname">dy</td><td>Amount to move in the Y direction. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="afa7df5ed11a3b022c567e644d64ada07"></a><!-- doxytag: member="Gdk::Window::move_resize" ref="afa7df5ed11a3b022c567e644d64ada07" args="(int x, int y, int width, int height)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::Window::move_resize </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"><em>x</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>y</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>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>Equivalent to calling <a class="el" href="classGdk_1_1Window.html#abdaf2a58abef5b8bc4f7a36d7109076e" title="Repositions a window relative to its parent window.">move()</a> and <a class="el" href="classGdk_1_1Window.html#ac24547040d1662585c8ee64fe56780f6" title="Resizes window; for toplevel windows, asks the window manager to resize the window.">resize()</a>, except that both operations are performed at once, avoiding strange visual effects. </p>
<p>(i.e. the user may be able to see the window first move, then resize, if you don't use <a class="el" href="classGdk_1_1Window.html#afa7df5ed11a3b022c567e644d64ada07" title="Equivalent to calling move() and resize(), except that both operations are performed at once...">move_resize()</a>.) </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">x</td><td>New X position relative to window's parent. </td></tr>
<tr><td class="paramname">y</td><td>New Y position relative to window's parent. </td></tr>
<tr><td class="paramname">width</td><td>New width. </td></tr>
<tr><td class="paramname">height</td><td>New height. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a6bcc579d9de9494524681890e69147c7"></a><!-- doxytag: member="Gdk::Window::pointer_grab" ref="a6bcc579d9de9494524681890e69147c7" args="(bool owner_events, EventMask event_mask, const Glib::RefPtr< const Window > &confine_to, const Cursor &cursor, guint32 time_)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="group__gdkmmEnums.html#gab3918cc69c861b97779ac08dfa48610f">GrabStatus</a> Gdk::Window::pointer_grab </td>
<td>(</td>
<td class="paramtype">bool </td>
<td class="paramname"><em>owner_events</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="group__gdkmmEnums.html#ga0288c23e93ded8c0326235f1f1120c61">EventMask</a> </td>
<td class="paramname"><em>event_mask</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_1RefPtr.html">Glib::RefPtr</a>< const <a class="el" href="classGdk_1_1Window.html">Window</a> >& </td>
<td class="paramname"><em>confine_to</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="classGdk_1_1Cursor.html">Cursor</a>& </td>
<td class="paramname"><em>cursor</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">guint32 </td>
<td class="paramname"><em>time_</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="a2bcea48b9e4a8f747f8c6ace58fc4651"></a><!-- doxytag: member="Gdk::Window::pointer_grab" ref="a2bcea48b9e4a8f747f8c6ace58fc4651" args="(bool owner_events, EventMask event_mask, guint32 timestamp)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="group__gdkmmEnums.html#gab3918cc69c861b97779ac08dfa48610f">GrabStatus</a> Gdk::Window::pointer_grab </td>
<td>(</td>
<td class="paramtype">bool </td>
<td class="paramname"><em>owner_events</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="group__gdkmmEnums.html#ga0288c23e93ded8c0326235f1f1120c61">EventMask</a> </td>
<td class="paramname"><em>event_mask</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>Grabs the pointer to a specific window. </p>
<p>Requires a corresponding call to <a class="el" href="classGdk_1_1Window.html#ac8586f7f64a088277347ac0725bbe2c0" title="Ungrabs the pointer on the default display, if it is grabbed by this application.">pointer_ungrab()</a>.</p>
<p>Arguments: </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">owner_events</td><td>Specifies whether events will be reported as is, or relative to the window. </td></tr>
<tr><td class="paramname">event_mask</td><td>Masks only interesting events. </td></tr>
<tr><td class="paramname">timestamp</td><td>Specifies the time. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="aa448a6cd06d1421d519d78da43ae6b8f"></a><!-- doxytag: member="Gdk::Window::pointer_grab" ref="aa448a6cd06d1421d519d78da43ae6b8f" args="(bool owner_events, EventMask event_mask, const Cursor &cursor, guint32 timestamp)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="group__gdkmmEnums.html#gab3918cc69c861b97779ac08dfa48610f">GrabStatus</a> Gdk::Window::pointer_grab </td>
<td>(</td>
<td class="paramtype">bool </td>
<td class="paramname"><em>owner_events</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="group__gdkmmEnums.html#ga0288c23e93ded8c0326235f1f1120c61">EventMask</a> </td>
<td class="paramname"><em>event_mask</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="classGdk_1_1Cursor.html">Cursor</a>& </td>
<td class="paramname"><em>cursor</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>Grabs the pointer to a specific window. </p>
<p>Requires a corresponding call to <a class="el" href="classGdk_1_1Window.html#ac8586f7f64a088277347ac0725bbe2c0" title="Ungrabs the pointer on the default display, if it is grabbed by this application.">pointer_ungrab()</a>.</p>
<p>Arguments: </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">owner_events</td><td>Specifies whether events will be reported as is, or relative to the window. </td></tr>
<tr><td class="paramname">event_mask</td><td>Masks only interesting events. </td></tr>
<tr><td class="paramname">cursor</td><td>Changes the cursor for the duration of the grab. </td></tr>
<tr><td class="paramname">timestamp</td><td>Specifies the time. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="ac8586f7f64a088277347ac0725bbe2c0"></a><!-- doxytag: member="Gdk::Window::pointer_ungrab" ref="ac8586f7f64a088277347ac0725bbe2c0" args="(guint32 timestamp)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">static void Gdk::Window::pointer_ungrab </td>
<td>(</td>
<td class="paramtype">guint32 </td>
<td class="paramname"><em>timestamp</em></td><td>)</td>
<td><code> [static]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Ungrabs the pointer on the default display, if it is grabbed by this application. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">timestamp</td><td>A timestamp from a <a class="el" href="classGdk_1_1Event.html">Gdk::Event</a>, or Gdk::CURRENT_TIME if no timestamp is available. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a3fc76fbdf9948b92dacfd1a9e340184b"></a><!-- doxytag: member="Gdk::Window::process_all_updates" ref="a3fc76fbdf9948b92dacfd1a9e340184b" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">static void Gdk::Window::process_all_updates </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td><code> [static]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Calls <a class="el" href="classGdk_1_1Window.html#a6ec5f7e788470159672511c964771285" title="Sends one or more expose events to window.">process_updates()</a> for all windows (see <a class="el" href="classGdk_1_1Window.html" title="A Gdk::Window is a rectangular region on the screen.">Gdk::Window</a>) in the application. </p>
</div>
</div>
<a class="anchor" id="a6ec5f7e788470159672511c964771285"></a><!-- doxytag: member="Gdk::Window::process_updates" ref="a6ec5f7e788470159672511c964771285" args="(bool update_children)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::Window::process_updates </td>
<td>(</td>
<td class="paramtype">bool </td>
<td class="paramname"><em>update_children</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Sends one or more expose events to <em>window</em>. </p>
<p>The areas in each expose event will cover the entire update area for the window (see <a class="el" href="classGdk_1_1Window.html#a1a68d500a7be88de01d87e781aa2be89" title="Adds region to the update area for window.">invalidate_region()</a> for details). Normally GDK calls <a class="el" href="classGdk_1_1Window.html#a3fc76fbdf9948b92dacfd1a9e340184b" title="Calls process_updates() for all windows (see Gdk::Window) in the application.">process_all_updates()</a> on your behalf, so there's no need to call this function unless you want to force expose events to be delivered immediately and synchronously (vs. the usual case, where GDK delivers them in an idle handler). Occasionally this is useful to produce nicer scrolling behavior, for example. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">update_children</td><td>Whether to also process updates for child windows. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a6eef65b862344ad01b01e527f2c39741"></a><!-- doxytag: member="Gdk::Window::raise" ref="a6eef65b862344ad01b01e527f2c39741" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::Window::raise </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Raises <em>window</em> to the top of the Z-order (stacking order), so that other windows with the same parent window appear below <em>window</em>. </p>
<p>This is true whether or not the windows are visible.</p>
<p>If <em>window</em> is a toplevel, the window manager may choose to deny the request to move the window in the Z-order, <a class="el" href="classGdk_1_1Window.html#a6eef65b862344ad01b01e527f2c39741" title="Raises window to the top of the Z-order (stacking order), so that other windows with the same parent ...">raise()</a> only requests the restack, does not guarantee it. </p>
</div>
</div>
<a class="anchor" id="aac5e5fe4ff5d0ec1d56d6e352b30f034"></a><!-- doxytag: member="Gdk::Window::redirect_to_drawable" ref="aac5e5fe4ff5d0ec1d56d6e352b30f034" args="(const Glib::RefPtr< Drawable > &drawable, int src_x, int src_y, int dest_x, int dest_y, int width, int height)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::Window::redirect_to_drawable </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_1Drawable.html">Drawable</a> >& </td>
<td class="paramname"><em>drawable</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>src_x</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>src_y</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>dest_x</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>dest_y</em>, </td>
</tr>
<tr>
<td class="paramkey"></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>Redirects drawing into <em>window</em> so that drawing to the window in the rectangle specified by <em>src_x</em>, <em>src_y</em>, <em>width</em> and <em>height</em> is also drawn into <em>drawable</em> at <em>dest_x</em>, <em>dest_y</em>. </p>
<p>Only drawing between <a class="el" href="classGdk_1_1Window.html#ae9b866577d6a20aa250b74a1144dca3f" title="Indicates that you are beginning the process of redrawing region.">begin_paint_region()</a> or <a class="el" href="classGdk_1_1Window.html#aa0cc483d4278e4c7fb0cee2d109095ba" title="A convenience wrapper around begin_paint_region() which creates a rectangular region for you...">begin_paint_rect()</a> and <a class="el" href="classGdk_1_1Window.html#a21c920c3f5903e7d338b68c68f09e645" title="Indicates that the backing store created by the most recent call to begin_paint_region() should be co...">end_paint()</a> is redirected.</p>
<p>Redirection is active until <a class="el" href="classGdk_1_1Window.html#a5b1be8f613f046df28c44f54a076b59e" title="Removes any active redirection started by redirect_to_drawable().">remove_redirection()</a> is called.</p>
<dl class="since_2_14"><dt><b><a class="el" href="since_2_14.html#_since_2_14000012">Since gtkmm 2.14:</a></b></dt><dd></dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">drawable</td><td>A <a class="el" href="classGdk_1_1Drawable.html" title="Drawing Primitives.">Gdk::Drawable</a>. </td></tr>
<tr><td class="paramname">src_x</td><td>X position in <em>window</em>. </td></tr>
<tr><td class="paramname">src_y</td><td>Y position in <em>window</em>. </td></tr>
<tr><td class="paramname">dest_x</td><td>X position in <em>drawable</em>. </td></tr>
<tr><td class="paramname">dest_y</td><td>Y position in <em>drawable</em>. </td></tr>
<tr><td class="paramname">width</td><td>Width of redirection, or -1 to use the width of <em>window</em>. </td></tr>
<tr><td class="paramname">height</td><td>Height of redirection or -1 to use the height of <em>window</em>. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a53a80a911aab9875900da568c57b0cee"></a><!-- doxytag: member="Gdk::Window::register_dnd" ref="a53a80a911aab9875900da568c57b0cee" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::Window::register_dnd </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="aa0b04aed6d338ce78f10060b025ceb3f"></a><!-- doxytag: member="Gdk::Window::remove_filter" ref="aa0b04aed6d338ce78f10060b025ceb3f" args="(GdkFilterFunc function, gpointer data)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::Window::remove_filter </td>
<td>(</td>
<td class="paramtype">GdkFilterFunc </td>
<td class="paramname"><em>function</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">gpointer </td>
<td class="paramname"><em>data</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Remove a filter previously added with <a class="el" href="classGdk_1_1Window.html#a413863a30bbac24d6d1a207401c07caf" title="Adds an event filter to window, allowing you to intercept events before they reach GDK...">add_filter()</a>. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">function</td><td>Previously-added filter function. </td></tr>
<tr><td class="paramname">data</td><td>User data for previously-added filter function. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a5b1be8f613f046df28c44f54a076b59e"></a><!-- doxytag: member="Gdk::Window::remove_redirection" ref="a5b1be8f613f046df28c44f54a076b59e" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::Window::remove_redirection </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Removes any active redirection started by <a class="el" href="classGdk_1_1Window.html#aac5e5fe4ff5d0ec1d56d6e352b30f034" title="Redirects drawing into window so that drawing to the window in the rectangle specified by src_x...">redirect_to_drawable()</a>. </p>
<dl class="since_2_14"><dt><b><a class="el" href="since_2_14.html#_since_2_14000013">Since gtkmm 2.14:</a></b></dt><dd></dd></dl>
</div>
</div>
<a class="anchor" id="a1de4d3f12a7f2e7e866f1d9909a9a001"></a><!-- doxytag: member="Gdk::Window::reparent" ref="a1de4d3f12a7f2e7e866f1d9909a9a001" args="(const Glib::RefPtr< Window > &new_parent, int x, int y)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::Window::reparent </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_1Window.html">Window</a> >& </td>
<td class="paramname"><em>new_parent</em>, </td>
</tr>
<tr>
<td class="paramkey"></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>Reparents <em>window</em> into the given <em>new_parent</em>. </p>
<p>The window being reparented will be unmapped as a side effect. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">new_parent</td><td>New parent to move <em>window</em> into. </td></tr>
<tr><td class="paramname">x</td><td>X location inside the new parent. </td></tr>
<tr><td class="paramname">y</td><td>Y location inside the new parent. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="ac24547040d1662585c8ee64fe56780f6"></a><!-- doxytag: member="Gdk::Window::resize" ref="ac24547040d1662585c8ee64fe56780f6" args="(int width, int height)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::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 <em>window</em>; for toplevel windows, asks the window manager to resize the window. </p>
<p>The window manager may not allow the resize. When using GTK+, use gtk_window_resize() instead of this low-level GDK function.</p>
<p>Windows may not be resized below 1x1.</p>
<p>If you're also planning to move the window, use <a class="el" href="classGdk_1_1Window.html#afa7df5ed11a3b022c567e644d64ada07" title="Equivalent to calling move() and resize(), except that both operations are performed at once...">move_resize()</a> to both move and resize simultaneously, for a nicer visual effect. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">width</td><td>New width of the window. </td></tr>
<tr><td class="paramname">height</td><td>New height of the window. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a8f8b1a1988ee739869b683082bf6746c"></a><!-- doxytag: member="Gdk::Window::restack" ref="a8f8b1a1988ee739869b683082bf6746c" args="(const Glib::RefPtr< Window > &sibling, bool above)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::Window::restack </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_1Window.html">Window</a> >& </td>
<td class="paramname"><em>sibling</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">bool </td>
<td class="paramname"><em>above</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Changes the position of <em>window</em> in the Z-order (stacking order), so that it is above <em>sibling</em> (if <em>above</em> is <code>true</code>) or below <em>sibling</em> (if <em>above</em> is <code>false</code>). </p>
<p>If <em>sibling</em> is <code>0</code>, then this either raises (if <em>above</em> is <code>true</code>) or lowers the window.</p>
<p>If <em>window</em> is a toplevel, the window manager may choose to deny the request to move the window in the Z-order, <a class="el" href="classGdk_1_1Window.html#a8f8b1a1988ee739869b683082bf6746c" title="Changes the position of window in the Z-order (stacking order), so that it is above sibling (if above...">restack()</a> only requests the restack, does not guarantee it.</p>
<dl class="since_2_18"><dt><b><a class="el" href="since_2_18.html#_since_2_18000001">Since gtkmm 2.18:</a></b></dt><dd></dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">sibling</td><td>A <a class="el" href="classGdk_1_1Window.html" title="A Gdk::Window is a rectangular region on the screen.">Gdk::Window</a> that is a sibling of <em>window</em>, or <code>0</code>. </td></tr>
<tr><td class="paramname">above</td><td>A boolean. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a15acff14c1947278d1e1d20fc0115e89"></a><!-- doxytag: member="Gdk::Window::restack" ref="a15acff14c1947278d1e1d20fc0115e89" args="(bool above)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::Window::restack </td>
<td>(</td>
<td class="paramtype">bool </td>
<td class="paramname"><em>above</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Changes the position of this window in the Z-order (stacking order). </p>
<p>This either raises (if <em>above</em> is true) or lowers the window.</p>
<p>If this is a toplevel, the window manager may choose to deny the request to move the window in the Z-order. <a class="el" href="classGdk_1_1Window.html#a8f8b1a1988ee739869b683082bf6746c" title="Changes the position of window in the Z-order (stacking order), so that it is above sibling (if above...">restack()</a> only requests the restack but does not guarantee it.</p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">above</td><td>Whether to raise or lower the window.</td></tr>
</table>
</dd>
</dl>
<dl class="since_2_18"><dt><b><a class="el" href="since_2_18.html#_since_2_18000002">Since gtkmm 2.18:</a></b></dt><dd></dd></dl>
</div>
</div>
<a class="anchor" id="a7c96ca3674bbf8dbd71602d2f7893b8e"></a><!-- doxytag: member="Gdk::Window::scroll" ref="a7c96ca3674bbf8dbd71602d2f7893b8e" args="(int dx, int dy)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::Window::scroll </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"><em>dx</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>dy</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Scroll the contents of its window, both pixels and children, by the given amount. </p>
<p>Portions of the window that the scroll operation brings in from offscreen areas are invalidated. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">dx</td><td>Amount to scroll in the X direction. </td></tr>
<tr><td class="paramname">dy</td><td>Amount to scroll in the Y direction. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="acb1d7d6cbd6691a38b699a39d2eecc30"></a><!-- doxytag: member="Gdk::Window::set_accept_focus" ref="acb1d7d6cbd6691a38b699a39d2eecc30" args="(bool accept_focus=true)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::Window::set_accept_focus </td>
<td>(</td>
<td class="paramtype">bool </td>
<td class="paramname"><em>accept_focus</em> = <code>true</code></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Setting <em>accept_focus</em> to <code>false</code> hints the desktop environment that the window doesn't want to receive input focus. </p>
<p>On X, it is the responsibility of the window manager to interpret this hint. ICCCM-compliant window manager usually respect it.</p>
<dl class="since_2_4"><dt><b><a class="el" href="since_2_4.html#_since_2_4000013">Since gtkmm 2.4:</a></b></dt><dd></dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">accept_focus</td><td><code>true</code> if the window should receive input focus. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a27f458f963e431f559b0b64c3134e40c"></a><!-- doxytag: member="Gdk::Window::set_back_pixmap" ref="a27f458f963e431f559b0b64c3134e40c" args="(const Glib::RefPtr< Pixmap > &pixmap, bool parent_relative=true)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::Window::set_back_pixmap </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_1Pixmap.html">Pixmap</a> >& </td>
<td class="paramname"><em>pixmap</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">bool </td>
<td class="paramname"><em>parent_relative</em> = <code>true</code> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Sets the background pixmap of <em>window</em>. </p>
<p>A background pixmap will be tiled, positioning the first tile at the origin of <em>window</em>, or if <em>parent_relative</em> is <code>true</code>, the tiling will be done based on the origin of the parent window (useful to align tiles in a parent with tiles in a child).</p>
<p>The windowing system will normally fill a window with its background when the window is obscured then exposed, and when you call <a class="el" href="classGdk_1_1Window.html#a62057e2fe9726f664dd01319e645f7b1" title="Clears an entire window to the background color or background pixmap.">clear()</a>.</p>
<p>See also <a class="el" href="classGdk_1_1Window.html#a729b9a7dfc3d4da8bfb0761d78b626d4" title="Unsets the background pixmap of window so that the window will have no background.">unset_back_pixmap()</a>. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">pixmap</td><td>A <a class="el" href="classGdk_1_1Pixmap.html" title="Pixmaps are offscreen drawables.">Gdk::Pixmap</a>. </td></tr>
<tr><td class="paramname">parent_relative</td><td>Whether the tiling origin is at the origin of <em>window's</em> parent. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a3beabdcf6f6f2c36f03288aaba209863"></a><!-- doxytag: member="Gdk::Window::set_background" ref="a3beabdcf6f6f2c36f03288aaba209863" args="(const Color &color)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::Window::set_background </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classGdk_1_1Color.html">Color</a>& </td>
<td class="paramname"><em>color</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Sets the background color of <em>window</em>. </p>
<p>(However, when using GTK+, set the background of a widget with gtk_widget_modify_bg() - if you're an application - or gtk_style_set_background() - if you're implementing a custom widget.)</p>
<p>The <em>color</em> must be allocated; gdk_rgb_find_color() is the best way to allocate a color.</p>
<p>See also gdk_window_set_background_pixmap(). </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">color</td><td>An allocated <a class="el" href="classGdk_1_1Color.html" title="Gdk::Color is used to describe an allocated or unallocated color.">Gdk::Color</a>. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a4c4a3eff84349ff97ecf1d24972cc751"></a><!-- doxytag: member="Gdk::Window::set_child_input_shapes" ref="a4c4a3eff84349ff97ecf1d24972cc751" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::Window::set_child_input_shapes </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Sets the input shape mask of <em>window</em> to the union of input shape masks for all children of <em>window</em>, ignoring the input shape mask of <em>window</em> itself. </p>
<p>Contrast with <a class="el" href="classGdk_1_1Window.html#adf4f0442926e39a327843a6b5946e4c5" title="Merges the input shape masks for any child windows into the input shape mask for window.">merge_child_input_shapes()</a> which includes the input shape mask of <em>window</em> in the masks to be merged.</p>
<dl class="since_2_10"><dt><b><a class="el" href="since_2_10.html#_since_2_10000014">Since gtkmm 2.10:</a></b></dt><dd></dd></dl>
</div>
</div>
<a class="anchor" id="a0573c6c2876784956e463eccebb55c6f"></a><!-- doxytag: member="Gdk::Window::set_child_shapes" ref="a0573c6c2876784956e463eccebb55c6f" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::Window::set_child_shapes </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Sets the shape mask of <em>window</em> to the union of shape masks for all children of <em>window</em>, ignoring the shape mask of <em>window</em> itself. </p>
<p>Contrast with <a class="el" href="classGdk_1_1Window.html#a48118e2ebc867bc3c726d85f5eec0659" title="Merges the shape masks for any child windows into the shape mask for window.">merge_child_shapes()</a> which includes the shape mask of <em>window</em> in the masks to be merged. </p>
</div>
</div>
<a class="anchor" id="aba9d5bea3de05b31eff0da2bed753db8"></a><!-- doxytag: member="Gdk::Window::set_composited" ref="aba9d5bea3de05b31eff0da2bed753db8" args="(bool composited=TRUE)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::Window::set_composited </td>
<td>(</td>
<td class="paramtype">bool </td>
<td class="paramname"><em>composited</em> = <code>TRUE</code></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Sets a <a class="el" href="classGdk_1_1Window.html" title="A Gdk::Window is a rectangular region on the screen.">Gdk::Window</a> as composited, or unsets it. </p>
<p>Composited windows do not automatically have their contents drawn to the screen. Drawing is redirected to an offscreen buffer and an expose event is emitted on the parent of the composited window. It is the responsibility of the parent's expose handler to manually merge the off-screen content onto the screen in whatever way it sees fit. See <xref linkend="composited-window-example"> for an example.</p>
<p>It only makes sense for child windows to be composited; see <a class="el" href="classGdk_1_1Window.html#af70da6bc12c5997b6cd77f4cd14e5129" title="Request the windowing system to make window partially transparent, with opacity 0 being fully transpa...">set_opacity()</a> if you need translucent toplevel windows.</p>
<p>An additional effect of this call is that the area of this window is no longer clipped from regions marked for invalidation on its parent. Draws done on the parent window are also no longer clipped by the child.</p>
<p>This call is only supported on some systems (currently, only X11 with new enough Xcomposite and Xdamage extensions). You must call <a class="el" href="classGdk_1_1Display.html#aeb030dde7590e1b649f398e99da0c9b3" title="Returns true if Gdk::Window::set_composited() can be used to redirect drawing on the window using com...">Gdk::Display::supports_composite()</a> to check if setting a window as composited is supported before attempting to do so.</p>
<dl class="since_2_12"><dt><b><a class="el" href="since_2_12.html#_since_2_12000008">Since gtkmm 2.12:</a></b></dt><dd></dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">composited</td><td><code>true</code> to set the window as composited. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="abb73b1f599ce6cb72d2e184c63610fd0"></a><!-- doxytag: member="Gdk::Window::set_cursor" ref="abb73b1f599ce6cb72d2e184c63610fd0" args="(const Cursor &cursor)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::Window::set_cursor </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classGdk_1_1Cursor.html">Cursor</a>& </td>
<td class="paramname"><em>cursor</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Sets the mouse pointer for a <a class="el" href="classGdk_1_1Window.html" title="A Gdk::Window is a rectangular region on the screen.">Gdk::Window</a>. </p>
<p>To make the cursor invisible, use Gdk::Cursor::new_from_pixmap() to create a cursor with no pixels in it. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">cursor</td><td>A cursor. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="aba9323e496965a473e37566140cc9a10"></a><!-- doxytag: member="Gdk::Window::set_cursor" ref="aba9323e496965a473e37566140cc9a10" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::Window::set_cursor </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Use the parent window's cursor. </p>
<p>For top-level windows this means that it will use the default cursor for the ROOT window. </p>
</div>
</div>
<a class="anchor" id="a736baef4396a9255cc820ba60245769a"></a><!-- doxytag: member="Gdk::Window::set_debug_updates" ref="a736baef4396a9255cc820ba60245769a" args="(bool setting=true)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">static void Gdk::Window::set_debug_updates </td>
<td>(</td>
<td class="paramtype">bool </td>
<td class="paramname"><em>setting</em> = <code>true</code></td><td>)</td>
<td><code> [static]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>With update debugging enabled, calls to <a class="el" href="classGdk_1_1Window.html#a1a68d500a7be88de01d87e781aa2be89" title="Adds region to the update area for window.">invalidate_region()</a> clear the invalidated region of the screen to a noticeable color, and GDK pauses for a short time before sending exposes to windows during <a class="el" href="classGdk_1_1Window.html#a6ec5f7e788470159672511c964771285" title="Sends one or more expose events to window.">process_updates()</a>. </p>
<p>The net effect is that you can see the invalid region for each window and watch redraws as they occur. This allows you to diagnose inefficiencies in your application.</p>
<p>In essence, because the GDK rendering model prevents all flicker, if you are redrawing the same region 400 times you may never notice, aside from noticing a speed problem. Enabling update debugging causes GTK to flicker slowly and noticeably, so you can see exactly what's being redrawn when, in what order.</p>
<p>The --gtk-debug=updates command line option passed to GTK+ programs enables this debug option at application startup time. That's usually more useful than calling <a class="el" href="classGdk_1_1Window.html#a736baef4396a9255cc820ba60245769a" title="With update debugging enabled, calls to invalidate_region() clear the invalidated region of the scree...">set_debug_updates()</a> yourself, though you might want to use this function to enable updates sometime after application startup time. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">setting</td><td><code>true</code> to turn on update debugging. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a851f5cf4a7e203d8f6f6078818b7f80d"></a><!-- doxytag: member="Gdk::Window::set_decorations" ref="a851f5cf4a7e203d8f6f6078818b7f80d" args="(WMDecoration decorations)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::Window::set_decorations </td>
<td>(</td>
<td class="paramtype"><a class="el" href="group__gdkmmEnums.html#ga1164863f498802821810010d1f3202a4">WMDecoration</a> </td>
<td class="paramname"><em>decorations</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>"Decorations" are the features the window manager adds to a toplevel <a class="el" href="classGdk_1_1Window.html" title="A Gdk::Window is a rectangular region on the screen.">Gdk::Window</a>. </p>
<p>This function sets the traditional Motif window manager hints that tell the window manager which decorations you would like your window to have. Usually you should use gtk_window_set_decorated() on 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> instead of using the GDK function directly.</p>
<p>The <em>decorations</em> argument is the logical OR of the fields in the Gdk::WMDecoration enumeration. If Gdk::DECOR_ALL is included in the mask, the other bits indicate which decorations should be turned off. If Gdk::DECOR_ALL is not included, then the other bits indicate which decorations should be turned on.</p>
<p>Most window managers honor a decorations hint of 0 to disable all decorations, but very few honor all possible combinations of bits. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">decorations</td><td>Decoration hint mask. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="abe022e72429562865fa0d31587056890"></a><!-- doxytag: member="Gdk::Window::set_events" ref="abe022e72429562865fa0d31587056890" args="(EventMask event_mask)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::Window::set_events </td>
<td>(</td>
<td class="paramtype"><a class="el" href="group__gdkmmEnums.html#ga0288c23e93ded8c0326235f1f1120c61">EventMask</a> </td>
<td class="paramname"><em>event_mask</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>The event mask for a window determines which events will be reported for that window. </p>
<p>For example, an event mask including Gdk::BUTTON_PRESS_MASK means the window should report button press events. The event mask is the bitwise OR of values from the Gdk::EventMask enumeration. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">event_mask</td><td><a class="el" href="classGdk_1_1Event.html">Event</a> mask for <em>window</em>. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="adf1d9237560226bc8b78ae48c9172e08"></a><!-- doxytag: member="Gdk::Window::set_focus_on_map" ref="adf1d9237560226bc8b78ae48c9172e08" args="(bool focus_on_map)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::Window::set_focus_on_map </td>
<td>(</td>
<td class="paramtype">bool </td>
<td class="paramname"><em>focus_on_map</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Setting <em>focus_on_map</em> to <code>false</code> hints the desktop environment that the window doesn't want to receive input focus when it is mapped. </p>
<p>focus_on_map should be turned off for windows that aren't triggered interactively (such as popups from network activity).</p>
<p>On X, it is the responsibility of the window manager to interpret this hint. Window managers following the freedesktop.org window manager extension specification should respect it.</p>
<dl class="since_2_6"><dt><b><a class="el" href="since_2_6.html#_since_2_6000007">Since gtkmm 2.6:</a></b></dt><dd></dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">focus_on_map</td><td><code>true</code> if the window should receive input focus when mapped. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a2ada3527bed8ba03670d83203c09a446"></a><!-- doxytag: member="Gdk::Window::set_functions" ref="a2ada3527bed8ba03670d83203c09a446" args="(WMFunction functions)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::Window::set_functions </td>
<td>(</td>
<td class="paramtype"><a class="el" href="group__gdkmmEnums.html#gae86c2fc4eac7ecb9c6c9dd841b1ba6af">WMFunction</a> </td>
<td class="paramname"><em>functions</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Sets hints about the window management functions to make available via buttons on the window frame. </p>
<p>On the X backend, this function sets the traditional Motif window manager hint for this purpose. However, few window managers do anything reliable or interesting with this hint. Many ignore it entirely.</p>
<p>The <em>functions</em> argument is the logical OR of values from the Gdk::WMFunction enumeration. If the bitmask includes Gdk::FUNC_ALL, then the other bits indicate which functions to disable; if it doesn't include Gdk::FUNC_ALL, it indicates which functions to enable. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">functions</td><td>Bitmask of operations to allow on <em>window</em>. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a6ec3d94409fddef481e3e57714c577fa"></a><!-- doxytag: member="Gdk::Window::set_geometry_hints" ref="a6ec3d94409fddef481e3e57714c577fa" args="(const Geometry &geometry, WindowHints geom_mask)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::Window::set_geometry_hints </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="namespaceGdk.html#af6948e754cab4e79c6430fb94e438d83">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">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>Sets the geometry hints for <em>window</em>. </p>
<p>Hints flagged in <em>geom_mask</em> are set, hints not flagged in <em>geom_mask</em> are unset. To unset all hints, use a <em>geom_mask</em> of 0 and a <em>geometry</em> of <code>0</code>.</p>
<p>This function provides hints to the windowing system about acceptable sizes for a toplevel window. The purpose of this is to constrain user resizing, but the windowing system will typically (but is not required to) also constrain the current size of the window to the provided values and constrain programatic resizing via <a class="el" href="classGdk_1_1Window.html#ac24547040d1662585c8ee64fe56780f6" title="Resizes window; for toplevel windows, asks the window manager to resize the window.">resize()</a> or <a class="el" href="classGdk_1_1Window.html#afa7df5ed11a3b022c567e644d64ada07" title="Equivalent to calling move() and resize(), except that both operations are performed at once...">move_resize()</a>.</p>
<p>Note that on X11, this effect has no effect on windows of type Gdk::WINDOW_TEMP or windows where override redirect has been turned on via <a class="el" href="classGdk_1_1Window.html#aad09335b20323d81cb214e549ba201e6" title="An override redirect window is not under the control of the window manager.">set_override_redirect()</a> since these windows are not resizable by the user.</p>
<p>Since you can't count on the windowing system doing the constraints for programmatic resizes, you should generally call <a class="el" href="classGdk_1_1Window.html#a79cdc422025b7ce7be99ef20ff20bafe" title="Constrains a desired width and height according to a set of geometry hints (such as minimum and maxim...">constrain_size()</a> yourself to determine appropriate sizes. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">geometry</td><td>Geometry hints. </td></tr>
<tr><td class="paramname">geom_mask</td><td>Bitmask indicating fields of <em>geometry</em> to pay attention to. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="ac45fc54f035a56f9b8c6a1f5a8a63ed3"></a><!-- doxytag: member="Gdk::Window::set_group" ref="ac45fc54f035a56f9b8c6a1f5a8a63ed3" args="(const Glib::RefPtr< Window > &leader)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::Window::set_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="classGdk_1_1Window.html">Window</a> >& </td>
<td class="paramname"><em>leader</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Sets the group leader window for <em>window</em>. </p>
<p>By default, GDK sets the group leader for all toplevel windows to a global window implicitly created by GDK. With this function you can override this default.</p>
<p>The group leader window allows the window manager to distinguish all windows that belong to a single application. It may for example allow users to minimize/unminimize all windows belonging to an application at once. You should only set a non-default group window if your application pretends to be multiple applications. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">leader</td><td>Group leader window, or <code>0</code> to restore the default group leader window. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a0f9e1a266aec25fb998accc03c90d6c4"></a><!-- doxytag: member="Gdk::Window::set_icon" ref="a0f9e1a266aec25fb998accc03c90d6c4" args="(const Glib::RefPtr< Window > &icon_window, const Glib::RefPtr< Pixmap > &pixmap, const Glib::RefPtr< Bitmap > &mask)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::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_1Window.html">Window</a> >& </td>
<td class="paramname"><em>icon_window</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_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGdk_1_1Pixmap.html">Pixmap</a> >& </td>
<td class="paramname"><em>pixmap</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_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGdk_1_1Bitmap.html">Bitmap</a> >& </td>
<td class="paramname"><em>mask</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Sets the icon of <em>window</em> as a pixmap or window. </p>
<p>If using GTK+, investigate gtk_window_set_default_icon_list() first, and then gtk_window_set_icon_list() and gtk_window_set_icon(). If those don't meet your needs, look at <a class="el" href="classGdk_1_1Window.html#aafd2706d1abf1f2ed0de4cbb3708d7cb" title="Sets a list of icons for the window.">set_icon_list()</a>. Only if all those are too high-level do you want to fall back to <a class="el" href="classGdk_1_1Window.html#a0f9e1a266aec25fb998accc03c90d6c4" title="Sets the icon of window as a pixmap or window.">set_icon()</a>. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">icon_window</td><td>A <a class="el" href="classGdk_1_1Window.html" title="A Gdk::Window is a rectangular region on the screen.">Gdk::Window</a> to use for the icon. </td></tr>
<tr><td class="paramname">pixmap</td><td>A <a class="el" href="classGdk_1_1Pixmap.html" title="Pixmaps are offscreen drawables.">Gdk::Pixmap</a> to use as the icon,. </td></tr>
<tr><td class="paramname">mask</td><td>A 1-bit pixmap (<a class="el" href="classGdk_1_1Bitmap.html" title="Bitmaps are simply pixmaps with a depth of 1.">Gdk::Bitmap</a>) to use as mask for <em>pixmap</em>. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a8eba9690001e09932eccc46c08aff05c"></a><!-- doxytag: member="Gdk::Window::set_icon" ref="a8eba9690001e09932eccc46c08aff05c" args="(const Glib::RefPtr< Window > &icon_window, const Glib::RefPtr< Pixmap > &pixmap)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::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_1Window.html">Window</a> >& </td>
<td class="paramname"><em>icon_window</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_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGdk_1_1Pixmap.html">Pixmap</a> >& </td>
<td class="paramname"><em>pixmap</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="aafd2706d1abf1f2ed0de4cbb3708d7cb"></a><!-- doxytag: member="Gdk::Window::set_icon_list" ref="aafd2706d1abf1f2ed0de4cbb3708d7cb" args="(const Glib::ListHandle< Glib::RefPtr< Gdk::Pixbuf > > &pixbufs)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::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>pixbufs</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Sets a list of icons for the window. </p>
<p>One of these will be used to represent the window when it has been iconified. The icon is usually shown in an icon box or some sort of task bar. Which icon size is shown depends on the window manager. The window manager can scale the icon but setting several size icons can give better image quality since the window manager may only need to scale the icon by a small amount or not at all. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">pixbufs</td><td>A list of pixbufs, of different sizes. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="ac5e3fbd4f07bed0a5060b32a07a127b6"></a><!-- doxytag: member="Gdk::Window::set_icon_name" ref="ac5e3fbd4f07bed0a5060b32a07a127b6" args="(const Glib::ustring &name)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::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>Windows may have a name used while minimized, distinct from the name they display in their titlebar. </p>
<p>Most of the time this is a bad idea from a user interface standpoint. But you can set such a name with this function, if you like.</p>
<p>After calling this with a non-<code>0</code> <em>name</em>, calls to <a class="el" href="classGdk_1_1Window.html#a89c47b105ce213eb1b075d1c8dd34ab6" title="Sets the title of a toplevel window, to be displayed in the titlebar.">set_title()</a> will not update the icon title.</p>
<p>Using <code>0</code> for <em>name</em> unsets the icon title; further calls to <a class="el" href="classGdk_1_1Window.html#a89c47b105ce213eb1b075d1c8dd34ab6" title="Sets the title of a toplevel window, to be displayed in the titlebar.">set_title()</a> will again update the icon title as well. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">name</td><td>Name of window while iconified (minimized). </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a2e961a8cba7b796e7787ab1857340ded"></a><!-- doxytag: member="Gdk::Window::set_keep_above" ref="a2e961a8cba7b796e7787ab1857340ded" args="(bool setting=true)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::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>Set if <em>window</em> must be kept above other windows. </p>
<p>If the window was already above, then this function does nothing.</p>
<p>On X11, asks the window manager to keep <em>window</em> above, if the window manager supports this operation. Not all window managers support this, and some deliberately ignore it or don't have a concept of "keep above"; so you can't rely on the window being kept above. But it will happen with most standard window managers, and GDK makes a best effort to get it to happen.</p>
<dl class="since_2_4"><dt><b><a class="el" href="since_2_4.html#_since_2_4000011">Since gtkmm 2.4:</a></b></dt><dd></dd></dl>
<dl><dt><b>Parameters:</b></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="a1e740ff027fc23170a1fd3cd12cbd3d0"></a><!-- doxytag: member="Gdk::Window::set_keep_below" ref="a1e740ff027fc23170a1fd3cd12cbd3d0" args="(bool setting=true)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::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>Set if <em>window</em> must be kept below other windows. </p>
<p>If the window was already below, then this function does nothing.</p>
<p>On X11, asks the window manager to keep <em>window</em> below, if the window manager supports this operation. Not all window managers support this, and some deliberately ignore it or don't have a concept of "keep below"; so you can't rely on the window being kept below. But it will happen with most standard window managers, and GDK makes a best effort to get it to happen.</p>
<dl class="since_2_4"><dt><b><a class="el" href="since_2_4.html#_since_2_4000012">Since gtkmm 2.4:</a></b></dt><dd></dd></dl>
<dl><dt><b>Parameters:</b></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="a22dc81b0749d30bbbdf5906059459482"></a><!-- doxytag: member="Gdk::Window::set_modal_hint" ref="a22dc81b0749d30bbbdf5906059459482" args="(bool modal=true)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::Window::set_modal_hint </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>The application can use this hint to tell the window manager that a certain window has modal behaviour. </p>
<p>The window manager can use this information to handle modal windows in a special way.</p>
<p>You should only use this on windows for which you have previously called <a class="el" href="classGdk_1_1Window.html#ab8e6f4a6758057f249a41eccb3c59061" title="Indicates to the window manager that window is a transient dialog associated with the application win...">set_transient_for()</a> </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">modal</td><td><code>true</code> if the window is modal, <code>false</code> otherwise. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="abc5878a18ad2da8f7ae9af24601baff4"></a><!-- doxytag: member="Gdk::Window::set_offscreen_embedder" ref="abc5878a18ad2da8f7ae9af24601baff4" args="(const Glib::RefPtr< Window > &embedder)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::Window::set_offscreen_embedder </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_1Window.html">Window</a> >& </td>
<td class="paramname"><em>embedder</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Sets <em>window</em> to be embedded in <em>embedder</em>. </p>
<p>To fully embed an offscreen window, in addition to calling this function, it is also necessary to handle the Gdk::Window::pick-embedded-child signal on the <em>embedder</em> and the Gdk::Window::to-embedder and Gdk::Window::from-embedder signals on <em>window</em>.</p>
<dl class="since_2_18"><dt><b><a class="el" href="since_2_18.html#_since_2_18000010">Since gtkmm 2.18:</a></b></dt><dd></dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">window</td><td>A <a class="el" href="classGdk_1_1Window.html" title="A Gdk::Window is a rectangular region on the screen.">Gdk::Window</a>. </td></tr>
<tr><td class="paramname">embedder</td><td>The <a class="el" href="classGdk_1_1Window.html" title="A Gdk::Window is a rectangular region on the screen.">Gdk::Window</a> that <em>window</em> gets embedded in. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="af70da6bc12c5997b6cd77f4cd14e5129"></a><!-- doxytag: member="Gdk::Window::set_opacity" ref="af70da6bc12c5997b6cd77f4cd14e5129" args="(double opacity)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::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.)</p>
<p>On X11, this works only on X screens with a compositing manager running.</p>
<p>For setting up per-pixel alpha, see <a class="el" href="classGdk_1_1Screen.html#aa6af99bfe6ad813e1c5f8ee9a933e2e0" title="Gets a colormap to use for creating windows or pixmaps with an alpha channel.">Gdk::Screen::get_rgba_colormap()</a>. For making non-toplevel windows translucent, see <a class="el" href="classGdk_1_1Window.html#aba9d5bea3de05b31eff0da2bed753db8" title="Sets a Gdk::Window as composited, or unsets it.">set_composited()</a>.</p>
<dl class="since_2_12"><dt><b><a class="el" href="since_2_12.html#_since_2_12000011">Since gtkmm 2.12:</a></b></dt><dd></dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">opacity</td><td>Opacity. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="aad09335b20323d81cb214e549ba201e6"></a><!-- doxytag: member="Gdk::Window::set_override_redirect" ref="aad09335b20323d81cb214e549ba201e6" args="(bool override_redirect=true)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::Window::set_override_redirect </td>
<td>(</td>
<td class="paramtype">bool </td>
<td class="paramname"><em>override_redirect</em> = <code>true</code></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>An override redirect window is not under the control of the window manager. </p>
<p>This means it won't have a titlebar, won't be minimizable, etc. - it will be entirely under the control of the application. The window manager can't see the override redirect window at all.</p>
<p>Override redirect should only be used for short-lived temporary windows, such as popup menus. <a class="el" href="classGtk_1_1Menu.html" title="A drop-down menu consisting of Gtk::MenuItem objects which can be navigated and activated by the user...">Gtk::Menu</a> uses an override redirect window in its implementation, for example. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">override_redirect</td><td><code>true</code> if window should be override redirect. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="af0af1130cfb882913b80d9a82123479e"></a><!-- doxytag: member="Gdk::Window::set_role" ref="af0af1130cfb882913b80d9a82123479e" args="(const Glib::ustring &role)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::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>When using GTK+, typically you should use gtk_window_set_role() instead of this low-level function. </p>
<p>The window manager and session manager use a window's role to distinguish it from other kinds of window in the same application. When an application is restarted after being saved in a previous session, all windows with the same title and role are treated as interchangeable. So if you have two windows with the same title that should be distinguished for session management purposes, you should set the role on those windows. It doesn't matter what string you use for the role, as long as you have a different role for each non-interchangeable kind of window. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">role</td><td>A string indicating its role. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="aa4900976eda16fc8a6280eb0bd325f8c"></a><!-- doxytag: member="Gdk::Window::set_skip_pager_hint" ref="aa4900976eda16fc8a6280eb0bd325f8c" args="(bool skips_pager=true)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::Window::set_skip_pager_hint </td>
<td>(</td>
<td class="paramtype">bool </td>
<td class="paramname"><em>skips_pager</em> = <code>true</code></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Toggles whether a window should appear in a pager (workspace switcher, or other desktop utility program that displays a small thumbnail representation of the windows on the desktop). </p>
<p>If a window's semantic type as specified with <a class="el" href="classGdk_1_1Window.html#a4505331d1882e0e02d076782ddfaa2ff" title="The application can use this call to provide a hint to the window manager about the functionality of ...">set_type_hint()</a> already fully describes the window, this function should <em>not</em> be called in addition, instead you should allow the window to be treated according to standard policy for its semantic type.</p>
<dl class="since_2_2"><dt><b><a class="el" href="since_2_2.html#_since_2_2000088">Since gtkmm 2.2:</a></b></dt><dd></dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">skips_pager</td><td><code>true</code> to skip the pager. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a34b9d99e30afd4e4106d66408d007fdd"></a><!-- doxytag: member="Gdk::Window::set_skip_taskbar_hint" ref="a34b9d99e30afd4e4106d66408d007fdd" args="(bool skips_taskbar=true)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::Window::set_skip_taskbar_hint </td>
<td>(</td>
<td class="paramtype">bool </td>
<td class="paramname"><em>skips_taskbar</em> = <code>true</code></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Toggles whether a window should appear in a task list or window list. </p>
<p>If a window's semantic type as specified with <a class="el" href="classGdk_1_1Window.html#a4505331d1882e0e02d076782ddfaa2ff" title="The application can use this call to provide a hint to the window manager about the functionality of ...">set_type_hint()</a> already fully describes the window, this function should <em>not</em> be called in addition, instead you should allow the window to be treated according to standard policy for its semantic type.</p>
<dl class="since_2_2"><dt><b><a class="el" href="since_2_2.html#_since_2_2000087">Since gtkmm 2.2:</a></b></dt><dd></dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">skips_taskbar</td><td><code>true</code> to skip the taskbar. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a5c7958efa9bf3499bf411bff07edc39d"></a><!-- doxytag: member="Gdk::Window::set_sm_client_id" ref="a5c7958efa9bf3499bf411bff07edc39d" args="(const Glib::ustring &sm_client_id)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">static void Gdk::Window::set_sm_client_id </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>sm_client_id</em></td><td>)</td>
<td><code> [static]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Sets the <literal>SM_CLIENT_ID</literal> property on the application's leader window so that the window manager can save the application's state using the X11R6 ICCCM session management protocol. </p>
<p>See the X Session Management Library documentation for more information on session management and the Inter-Client Communication Conventions Manual (ICCCM) for information on the <literal>WM_CLIENT_LEADER</literal> property. (Both documents are part of the X Window System distribution.) </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">sm_client_id</td><td>The client id assigned by the session manager when the connection was opened. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a246b2c39068bf02f4e981fde58f8d776"></a><!-- doxytag: member="Gdk::Window::set_startup_id" ref="a246b2c39068bf02f4e981fde58f8d776" args="(const Glib::ustring &startup_id)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::Window::set_startup_id </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>startup_id</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>When using GTK+, typically you should use gtk_window_set_startup_id() instead of this low-level function. </p>
<dl class="since_2_12"><dt><b><a class="el" href="since_2_12.html#_since_2_12000009">Since gtkmm 2.12:</a></b></dt><dd></dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">startup_id</td><td>A string with startup-notification identifier. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a7886467cef616c0c07ba482888490059"></a><!-- doxytag: member="Gdk::Window::set_static_gravities" ref="a7886467cef616c0c07ba482888490059" args="(bool use_static=true)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gdk::Window::set_static_gravities </td>
<td>(</td>
<td class="paramtype">bool </td>
<td class="paramname"><em>use_static</em> = <code>true</code></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Set the bit gravity of the given window to static, and flag it so all children get static subwindow gravity. </p>
<p>This is used if you are implementing scary features that involve deep knowledge of the windowing system. Don't worry about it unless you have to. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">use_static</td><td><code>true</code> to turn on static gravity. </td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd><code>true</code> if the server supports static gravity. </dd></dl>
</div>
</div>
<a class="anchor" id="a89c47b105ce213eb1b075d1c8dd34ab6"></a><!-- doxytag: member="Gdk::Window::set_title" ref="a89c47b105ce213eb1b075d1c8dd34ab6" args="(const Glib::ustring &title)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::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 a toplevel window, to be displayed in the titlebar. </p>
<p>If you haven't explicitly set the icon name for the window (using <a class="el" href="classGdk_1_1Window.html#ac5e3fbd4f07bed0a5060b32a07a127b6" title="Windows may have a name used while minimized, distinct from the name they display in their titlebar...">set_icon_name()</a>), the icon name will be set to <em>title</em> as well. <em>title</em> must be in UTF-8 encoding (as with all user-readable strings in GDK/GTK+). <em>title</em> may not be <code>0</code>. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">title</td><td>Title of <em>window</em>. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="ab8e6f4a6758057f249a41eccb3c59061"></a><!-- doxytag: member="Gdk::Window::set_transient_for" ref="ab8e6f4a6758057f249a41eccb3c59061" args="(const Glib::RefPtr< Window > &parent)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::Window::set_transient_for </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_1Window.html">Window</a> >& </td>
<td class="paramname"><em>parent</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Indicates to the window manager that <em>window</em> is a transient dialog associated with the application window <em>parent</em>. </p>
<p>This allows the window manager to do things like center <em>window</em> on <em>parent</em> and keep <em>window</em> above <em>parent</em>.</p>
<p>See gtk_window_set_transient_for() if you're using <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> or <a class="el" href="classGtk_1_1Dialog.html" title="Create popup windows.">Gtk::Dialog</a>. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">parent</td><td>Another toplevel <a class="el" href="classGdk_1_1Window.html" title="A Gdk::Window is a rectangular region on the screen.">Gdk::Window</a>. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a4505331d1882e0e02d076782ddfaa2ff"></a><!-- doxytag: member="Gdk::Window::set_type_hint" ref="a4505331d1882e0e02d076782ddfaa2ff" args="(WindowTypeHint hint)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::Window::set_type_hint </td>
<td>(</td>
<td class="paramtype"><a class="el" href="group__gdkmmEnums.html#ga1f75a8db0f289997ac16bba0891776c9">WindowTypeHint</a> </td>
<td class="paramname"><em>hint</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>The application can use this call to provide a hint to the window manager about the functionality of a window. </p>
<p>The window manager can use this information when determining the decoration and behaviour of the window.</p>
<p>The hint must be set before the window is mapped. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">hint</td><td>A hint of the function this window will have. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a9f22c1db8469dbe6fa8229e80d344434"></a><!-- doxytag: member="Gdk::Window::set_urgency_hint" ref="a9f22c1db8469dbe6fa8229e80d344434" args="(bool urgent=true)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::Window::set_urgency_hint </td>
<td>(</td>
<td class="paramtype">bool </td>
<td class="paramname"><em>urgent</em> = <code>true</code></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Toggles whether a window needs the user's urgent attention. </p>
<dl class="since_2_8"><dt><b><a class="el" href="since_2_8.html#_since_2_8000009">Since gtkmm 2.8:</a></b></dt><dd></dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">urgent</td><td><code>true</code> if the window is urgent. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a6e895c78858224262b90564b68759b62"></a><!-- doxytag: member="Gdk::Window::set_user_data" ref="a6e895c78858224262b90564b68759b62" args="(gpointer user_data)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::Window::set_user_data </td>
<td>(</td>
<td class="paramtype">gpointer </td>
<td class="paramname"><em>user_data</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>For most purposes this function is deprecated in favor of Glib::object_set_data(). </p>
<p>However, for historical reasons GTK+ stores the <a class="el" href="classGtk_1_1Widget.html" title="Abstract Widget (Base class for all widgets)">Gtk::Widget</a> that owns a <a class="el" href="classGdk_1_1Window.html" title="A Gdk::Window is a rectangular region on the screen.">Gdk::Window</a> as user data on the <a class="el" href="classGdk_1_1Window.html" title="A Gdk::Window is a rectangular region on the screen.">Gdk::Window</a>. So, custom widget implementations should use this function for that. If GTK+ receives an event for a <a class="el" href="classGdk_1_1Window.html" title="A Gdk::Window is a rectangular region on the screen.">Gdk::Window</a>, and the user data for the window is non-<code>0</code>, GTK+ will assume the user data is a <a class="el" href="classGtk_1_1Widget.html" title="Abstract Widget (Base class for all widgets)">Gtk::Widget</a>, and forward the event to that widget. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">user_data</td><td>User data. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a7e7ccbbb8a86215d0478b9fc041dce34"></a><!-- doxytag: member="Gdk::Window::shape_combine_mask" ref="a7e7ccbbb8a86215d0478b9fc041dce34" args="(const Glib::RefPtr< Bitmap > &mask, int x, int y)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::Window::shape_combine_mask </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_1Bitmap.html">Bitmap</a> >& </td>
<td class="paramname"><em>mask</em>, </td>
</tr>
<tr>
<td class="paramkey"></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>Applies a shape mask to <em>window</em>. </p>
<p>Pixels in <em>window</em> corresponding to set bits in the <em>mask</em> will be visible; pixels in <em>window</em> corresponding to unset bits in the <em>mask</em> will be transparent. This gives a non-rectangular window.</p>
<p>If <em>mask</em> is <code>0</code>, the shape mask will be unset, and the <em>x/</em> <em>y</em> parameters are not used.</p>
<p>On the X11 platform, this uses an X server extension which is widely available on most common platforms, but not available on very old X servers, and occasionally the implementation will be buggy. On servers without the shape extension, this function will do nothing.</p>
<p>This function works on both toplevel and child windows. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">mask</td><td>Shape mask. </td></tr>
<tr><td class="paramname">x</td><td>X position of shape mask with respect to <em>window</em>. </td></tr>
<tr><td class="paramname">y</td><td>Y position of shape mask with respect to <em>window</em>. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a4ddecf82c0b07e4ad106caf90f17ca8f"></a><!-- doxytag: member="Gdk::Window::shape_combine_region" ref="a4ddecf82c0b07e4ad106caf90f17ca8f" args="(const Region &shape_region, int offset_x, int offset_y)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::Window::shape_combine_region </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classGdk_1_1Region.html">Region</a>& </td>
<td class="paramname"><em>shape_region</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>offset_x</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>offset_y</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Makes pixels in <em>window</em> outside <em>shape_region</em> be transparent, so that the window may be nonrectangular. </p>
<p>See also <a class="el" href="classGdk_1_1Window.html#a7e7ccbbb8a86215d0478b9fc041dce34" title="Applies a shape mask to window.">shape_combine_mask()</a> to use a bitmap as the mask.</p>
<p>If <em>shape_region</em> is <code>0</code>, the shape will be unset, so the whole window will be opaque again. <em>offset_x</em> and <em>offset_y</em> are ignored if <em>shape_region</em> is <code>0</code>.</p>
<p>On the X11 platform, this uses an X server extension which is widely available on most common platforms, but not available on very old X servers, and occasionally the implementation will be buggy. On servers without the shape extension, this function will do nothing.</p>
<p>This function works on both toplevel and child windows. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">shape_region</td><td><a class="el" href="classGdk_1_1Region.html" title="This is an opaque data type holding a set of arbitrary pixels, and is usually used for clipping graph...">Region</a> of window to be non-transparent. </td></tr>
<tr><td class="paramname">offset_x</td><td>X position of <em>shape_region</em> in <em>window</em> coordinates. </td></tr>
<tr><td class="paramname">offset_y</td><td>Y position of <em>shape_region</em> in <em>window</em> coordinates. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="ad850f17e45522107fb498de8641766f7"></a><!-- doxytag: member="Gdk::Window::show" ref="ad850f17e45522107fb498de8641766f7" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::Window::show </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Like <a class="el" href="classGdk_1_1Window.html#a2c6d829cf3fc060ab52a4bdc7d77973a" title="Shows a Gdk::Window onscreen, but does not modify its stacking order.">show_unraised()</a>, but also raises the window to the top of the window stack (moves the window to the front of the Z-order). </p>
<p>This function maps a window so it's visible onscreen. Its opposite is <a class="el" href="classGdk_1_1Window.html#a2850d6c550e5c2f73f82fe0043b091b1" title="For toplevel windows, withdraws them, so they will no longer be known to the window manager; for all ...">hide()</a>.</p>
<p>When implementing a <a class="el" href="classGtk_1_1Widget.html" title="Abstract Widget (Base class for all widgets)">Gtk::Widget</a>, you should call this function on 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> as part of the "map" method. </p>
</div>
</div>
<a class="anchor" id="a2c6d829cf3fc060ab52a4bdc7d77973a"></a><!-- doxytag: member="Gdk::Window::show_unraised" ref="a2c6d829cf3fc060ab52a4bdc7d77973a" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::Window::show_unraised </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Shows a <a class="el" href="classGdk_1_1Window.html" title="A Gdk::Window is a rectangular region on the screen.">Gdk::Window</a> onscreen, but does not modify its stacking order. </p>
<p>In contrast, <a class="el" href="classGdk_1_1Window.html#ad850f17e45522107fb498de8641766f7" title="Like show_unraised(), but also raises the window to the top of the window stack (moves the window to ...">show()</a> will raise the window to the top of the window stack.</p>
<p>On the X11 platform, in Xlib terms, this function calls XMapWindow() (it also updates some internal GDK state, which means that you can't really use XMapWindow() directly on a GDK window). </p>
</div>
</div>
<a class="anchor" id="a72cddee1b5ed8a663b6f245e59132473"></a><!-- doxytag: member="Gdk::Window::stick" ref="a72cddee1b5ed8a663b6f245e59132473" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::Window::stick </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>"Pins" a window such that it's on all workspaces and does not scroll with viewports, for window managers that have scrollable viewports. </p>
<p>(When using <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_window_stick() may be more useful.)</p>
<p>On the X11 platform, this function depends on window manager support, so may have no effect with many window managers. However, GDK will do the best it can to convince the window manager to stick the window. For window managers that don't support this operation, there's nothing you can do to force it to happen. </p>
</div>
</div>
<a class="anchor" id="a128616c32cb210b0181a74d6f6bfa4a5"></a><!-- doxytag: member="Gdk::Window::thaw_updates" ref="a128616c32cb210b0181a74d6f6bfa4a5" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::Window::thaw_updates </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Thaws a window frozen with <a class="el" href="classGdk_1_1Window.html#a15ebab2c454f75f0a5342542626cbdde" title="Temporarily freezes a window such that it won't receive expose events.">Gdk::Window::freeze_updates()</a>. </p>
</div>
</div>
<a class="anchor" id="a46d71da2107832855f8d047b3effbb67"></a><!-- doxytag: member="Gdk::Window::unfullscreen" ref="a46d71da2107832855f8d047b3effbb67" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::Window::unfullscreen </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Moves the window out of fullscreen mode. </p>
<p>If the window was not fullscreen, does nothing.</p>
<p>On X11, asks the window manager to move <em>window</em> out of the fullscreen state, if the window manager supports this operation. Not all window managers support this, and some deliberately ignore it or don't have a concept of "fullscreen"; so you can't rely on the unfullscreenification actually happening. But it will happen with most standard window managers, and GDK makes a best effort to get it to happen.</p>
<dl class="since_2_2"><dt><b><a class="el" href="since_2_2.html#_since_2_2000090">Since gtkmm 2.2:</a></b></dt><dd></dd></dl>
</div>
</div>
<a class="anchor" id="ad9325d93af96ee6774ffa4fa354d1d25"></a><!-- doxytag: member="Gdk::Window::unmaximize" ref="ad9325d93af96ee6774ffa4fa354d1d25" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::Window::unmaximize </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Unmaximizes the window. </p>
<p>If the window wasn't maximized, then this function does nothing.</p>
<p>On X11, asks the window manager to unmaximize <em>window</em>, if the window manager supports this operation. Not all window managers support this, and some deliberately ignore it or don't have a concept of "maximized"; so you can't rely on the unmaximization actually happening. But it will happen with most standard window managers, and GDK makes a best effort to get it to happen.</p>
<p>On Windows, reliably unmaximizes the window. </p>
</div>
</div>
<a class="anchor" id="a729b9a7dfc3d4da8bfb0761d78b626d4"></a><!-- doxytag: member="Gdk::Window::unset_back_pixmap" ref="a729b9a7dfc3d4da8bfb0761d78b626d4" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::Window::unset_back_pixmap </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Unsets the background pixmap of <em>window</em> so that the window will have no background. </p>
<p>A window with no background will never have its background filled by the windowing system, instead the window will contain whatever pixels were already in the corresponding area of the display.</p>
<dl class="see"><dt><b>See also:</b></dt><dd><a class="el" href="classGdk_1_1Window.html#a27f458f963e431f559b0b64c3134e40c" title="Sets the background pixmap of window.">set_back_pixmap()</a>. </dd></dl>
<dl class="since_2_14"><dt><b><a class="el" href="since_2_14.html#_since_2_14000011">Since gtkmm 2.14:</a></b></dt><dd></dd></dl>
</div>
</div>
<a class="anchor" id="a700b396befa605d159f2cd697a1f6014"></a><!-- doxytag: member="Gdk::Window::unset_icon" ref="a700b396befa605d159f2cd697a1f6014" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::Window::unset_icon </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="a8f3bfc50b1db35f74e9af21fc81591a0"></a><!-- doxytag: member="Gdk::Window::unset_shape_combine_mask" ref="a8f3bfc50b1db35f74e9af21fc81591a0" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::Window::unset_shape_combine_mask </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="ab8b3893818a244b31fed8460586cd2d6"></a><!-- doxytag: member="Gdk::Window::unset_sm_client_id" ref="ab8b3893818a244b31fed8460586cd2d6" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">static void Gdk::Window::unset_sm_client_id </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td><code> [static]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="a22e499aeadc19f7373972355ae2872cb"></a><!-- doxytag: member="Gdk::Window::unstick" ref="a22e499aeadc19f7373972355ae2872cb" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::Window::unstick </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Reverse operation for <a class="el" href="classGdk_1_1Window.html#a72cddee1b5ed8a663b6f245e59132473" title=""Pins" a window such that it's on all workspaces and does not scroll with viewports...">stick()</a>; see <a class="el" href="classGdk_1_1Window.html#a72cddee1b5ed8a663b6f245e59132473" title=""Pins" a window such that it's on all workspaces and does not scroll with viewports...">stick()</a>, and gtk_window_unstick(). </p>
</div>
</div>
<a class="anchor" id="aa7a5705224d062fe6351a426781597fa"></a><!-- doxytag: member="Gdk::Window::withdraw" ref="aa7a5705224d062fe6351a426781597fa" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::Window::withdraw </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Withdraws a window (unmaps it and asks the window manager to forget about it). </p>
<p>This function is not really useful as <a class="el" href="classGdk_1_1Window.html#a2850d6c550e5c2f73f82fe0043b091b1" title="For toplevel windows, withdraws them, so they will no longer be known to the window manager; for all ...">hide()</a> automatically withdraws toplevel windows before hiding them. </p>
</div>
</div>
<hr/><h2>Friends And Related Function Documentation</h2>
<a class="anchor" id="ac7eeaceb12343803db90524716bf7bd0"></a><!-- doxytag: member="Gdk::Window::wrap" ref="ac7eeaceb12343803db90524716bf7bd0" args="(GdkWindowObject *object, bool take_copy=false)" -->
<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> > wrap </td>
<td>(</td>
<td class="paramtype">GdkWindowObject * </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><code> [related]</code></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><dt><b>Parameters:</b></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="return"><dt><b>Returns:</b></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>gdkmm/window.h</li>
</ul>
</div>
<hr class="footer"/><address class="footer"><small>Generated on Fri Jul 8 2011 13:31:44 for gtkmm by 
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.3 </small></address>
</body>
</html>
|