File: classGtk_1_1Window.html

package info (click to toggle)
gtkmm2.4 1%3A2.20.3-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 73,860 kB
  • ctags: 20,553
  • sloc: xml: 79,575; sh: 10,120; cpp: 8,347; makefile: 290
file content (4543 lines) | stat: -rw-r--r-- 334,572 bytes parent folder | download
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
<!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: Gtk::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.6.1 -->
<div class="navigation" id="top">
  <div class="tabs">
    <ul>
      <li><a href="index.html"><span>Main&#160;Page</span></a></li>
      <li><a href="pages.html"><span>Related&#160;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 class="tabs">
    <ul>
      <li><a href="annotated.html"><span>Class&#160;List</span></a></li>
      <li><a href="classes.html"><span>Class&#160;Index</span></a></li>
      <li><a href="hierarchy.html"><span>Class&#160;Hierarchy</span></a></li>
      <li><a href="functions.html"><span>Class&#160;Members</span></a></li>
    </ul>
  </div>
  <div class="navpath"><a class="el" href="namespaceGtk.html">Gtk</a>::<a class="el" href="classGtk_1_1Window.html">Window</a>
  </div>
</div>
<div class="contents">
<h1>Gtk::Window Class Reference<br/>
<small>
[<a class="el" href="group__Widgets.html">Widgets</a>]</small>
</h1><!-- doxytag: class="Gtk::Window" --><!-- doxytag: inherits="Gtk::Bin" -->
<p>Toplevel <a class="el" href="classGtk_1_1Window.html" title="Toplevel Window This represents all widgets which are physical windows controlled...">Window</a> This represents all widgets which are physical windows controlled by the window manager. <a href="#_details">More...</a></p>

<p>Inherits <a class="el" href="classGtk_1_1Bin.html">Gtk::Bin</a>.</p>

<p>Inherited by <a class="el" href="classGtk_1_1Assistant.html">Gtk::Assistant</a>, <a class="el" href="classGtk_1_1Dialog.html">Gtk::Dialog</a>, <a class="el" href="classGtk_1_1OffscreenWindow.html">Gtk::OffscreenWindow</a>, and <a class="el" href="classGtk_1_1Plug.html">Gtk::Plug</a>.</p>
<div class="dynheader">
Collaboration diagram for Gtk::Window:</div>
<div class="dynsection">
<div class="center"><img src="classGtk_1_1Window__coll__graph.png" border="0" usemap="#Gtk_1_1Window_coll__map" alt="Collaboration graph"/></div>
<map name="Gtk_1_1Window_coll__map" id="Gtk_1_1Window_coll__map">
<area shape="rect" href="classGtk_1_1Bin.html" title="A container with just one child." alt="" coords="63,501,132,531"/><area shape="rect" href="classGtk_1_1Container.html" title="Abstract container class." alt="" coords="37,405,141,435"/><area shape="rect" href="classGtk_1_1Widget.html" title="Abstract Widget (Base class for all widgets)." alt="" coords="44,325,135,355"/><area shape="rect" href="classGtk_1_1Object.html" title="Gtk::Object is the base class for all widgets, and for a few non&#45;widget objects such..." alt="" coords="5,245,93,275"/><area shape="rect" 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="8,165,99,195"/><area shape="rect" 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="64,85,184,115"/><area shape="rect" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Interface.html" title="Glib::Interface" alt="" coords="123,165,227,195"/><area shape="rect" 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="71,5,177,35"/><area shape="rect" href="classAtk_1_1Implementor.html" title="Atk::Implementor" alt="" coords="117,245,237,275"/><area shape="rect" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html" title="Glib::RefPtr\&lt; AccelGroup \&gt;" alt="" coords="167,501,348,531"/><area shape="rect" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html" title="Glib::RefPtr\&lt; T_CppObject \&gt;" alt="" coords="165,405,355,435"/></map>
<center><span class="legend">[<a href="graph_legend.html">legend</a>]</span></center></div>

<p><a href="classGtk_1_1Window-members.html">List of all members.</a></p>
<table border="0" cellpadding="0" cellspacing="0">
<tr><td colspan="2"><h2>Public Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">virtual&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a00a05cbd643be38f2f231e1712c8c6d2">~Window</a> ()</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">GtkWindow*&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a467102527550b51eb4036390caeedb5c">gobj</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Provides access to the underlying C GtkObject. <a href="#a467102527550b51eb4036390caeedb5c"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">const GtkWindow*&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#afe314a1e65505be026688060dc98ad3a">gobj</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Provides access to the underlying C GtkObject. <a href="#afe314a1e65505be026688060dc98ad3a"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#aa3273081166e86df1850738a17ecdb09">Window</a> (<a class="el" href="group__gtkmmEnums.html#ga8c724168aabf37953fbb194b35ad250f">WindowType</a> type=WINDOW_TOPLEVEL)</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_1PropertyProxy.html">Glib::PropertyProxy</a><br class="typebreak"/>
&lt; <a 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> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a5649221f85fdd2bcc2ac277ad29511aa">property_title</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">The title of the window. <a href="#a5649221f85fdd2bcc2ac277ad29511aa"></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_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a><br class="typebreak"/>
&lt; <a 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> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a6f09adcf1f6337c3968329d608f56e37">property_title</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">The title of the window. <a href="#a6f09adcf1f6337c3968329d608f56e37"></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_1PropertyProxy.html">Glib::PropertyProxy</a>&lt; bool &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#aaf704b1fb7e89b39e56bfc9b9aebb801">property_allow_shrink</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">If TRUE. <a href="#aaf704b1fb7e89b39e56bfc9b9aebb801"></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_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a><br class="typebreak"/>
&lt; bool &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a4fc0a2fc058a0c6379fd4757d770ae3b">property_allow_shrink</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">If TRUE. <a href="#a4fc0a2fc058a0c6379fd4757d770ae3b"></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_1PropertyProxy.html">Glib::PropertyProxy</a>&lt; bool &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a6527a9af67bbf3e3fe5db5d1fe89bdee">property_allow_grow</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">If TRUE. <a href="#a6527a9af67bbf3e3fe5db5d1fe89bdee"></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_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a><br class="typebreak"/>
&lt; bool &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a86198253f94f33ee6f1884e95394359e">property_allow_grow</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">If TRUE. <a href="#a86198253f94f33ee6f1884e95394359e"></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_1PropertyProxy.html">Glib::PropertyProxy</a>&lt; bool &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a2bf5fda11c269a2a664619aaccf0175a">property_resizable</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">If TRUE. <a href="#a2bf5fda11c269a2a664619aaccf0175a"></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_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a><br class="typebreak"/>
&lt; bool &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a1a7e5f5cdaf1d925bef4aa0e3d2c0ee6">property_resizable</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">If TRUE. <a href="#a1a7e5f5cdaf1d925bef4aa0e3d2c0ee6"></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_1PropertyProxy.html">Glib::PropertyProxy</a>&lt; bool &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#af2933fa629131dc3ddac7c42eceffefb">property_modal</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">If TRUE. <a href="#af2933fa629131dc3ddac7c42eceffefb"></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_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a><br class="typebreak"/>
&lt; bool &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#aa50db5c7dc639e6b5aa92acc2bf12bc4">property_modal</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">If TRUE. <a href="#aa50db5c7dc639e6b5aa92acc2bf12bc4"></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_1PropertyProxy.html">Glib::PropertyProxy</a><br class="typebreak"/>
&lt; <a class="el" href="group__gtkmmEnums.html#gabfa67443f852c48477b2d55b15982e21">WindowPosition</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#af467e6fb75fe5d6f391290f61fc76eb3">property_window_position</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">The initial position of the window. <a href="#af467e6fb75fe5d6f391290f61fc76eb3"></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_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a><br class="typebreak"/>
&lt; <a class="el" href="group__gtkmmEnums.html#gabfa67443f852c48477b2d55b15982e21">WindowPosition</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a201dea889e1e3f0f17ea79ef1d99e4a1">property_window_position</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">The initial position of the window. <a href="#a201dea889e1e3f0f17ea79ef1d99e4a1"></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_1PropertyProxy.html">Glib::PropertyProxy</a>&lt; int &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a9fe5bc666f4b6ba448574f01172e7e37">property_default_width</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">The default width of the window. <a href="#a9fe5bc666f4b6ba448574f01172e7e37"></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_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>&lt; int &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a2ef747502cb50c3922c20623a522c3d1">property_default_width</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">The default width of the window. <a href="#a2ef747502cb50c3922c20623a522c3d1"></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_1PropertyProxy.html">Glib::PropertyProxy</a>&lt; int &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a0f5692aec484e844d7001745340a7551">property_default_height</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">The default height of the window. <a href="#a0f5692aec484e844d7001745340a7551"></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_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>&lt; int &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#ac2f8c6e096e8b03ab5afa0e64d8a41ed">property_default_height</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">The default height of the window. <a href="#ac2f8c6e096e8b03ab5afa0e64d8a41ed"></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_1PropertyProxy.html">Glib::PropertyProxy</a>&lt; bool &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a13fb6ded59f3835aa904e2fcb6ce7122">property_destroy_with_parent</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">If this window should be destroyed when the parent is destroyed. <a href="#a13fb6ded59f3835aa904e2fcb6ce7122"></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_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a><br class="typebreak"/>
&lt; bool &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a4dfa216fe285f06666e3f58d95065cdb">property_destroy_with_parent</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">If this window should be destroyed when the parent is destroyed. <a href="#a4dfa216fe285f06666e3f58d95065cdb"></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_1PropertyProxy.html">Glib::PropertyProxy</a><br class="typebreak"/>
&lt; <a 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>&lt; <a class="el" href="classGdk_1_1Pixbuf.html">Gdk::Pixbuf</a> &gt; &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a6f815ca5a742d06b5f636d2db481774c">property_icon</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Icon for this window. <a href="#a6f815ca5a742d06b5f636d2db481774c"></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_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a><br class="typebreak"/>
&lt; <a 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>&lt; <a class="el" href="classGdk_1_1Pixbuf.html">Gdk::Pixbuf</a> &gt; &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a27b6b9ec07d45a7901f59ecb41df3549">property_icon</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Icon for this window. <a href="#a27b6b9ec07d45a7901f59ecb41df3549"></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_1PropertyProxy.html">Glib::PropertyProxy</a>&lt; bool &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#ad1779b1317f1db33b407126de4b2658b">property_mnemonics_visible</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Whether mnemonics are currently visible in this window. <a href="#ad1779b1317f1db33b407126de4b2658b"></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_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a><br class="typebreak"/>
&lt; bool &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a2ef4965176b11ee64705293630fb66e0">property_mnemonics_visible</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Whether mnemonics are currently visible in this window. <a href="#a2ef4965176b11ee64705293630fb66e0"></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_1PropertyProxy.html">Glib::PropertyProxy</a><br class="typebreak"/>
&lt; <a 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> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a39f62c20ec849d0ac54640c1e6f12dcd">property_icon_name</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Name of the themed icon for this window. <a href="#a39f62c20ec849d0ac54640c1e6f12dcd"></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_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a><br class="typebreak"/>
&lt; <a 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> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a4b65bba4e01f68806043cbd57fc039f5">property_icon_name</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Name of the themed icon for this window. <a href="#a4b65bba4e01f68806043cbd57fc039f5"></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_1PropertyProxy.html">Glib::PropertyProxy</a><br class="typebreak"/>
&lt; <a 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>&lt; <a class="el" href="classGdk_1_1Screen.html">Gdk::Screen</a> &gt; &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a02775b4be90428c53359834fbc1d6d6f">property_screen</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">The screen where this window will be displayed. <a href="#a02775b4be90428c53359834fbc1d6d6f"></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_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a><br class="typebreak"/>
&lt; <a 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>&lt; <a class="el" href="classGdk_1_1Screen.html">Gdk::Screen</a> &gt; &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a46d4ec8b50289a45c488e856177c9126">property_screen</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">The screen where this window will be displayed. <a href="#a46d4ec8b50289a45c488e856177c9126"></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_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a><br class="typebreak"/>
&lt; bool &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a3bb84c0c269cc03ec3e54afaf163471d">property_is_active</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Whether the toplevel is the current active window. <a href="#a3bb84c0c269cc03ec3e54afaf163471d"></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_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a><br class="typebreak"/>
&lt; bool &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a9a75b1ea13fde63bef46088572dd604c">property_has_toplevel_focus</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Whether the input focus is within this GtkWindow. <a href="#a9a75b1ea13fde63bef46088572dd604c"></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_1PropertyProxy.html">Glib::PropertyProxy</a><br class="typebreak"/>
&lt; GdkWindowTypeHint &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#aa0053ed2d5731e121b5f5d79af261f18">property_type_hint</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Hint to help the desktop environment understand what kind of window this is and how to treat it. <a href="#aa0053ed2d5731e121b5f5d79af261f18"></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_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a><br class="typebreak"/>
&lt; GdkWindowTypeHint &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a3759232580287bbc25aff6d74977f24c">property_type_hint</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Hint to help the desktop environment understand what kind of window this is and how to treat it. <a href="#a3759232580287bbc25aff6d74977f24c"></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_1PropertyProxy.html">Glib::PropertyProxy</a>&lt; bool &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a805906f84dbc3d36d552e4c57474561e">property_skip_taskbar_hint</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">TRUE if the window should not be in the task bar. <a href="#a805906f84dbc3d36d552e4c57474561e"></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_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a><br class="typebreak"/>
&lt; bool &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#aa15717f6b7597d36afe7de49302e6713">property_skip_taskbar_hint</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">TRUE if the window should not be in the task bar. <a href="#aa15717f6b7597d36afe7de49302e6713"></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_1PropertyProxy.html">Glib::PropertyProxy</a>&lt; bool &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#af09047dad3a7dc903f1a01627643cee4">property_skip_pager_hint</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">TRUE if the window should not be in the pager. <a href="#af09047dad3a7dc903f1a01627643cee4"></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_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a><br class="typebreak"/>
&lt; bool &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a81bd5ecca9fa996c0e0bf2813f0903b5">property_skip_pager_hint</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">TRUE if the window should not be in the pager. <a href="#a81bd5ecca9fa996c0e0bf2813f0903b5"></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_1PropertyProxy.html">Glib::PropertyProxy</a><br class="typebreak"/>
&lt; <a 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> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a9b3f69310fba15f6b8869b7b3afb0e02">property_role</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Unique identifier for the window to be used when restoring a session. <a href="#a9b3f69310fba15f6b8869b7b3afb0e02"></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_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a><br class="typebreak"/>
&lt; <a 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> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a0ee6a75ce168da74f2f68635fc68753b">property_role</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Unique identifier for the window to be used when restoring a session. <a href="#a0ee6a75ce168da74f2f68635fc68753b"></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_1PropertyProxy.html">Glib::PropertyProxy</a>&lt; bool &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a775c457e2e68c2557c3dc950e8cb3655">property_decorated</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Whether the window should be decorated by the window manager. <a href="#a775c457e2e68c2557c3dc950e8cb3655"></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_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a><br class="typebreak"/>
&lt; bool &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a4545ba700399b0b507456db8f8f55bf8">property_decorated</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Whether the window should be decorated by the window manager. <a href="#a4545ba700399b0b507456db8f8f55bf8"></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_1PropertyProxy.html">Glib::PropertyProxy</a>&lt; <a class="el" href="group__gdkmmEnums.html#ga1bb9235871d434d3c55411d8261b075e">Gdk::Gravity</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a0b401df88f3c1d4a7ebb7f2861601647">property_gravity</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">The window gravity of the window. <a href="#a0b401df88f3c1d4a7ebb7f2861601647"></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_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a><br class="typebreak"/>
&lt; <a class="el" href="group__gdkmmEnums.html#ga1bb9235871d434d3c55411d8261b075e">Gdk::Gravity</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a54ec5112a4d5ed6bbadccac58e7677de">property_gravity</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">The window gravity of the window. <a href="#a54ec5112a4d5ed6bbadccac58e7677de"></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_1PropertyProxy.html">Glib::PropertyProxy</a>&lt; <a class="el" href="classGtk_1_1Window.html">Window</a>* &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a107c2a8b6739632efac46667e6526b37">property_transient_for</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">The transient parent of the dialog. <a href="#a107c2a8b6739632efac46667e6526b37"></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_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a><br class="typebreak"/>
&lt; <a class="el" href="classGtk_1_1Window.html">Window</a>* &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#ac6e2b8c0e31a96fa39747944178f4e3e">property_transient_for</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">The transient parent of the dialog. <a href="#ac6e2b8c0e31a96fa39747944178f4e3e"></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_1PropertyProxy.html">Glib::PropertyProxy</a>&lt; bool &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#abf0a0bdb77af9aec3eaff860ba12d49a">property_urgency_hint</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">TRUE if the window should be brought to the user's attention. <a href="#abf0a0bdb77af9aec3eaff860ba12d49a"></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_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a><br class="typebreak"/>
&lt; bool &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a4c467ce84354b2cf8727aa95800c1ba3">property_urgency_hint</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">TRUE if the window should be brought to the user's attention. <a href="#a4c467ce84354b2cf8727aa95800c1ba3"></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_1PropertyProxy.html">Glib::PropertyProxy</a>&lt; bool &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#acf4389d3dff0504589729efd90629348">property_accept_focus</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">TRUE if the window should receive the input focus. <a href="#acf4389d3dff0504589729efd90629348"></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_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a><br class="typebreak"/>
&lt; bool &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a74012e73681ac9130467a935a95035b6">property_accept_focus</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">TRUE if the window should receive the input focus. <a href="#a74012e73681ac9130467a935a95035b6"></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_1PropertyProxy.html">Glib::PropertyProxy</a>&lt; bool &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a62e130a804f79f076afe684d65d2dbaf">property_focus_on_map</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">TRUE if the window should receive the input focus when mapped. <a href="#a62e130a804f79f076afe684d65d2dbaf"></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_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a><br class="typebreak"/>
&lt; bool &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a9cac16e0756f5b36bafa28122a750582">property_focus_on_map</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">TRUE if the window should receive the input focus when mapped. <a href="#a9cac16e0756f5b36bafa28122a750582"></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_1PropertyProxy.html">Glib::PropertyProxy</a>&lt; bool &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#af2695ad694e3abf3c45cdaf128ae4ea6">property_deletable</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Whether the window frame should have a close button. <a href="#af2695ad694e3abf3c45cdaf128ae4ea6"></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_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a><br class="typebreak"/>
&lt; bool &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#af5ab3a584496d11c69c39902d7fa56f1">property_deletable</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Whether the window frame should have a close button. <a href="#af5ab3a584496d11c69c39902d7fa56f1"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a932b1c81b9c0559a60ba2b8c2b1ce179">is_toplevel</a> () const </td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a24dc3ad6da6c8342ba5ca0fd87d2340e">is_popup</a> () const </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>&lt; <a class="el" href="classGdk_1_1Window.html">Gdk::Window</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a5f8db9bfe5bd90300152272692a6b0d6">get_frame</a> ()</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>&lt; const <a class="el" href="classGdk_1_1Window.html">Gdk::Window</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a5d2bf8f0f11ab1aff43cfba8e083d4bf">get_frame</a> () const </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_1SignalProxy1.html">Glib::SignalProxy1</a>&lt; void, <br class="typebreak"/>
<a class="el" href="classGtk_1_1Widget.html">Widget</a>* &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#ab88c04ab503236174c6a30f883407046">signal_set_focus</a> ()</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_1SignalProxy1.html">Glib::SignalProxy1</a>&lt; bool, <br class="typebreak"/>
GdkEvent* &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a505a69e917d75220202a28fe5713066f">signal_frame_event</a> ()</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a10c072ee6b41d5eea0002d986aa03c07">set_title</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>&amp; title)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the title of the <a class="el" href="classGtk_1_1Window.html" title="Toplevel Window This represents all widgets which are physical windows controlled...">Gtk::Window</a>. <a href="#a10c072ee6b41d5eea0002d986aa03c07"></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_1ustring.html">Glib::ustring</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#aaf6a808dccae2fc202e2a3cb2d57210d">get_title</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Retrieves the title of the window. <a href="#aaf6a808dccae2fc202e2a3cb2d57210d"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#ac6a7119c34bcfc31fdc27a8061a6f8f1">set_wmclass</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>&amp; wmclass_name, const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>&amp; wmclass_class)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Don't use this function. <a href="#ac6a7119c34bcfc31fdc27a8061a6f8f1"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a0bc20c48120eb7ea4fc5e6170da050db">set_role</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>&amp; role)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">This function is only useful on X11, not with other GTK+ targets. <a href="#a0bc20c48120eb7ea4fc5e6170da050db"></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_1ustring.html">Glib::ustring</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a68ab33adf52b35794667839954a6460e">get_role</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the role of the window. <a href="#a68ab33adf52b35794667839954a6460e"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#ad15a4530150d8464ee06bb2218e582e9">add_accel_group</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="el" href="classGtk_1_1AccelGroup.html">AccelGroup</a> &gt;&amp; accel_group)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Associate <em>accel_group</em> with <em>window</em>, such that calling gtk_accel_groups_activate() on <em>window</em> will activate accelerators in <em>accel_group</em>. <a href="#ad15a4530150d8464ee06bb2218e582e9"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#afe7b9acac2c46e63948aa0bdf719dce2">remove_accel_group</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="el" href="classGtk_1_1AccelGroup.html">AccelGroup</a> &gt;&amp; accel_group)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Reverses the effects of <a class="el" href="classGtk_1_1Window.html#ad15a4530150d8464ee06bb2218e582e9" title="Associate accel_group with window, such that calling gtk_accel_groups_activate()...">add_accel_group()</a>. <a href="#afe7b9acac2c46e63948aa0bdf719dce2"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#ace2f64d36b5c1574073fc7c6e03df7a3">set_position</a> (<a class="el" href="group__gtkmmEnums.html#gabfa67443f852c48477b2d55b15982e21">WindowPosition</a> position)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets a position constraint for this window. <a href="#ace2f64d36b5c1574073fc7c6e03df7a3"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#aae55e31e4dc2925ae813c31aeddfcbe4">activate_focus</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Activates the current focused widget within the window. <a href="#aae55e31e4dc2925ae813c31aeddfcbe4"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a8589880384bc7cd7b39c5bcfa6d2932a">set_focus</a> (<a class="el" href="classGtk_1_1Widget.html">Gtk::Widget</a>&amp; focus)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">If <em>focus</em> is not the current focus widget, and is focusable, sets it as the focus widget for the window. <a href="#a8589880384bc7cd7b39c5bcfa6d2932a"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a8dbaf6fd2f692b1dda1e9eb2d7fb9edf">unset_focus</a> ()</td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGtk_1_1Widget.html">Widget</a>*&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a1997d080c805ba2e2e6821781992c54b">get_focus</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Retrieves the current focused widget within the window. <a href="#a1997d080c805ba2e2e6821781992c54b"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classGtk_1_1Widget.html">Widget</a>*&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a7e697a9060ae5994631f5e00762304cf">get_focus</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Retrieves the current focused widget within the window. <a href="#a7e697a9060ae5994631f5e00762304cf"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a8a5fcf84b5222de8d4dea390b79969de">set_default</a> (<a class="el" href="classGtk_1_1Widget.html">Gtk::Widget</a>&amp; default_widget)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">The default widget is the widget that's activated when the user presses Enter in a dialog (for example). <a href="#a8a5fcf84b5222de8d4dea390b79969de"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#ad17e8ca434b1284ee2778daaddc3f5b3">unset_default</a> ()</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a1ddd9d6b107a250a921140159bd90cb3">activate_default</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Activates the default widget for the window, unless the current focused widget has been configured to receive the default action (see <a class="el" href="classGtk_1_1Widget.html#a781389940fbd7baa528eee5ed6108ac5" title="Specifies whether widget will be treated as the default widget within its toplevel...">Gtk::Widget::set_receives_default()</a>), in which case the focused widget is activated. <a href="#a1ddd9d6b107a250a921140159bd90cb3"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a4dc2db7c44546300a7843314cfa21bc8">set_transient_for</a> (<a class="el" href="classGtk_1_1Window.html">Window</a>&amp; parent)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight"><a class="el" href="classGtk_1_1Dialog.html" title="Create popup windows.">Dialog</a> windows should be set transient for the main application window they were spawned from. <a href="#a4dc2db7c44546300a7843314cfa21bc8"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a8765c60eaa06575d86d877cd5ba75d6d">unset_transient_for</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Unsets the current transient window. <a href="#a8765c60eaa06575d86d877cd5ba75d6d"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGtk_1_1Window.html">Window</a>*&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a3188cb795d9ad419d69cf24f55d1381b">get_transient_for</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Fetches the transient parent for this window. <a href="#a3188cb795d9ad419d69cf24f55d1381b"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classGtk_1_1Window.html">Window</a>*&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a0ccef655a1467db95eeb3c5257135f5b">get_transient_for</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Fetches the transient parent for this window. <a href="#a0ccef655a1467db95eeb3c5257135f5b"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a54af1fe27d57afc59744862a9ef922f1">set_opacity</a> (double opacity)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Request the windowing system to make <em>window</em> partially transparent, with opacity 0 being fully transparent and 1 fully opaque. <a href="#a54af1fe27d57afc59744862a9ef922f1"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">double&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a228fc868afdf6c88b0dfbe03be29723e">get_opacity</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Fetches the requested opacity for this window. <a href="#a228fc868afdf6c88b0dfbe03be29723e"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a61321cd59c3630d1b9f0c07781a6029b">set_type_hint</a> (<a class="el" href="group__gdkmmEnums.html#ga1f75a8db0f289997ac16bba0891776c9">Gdk::WindowTypeHint</a> hint)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">By setting the type hint for the window, you allow the window manager to decorate and handle the window in a way which is suitable to the function of the window in your application. <a href="#a61321cd59c3630d1b9f0c07781a6029b"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="group__gdkmmEnums.html#ga1f75a8db0f289997ac16bba0891776c9">Gdk::WindowTypeHint</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a177088eca35e1f270543941c6855b680">get_type_hint</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Gets the type hint for this window. <a href="#a177088eca35e1f270543941c6855b680"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a0b88348a3d7c69b8930a0e2e11a63a88">set_skip_taskbar_hint</a> (bool setting=true)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Windows may set a hint asking the desktop environment not to display the window in the task bar. <a href="#a0b88348a3d7c69b8930a0e2e11a63a88"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#ad291d4cf458b10577015f8a0efae2811">get_skip_taskbar_hint</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Gets the value set by <a class="el" href="classGtk_1_1Window.html#a0b88348a3d7c69b8930a0e2e11a63a88" title="Windows may set a hint asking the desktop environment not to display the window in...">set_skip_taskbar_hint()</a>. <a href="#ad291d4cf458b10577015f8a0efae2811"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a4cdea59994940ba8edc41f17e31f31a9">set_skip_pager_hint</a> (bool setting=true)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Windows may set a hint asking the desktop environment not to display the window in the pager. <a href="#a4cdea59994940ba8edc41f17e31f31a9"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#ae6cfb5d9e6cbefd5de869c4b777e314e">get_skip_pager_hint</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Gets the value set by <a class="el" href="classGtk_1_1Window.html#a4cdea59994940ba8edc41f17e31f31a9" title="Windows may set a hint asking the desktop environment not to display the window in...">set_skip_pager_hint()</a>. <a href="#ae6cfb5d9e6cbefd5de869c4b777e314e"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#afd7971d45db2936c2102faaa57e55279">set_urgency_hint</a> (bool setting=true)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Windows may set a hint asking the desktop environment to draw the users attention to the window. <a href="#afd7971d45db2936c2102faaa57e55279"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#aa90d7ada4335bf2f35461696ef2297d8">get_urgency_hint</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Gets the value set by <a class="el" href="classGtk_1_1Window.html#afd7971d45db2936c2102faaa57e55279" title="Windows may set a hint asking the desktop environment to draw the users attention...">set_urgency_hint()</a>. <a href="#aa90d7ada4335bf2f35461696ef2297d8"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a9fc2a01d8aa1ab126060d9f363b5d8c5">set_accept_focus</a> (bool setting=true)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Windows may set a hint asking the desktop environment not to receive the input focus. <a href="#a9fc2a01d8aa1ab126060d9f363b5d8c5"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a43e546a1678f86f0b4165eb9a9076775">get_accept_focus</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Gets the value set by <a class="el" href="classGtk_1_1Window.html#a9fc2a01d8aa1ab126060d9f363b5d8c5" title="Windows may set a hint asking the desktop environment not to receive the input focus...">set_accept_focus()</a>. <a href="#a43e546a1678f86f0b4165eb9a9076775"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a3a2c87ab12bb354d4ac0262748fb6aea">set_focus_on_map</a> (bool setting=true)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Windows may set a hint asking the desktop environment not to receive the input focus when the window is mapped. <a href="#a3a2c87ab12bb354d4ac0262748fb6aea"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a2dc043bb88d969715793415e84cd6a04">get_focus_on_map</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Gets the value set by <a class="el" href="classGtk_1_1Window.html#a3a2c87ab12bb354d4ac0262748fb6aea" title="Windows may set a hint asking the desktop environment not to receive the input focus...">set_focus_on_map()</a>. <a href="#a2dc043bb88d969715793415e84cd6a04"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a0cde210bd450e6dfcf59f9104e66860c">get_destroy_with_parent</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns whether the window will be destroyed with its transient parent. <a href="#a0cde210bd450e6dfcf59f9104e66860c"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a44cd7531e6d69b94e742e6a5da953d4e">set_mnemonics_visible</a> (bool setting=true)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the <a class="el" href="classGtk_1_1Window.html" title="Toplevel Window This represents all widgets which are physical windows controlled...">Gtk::Window</a>:mnemonics-visible property. <a href="#a44cd7531e6d69b94e742e6a5da953d4e"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#ad4116f9a6c86303e793869e91977ea19">get_mnemonics_visible</a> () const </td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a1ec816449fe941e5fe330bfa509eeb7f">set_resizable</a> (bool resizable=true)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets whether the user can resize a window. <a href="#a1ec816449fe941e5fe330bfa509eeb7f"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a08da78e575d5da70a28b33e5bdfef8f3">get_resizable</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Gets the value set by <a class="el" href="classGtk_1_1Window.html#a1ec816449fe941e5fe330bfa509eeb7f" title="Sets whether the user can resize a window.">set_resizable()</a>. <a href="#a08da78e575d5da70a28b33e5bdfef8f3"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a0ba6f596398c8685fa5535c77c2c9184">set_gravity</a> (<a class="el" href="group__gdkmmEnums.html#ga1bb9235871d434d3c55411d8261b075e">Gdk::Gravity</a> gravity)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight"><a class="el" href="classGtk_1_1Window.html" title="Toplevel Window This represents all widgets which are physical windows controlled...">Window</a> gravity defines the meaning of coordinates passed to <a class="el" href="classGtk_1_1Window.html#aabece927b3c31478f0d22a437d340b62" title="Asks the &lt;link linkend=&quot;gtk-X11-arch&quot;&gt;window manager&lt;/link&gt;...">move()</a>. <a href="#a0ba6f596398c8685fa5535c77c2c9184"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="group__gdkmmEnums.html#ga1bb9235871d434d3c55411d8261b075e">Gdk::Gravity</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a6d7031408bc8d6b18d6d30bd0b1c69e3">get_gravity</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Gets the value set by <a class="el" href="classGtk_1_1Window.html#a0ba6f596398c8685fa5535c77c2c9184" title="Window gravity defines the meaning of coordinates passed to move().">set_gravity()</a>. <a href="#a6d7031408bc8d6b18d6d30bd0b1c69e3"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a4564d6044ee0c89e02244559b6b5f916">set_geometry_hints</a> (<a class="el" href="classGtk_1_1Widget.html">Widget</a>&amp; geometry_widget, const <a class="el" href="namespaceGdk.html#af6948e754cab4e79c6430fb94e438d83">Gdk::Geometry</a>&amp; geometry, <a class="el" href="group__gdkmmEnums.html#ga7dd31e80216f3452a1e080bd22fcfd9c">Gdk::WindowHints</a> geom_mask)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">This function sets up hints about how a window can be resized by the user. <a href="#a4564d6044ee0c89e02244559b6b5f916"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a8019e1426461d32385bfea734b5e63a8">set_screen</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="el" href="classGdk_1_1Screen.html">Gdk::Screen</a> &gt;&amp; screen)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the <a class="el" href="classGdk_1_1Screen.html" title="Object representing a physical screen Gdk::Screen objects are the GDK representation...">Gdk::Screen</a> where the <em>window</em> is displayed; if the window is already mapped, it will be unmapped, and then remapped on the new screen. <a href="#a8019e1426461d32385bfea734b5e63a8"></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>&lt; <a class="el" href="classGdk_1_1Screen.html">Gdk::Screen</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a46de90efae27ecd474f3c7855ace3d3f">get_screen</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the <a class="el" href="classGdk_1_1Screen.html" title="Object representing a physical screen Gdk::Screen objects are the GDK representation...">Gdk::Screen</a> associated with <em>window</em>. <a href="#a46de90efae27ecd474f3c7855ace3d3f"></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>&lt; const <a class="el" href="classGdk_1_1Screen.html">Gdk::Screen</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#ad538e5c73635b06327ef18d3225f6e80">get_screen</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the <a class="el" href="classGdk_1_1Screen.html" title="Object representing a physical screen Gdk::Screen objects are the GDK representation...">Gdk::Screen</a> associated with <em>window</em>. <a href="#ad538e5c73635b06327ef18d3225f6e80"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a7cf0d119b57e73136353ef075eca5d26">set_has_frame</a> (bool setting=true)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">(Note: this is a special-purpose function for the framebuffer port, that causes GTK+ to draw its own window border. <a href="#a7cf0d119b57e73136353ef075eca5d26"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#aa065a7c4bc331cb07221d8365738afbc">get_has_frame</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Accessor for whether the window has a frame window exterior to <em>window-&gt;window</em>. <a href="#aa065a7c4bc331cb07221d8365738afbc"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a17dad6dfdbf039ce8a54a04f80ea8477">set_frame_dimensions</a> (int left, int top, int right, int bottom)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">(Note: this is a special-purpose function intended for the framebuffer port; see <a class="el" href="classGtk_1_1Window.html#a7cf0d119b57e73136353ef075eca5d26" title="(Note: this is a special-purpose function for the framebuffer port, that causes GTK+...">set_has_frame()</a>. <a href="#a17dad6dfdbf039ce8a54a04f80ea8477"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#af714d5a1e1c87ccb911558f1d0b95b0c">get_frame_dimensions</a> (int&amp; left, int&amp; top, int&amp; right, int&amp; bottom) const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">(Note: this is a special-purpose function intended for the framebuffer port; see <a class="el" href="classGtk_1_1Window.html#a7cf0d119b57e73136353ef075eca5d26" title="(Note: this is a special-purpose function for the framebuffer port, that causes GTK+...">set_has_frame()</a>. <a href="#af714d5a1e1c87ccb911558f1d0b95b0c"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a67adb1d8051a38e0e5272f141bb8778c">set_decorated</a> (bool setting=true)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">By default, windows are decorated with a title bar, resize controls, etc. <a href="#a67adb1d8051a38e0e5272f141bb8778c"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#aa20c5dafc990ba10d8cce9d152848ce9">get_decorated</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns whether the window has been set to have decorations such as a title bar via <a class="el" href="classGtk_1_1Window.html#a67adb1d8051a38e0e5272f141bb8778c" title="By default, windows are decorated with a title bar, resize controls, etc.">set_decorated()</a>. <a href="#aa20c5dafc990ba10d8cce9d152848ce9"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a986276f116d90d61f00bb50d2f87d69c">set_deletable</a> (bool setting=true)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">By default, windows have a close button in the window frame. <a href="#a986276f116d90d61f00bb50d2f87d69c"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a49477f0c880d7fd0190505858d8e08bb">get_deletable</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns whether the window has been set to have a close button via <a class="el" href="classGtk_1_1Window.html#a986276f116d90d61f00bb50d2f87d69c" title="By default, windows have a close button in the window frame.">set_deletable()</a>. <a href="#a49477f0c880d7fd0190505858d8e08bb"></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>&lt; <a 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"/>
&lt; <a class="el" href="classGdk_1_1Pixbuf.html">Gdk::Pixbuf</a> &gt; &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a8138bd38733751663bffbcd49f74c418">get_icon_list</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Retrieves the list of icons set by <a class="el" href="classGtk_1_1Window.html#a81ad667e5c42dada1dc24fafae7d81c5" title="Sets up the icon representing a Gtk::Window.">set_icon_list()</a>. <a href="#a8138bd38733751663bffbcd49f74c418"></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>&lt; <a 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"/>
&lt; const <a class="el" href="classGdk_1_1Pixbuf.html">Gdk::Pixbuf</a> &gt; &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#ac1fc3b01c76dfc9436a23aa47221524b">get_icon_list</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Retrieves the list of icons set by <a class="el" href="classGtk_1_1Window.html#a81ad667e5c42dada1dc24fafae7d81c5" title="Sets up the icon representing a Gtk::Window.">set_icon_list()</a>. <a href="#ac1fc3b01c76dfc9436a23aa47221524b"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a81ad667e5c42dada1dc24fafae7d81c5">set_icon_list</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ListHandle.html">Glib::ListHandle</a>&lt; <a 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>&lt; <a class="el" href="classGdk_1_1Pixbuf.html">Gdk::Pixbuf</a> &gt; &gt;&amp; list)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets up the icon representing a <a class="el" href="classGtk_1_1Window.html" title="Toplevel Window This represents all widgets which are physical windows controlled...">Gtk::Window</a>. <a href="#a81ad667e5c42dada1dc24fafae7d81c5"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#af8da32d981bcf1992d3d2361a9aec894">set_icon</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="el" href="classGdk_1_1Pixbuf.html">Gdk::Pixbuf</a> &gt;&amp; icon)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets up the icon representing a <a class="el" href="classGtk_1_1Window.html" title="Toplevel Window This represents all widgets which are physical windows controlled...">Gtk::Window</a>. <a href="#af8da32d981bcf1992d3d2361a9aec894"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a80a7d07b5d126a17206a770d134c76c0">set_icon_name</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>&amp; name)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the icon for the window from a named themed icon. <a href="#a80a7d07b5d126a17206a770d134c76c0"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a2cde5d111ad787f58e9d3908f0bf8bbd">set_icon_from_file</a> (const <a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01116.html#a32db3d9898c44d3b3a578b560f7758cc">std::string</a>&amp; filename)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the icon for the window. <a href="#a2cde5d111ad787f58e9d3908f0bf8bbd"></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>&lt; <a class="el" href="classGdk_1_1Pixbuf.html">Gdk::Pixbuf</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a807394d193c3605b8922cae7385fdc06">get_icon</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Gets the value set by <a class="el" href="classGtk_1_1Window.html#af8da32d981bcf1992d3d2361a9aec894" title="Sets up the icon representing a Gtk::Window.">set_icon()</a> (or if you've called <a class="el" href="classGtk_1_1Window.html#a81ad667e5c42dada1dc24fafae7d81c5" title="Sets up the icon representing a Gtk::Window.">set_icon_list()</a>, gets the first icon in the icon list). <a href="#a807394d193c3605b8922cae7385fdc06"></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>&lt; const <a class="el" href="classGdk_1_1Pixbuf.html">Gdk::Pixbuf</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a68c50f90a51b2b7dc09538afa18da1cb">get_icon</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Gets the value set by <a class="el" href="classGtk_1_1Window.html#af8da32d981bcf1992d3d2361a9aec894" title="Sets up the icon representing a Gtk::Window.">set_icon()</a> (or if you've called <a class="el" href="classGtk_1_1Window.html#a81ad667e5c42dada1dc24fafae7d81c5" title="Sets up the icon representing a Gtk::Window.">set_icon_list()</a>, gets the first icon in the icon list). <a href="#a68c50f90a51b2b7dc09538afa18da1cb"></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_1ustring.html">Glib::ustring</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#afac8ae8360168fbc9466947aa985d7ef">get_icon_name</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the name of the themed icon for the window, see <a class="el" href="classGtk_1_1Window.html#a80a7d07b5d126a17206a770d134c76c0" title="Sets the icon for the window from a named themed icon.">set_icon_name()</a>. <a href="#afac8ae8360168fbc9466947aa985d7ef"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a1f70b3c35e8c477ab3c1f9503a37a6a1">set_modal</a> (bool modal=true)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets a window modal or non-modal. <a href="#a1f70b3c35e8c477ab3c1f9503a37a6a1"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a856066475ff362ddadca9559afc33728">get_modal</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns whether the window is modal. <a href="#a856066475ff362ddadca9559afc33728"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a47a63388df150583cf1cef2970ecb93d">add_mnemonic</a> (guint keyval, <a class="el" href="classGtk_1_1Widget.html">Widget</a>&amp; target)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Adds a mnemonic to this window. <a href="#a47a63388df150583cf1cef2970ecb93d"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a8a4a99151b257228f68f6fc643653b52">remove_mnemonic</a> (guint keyval, <a class="el" href="classGtk_1_1Widget.html">Widget</a>&amp; target)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Removes a mnemonic from this window. <a href="#a8a4a99151b257228f68f6fc643653b52"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#abfee73f9bcceba54007644b2f9d49fa5">mnemonic_activate</a> (guint keyval, <a class="el" href="group__gdkmmEnums.html#ga734c2979005c87dbe51223a0128cdd97">Gdk::ModifierType</a> modifier)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Activates the targets associated with the mnemonic. <a href="#abfee73f9bcceba54007644b2f9d49fa5"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#aa9e48f426c507de6ef00efabf25ab9b3">set_mnemonic_modifier</a> (<a class="el" href="group__gdkmmEnums.html#ga734c2979005c87dbe51223a0128cdd97">Gdk::ModifierType</a> modifier)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the mnemonic modifier for this window. <a href="#aa9e48f426c507de6ef00efabf25ab9b3"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="group__gdkmmEnums.html#ga734c2979005c87dbe51223a0128cdd97">Gdk::ModifierType</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#ab6ebf5365ba765657aa69d6f14a42406">get_mnemonic_modifier</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the mnemonic modifier for this window. <a href="#ab6ebf5365ba765657aa69d6f14a42406"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a7d848c59fc1a42f4a296461515c0476e">present</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Presents a window to the user. <a href="#a7d848c59fc1a42f4a296461515c0476e"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a0724ad6e36d55fd1182e2481fb52cd04">present</a> (guint32 timestamp)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Presents a window to the user in response to a user interaction. <a href="#a0724ad6e36d55fd1182e2481fb52cd04"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a4fc7d8adb9059f51d4b9216b755e30e2">iconify</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Asks to iconify (i.e. minimize) the specified <em>window</em>. <a href="#a4fc7d8adb9059f51d4b9216b755e30e2"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#afd764f06b99906f6730f36ea45ad23e4">deiconify</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Asks to deiconify (i.e. unminimize) the specified <em>window</em>. <a href="#afd764f06b99906f6730f36ea45ad23e4"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#aaadaf48bd2ce3def9eb69e5347a415aa">stick</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Asks to stick <em>window</em>, which means that it will appear on all user desktops. <a href="#aaadaf48bd2ce3def9eb69e5347a415aa"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#ae2b53147692cf07b5738e0a76c27f50f">unstick</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Asks to unstick <em>window</em>, which means that it will appear on only one of the user's desktops. <a href="#ae2b53147692cf07b5738e0a76c27f50f"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a23f2755248ee7aaa39802ccb37bba618">maximize</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Asks to maximize <em>window</em>, so that it becomes full-screen. <a href="#a23f2755248ee7aaa39802ccb37bba618"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a78bca41d0915b84f285187f3bfcd1e9c">unmaximize</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Asks to unmaximize <em>window</em>. <a href="#a78bca41d0915b84f285187f3bfcd1e9c"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a2343d2ece18fc8cf4db9e9de4764f386">fullscreen</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Asks to place <em>window</em> in the fullscreen state. <a href="#a2343d2ece18fc8cf4db9e9de4764f386"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#aa426c8fca5b776d5266da732293f6dab">unfullscreen</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Asks to toggle off the fullscreen state for <em>window</em>. <a href="#aa426c8fca5b776d5266da732293f6dab"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a2528d53c9ff2eb309216e2ce02e486d4">begin_resize_drag</a> (<a class="el" href="group__gdkmmEnums.html#gae31896bd6d904848c07ef7f929063c0c">Gdk::WindowEdge</a> edge, int button, int root_x, int root_y, guint32 timestamp)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Starts resizing a window. <a href="#a2528d53c9ff2eb309216e2ce02e486d4"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#aad83e3e6690a6f2a1869edd38b82b02c">begin_move_drag</a> (int button, int root_x, int root_y, guint32 timestamp)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Starts moving a window. <a href="#aad83e3e6690a6f2a1869edd38b82b02c"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#ac7bddf34f109fd2ed006ff95f1ae881c">set_default_size</a> (int width, int height)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the default size of a window. <a href="#ac7bddf34f109fd2ed006ff95f1ae881c"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a055c345c2d2c0c5814d3792d912aeed7">get_default_size</a> (int&amp; width, int&amp; height) const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Gets the default size of the window. <a href="#a055c345c2d2c0c5814d3792d912aeed7"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#ad6d1fc27730d7f26402a1924c3495787">resize</a> (int width, int height)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Resizes the window as if the user had done so, obeying geometry constraints. <a href="#ad6d1fc27730d7f26402a1924c3495787"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a34c05f04c75ef2acc745b585259632a2">get_size</a> (int&amp; width, int&amp; height) const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Obtains the current size of <em>window</em>. <a href="#a34c05f04c75ef2acc745b585259632a2"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#aabece927b3c31478f0d22a437d340b62">move</a> (int x, int y)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Asks the &lt;link linkend="gtk-X11-arch"&gt;window manager&lt;/link&gt; to move <em>window</em> to the given position. <a href="#aabece927b3c31478f0d22a437d340b62"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#ad3a063730ccbf0e4fa26f89e220f55e4">get_position</a> (int&amp; root_x, int&amp; root_y) const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">This function returns the position you need to pass to <a class="el" href="classGtk_1_1Window.html#aabece927b3c31478f0d22a437d340b62" title="Asks the &lt;link linkend=&quot;gtk-X11-arch&quot;&gt;window manager&lt;/link&gt;...">move()</a> to keep <em>window</em> in its current position. <a href="#ad3a063730ccbf0e4fa26f89e220f55e4"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#ad6b20c1940fefe7da528171a34ecd416">parse_geometry</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>&amp; geometry)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Parses a standard X&#160;Window System geometry string - see the manual page for X (type 'man X') for details on this. <a href="#ad6b20c1940fefe7da528171a34ecd416"></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>&lt; <a class="el" href="classGtk_1_1WindowGroup.html">WindowGroup</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a620c3988fd31c158bd03222db7a8d804">get_group</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the group for <em>window</em> or the default group, if <em>window</em> is <code>0</code> or if <em>window</em> does not have an explicit window group. <a href="#a620c3988fd31c158bd03222db7a8d804"></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>&lt; const <a class="el" href="classGtk_1_1WindowGroup.html">WindowGroup</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a042da43137619606cb8639b22c3f5c43">get_group</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the group for <em>window</em> or the default group, if <em>window</em> is <code>0</code> or if <em>window</em> does not have an explicit window group. <a href="#a042da43137619606cb8639b22c3f5c43"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="group__gtkmmEnums.html#ga8c724168aabf37953fbb194b35ad250f">WindowType</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a4acaad013ade234eb2b83d636f14a998">get_window_type</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Gets the type of the window. <a href="#a4acaad013ade234eb2b83d636f14a998"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a7acae2440f5436966dab4b023318a37a">reshow_with_initial_size</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Hides <em>window</em>, then reshows it, resetting the default size and position of the window. <a href="#a7acae2440f5436966dab4b023318a37a"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a1233d35c8c1108ed4446c4b0c8d97e35">set_keep_above</a> (bool setting=true)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Asks to keep <em>window</em> above, so that it stays on top. <a href="#a1233d35c8c1108ed4446c4b0c8d97e35"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#ad671b4dcca5e8e659b9126e0deed74f2">set_keep_below</a> (bool setting=true)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Asks to keep <em>window</em> below, so that it stays in bottom. <a href="#ad671b4dcca5e8e659b9126e0deed74f2"></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>&lt; <a class="el" href="classGtk_1_1AccelGroup.html">AccelGroup</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a30de41223b51216f573305b03c6e20ba">get_accel_group</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns a default accel group for this window This is a gtkmm-specific function. <a href="#a30de41223b51216f573305b03c6e20ba"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#ad61a5ddefd7b84f178460635c6448ef8">raise</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Brings the window to the front. <a href="#ad61a5ddefd7b84f178460635c6448ef8"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a707c97e32be83c712b4a414c3e37d13c">set_manage</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Overriden to warn that it doesn't make sense to use <a class="el" href="namespaceGtk.html#a85d08eef743328ffebac2647a9c7f183" title="Mark a Gtk::Object as owned by its parent container widget, so you don&#39;t need...">Gtk::manage()</a> on this class because it has no parent container. <a href="#a707c97e32be83c712b4a414c3e37d13c"></a><br/></td></tr>
<tr><td colspan="2"><h2>Static Public Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">static void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a7061612826fd86c5a1386091ddc4be31">set_default_icon_list</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ListHandle.html">Glib::ListHandle</a>&lt; <a 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>&lt; <a class="el" href="classGdk_1_1Pixbuf.html">Gdk::Pixbuf</a> &gt; &gt;&amp; list)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets an icon list to be used as fallback for windows that haven't had <a class="el" href="classGtk_1_1Window.html#a81ad667e5c42dada1dc24fafae7d81c5" title="Sets up the icon representing a Gtk::Window.">set_icon_list()</a> called on them to set up a window-specific icon list. <a href="#a7061612826fd86c5a1386091ddc4be31"></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_1ListHandle.html">Glib::ListHandle</a><br class="typebreak"/>
&lt; <a 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>&lt; <a class="el" href="classGdk_1_1Pixbuf.html">Gdk::Pixbuf</a> &gt; &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a6d5bdd6304e51b30d6c5167228164dce">get_default_icon_list</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Gets the value set by <a class="el" href="classGtk_1_1Window.html#a7061612826fd86c5a1386091ddc4be31" title="Sets an icon list to be used as fallback for windows that haven&#39;t had set_icon_list()...">Gtk::Window::set_default_icon_list()</a>. <a href="#a6d5bdd6304e51b30d6c5167228164dce"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">static void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a355e4704d6b2f24de627f182946f8782">set_default_icon</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="el" href="classGdk_1_1Pixbuf.html">Gdk::Pixbuf</a> &gt;&amp; icon)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets an icon to be used as fallback for windows that haven't had <a class="el" href="classGtk_1_1Window.html#af8da32d981bcf1992d3d2361a9aec894" title="Sets up the icon representing a Gtk::Window.">set_icon()</a> called on them from a pixbuf. <a href="#a355e4704d6b2f24de627f182946f8782"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">static void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a533d03e9b92d8ccd142ab3a44005cae4">set_default_icon_name</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>&amp; name)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets an icon to be used as fallback for windows that haven't had <a class="el" href="classGtk_1_1Window.html#a81ad667e5c42dada1dc24fafae7d81c5" title="Sets up the icon representing a Gtk::Window.">set_icon_list()</a> called on them from a named themed icon, see <a class="el" href="classGtk_1_1Window.html#a80a7d07b5d126a17206a770d134c76c0" title="Sets the icon for the window from a named themed icon.">set_icon_name()</a>. <a href="#a533d03e9b92d8ccd142ab3a44005cae4"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">static bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#ada7d63162e412693d80a397096f46b0f">set_default_icon_from_file</a> (const <a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01116.html#a32db3d9898c44d3b3a578b560f7758cc">std::string</a>&amp; filename)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets an icon to be used as fallback for windows that haven't had <a class="el" href="classGtk_1_1Window.html#a81ad667e5c42dada1dc24fafae7d81c5" title="Sets up the icon representing a Gtk::Window.">set_icon_list()</a> called on them from a file on disk. <a href="#ada7d63162e412693d80a397096f46b0f"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">static void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a17d7fbb99c147938b2f8af87cd1187f8">set_auto_startup_notification</a> (bool setting=true)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">By default, after showing the first <a class="el" href="classGtk_1_1Window.html" title="Toplevel Window This represents all widgets which are physical windows controlled...">Gtk::Window</a>, GTK+ calls gdk_notify_startup_complete(). <a href="#a17d7fbb99c147938b2f8af87cd1187f8"></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_1ListHandle.html">Glib::ListHandle</a>&lt; <a class="el" href="classGtk_1_1Window.html">Window</a>* &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#adf14c5fd11660caf8c92db309d3620b7">list_toplevels</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns a list of all existing toplevel windows. <a href="#adf14c5fd11660caf8c92db309d3620b7"></a><br/></td></tr>
<tr><td colspan="2"><h2>Protected Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#af47d9ef9fb72173016def01ecb60715c">on_set_focus</a> (<a class="el" href="classGtk_1_1Widget.html">Widget</a>* focus)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#ae581f3c73875fa8453a276b55867b613">on_frame_event</a> (GdkEvent* event)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#a230fe9d4577dc165d139f4d7463367ee">destroy_</a> ()</td></tr>
<tr><td colspan="2"><h2>Related Functions</h2></td></tr>
<tr><td colspan="2"><p>(Note that these are not member functions.) </p>
<br/><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGtk_1_1Window.html">Gtk::Window</a>*&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Window.html#ae450767a1f7f277ee50a0acb197f3e08">wrap</a> (GtkWindow* object, bool take_copy=false)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">A <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/namespaceGlib.html#a671306f4a3a0cae5ab4d7a9d54886592">Glib::wrap()</a> method for this object. <a href="#ae450767a1f7f277ee50a0acb197f3e08"></a><br/></td></tr>
</table>
<hr/><a name="_details"></a><h2>Detailed Description</h2>
<p>Toplevel <a class="el" href="classGtk_1_1Window.html" title="Toplevel Window This represents all widgets which are physical windows controlled...">Window</a> This represents all widgets which are physical windows controlled by the window manager. </p>
<p>The window will be hidden when the window manager's close button is clicked. Override <a class="el" href="classGtk_1_1Widget.html#aa97a4453ec12f7fce163353c2bcaf580">on_delete_event()</a> to stop this.</p>
<p><a class="el" href="namespaceGtk.html#a85d08eef743328ffebac2647a9c7f183" title="Mark a Gtk::Object as owned by its parent container widget, so you don&#39;t need...">Gtk::manage()</a> has no effect on Windows because they have no parent Containers. </p>
<hr/><h2>Constructor &amp; Destructor Documentation</h2>
<a class="anchor" id="a00a05cbd643be38f2f231e1712c8c6d2"></a><!-- doxytag: member="Gtk::Window::~Window" ref="a00a05cbd643be38f2f231e1712c8c6d2" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">virtual Gtk::Window::~Window </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td><code> [virtual]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

</div>
</div>
<a class="anchor" id="aa3273081166e86df1850738a17ecdb09"></a><!-- doxytag: member="Gtk::Window::Window" ref="aa3273081166e86df1850738a17ecdb09" args="(WindowType type=WINDOW_TOPLEVEL)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">Gtk::Window::Window </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="group__gtkmmEnums.html#ga8c724168aabf37953fbb194b35ad250f">WindowType</a>&#160;</td>
          <td class="paramname"> <em>type</em> = <code>WINDOW_TOPLEVEL</code></td>
          <td>&#160;)&#160;</td>
          <td><code> [explicit]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

</div>
</div>
<hr/><h2>Member Function Documentation</h2>
<a class="anchor" id="a1ddd9d6b107a250a921140159bd90cb3"></a><!-- doxytag: member="Gtk::Window::activate_default" ref="a1ddd9d6b107a250a921140159bd90cb3" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool Gtk::Window::activate_default </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Activates the default widget for the window, unless the current focused widget has been configured to receive the default action (see <a class="el" href="classGtk_1_1Widget.html#a781389940fbd7baa528eee5ed6108ac5" title="Specifies whether widget will be treated as the default widget within its toplevel...">Gtk::Widget::set_receives_default()</a>), in which case the focused widget is activated. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd><code>true</code> if a widget got activated. </dd></dl>

</div>
</div>
<a class="anchor" id="aae55e31e4dc2925ae813c31aeddfcbe4"></a><!-- doxytag: member="Gtk::Window::activate_focus" ref="aae55e31e4dc2925ae813c31aeddfcbe4" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool Gtk::Window::activate_focus </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Activates the current focused widget within the window. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd><code>true</code> if a widget got activated. </dd></dl>

</div>
</div>
<a class="anchor" id="ad15a4530150d8464ee06bb2218e582e9"></a><!-- doxytag: member="Gtk::Window::add_accel_group" ref="ad15a4530150d8464ee06bb2218e582e9" args="(const Glib::RefPtr&lt; AccelGroup &gt; &amp;accel_group)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::Window::add_accel_group </td>
          <td>(</td>
          <td class="paramtype">const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="el" href="classGtk_1_1AccelGroup.html">AccelGroup</a> &gt;&amp;&#160;</td>
          <td class="paramname"> <em>accel_group</em></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Associate <em>accel_group</em> with <em>window</em>, such that calling gtk_accel_groups_activate() on <em>window</em> will activate accelerators in <em>accel_group</em>. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>accel_group</em>&#160;</td><td>A <a class="el" href="classGtk_1_1AccelGroup.html" title="A Gtk::AccelGroup represents a group of keyboard accelerators, typically attached...">Gtk::AccelGroup</a>. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a47a63388df150583cf1cef2970ecb93d"></a><!-- doxytag: member="Gtk::Window::add_mnemonic" ref="a47a63388df150583cf1cef2970ecb93d" args="(guint keyval, Widget &amp;target)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::Window::add_mnemonic </td>
          <td>(</td>
          <td class="paramtype">guint&#160;</td>
          <td class="paramname"> <em>keyval</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="classGtk_1_1Widget.html">Widget</a>&amp;&#160;</td>
          <td class="paramname"> <em>target</em></td><td>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td><td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Adds a mnemonic to this window. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>keyval</em>&#160;</td><td>The mnemonic. </td></tr>
    <tr><td valign="top"></td><td valign="top"><em>target</em>&#160;</td><td>The widget that gets activated by the mnemonic. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="aad83e3e6690a6f2a1869edd38b82b02c"></a><!-- doxytag: member="Gtk::Window::begin_move_drag" ref="aad83e3e6690a6f2a1869edd38b82b02c" 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 Gtk::Window::begin_move_drag </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"> <em>button</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"> <em>root_x</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"> <em>root_y</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">guint32&#160;</td>
          <td class="paramname"> <em>timestamp</em></td><td>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td><td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Starts moving a window. </p>
<p>This function is used if an application has window movement grips. When GDK can support it, the window movement will be done using the standard mechanism for the &lt;link linkend="gtk-X11-arch"&gt;window manager&lt;/link&gt; or windowing system. Otherwise, GDK will try to emulate window movement, potentially not all that well, depending on the windowing system. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>button</em>&#160;</td><td>Mouse button that initiated the drag. </td></tr>
    <tr><td valign="top"></td><td valign="top"><em>root_x</em>&#160;</td><td>X position where the user clicked to initiate the drag, in root window coordinates. </td></tr>
    <tr><td valign="top"></td><td valign="top"><em>root_y</em>&#160;</td><td>Y position where the user clicked to initiate the drag. </td></tr>
    <tr><td valign="top"></td><td valign="top"><em>timestamp</em>&#160;</td><td>Timestamp from the click event that initiated the drag. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a2528d53c9ff2eb309216e2ce02e486d4"></a><!-- doxytag: member="Gtk::Window::begin_resize_drag" ref="a2528d53c9ff2eb309216e2ce02e486d4" args="(Gdk::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 Gtk::Window::begin_resize_drag </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="group__gdkmmEnums.html#gae31896bd6d904848c07ef7f929063c0c">Gdk::WindowEdge</a>&#160;</td>
          <td class="paramname"> <em>edge</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"> <em>button</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"> <em>root_x</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"> <em>root_y</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">guint32&#160;</td>
          <td class="paramname"> <em>timestamp</em></td><td>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td><td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Starts resizing a window. </p>
<p>This function is used if an application has window resizing controls. When GDK can support it, the resize will be done using the standard mechanism for the &lt;link linkend="gtk-X11-arch"&gt;window manager&lt;/link&gt; or windowing system. Otherwise, GDK will try to emulate window resizing, potentially not all that well, depending on the windowing system. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>button</em>&#160;</td><td>Mouse button that initiated the drag. </td></tr>
    <tr><td valign="top"></td><td valign="top"><em>edge</em>&#160;</td><td>Position of the resize control. </td></tr>
    <tr><td valign="top"></td><td valign="top"><em>root_x</em>&#160;</td><td>X position where the user clicked to initiate the drag, in root window coordinates. </td></tr>
    <tr><td valign="top"></td><td valign="top"><em>root_y</em>&#160;</td><td>Y position where the user clicked to initiate the drag. </td></tr>
    <tr><td valign="top"></td><td valign="top"><em>timestamp</em>&#160;</td><td>Timestamp from the click event that initiated the drag. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="afd764f06b99906f6730f36ea45ad23e4"></a><!-- doxytag: member="Gtk::Window::deiconify" ref="afd764f06b99906f6730f36ea45ad23e4" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::Window::deiconify </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Asks to deiconify (i.e. unminimize) the specified <em>window</em>. </p>
<p>Note that you shouldn't assume the window is definitely deiconified afterward, because other entities (e.g. the user or &lt;link linkend="gtk-X11-arch"&gt;window manager&lt;/link&gt;) could iconify it again before your code which assumes deiconification gets to run.</p>
<p>You can track iconification via the "window-state-event" signal on <a class="el" href="classGtk_1_1Widget.html" title="Abstract Widget (Base class for all widgets).">Gtk::Widget</a>. </p>

</div>
</div>
<a class="anchor" id="a230fe9d4577dc165d139f4d7463367ee"></a><!-- doxytag: member="Gtk::Window::destroy_" ref="a230fe9d4577dc165d139f4d7463367ee" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::Window::destroy_ </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td><code> [protected]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

</div>
</div>
<a class="anchor" id="a2343d2ece18fc8cf4db9e9de4764f386"></a><!-- doxytag: member="Gtk::Window::fullscreen" ref="a2343d2ece18fc8cf4db9e9de4764f386" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::Window::fullscreen </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Asks to place <em>window</em> in the fullscreen state. </p>
<p>Note that you shouldn't assume the window is definitely full screen afterward, because other entities (e.g. the user or &lt;link linkend="gtk-X11-arch"&gt;window manager&lt;/link&gt;) could unfullscreen it again, and not all window managers honor requests to fullscreen windows. But normally the window will end up fullscreen. Just don't write code that crashes if not.</p>
<p>You can track the fullscreen state via the "window-state-event" signal on <a class="el" href="classGtk_1_1Widget.html" title="Abstract Widget (Base class for all widgets).">Gtk::Widget</a>.</p>
<dl class="since_2_2"><dt><b><a class="el" href="since_2_2.html#_since_2_2000131">Since gtkmm 2.2:</a></b></dt><dd></dd></dl>

</div>
</div>
<a class="anchor" id="a30de41223b51216f573305b03c6e20ba"></a><!-- doxytag: member="Gtk::Window::get_accel_group" ref="a30de41223b51216f573305b03c6e20ba" 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>&lt;<a class="el" href="classGtk_1_1AccelGroup.html">AccelGroup</a>&gt; Gtk::Window::get_accel_group </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Returns a default accel group for this window This is a gtkmm-specific function. </p>
<p>This accel group can not be removed. </p>

</div>
</div>
<a class="anchor" id="a43e546a1678f86f0b4165eb9a9076775"></a><!-- doxytag: member="Gtk::Window::get_accept_focus" ref="a43e546a1678f86f0b4165eb9a9076775" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool Gtk::Window::get_accept_focus </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Gets the value set by <a class="el" href="classGtk_1_1Window.html#a9fc2a01d8aa1ab126060d9f363b5d8c5" title="Windows may set a hint asking the desktop environment not to receive the input focus...">set_accept_focus()</a>. </p>
<dl class="since_2_4"><dt><b><a class="el" href="since_2_4.html#_since_2_4000336">Since gtkmm 2.4:</a></b></dt><dd></dd></dl>
<dl class="return"><dt><b>Returns:</b></dt><dd><code>true</code> if window should receive the input focus. </dd></dl>

</div>
</div>
<a class="anchor" id="aa20c5dafc990ba10d8cce9d152848ce9"></a><!-- doxytag: member="Gtk::Window::get_decorated" ref="aa20c5dafc990ba10d8cce9d152848ce9" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool Gtk::Window::get_decorated </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Returns whether the window has been set to have decorations such as a title bar via <a class="el" href="classGtk_1_1Window.html#a67adb1d8051a38e0e5272f141bb8778c" title="By default, windows are decorated with a title bar, resize controls, etc.">set_decorated()</a>. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd><code>true</code> if the window has been set to have decorations. </dd></dl>

</div>
</div>
<a class="anchor" id="a6d5bdd6304e51b30d6c5167228164dce"></a><!-- doxytag: member="Gtk::Window::get_default_icon_list" ref="a6d5bdd6304e51b30d6c5167228164dce" 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>&lt; <a 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>&lt;<a class="el" href="classGdk_1_1Pixbuf.html">Gdk::Pixbuf</a>&gt; &gt; Gtk::Window::get_default_icon_list </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td><code> [static]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Gets the value set by <a class="el" href="classGtk_1_1Window.html#a7061612826fd86c5a1386091ddc4be31" title="Sets an icon list to be used as fallback for windows that haven&#39;t had set_icon_list()...">Gtk::Window::set_default_icon_list()</a>. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>Copy of default icon list. </dd></dl>

</div>
</div>
<a class="anchor" id="a055c345c2d2c0c5814d3792d912aeed7"></a><!-- doxytag: member="Gtk::Window::get_default_size" ref="a055c345c2d2c0c5814d3792d912aeed7" args="(int &amp;width, int &amp;height) const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::Window::get_default_size </td>
          <td>(</td>
          <td class="paramtype">int &amp;&#160;</td>
          <td class="paramname"> <em>width</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int &amp;&#160;</td>
          <td class="paramname"> <em>height</em></td><td>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td><td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Gets the default size of the window. </p>
<p>A value of -1 for the width or height indicates that a default size has not been explicitly set for that dimension, so the "natural" size of the window will be used. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>width</em>&#160;</td><td>Location to store the default width. </td></tr>
    <tr><td valign="top"></td><td valign="top"><em>height</em>&#160;</td><td>Location to store the default height. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a49477f0c880d7fd0190505858d8e08bb"></a><!-- doxytag: member="Gtk::Window::get_deletable" ref="a49477f0c880d7fd0190505858d8e08bb" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool Gtk::Window::get_deletable </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Returns whether the window has been set to have a close button via <a class="el" href="classGtk_1_1Window.html#a986276f116d90d61f00bb50d2f87d69c" title="By default, windows have a close button in the window frame.">set_deletable()</a>. </p>
<dl class="since_2_10"><dt><b><a class="el" href="since_2_10.html#_since_2_10000342">Since gtkmm 2.10:</a></b></dt><dd></dd></dl>
<dl class="return"><dt><b>Returns:</b></dt><dd><code>true</code> if the window has been set to have a close button. </dd></dl>

</div>
</div>
<a class="anchor" id="a0cde210bd450e6dfcf59f9104e66860c"></a><!-- doxytag: member="Gtk::Window::get_destroy_with_parent" ref="a0cde210bd450e6dfcf59f9104e66860c" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool Gtk::Window::get_destroy_with_parent </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Returns whether the window will be destroyed with its transient parent. </p>
<p>See set_destroy_with_parent(). </p>
<dl class="return"><dt><b>Returns:</b></dt><dd><code>true</code> if the window will be destroyed with its transient parent. </dd></dl>

</div>
</div>
<a class="anchor" id="a7e697a9060ae5994631f5e00762304cf"></a><!-- doxytag: member="Gtk::Window::get_focus" ref="a7e697a9060ae5994631f5e00762304cf" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="classGtk_1_1Widget.html">Widget</a>* Gtk::Window::get_focus </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Retrieves the current focused widget within the window. </p>
<p>Note that this is the widget that would have the focus if the toplevel window focused; if the toplevel window is not focused then &lt;literal&gt;gtk_widget_has_focus (widget)&lt;/literal&gt; will not be <code>true</code> for the widget. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>The currently focused widget, or <code>0</code> if there is none. </dd></dl>

</div>
</div>
<a class="anchor" id="a1997d080c805ba2e2e6821781992c54b"></a><!-- doxytag: member="Gtk::Window::get_focus" ref="a1997d080c805ba2e2e6821781992c54b" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classGtk_1_1Widget.html">Widget</a>* Gtk::Window::get_focus </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Retrieves the current focused widget within the window. </p>
<p>Note that this is the widget that would have the focus if the toplevel window focused; if the toplevel window is not focused then &lt;literal&gt;gtk_widget_has_focus (widget)&lt;/literal&gt; will not be <code>true</code> for the widget. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>The currently focused widget, or <code>0</code> if there is none. </dd></dl>

</div>
</div>
<a class="anchor" id="a2dc043bb88d969715793415e84cd6a04"></a><!-- doxytag: member="Gtk::Window::get_focus_on_map" ref="a2dc043bb88d969715793415e84cd6a04" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool Gtk::Window::get_focus_on_map </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Gets the value set by <a class="el" href="classGtk_1_1Window.html#a3a2c87ab12bb354d4ac0262748fb6aea" title="Windows may set a hint asking the desktop environment not to receive the input focus...">set_focus_on_map()</a>. </p>
<dl class="since_2_6"><dt><b><a class="el" href="since_2_6.html#_since_2_6000163">Since gtkmm 2.6:</a></b></dt><dd></dd></dl>
<dl class="return"><dt><b>Returns:</b></dt><dd><code>true</code> if window should receive the input focus when mapped. </dd></dl>

</div>
</div>
<a class="anchor" id="a5d2bf8f0f11ab1aff43cfba8e083d4bf"></a><!-- doxytag: member="Gtk::Window::get_frame" ref="a5d2bf8f0f11ab1aff43cfba8e083d4bf" 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>&lt;const <a class="el" href="classGdk_1_1Window.html">Gdk::Window</a>&gt; Gtk::Window::get_frame </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

</div>
</div>
<a class="anchor" id="a5f8db9bfe5bd90300152272692a6b0d6"></a><!-- doxytag: member="Gtk::Window::get_frame" ref="a5f8db9bfe5bd90300152272692a6b0d6" 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>&lt;<a class="el" href="classGdk_1_1Window.html">Gdk::Window</a>&gt; Gtk::Window::get_frame </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">
<dl class="deprecated"><dt><b><a class="el" href="deprecated.html#_deprecated000110">Deprecated:</a></b></dt><dd>You should not need to call this method. </dd></dl>

</div>
</div>
<a class="anchor" id="af714d5a1e1c87ccb911558f1d0b95b0c"></a><!-- doxytag: member="Gtk::Window::get_frame_dimensions" ref="af714d5a1e1c87ccb911558f1d0b95b0c" args="(int &amp;left, int &amp;top, int &amp;right, int &amp;bottom) const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::Window::get_frame_dimensions </td>
          <td>(</td>
          <td class="paramtype">int &amp;&#160;</td>
          <td class="paramname"> <em>left</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int &amp;&#160;</td>
          <td class="paramname"> <em>top</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int &amp;&#160;</td>
          <td class="paramname"> <em>right</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int &amp;&#160;</td>
          <td class="paramname"> <em>bottom</em></td><td>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td><td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>(Note: this is a special-purpose function intended for the framebuffer port; see <a class="el" href="classGtk_1_1Window.html#a7cf0d119b57e73136353ef075eca5d26" title="(Note: this is a special-purpose function for the framebuffer port, that causes GTK+...">set_has_frame()</a>. </p>
<p>It will not return the size of the window border drawn by the &lt;link linkend="gtk-X11-arch"&gt;window manager&lt;/link&gt;, which is the normal case when using a windowing system. See gdk_window_get_frame_extents() to get the standard window border extents.)</p>
<p>Retrieves the dimensions of the frame window for this toplevel. See <a class="el" href="classGtk_1_1Window.html#a7cf0d119b57e73136353ef075eca5d26" title="(Note: this is a special-purpose function for the framebuffer port, that causes GTK+...">set_has_frame()</a>, <a class="el" href="classGtk_1_1Window.html#a17dad6dfdbf039ce8a54a04f80ea8477" title="(Note: this is a special-purpose function intended for the framebuffer port; see...">set_frame_dimensions()</a>. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>left</em>&#160;</td><td>Location to store the width of the frame at the left. </td></tr>
    <tr><td valign="top"></td><td valign="top"><em>top</em>&#160;</td><td>Location to store the height of the frame at the top. </td></tr>
    <tr><td valign="top"></td><td valign="top"><em>right</em>&#160;</td><td>Location to store the width of the frame at the returns. </td></tr>
    <tr><td valign="top"></td><td valign="top"><em>bottom</em>&#160;</td><td>Location to store the height of the frame at the bottom. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a6d7031408bc8d6b18d6d30bd0b1c69e3"></a><!-- doxytag: member="Gtk::Window::get_gravity" ref="a6d7031408bc8d6b18d6d30bd0b1c69e3" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="group__gdkmmEnums.html#ga1bb9235871d434d3c55411d8261b075e">Gdk::Gravity</a> Gtk::Window::get_gravity </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Gets the value set by <a class="el" href="classGtk_1_1Window.html#a0ba6f596398c8685fa5535c77c2c9184" title="Window gravity defines the meaning of coordinates passed to move().">set_gravity()</a>. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd><a class="el" href="classGtk_1_1Window.html" title="Toplevel Window This represents all widgets which are physical windows controlled...">Window</a> gravity. </dd></dl>

</div>
</div>
<a class="anchor" id="a042da43137619606cb8639b22c3f5c43"></a><!-- doxytag: member="Gtk::Window::get_group" ref="a042da43137619606cb8639b22c3f5c43" 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>&lt;const <a class="el" href="classGtk_1_1WindowGroup.html">WindowGroup</a>&gt; Gtk::Window::get_group </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Returns the group for <em>window</em> or the default group, if <em>window</em> is <code>0</code> or if <em>window</em> does not have an explicit window group. </p>
<dl class="since_2_10"><dt><b><a class="el" href="since_2_10.html#_since_2_10000344">Since gtkmm 2.10:</a></b></dt><dd></dd></dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>The <a class="el" href="classGtk_1_1WindowGroup.html" title="Limit the effect of grabs.">Gtk::WindowGroup</a> for a window or the default group. </dd></dl>

</div>
</div>
<a class="anchor" id="a620c3988fd31c158bd03222db7a8d804"></a><!-- doxytag: member="Gtk::Window::get_group" ref="a620c3988fd31c158bd03222db7a8d804" 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>&lt;<a class="el" href="classGtk_1_1WindowGroup.html">WindowGroup</a>&gt; Gtk::Window::get_group </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Returns the group for <em>window</em> or the default group, if <em>window</em> is <code>0</code> or if <em>window</em> does not have an explicit window group. </p>
<dl class="since_2_10"><dt><b><a class="el" href="since_2_10.html#_since_2_10000343">Since gtkmm 2.10:</a></b></dt><dd></dd></dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>The <a class="el" href="classGtk_1_1WindowGroup.html" title="Limit the effect of grabs.">Gtk::WindowGroup</a> for a window or the default group. </dd></dl>

</div>
</div>
<a class="anchor" id="aa065a7c4bc331cb07221d8365738afbc"></a><!-- doxytag: member="Gtk::Window::get_has_frame" ref="aa065a7c4bc331cb07221d8365738afbc" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool Gtk::Window::get_has_frame </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Accessor for whether the window has a frame window exterior to <em>window-&gt;window</em>. </p>
<p>Gets the value set by <a class="el" href="classGtk_1_1Window.html#a7cf0d119b57e73136353ef075eca5d26" title="(Note: this is a special-purpose function for the framebuffer port, that causes GTK+...">set_has_frame()</a>. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd><code>true</code> if a frame has been added to the window via <a class="el" href="classGtk_1_1Window.html#a7cf0d119b57e73136353ef075eca5d26" title="(Note: this is a special-purpose function for the framebuffer port, that causes GTK+...">set_has_frame()</a>. </dd></dl>

</div>
</div>
<a class="anchor" id="a68c50f90a51b2b7dc09538afa18da1cb"></a><!-- doxytag: member="Gtk::Window::get_icon" ref="a68c50f90a51b2b7dc09538afa18da1cb" 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>&lt;const <a class="el" href="classGdk_1_1Pixbuf.html">Gdk::Pixbuf</a>&gt; Gtk::Window::get_icon </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Gets the value set by <a class="el" href="classGtk_1_1Window.html#af8da32d981bcf1992d3d2361a9aec894" title="Sets up the icon representing a Gtk::Window.">set_icon()</a> (or if you've called <a class="el" href="classGtk_1_1Window.html#a81ad667e5c42dada1dc24fafae7d81c5" title="Sets up the icon representing a Gtk::Window.">set_icon_list()</a>, gets the first icon in the icon list). </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>Icon for window. </dd></dl>

</div>
</div>
<a class="anchor" id="a807394d193c3605b8922cae7385fdc06"></a><!-- doxytag: member="Gtk::Window::get_icon" ref="a807394d193c3605b8922cae7385fdc06" 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>&lt;<a class="el" href="classGdk_1_1Pixbuf.html">Gdk::Pixbuf</a>&gt; Gtk::Window::get_icon </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Gets the value set by <a class="el" href="classGtk_1_1Window.html#af8da32d981bcf1992d3d2361a9aec894" title="Sets up the icon representing a Gtk::Window.">set_icon()</a> (or if you've called <a class="el" href="classGtk_1_1Window.html#a81ad667e5c42dada1dc24fafae7d81c5" title="Sets up the icon representing a Gtk::Window.">set_icon_list()</a>, gets the first icon in the icon list). </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>Icon for window. </dd></dl>

</div>
</div>
<a class="anchor" id="ac1fc3b01c76dfc9436a23aa47221524b"></a><!-- doxytag: member="Gtk::Window::get_icon_list" ref="ac1fc3b01c76dfc9436a23aa47221524b" 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>&lt; <a 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>&lt;const <a class="el" href="classGdk_1_1Pixbuf.html">Gdk::Pixbuf</a>&gt; &gt; Gtk::Window::get_icon_list </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Retrieves the list of icons set by <a class="el" href="classGtk_1_1Window.html#a81ad667e5c42dada1dc24fafae7d81c5" title="Sets up the icon representing a Gtk::Window.">set_icon_list()</a>. </p>
<p>The list is copied, but the reference count on each member won't be incremented. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>Copy of window's icon list. </dd></dl>

</div>
</div>
<a class="anchor" id="a8138bd38733751663bffbcd49f74c418"></a><!-- doxytag: member="Gtk::Window::get_icon_list" ref="a8138bd38733751663bffbcd49f74c418" 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>&lt; <a 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>&lt;<a class="el" href="classGdk_1_1Pixbuf.html">Gdk::Pixbuf</a>&gt; &gt; Gtk::Window::get_icon_list </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Retrieves the list of icons set by <a class="el" href="classGtk_1_1Window.html#a81ad667e5c42dada1dc24fafae7d81c5" title="Sets up the icon representing a Gtk::Window.">set_icon_list()</a>. </p>
<p>The list is copied, but the reference count on each member won't be incremented. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>Copy of window's icon list. </dd></dl>

</div>
</div>
<a class="anchor" id="afac8ae8360168fbc9466947aa985d7ef"></a><!-- doxytag: member="Gtk::Window::get_icon_name" ref="afac8ae8360168fbc9466947aa985d7ef" 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_1ustring.html">Glib::ustring</a> Gtk::Window::get_icon_name </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Returns the name of the themed icon for the window, see <a class="el" href="classGtk_1_1Window.html#a80a7d07b5d126a17206a770d134c76c0" title="Sets the icon for the window from a named themed icon.">set_icon_name()</a>. </p>
<dl class="since_2_6"><dt><b><a class="el" href="since_2_6.html#_since_2_6000165">Since gtkmm 2.6:</a></b></dt><dd></dd></dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>The icon name or <code>0</code> if the window has no themed icon. </dd></dl>

</div>
</div>
<a class="anchor" id="ab6ebf5365ba765657aa69d6f14a42406"></a><!-- doxytag: member="Gtk::Window::get_mnemonic_modifier" ref="ab6ebf5365ba765657aa69d6f14a42406" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="group__gdkmmEnums.html#ga734c2979005c87dbe51223a0128cdd97">Gdk::ModifierType</a> Gtk::Window::get_mnemonic_modifier </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Returns the mnemonic modifier for this window. </p>
<p>See <a class="el" href="classGtk_1_1Window.html#aa9e48f426c507de6ef00efabf25ab9b3" title="Sets the mnemonic modifier for this window.">set_mnemonic_modifier()</a>. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>The modifier mask used to activate mnemonics on this window. </dd></dl>

</div>
</div>
<a class="anchor" id="ad4116f9a6c86303e793869e91977ea19"></a><!-- doxytag: member="Gtk::Window::get_mnemonics_visible" ref="ad4116f9a6c86303e793869e91977ea19" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool Gtk::Window::get_mnemonics_visible </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

</div>
</div>
<a class="anchor" id="a856066475ff362ddadca9559afc33728"></a><!-- doxytag: member="Gtk::Window::get_modal" ref="a856066475ff362ddadca9559afc33728" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool Gtk::Window::get_modal </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Returns whether the window is modal. </p>
<p>See <a class="el" href="classGtk_1_1Window.html#a1f70b3c35e8c477ab3c1f9503a37a6a1" title="Sets a window modal or non-modal.">set_modal()</a>. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd><code>true</code> if the window is set to be modal and establishes a grab when shown. </dd></dl>

</div>
</div>
<a class="anchor" id="a228fc868afdf6c88b0dfbe03be29723e"></a><!-- doxytag: member="Gtk::Window::get_opacity" ref="a228fc868afdf6c88b0dfbe03be29723e" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">double Gtk::Window::get_opacity </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Fetches the requested opacity for this window. </p>
<p>See <a class="el" href="classGtk_1_1Window.html#a54af1fe27d57afc59744862a9ef922f1" title="Request the windowing system to make window partially transparent, with opacity 0...">set_opacity()</a>.</p>
<dl class="since_2_12"><dt><b><a class="el" href="since_2_12.html#_since_2_12000135">Since gtkmm 2.12:</a></b></dt><dd></dd></dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>The requested opacity for this window. </dd></dl>

</div>
</div>
<a class="anchor" id="ad3a063730ccbf0e4fa26f89e220f55e4"></a><!-- doxytag: member="Gtk::Window::get_position" ref="ad3a063730ccbf0e4fa26f89e220f55e4" args="(int &amp;root_x, int &amp;root_y) const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::Window::get_position </td>
          <td>(</td>
          <td class="paramtype">int &amp;&#160;</td>
          <td class="paramname"> <em>root_x</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int &amp;&#160;</td>
          <td class="paramname"> <em>root_y</em></td><td>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td><td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>This function returns the position you need to pass to <a class="el" href="classGtk_1_1Window.html#aabece927b3c31478f0d22a437d340b62" title="Asks the &lt;link linkend=&quot;gtk-X11-arch&quot;&gt;window manager&lt;/link&gt;...">move()</a> to keep <em>window</em> in its current position. </p>
<p>This means that the meaning of the returned value varies with window gravity. See <a class="el" href="classGtk_1_1Window.html#aabece927b3c31478f0d22a437d340b62" title="Asks the &lt;link linkend=&quot;gtk-X11-arch&quot;&gt;window manager&lt;/link&gt;...">move()</a> for more details.</p>
<p>If you haven't changed the window gravity, its gravity will be <a class="el" href="group__gdkmmEnums.html#gga1bb9235871d434d3c55411d8261b075eae18dc80dbede5c1e9b86c3184842f5cf">Gdk::GRAVITY_NORTH_WEST</a>. This means that <a class="el" href="classGtk_1_1Window.html#ad3a063730ccbf0e4fa26f89e220f55e4" title="This function returns the position you need to pass to move() to keep window in its...">get_position()</a> gets the position of the top-left corner of the window manager frame for the window. <a class="el" href="classGtk_1_1Window.html#aabece927b3c31478f0d22a437d340b62" title="Asks the &lt;link linkend=&quot;gtk-X11-arch&quot;&gt;window manager&lt;/link&gt;...">move()</a> sets the position of this same top-left corner.</p>
<p><a class="el" href="classGtk_1_1Window.html#ad3a063730ccbf0e4fa26f89e220f55e4" title="This function returns the position you need to pass to move() to keep window in its...">get_position()</a> is not 100% reliable because the X&#160;Window System does not specify a way to obtain the geometry of the decorations placed on a window by the window manager. Thus GTK+ is using a "best guess" that works with most window managers.</p>
<p>Moreover, nearly all window managers are historically broken with respect to their handling of window gravity. So moving a window to its current position as returned by <a class="el" href="classGtk_1_1Window.html#ad3a063730ccbf0e4fa26f89e220f55e4" title="This function returns the position you need to pass to move() to keep window in its...">get_position()</a> tends to result in moving the window slightly. Window managers are slowly getting better over time.</p>
<p>If a window has gravity <a class="el" href="group__gdkmmEnums.html#gga1bb9235871d434d3c55411d8261b075ea65b74e512a802210f8a1f65154e3ef3f">Gdk::GRAVITY_STATIC</a> the window manager frame is not relevant, and thus <a class="el" href="classGtk_1_1Window.html#ad3a063730ccbf0e4fa26f89e220f55e4" title="This function returns the position you need to pass to move() to keep window in its...">get_position()</a> will always produce accurate results. However you can't use static gravity to do things like place a window in a corner of the screen, because static gravity ignores the window manager decorations.</p>
<p>If you are saving and restoring your application's window positions, you should know that it's impossible for applications to do this without getting it somewhat wrong because applications do not have sufficient knowledge of window manager state. The Correct Mechanism is to support the session management protocol (see the "GnomeClient" object in the GNOME libraries for example) and allow the window manager to save your window sizes and positions. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>root_x</em>&#160;</td><td>Return location for X coordinate of gravity-determined reference point. </td></tr>
    <tr><td valign="top"></td><td valign="top"><em>root_y</em>&#160;</td><td>Return location for Y coordinate of gravity-determined reference point. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a08da78e575d5da70a28b33e5bdfef8f3"></a><!-- doxytag: member="Gtk::Window::get_resizable" ref="a08da78e575d5da70a28b33e5bdfef8f3" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool Gtk::Window::get_resizable </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Gets the value set by <a class="el" href="classGtk_1_1Window.html#a1ec816449fe941e5fe330bfa509eeb7f" title="Sets whether the user can resize a window.">set_resizable()</a>. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd><code>true</code> if the user can resize the window. </dd></dl>

</div>
</div>
<a class="anchor" id="a68ab33adf52b35794667839954a6460e"></a><!-- doxytag: member="Gtk::Window::get_role" ref="a68ab33adf52b35794667839954a6460e" 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_1ustring.html">Glib::ustring</a> Gtk::Window::get_role </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Returns the role of the window. </p>
<p>See <a class="el" href="classGtk_1_1Window.html#a0bc20c48120eb7ea4fc5e6170da050db" title="This function is only useful on X11, not with other GTK+ targets.">set_role()</a> for further explanation. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>The role of the window if set, or <code>0</code>. The returned is owned by the widget and must not be modified or freed. </dd></dl>

</div>
</div>
<a class="anchor" id="ad538e5c73635b06327ef18d3225f6e80"></a><!-- doxytag: member="Gtk::Window::get_screen" ref="ad538e5c73635b06327ef18d3225f6e80" 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>&lt;const <a class="el" href="classGdk_1_1Screen.html">Gdk::Screen</a>&gt; Gtk::Window::get_screen </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Returns the <a class="el" href="classGdk_1_1Screen.html" title="Object representing a physical screen Gdk::Screen objects are the GDK representation...">Gdk::Screen</a> associated with <em>window</em>. </p>
<dl class="since_2_2"><dt><b><a class="el" href="since_2_2.html#_since_2_2000128">Since gtkmm 2.2:</a></b></dt><dd></dd></dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>A <a class="el" href="classGdk_1_1Screen.html" title="Object representing a physical screen Gdk::Screen objects are the GDK representation...">Gdk::Screen</a>. </dd></dl>

<p>Reimplemented from <a class="el" href="classGtk_1_1Widget.html#a05ec9ee6b8d359cf572ad2d788e3ad87">Gtk::Widget</a>.</p>

</div>
</div>
<a class="anchor" id="a46de90efae27ecd474f3c7855ace3d3f"></a><!-- doxytag: member="Gtk::Window::get_screen" ref="a46de90efae27ecd474f3c7855ace3d3f" 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>&lt;<a class="el" href="classGdk_1_1Screen.html">Gdk::Screen</a>&gt; Gtk::Window::get_screen </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Returns the <a class="el" href="classGdk_1_1Screen.html" title="Object representing a physical screen Gdk::Screen objects are the GDK representation...">Gdk::Screen</a> associated with <em>window</em>. </p>
<dl class="since_2_2"><dt><b><a class="el" href="since_2_2.html#_since_2_2000127">Since gtkmm 2.2:</a></b></dt><dd></dd></dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>A <a class="el" href="classGdk_1_1Screen.html" title="Object representing a physical screen Gdk::Screen objects are the GDK representation...">Gdk::Screen</a>. </dd></dl>

<p>Reimplemented from <a class="el" href="classGtk_1_1Widget.html#a4bf25ceaa259bbe86fac0c9f54202c68">Gtk::Widget</a>.</p>

</div>
</div>
<a class="anchor" id="a34c05f04c75ef2acc745b585259632a2"></a><!-- doxytag: member="Gtk::Window::get_size" ref="a34c05f04c75ef2acc745b585259632a2" args="(int &amp;width, int &amp;height) const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::Window::get_size </td>
          <td>(</td>
          <td class="paramtype">int &amp;&#160;</td>
          <td class="paramname"> <em>width</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int &amp;&#160;</td>
          <td class="paramname"> <em>height</em></td><td>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td><td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Obtains the current size of <em>window</em>. </p>
<p>If <em>window</em> is not onscreen, it returns the size GTK+ will suggest to the &lt;link linkend="gtk-X11-arch"&gt;window manager&lt;/link&gt; for the initial window size (but this is not reliably the same as the size the window manager will actually select). The size obtained by <a class="el" href="classGtk_1_1Window.html#a34c05f04c75ef2acc745b585259632a2" title="Obtains the current size of window.">get_size()</a> is the last size received in a Gdk::EventConfigure, that is, GTK+ uses its locally-stored size, rather than querying the X server for the size. As a result, if you call <a class="el" href="classGtk_1_1Window.html#ad6d1fc27730d7f26402a1924c3495787" title="Resizes the window as if the user had done so, obeying geometry constraints.">resize()</a> then immediately call <a class="el" href="classGtk_1_1Window.html#a34c05f04c75ef2acc745b585259632a2" title="Obtains the current size of window.">get_size()</a>, the size won't have taken effect yet. After the window manager processes the resize request, GTK+ receives notification that the size has changed via a configure event, and the size of the window gets updated.</p>
<dl class="note"><dt><b>Note:</b></dt><dd>Nearly any use of this function creates a race condition, because the size of the window may change between the time that you get the size and the time that you perform some action assuming that size is the current size. To avoid race conditions, connect to "configure-event" on the window and adjust your size-dependent state to match the size delivered in the Gdk::EventConfigure.</dd>
<dd>
The returned size does &lt;emphasis&gt;not&lt;/emphasis&gt; include the size of the window manager decorations (aka the window frame or border). Those are not drawn by GTK+ and GTK+ has no reliable method of determining their size.</dd>
<dd>
If you are getting a window size in order to position the window onscreen, there may be a better way. The preferred way is to simply set the window's semantic type with <a class="el" href="classGtk_1_1Window.html#a61321cd59c3630d1b9f0c07781a6029b" title="By setting the type hint for the window, you allow the window manager to decorate...">set_type_hint()</a>, which allows the window manager to e.g. center dialogs. Also, if you set the transient parent of dialogs with <a class="el" href="classGtk_1_1Window.html#a4dc2db7c44546300a7843314cfa21bc8" title="Dialog windows should be set transient for the main application window they were...">set_transient_for()</a> window managers will often center the dialog over its parent window. It's much preferred to let the window manager handle these things rather than doing it yourself, because all apps will behave consistently and according to user prefs if the window manager handles it. Also, the window manager can take the size of the window decorations/border into account, while your application cannot.</dd></dl>
<p>In any case, if you insist on application-specified window positioning, there's &lt;emphasis&gt;still&lt;/emphasis&gt; a better way than doing it yourself - <a class="el" href="classGtk_1_1Window.html#ace2f64d36b5c1574073fc7c6e03df7a3" title="Sets a position constraint for this window.">set_position()</a> will frequently handle the details for you. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>width</em>&#160;</td><td>Return location for width. </td></tr>
    <tr><td valign="top"></td><td valign="top"><em>height</em>&#160;</td><td>Return location for height. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="ae6cfb5d9e6cbefd5de869c4b777e314e"></a><!-- doxytag: member="Gtk::Window::get_skip_pager_hint" ref="ae6cfb5d9e6cbefd5de869c4b777e314e" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool Gtk::Window::get_skip_pager_hint </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Gets the value set by <a class="el" href="classGtk_1_1Window.html#a4cdea59994940ba8edc41f17e31f31a9" title="Windows may set a hint asking the desktop environment not to display the window in...">set_skip_pager_hint()</a>. </p>
<dl class="since_2_2"><dt><b><a class="el" href="since_2_2.html#_since_2_2000125">Since gtkmm 2.2:</a></b></dt><dd></dd></dl>
<dl class="return"><dt><b>Returns:</b></dt><dd><code>true</code> if window shouldn't be in pager. </dd></dl>

</div>
</div>
<a class="anchor" id="ad291d4cf458b10577015f8a0efae2811"></a><!-- doxytag: member="Gtk::Window::get_skip_taskbar_hint" ref="ad291d4cf458b10577015f8a0efae2811" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool Gtk::Window::get_skip_taskbar_hint </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Gets the value set by <a class="el" href="classGtk_1_1Window.html#a0b88348a3d7c69b8930a0e2e11a63a88" title="Windows may set a hint asking the desktop environment not to display the window in...">set_skip_taskbar_hint()</a>. </p>
<dl class="since_2_2"><dt><b><a class="el" href="since_2_2.html#_since_2_2000123">Since gtkmm 2.2:</a></b></dt><dd></dd></dl>
<dl class="return"><dt><b>Returns:</b></dt><dd><code>true</code> if window shouldn't be in taskbar. </dd></dl>

</div>
</div>
<a class="anchor" id="aaf6a808dccae2fc202e2a3cb2d57210d"></a><!-- doxytag: member="Gtk::Window::get_title" ref="aaf6a808dccae2fc202e2a3cb2d57210d" 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_1ustring.html">Glib::ustring</a> Gtk::Window::get_title </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Retrieves the title of the window. </p>
<p>See <a class="el" href="classGtk_1_1Window.html#a10c072ee6b41d5eea0002d986aa03c07" title="Sets the title of the Gtk::Window.">set_title()</a>. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>The title of the window, or <code>0</code> if none has been set explicitely. The returned string is owned by the widget and must not be modified or freed. </dd></dl>

</div>
</div>
<a class="anchor" id="a0ccef655a1467db95eeb3c5257135f5b"></a><!-- doxytag: member="Gtk::Window::get_transient_for" ref="a0ccef655a1467db95eeb3c5257135f5b" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="classGtk_1_1Window.html">Window</a>* Gtk::Window::get_transient_for </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Fetches the transient parent for this window. </p>
<p>See <a class="el" href="classGtk_1_1Window.html#a4dc2db7c44546300a7843314cfa21bc8" title="Dialog windows should be set transient for the main application window they were...">set_transient_for()</a>. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>The transient parent for this window, or <code>0</code> if no transient parent has been set. </dd></dl>

</div>
</div>
<a class="anchor" id="a3188cb795d9ad419d69cf24f55d1381b"></a><!-- doxytag: member="Gtk::Window::get_transient_for" ref="a3188cb795d9ad419d69cf24f55d1381b" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classGtk_1_1Window.html">Window</a>* Gtk::Window::get_transient_for </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Fetches the transient parent for this window. </p>
<p>See <a class="el" href="classGtk_1_1Window.html#a4dc2db7c44546300a7843314cfa21bc8" title="Dialog windows should be set transient for the main application window they were...">set_transient_for()</a>. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>The transient parent for this window, or <code>0</code> if no transient parent has been set. </dd></dl>

</div>
</div>
<a class="anchor" id="a177088eca35e1f270543941c6855b680"></a><!-- doxytag: member="Gtk::Window::get_type_hint" ref="a177088eca35e1f270543941c6855b680" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="group__gdkmmEnums.html#ga1f75a8db0f289997ac16bba0891776c9">Gdk::WindowTypeHint</a> Gtk::Window::get_type_hint </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Gets the type hint for this window. </p>
<p>See <a class="el" href="classGtk_1_1Window.html#a61321cd59c3630d1b9f0c07781a6029b" title="By setting the type hint for the window, you allow the window manager to decorate...">set_type_hint()</a>. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>The type hint for <em>window</em>. </dd></dl>

</div>
</div>
<a class="anchor" id="aa90d7ada4335bf2f35461696ef2297d8"></a><!-- doxytag: member="Gtk::Window::get_urgency_hint" ref="aa90d7ada4335bf2f35461696ef2297d8" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool Gtk::Window::get_urgency_hint </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Gets the value set by <a class="el" href="classGtk_1_1Window.html#afd7971d45db2936c2102faaa57e55279" title="Windows may set a hint asking the desktop environment to draw the users attention...">set_urgency_hint()</a>. </p>
<dl class="since_2_8"><dt><b><a class="el" href="since_2_8.html#_since_2_8000053">Since gtkmm 2.8:</a></b></dt><dd></dd></dl>
<dl class="return"><dt><b>Returns:</b></dt><dd><code>true</code> if window is urgent. </dd></dl>

</div>
</div>
<a class="anchor" id="a4acaad013ade234eb2b83d636f14a998"></a><!-- doxytag: member="Gtk::Window::get_window_type" ref="a4acaad013ade234eb2b83d636f14a998" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="group__gtkmmEnums.html#ga8c724168aabf37953fbb194b35ad250f">WindowType</a> Gtk::Window::get_window_type </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Gets the type of the window. </p>
<p>See <a class="el" href="group__gtkmmEnums.html#ga8c724168aabf37953fbb194b35ad250f">Gtk::WindowType</a>.</p>
<dl class="since_2_20"><dt><b><a class="el" href="since_2_20.html#_since_2_20000094">Since gtkmm 2.20:</a></b></dt><dd></dd></dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>The type of the window. </dd></dl>

</div>
</div>
<a class="anchor" id="afe314a1e65505be026688060dc98ad3a"></a><!-- doxytag: member="Gtk::Window::gobj" ref="afe314a1e65505be026688060dc98ad3a" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">const GtkWindow* Gtk::Window::gobj </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td> const<code> [inline]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Provides access to the underlying C GtkObject. </p>

<p>Reimplemented from <a class="el" href="classGtk_1_1Bin.html#ad6db11cd388872c6ee36aee075478374">Gtk::Bin</a>.</p>

<p>Reimplemented in <a class="el" href="classGtk_1_1AboutDialog.html#a72c054536026167d3c2b5fbb5773faff">Gtk::AboutDialog</a>, <a class="el" href="classGtk_1_1Assistant.html#ae800c8149e8e6b3daa32f61a5862ffab">Gtk::Assistant</a>, <a class="el" href="classGtk_1_1ColorSelectionDialog.html#af9859a5abd76a8f07cb7a7b151cec160">Gtk::ColorSelectionDialog</a>, <a class="el" href="classGtk_1_1Dialog.html#a534ffd24e55400a26aef733a7f588856">Gtk::Dialog</a>, <a class="el" href="classGtk_1_1FileChooserDialog.html#a0e990ba2ed1af83d23126725aa0fa6bf">Gtk::FileChooserDialog</a>, <a class="el" href="classGtk_1_1FileSelection.html#ac859d39ad6a48392c7b7ebba019c71be">Gtk::FileSelection</a>, <a class="el" href="classGtk_1_1FontSelectionDialog.html#ab036ff001acbc16468acf1c7009026fc">Gtk::FontSelectionDialog</a>, <a class="el" href="classGtk_1_1MessageDialog.html#a53ab4665373026c6c78782520ab3596d">Gtk::MessageDialog</a>, <a class="el" href="classGtk_1_1OffscreenWindow.html#a46ea5cc9e5d95d2ee74a42552cfd2f00">Gtk::OffscreenWindow</a>, <a class="el" href="classGtk_1_1Plug.html#a1763387a245ac48492fee4cb50983edc">Gtk::Plug</a>, <a class="el" href="classGtk_1_1RecentChooserDialog.html#a58dd5a2e883b2b4888a78257af12deac">Gtk::RecentChooserDialog</a>, <a class="el" href="classGtk_1_1PageSetupUnixDialog.html#aee73bd66a347d42840347afd1a747e0b">Gtk::PageSetupUnixDialog</a>, <a class="el" href="classGtk_1_1PrintUnixDialog.html#a6f350b2c32507e663c640a4217068155">Gtk::PrintUnixDialog</a>, and <a class="el" href="classGtk_1_1InputDialog.html#afc77a70cbff7baced0095b03ea1b7ee0">Gtk::InputDialog</a>.</p>

</div>
</div>
<a class="anchor" id="a467102527550b51eb4036390caeedb5c"></a><!-- doxytag: member="Gtk::Window::gobj" ref="a467102527550b51eb4036390caeedb5c" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">GtkWindow* Gtk::Window::gobj </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td><code> [inline]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Provides access to the underlying C GtkObject. </p>

<p>Reimplemented from <a class="el" href="classGtk_1_1Bin.html#a6fef1f41c67a588dd33087ea479e0ad1">Gtk::Bin</a>.</p>

<p>Reimplemented in <a class="el" href="classGtk_1_1AboutDialog.html#a154a7b18752a8770891c424aee419763">Gtk::AboutDialog</a>, <a class="el" href="classGtk_1_1Assistant.html#a78d17b7343a51083a6b1b9e02d32b730">Gtk::Assistant</a>, <a class="el" href="classGtk_1_1ColorSelectionDialog.html#a45caeb0d10a9100ddebd70beae235f89">Gtk::ColorSelectionDialog</a>, <a class="el" href="classGtk_1_1Dialog.html#aa3e8f3bdac15fac61128dc47c22ba4cd">Gtk::Dialog</a>, <a class="el" href="classGtk_1_1FileChooserDialog.html#a8bcb702bdc16043f42481c8cebccae55">Gtk::FileChooserDialog</a>, <a class="el" href="classGtk_1_1FileSelection.html#a03ebec3a61eaf4ef998efd9a4797a2cf">Gtk::FileSelection</a>, <a class="el" href="classGtk_1_1FontSelectionDialog.html#ad5b39fcf3ce8f770bc2987267f46a12b">Gtk::FontSelectionDialog</a>, <a class="el" href="classGtk_1_1MessageDialog.html#a6019fc42bcc8e891dfbcc6565939ec8e">Gtk::MessageDialog</a>, <a class="el" href="classGtk_1_1OffscreenWindow.html#aae1b74de2df739a8e7450c4f822ead9c">Gtk::OffscreenWindow</a>, <a class="el" href="classGtk_1_1Plug.html#ac215b1d0d84d6783f9d737748cbc533b">Gtk::Plug</a>, <a class="el" href="classGtk_1_1RecentChooserDialog.html#aa9037355630ec732629caf279a3012cf">Gtk::RecentChooserDialog</a>, <a class="el" href="classGtk_1_1PageSetupUnixDialog.html#a037e9e6f945a24d31cb2b16605eb1aab">Gtk::PageSetupUnixDialog</a>, <a class="el" href="classGtk_1_1PrintUnixDialog.html#ae8d543407e309cd6e7e67cd0aa2f82b0">Gtk::PrintUnixDialog</a>, and <a class="el" href="classGtk_1_1InputDialog.html#a207e658e5dcd65c726fd626368b103c9">Gtk::InputDialog</a>.</p>

</div>
</div>
<a class="anchor" id="a4fc7d8adb9059f51d4b9216b755e30e2"></a><!-- doxytag: member="Gtk::Window::iconify" ref="a4fc7d8adb9059f51d4b9216b755e30e2" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::Window::iconify </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Asks to iconify (i.e. minimize) the specified <em>window</em>. </p>
<p>Note that you shouldn't assume the window is definitely iconified afterward, because other entities (e.g. the user or &lt;link linkend="gtk-X11-arch"&gt;window manager&lt;/link&gt;) could deiconify it again, or there may not be a window manager in which case iconification isn't possible, etc. But normally the window will end up iconified. Just don't write code that crashes if not.</p>
<p>It's permitted to call this function before showing a window, in which case the window will be iconified before it ever appears onscreen.</p>
<p>You can track iconification via the "window-state-event" signal on <a class="el" href="classGtk_1_1Widget.html" title="Abstract Widget (Base class for all widgets).">Gtk::Widget</a>. </p>

</div>
</div>
<a class="anchor" id="a24dc3ad6da6c8342ba5ca0fd87d2340e"></a><!-- doxytag: member="Gtk::Window::is_popup" ref="a24dc3ad6da6c8342ba5ca0fd87d2340e" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool Gtk::Window::is_popup </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">
<dl class="deprecated"><dt><b><a class="el" href="deprecated.html#_deprecated000109">Deprecated:</a></b></dt><dd>: Use <a class="el" href="classGtk_1_1Window.html#a4acaad013ade234eb2b83d636f14a998" title="Gets the type of the window.">get_window_type()</a>. </dd></dl>

</div>
</div>
<a class="anchor" id="a932b1c81b9c0559a60ba2b8c2b1ce179"></a><!-- doxytag: member="Gtk::Window::is_toplevel" ref="a932b1c81b9c0559a60ba2b8c2b1ce179" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool Gtk::Window::is_toplevel </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">
<dl class="deprecated"><dt><b><a class="el" href="deprecated.html#_deprecated000108">Deprecated:</a></b></dt><dd>Use <a class="el" href="classGtk_1_1Widget.html#a06d954e357299ff48ed2ebe157dbe777">Gtk::Widget::is_toplevel()</a>. </dd></dl>

<p>Reimplemented from <a class="el" href="classGtk_1_1Widget.html#a06d954e357299ff48ed2ebe157dbe777">Gtk::Widget</a>.</p>

</div>
</div>
<a class="anchor" id="adf14c5fd11660caf8c92db309d3620b7"></a><!-- doxytag: member="Gtk::Window::list_toplevels" ref="adf14c5fd11660caf8c92db309d3620b7" 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>&lt;<a class="el" href="classGtk_1_1Window.html">Window</a>*&gt; Gtk::Window::list_toplevels </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td><code> [static]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Returns a list of all existing toplevel windows. </p>
<p>The widgets in the list are not individually referenced. If you want to iterate through the list and perform actions involving callbacks that might destroy the widgets, you &lt;emphasis&gt;must&lt;/emphasis&gt; call &lt;literal&gt;g_list_foreach (result, (GFunc)g_object_ref, <code>0</code>)&lt;/literal&gt; first, and then unref all the widgets afterwards. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>List of toplevel widgets. </dd></dl>

</div>
</div>
<a class="anchor" id="a23f2755248ee7aaa39802ccb37bba618"></a><!-- doxytag: member="Gtk::Window::maximize" ref="a23f2755248ee7aaa39802ccb37bba618" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::Window::maximize </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Asks to maximize <em>window</em>, so that it becomes full-screen. </p>
<p>Note that you shouldn't assume the window is definitely maximized afterward, because other entities (e.g. the user or &lt;link linkend="gtk-X11-arch"&gt;window manager&lt;/link&gt;) could unmaximize it again, and not all window managers support maximization. But normally the window will end up maximized. Just don't write code that crashes if not.</p>
<p>It's permitted to call this function before showing a window, in which case the window will be maximized when it appears onscreen initially.</p>
<p>You can track maximization via the "window-state-event" signal on <a class="el" href="classGtk_1_1Widget.html" title="Abstract Widget (Base class for all widgets).">Gtk::Widget</a>. </p>

</div>
</div>
<a class="anchor" id="abfee73f9bcceba54007644b2f9d49fa5"></a><!-- doxytag: member="Gtk::Window::mnemonic_activate" ref="abfee73f9bcceba54007644b2f9d49fa5" args="(guint keyval, Gdk::ModifierType modifier)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool Gtk::Window::mnemonic_activate </td>
          <td>(</td>
          <td class="paramtype">guint&#160;</td>
          <td class="paramname"> <em>keyval</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="group__gdkmmEnums.html#ga734c2979005c87dbe51223a0128cdd97">Gdk::ModifierType</a>&#160;</td>
          <td class="paramname"> <em>modifier</em></td><td>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td><td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Activates the targets associated with the mnemonic. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>keyval</em>&#160;</td><td>The mnemonic. </td></tr>
    <tr><td valign="top"></td><td valign="top"><em>modifier</em>&#160;</td><td>The modifiers. </td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd><code>true</code> if the activation is done. </dd></dl>

</div>
</div>
<a class="anchor" id="aabece927b3c31478f0d22a437d340b62"></a><!-- doxytag: member="Gtk::Window::move" ref="aabece927b3c31478f0d22a437d340b62" args="(int x, int y)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::Window::move </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"> <em>x</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"> <em>y</em></td><td>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td><td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Asks the &lt;link linkend="gtk-X11-arch"&gt;window manager&lt;/link&gt; to move <em>window</em> to the given position. </p>
<p>Window managers are free to ignore this; most window managers ignore requests for initial window positions (instead using a user-defined placement algorithm) and honor requests after the window has already been shown.</p>
<dl class="note"><dt><b>Note:</b></dt><dd>the position is the position of the gravity-determined reference point for the window. The gravity determines two things: first, the location of the reference point in root window coordinates; and second, which point on the window is positioned at the reference point.</dd></dl>
<p>By default the gravity is <a class="el" href="group__gdkmmEnums.html#gga1bb9235871d434d3c55411d8261b075eae18dc80dbede5c1e9b86c3184842f5cf">Gdk::GRAVITY_NORTH_WEST</a>, so the reference point is simply the <em>x</em>, <em>y</em> supplied to <a class="el" href="classGtk_1_1Window.html#aabece927b3c31478f0d22a437d340b62" title="Asks the &lt;link linkend=&quot;gtk-X11-arch&quot;&gt;window manager&lt;/link&gt;...">move()</a>. The top-left corner of the window decorations (aka window frame or border) will be placed at <em>x</em>, <em>y</em>. Therefore, to position a window at the top left of the screen, you want to use the default gravity (which is <a class="el" href="group__gdkmmEnums.html#gga1bb9235871d434d3c55411d8261b075eae18dc80dbede5c1e9b86c3184842f5cf">Gdk::GRAVITY_NORTH_WEST</a>) and move the window to 0,0.</p>
<p>To position a window at the bottom right corner of the screen, you would set <a class="el" href="group__gdkmmEnums.html#gga1bb9235871d434d3c55411d8261b075eaa0a7d8aee2f30bae7c87b79c87e6f2f9">Gdk::GRAVITY_SOUTH_EAST</a>, which means that the reference point is at <em>x</em> + the window width and <em>y</em> + the window height, and the bottom-right corner of the window border will be placed at that reference point. So, to place a window in the bottom right corner you would first set gravity to south east, then write: &lt;literal&gt;gtk_window_move (window, gdk_screen_width() - window_width, gdk_screen_height() - window_height)&lt;/literal&gt; (note that this example does not take multi-head scenarios into account).</p>
<p>The Extended <a class="el" href="classGtk_1_1Window.html" title="Toplevel Window This represents all widgets which are physical windows controlled...">Window</a> Manager Hints specification at &lt;ulink url="http://www.freedesktop.org/Standards/wm-spec"&gt; <a href="http://www.freedesktop.org/Standards/wm-spec">http://www.freedesktop.org/Standards/wm-spec</a>&lt;/ulink&gt; has a nice table of gravities in the "implementation notes" section.</p>
<p>The <a class="el" href="classGtk_1_1Window.html#ad3a063730ccbf0e4fa26f89e220f55e4" title="This function returns the position you need to pass to move() to keep window in its...">get_position()</a> documentation may also be relevant. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>x</em>&#160;</td><td>X coordinate to move window to. </td></tr>
    <tr><td valign="top"></td><td valign="top"><em>y</em>&#160;</td><td>Y coordinate to move window to. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="ae581f3c73875fa8453a276b55867b613"></a><!-- doxytag: member="Gtk::Window::on_frame_event" ref="ae581f3c73875fa8453a276b55867b613" args="(GdkEvent *event)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">virtual bool Gtk::Window::on_frame_event </td>
          <td>(</td>
          <td class="paramtype">GdkEvent *&#160;</td>
          <td class="paramname"> <em>event</em></td>
          <td>&#160;)&#160;</td>
          <td><code> [protected, virtual]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

</div>
</div>
<a class="anchor" id="af47d9ef9fb72173016def01ecb60715c"></a><!-- doxytag: member="Gtk::Window::on_set_focus" ref="af47d9ef9fb72173016def01ecb60715c" args="(Widget *focus)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">virtual void Gtk::Window::on_set_focus </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classGtk_1_1Widget.html">Widget</a>*&#160;</td>
          <td class="paramname"> <em>focus</em></td>
          <td>&#160;)&#160;</td>
          <td><code> [protected, virtual]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

</div>
</div>
<a class="anchor" id="ad6b20c1940fefe7da528171a34ecd416"></a><!-- doxytag: member="Gtk::Window::parse_geometry" ref="ad6b20c1940fefe7da528171a34ecd416" args="(const Glib::ustring &amp;geometry)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool Gtk::Window::parse_geometry </td>
          <td>(</td>
          <td class="paramtype">const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> &amp;&#160;</td>
          <td class="paramname"> <em>geometry</em></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Parses a standard X&#160;Window System geometry string - see the manual page for X (type 'man X') for details on this. </p>
<p><a class="el" href="classGtk_1_1Window.html#ad6b20c1940fefe7da528171a34ecd416" title="Parses a standard X&#160;Window System geometry string - see the manual page for...">parse_geometry()</a> does work on all GTK+ ports including Win32 but is primarily intended for an X environment.</p>
<p>If either a size or a position can be extracted from the geometry string, <a class="el" href="classGtk_1_1Window.html#ad6b20c1940fefe7da528171a34ecd416" title="Parses a standard X&#160;Window System geometry string - see the manual page for...">parse_geometry()</a> returns <code>true</code> and calls <a class="el" href="classGtk_1_1Window.html#ac7bddf34f109fd2ed006ff95f1ae881c" title="Sets the default size of a window.">set_default_size()</a> and/or <a class="el" href="classGtk_1_1Window.html#aabece927b3c31478f0d22a437d340b62" title="Asks the &lt;link linkend=&quot;gtk-X11-arch&quot;&gt;window manager&lt;/link&gt;...">move()</a> to resize/move the window.</p>
<p>If <a class="el" href="classGtk_1_1Window.html#ad6b20c1940fefe7da528171a34ecd416" title="Parses a standard X&#160;Window System geometry string - see the manual page for...">parse_geometry()</a> returns <code>true</code>, it will also set the <a class="el" href="group__gdkmmEnums.html#gga7dd31e80216f3452a1e080bd22fcfd9ca12e48d5592a043d48a33578c7c128e73">Gdk::HINT_USER_POS</a> and/or <a class="el" href="group__gdkmmEnums.html#gga7dd31e80216f3452a1e080bd22fcfd9ca187b249f8ec2c51120e9136c1eeca84a">Gdk::HINT_USER_SIZE</a> hints indicating to the window manager that the size/position of the window was user-specified. This causes most window managers to honor the geometry.</p>
<p>Note that for <a class="el" href="classGtk_1_1Window.html#ad6b20c1940fefe7da528171a34ecd416" title="Parses a standard X&#160;Window System geometry string - see the manual page for...">parse_geometry()</a> to work as expected, it has to be called when the window has its "final" size, i.e. after calling <a class="el" href="classGtk_1_1Widget.html#a4fab2509c3afe1952a408494561295c0" title="Recursively shows a widget, and any child widgets (if the widget is a container)...">Gtk::Widget::show_all()</a> on the contents and <a class="el" href="classGtk_1_1Window.html#a4564d6044ee0c89e02244559b6b5f916" title="This function sets up hints about how a window can be resized by the user.">set_geometry_hints()</a> on the window. |[ include &lt;gtk/gtk.h&gt;</p>
<p>static void fill_with_content (GtkWidget *vbox) { / * fill with content... * / }</p>
<p>int main (int argc, char *argv[]) { GtkWidget *window, *vbox; GdkGeometry size_hints = { 100, 50, 0, 0, 100, 50, 10, 10, 0.0, 0.0, GDK_GRAVITY_NORTH_WEST };</p>
<p>gtk_init (&amp;argc, &amp;argv);</p>
<p>window = gtk_window_new (GTK_WINDOW_TOPLEVEL); vbox = gtk_vbox_new (<code>false</code>, 0);</p>
<p>gtk_container_add (GTK_CONTAINER (window), vbox); fill_with_content (vbox); gtk_widget_show_all (vbox);</p>
<p>gtk_window_set_geometry_hints (GTK_WINDOW (window), window, &amp;size_hints, GDK_HINT_MIN_SIZE | GDK_HINT_BASE_SIZE | GDK_HINT_RESIZE_INC);</p>
<p>if (argc &gt; 1) { if (!gtk_window_parse_geometry (GTK_WINDOW (window), argv[1])) fprintf (stderr, "Failed to parse '%s'&lt;tt&gt;\\n&lt;/tt&gt;", argv[1]); }</p>
<p>gtk_widget_show_all (window); gtk_main();</p>
<p>return 0; } ]| </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>geometry</em>&#160;</td><td>Geometry string. </td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd><code>true</code> if string was parsed successfully. </dd></dl>

</div>
</div>
<a class="anchor" id="a0724ad6e36d55fd1182e2481fb52cd04"></a><!-- doxytag: member="Gtk::Window::present" ref="a0724ad6e36d55fd1182e2481fb52cd04" args="(guint32 timestamp)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::Window::present </td>
          <td>(</td>
          <td class="paramtype">guint32&#160;</td>
          <td class="paramname"> <em>timestamp</em></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Presents a window to the user in response to a user interaction. </p>
<p>If you need to present a window without a timestamp, use <a class="el" href="classGtk_1_1Window.html#a7d848c59fc1a42f4a296461515c0476e" title="Presents a window to the user.">present()</a>. See <a class="el" href="classGtk_1_1Window.html#a7d848c59fc1a42f4a296461515c0476e" title="Presents a window to the user.">present()</a> for details.</p>
<dl class="since_2_8"><dt><b><a class="el" href="since_2_8.html#_since_2_8000054">Since gtkmm 2.8:</a></b></dt><dd></dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>timestamp</em>&#160;</td><td>The timestamp of the user interaction (typically a button or key press event) which triggered this call. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a7d848c59fc1a42f4a296461515c0476e"></a><!-- doxytag: member="Gtk::Window::present" ref="a7d848c59fc1a42f4a296461515c0476e" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::Window::present </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Presents a window to the user. </p>
<p>This may mean raising the window in the stacking order, deiconifying it, moving it to the current desktop, and/or giving it the keyboard focus, possibly dependent on the user's platform, window manager, and preferences.</p>
<p>If <em>window</em> is hidden, this function calls <a class="el" href="classGtk_1_1Widget.html#aa791d86a0bb3658e378e81d731dd0121" title="Flags a widget to be displayed.">Gtk::Widget::show()</a> as well.</p>
<p>This function should be used when the user tries to open a window that's already open. Say for example the preferences dialog is currently open, and the user chooses Preferences from the menu a second time; use <a class="el" href="classGtk_1_1Window.html#a7d848c59fc1a42f4a296461515c0476e" title="Presents a window to the user.">present()</a> to move the already-open dialog where the user can see it.</p>
<p>If you are calling this function in response to a user interaction, it is preferable to use present_with_time(). </p>

</div>
</div>
<a class="anchor" id="a74012e73681ac9130467a935a95035b6"></a><!-- doxytag: member="Gtk::Window::property_accept_focus" ref="a74012e73681ac9130467a935a95035b6" 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_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>&lt;bool&gt; Gtk::Window::property_accept_focus </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>TRUE if the window should receive the input focus. </p>
<p>You rarely need to use properties because there are get_ and set_ methods for almost all of them. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>A PropertyProxy that allows you to get or set the property of the value, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="acf4389d3dff0504589729efd90629348"></a><!-- doxytag: member="Gtk::Window::property_accept_focus" ref="acf4389d3dff0504589729efd90629348" 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_1PropertyProxy.html">Glib::PropertyProxy</a>&lt;bool&gt; Gtk::Window::property_accept_focus </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>TRUE if the window should receive the input focus. </p>
<p>You rarely need to use properties because there are get_ and set_ methods for almost all of them. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>A PropertyProxy that allows you to get or set the property of the value, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="a86198253f94f33ee6f1884e95394359e"></a><!-- doxytag: member="Gtk::Window::property_allow_grow" ref="a86198253f94f33ee6f1884e95394359e" 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_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>&lt;bool&gt; Gtk::Window::property_allow_grow </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>If TRUE. </p>
<p>You rarely need to use properties because there are get_ and set_ methods for almost all of them. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>A PropertyProxy that allows you to get or set the property of the value, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="a6527a9af67bbf3e3fe5db5d1fe89bdee"></a><!-- doxytag: member="Gtk::Window::property_allow_grow" ref="a6527a9af67bbf3e3fe5db5d1fe89bdee" 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_1PropertyProxy.html">Glib::PropertyProxy</a>&lt;bool&gt; Gtk::Window::property_allow_grow </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>If TRUE. </p>
<p>You rarely need to use properties because there are get_ and set_ methods for almost all of them. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>A PropertyProxy that allows you to get or set the property of the value, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="a4fc0a2fc058a0c6379fd4757d770ae3b"></a><!-- doxytag: member="Gtk::Window::property_allow_shrink" ref="a4fc0a2fc058a0c6379fd4757d770ae3b" 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_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>&lt;bool&gt; Gtk::Window::property_allow_shrink </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>If TRUE. </p>
<p>You rarely need to use properties because there are get_ and set_ methods for almost all of them. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>A PropertyProxy that allows you to get or set the property of the value, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="aaf704b1fb7e89b39e56bfc9b9aebb801"></a><!-- doxytag: member="Gtk::Window::property_allow_shrink" ref="aaf704b1fb7e89b39e56bfc9b9aebb801" 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_1PropertyProxy.html">Glib::PropertyProxy</a>&lt;bool&gt; Gtk::Window::property_allow_shrink </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>If TRUE. </p>
<p>You rarely need to use properties because there are get_ and set_ methods for almost all of them. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>A PropertyProxy that allows you to get or set the property of the value, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="a4545ba700399b0b507456db8f8f55bf8"></a><!-- doxytag: member="Gtk::Window::property_decorated" ref="a4545ba700399b0b507456db8f8f55bf8" 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_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>&lt;bool&gt; Gtk::Window::property_decorated </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Whether the window should be decorated by the window manager. </p>
<p>You rarely need to use properties because there are get_ and set_ methods for almost all of them. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>A PropertyProxy that allows you to get or set the property of the value, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="a775c457e2e68c2557c3dc950e8cb3655"></a><!-- doxytag: member="Gtk::Window::property_decorated" ref="a775c457e2e68c2557c3dc950e8cb3655" 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_1PropertyProxy.html">Glib::PropertyProxy</a>&lt;bool&gt; Gtk::Window::property_decorated </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Whether the window should be decorated by the window manager. </p>
<p>You rarely need to use properties because there are get_ and set_ methods for almost all of them. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>A PropertyProxy that allows you to get or set the property of the value, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="ac2f8c6e096e8b03ab5afa0e64d8a41ed"></a><!-- doxytag: member="Gtk::Window::property_default_height" ref="ac2f8c6e096e8b03ab5afa0e64d8a41ed" 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_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>&lt;int&gt; Gtk::Window::property_default_height </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>The default height of the window. </p>
<p>You rarely need to use properties because there are get_ and set_ methods for almost all of them. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>A PropertyProxy that allows you to get or set the property of the value, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="a0f5692aec484e844d7001745340a7551"></a><!-- doxytag: member="Gtk::Window::property_default_height" ref="a0f5692aec484e844d7001745340a7551" 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_1PropertyProxy.html">Glib::PropertyProxy</a>&lt;int&gt; Gtk::Window::property_default_height </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>The default height of the window. </p>
<p>You rarely need to use properties because there are get_ and set_ methods for almost all of them. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>A PropertyProxy that allows you to get or set the property of the value, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="a2ef747502cb50c3922c20623a522c3d1"></a><!-- doxytag: member="Gtk::Window::property_default_width" ref="a2ef747502cb50c3922c20623a522c3d1" 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_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>&lt;int&gt; Gtk::Window::property_default_width </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>The default width of the window. </p>
<p>You rarely need to use properties because there are get_ and set_ methods for almost all of them. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>A PropertyProxy that allows you to get or set the property of the value, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="a9fe5bc666f4b6ba448574f01172e7e37"></a><!-- doxytag: member="Gtk::Window::property_default_width" ref="a9fe5bc666f4b6ba448574f01172e7e37" 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_1PropertyProxy.html">Glib::PropertyProxy</a>&lt;int&gt; Gtk::Window::property_default_width </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>The default width of the window. </p>
<p>You rarely need to use properties because there are get_ and set_ methods for almost all of them. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>A PropertyProxy that allows you to get or set the property of the value, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="af5ab3a584496d11c69c39902d7fa56f1"></a><!-- doxytag: member="Gtk::Window::property_deletable" ref="af5ab3a584496d11c69c39902d7fa56f1" 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_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>&lt;bool&gt; Gtk::Window::property_deletable </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Whether the window frame should have a close button. </p>
<p>You rarely need to use properties because there are get_ and set_ methods for almost all of them. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>A PropertyProxy that allows you to get or set the property of the value, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="af2695ad694e3abf3c45cdaf128ae4ea6"></a><!-- doxytag: member="Gtk::Window::property_deletable" ref="af2695ad694e3abf3c45cdaf128ae4ea6" 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_1PropertyProxy.html">Glib::PropertyProxy</a>&lt;bool&gt; Gtk::Window::property_deletable </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Whether the window frame should have a close button. </p>
<p>You rarely need to use properties because there are get_ and set_ methods for almost all of them. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>A PropertyProxy that allows you to get or set the property of the value, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="a4dfa216fe285f06666e3f58d95065cdb"></a><!-- doxytag: member="Gtk::Window::property_destroy_with_parent" ref="a4dfa216fe285f06666e3f58d95065cdb" 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_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>&lt;bool&gt; Gtk::Window::property_destroy_with_parent </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>If this window should be destroyed when the parent is destroyed. </p>
<p>You rarely need to use properties because there are get_ and set_ methods for almost all of them. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>A PropertyProxy that allows you to get or set the property of the value, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="a13fb6ded59f3835aa904e2fcb6ce7122"></a><!-- doxytag: member="Gtk::Window::property_destroy_with_parent" ref="a13fb6ded59f3835aa904e2fcb6ce7122" 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_1PropertyProxy.html">Glib::PropertyProxy</a>&lt;bool&gt; Gtk::Window::property_destroy_with_parent </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>If this window should be destroyed when the parent is destroyed. </p>
<p>You rarely need to use properties because there are get_ and set_ methods for almost all of them. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>A PropertyProxy that allows you to get or set the property of the value, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="a9cac16e0756f5b36bafa28122a750582"></a><!-- doxytag: member="Gtk::Window::property_focus_on_map" ref="a9cac16e0756f5b36bafa28122a750582" 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_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>&lt;bool&gt; Gtk::Window::property_focus_on_map </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>TRUE if the window should receive the input focus when mapped. </p>
<p>You rarely need to use properties because there are get_ and set_ methods for almost all of them. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>A PropertyProxy that allows you to get or set the property of the value, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="a62e130a804f79f076afe684d65d2dbaf"></a><!-- doxytag: member="Gtk::Window::property_focus_on_map" ref="a62e130a804f79f076afe684d65d2dbaf" 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_1PropertyProxy.html">Glib::PropertyProxy</a>&lt;bool&gt; Gtk::Window::property_focus_on_map </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>TRUE if the window should receive the input focus when mapped. </p>
<p>You rarely need to use properties because there are get_ and set_ methods for almost all of them. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>A PropertyProxy that allows you to get or set the property of the value, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="a54ec5112a4d5ed6bbadccac58e7677de"></a><!-- doxytag: member="Gtk::Window::property_gravity" ref="a54ec5112a4d5ed6bbadccac58e7677de" 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_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>&lt;<a class="el" href="group__gdkmmEnums.html#ga1bb9235871d434d3c55411d8261b075e">Gdk::Gravity</a>&gt; Gtk::Window::property_gravity </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>The window gravity of the window. </p>
<p>You rarely need to use properties because there are get_ and set_ methods for almost all of them. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>A PropertyProxy that allows you to get or set the property of the value, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="a0b401df88f3c1d4a7ebb7f2861601647"></a><!-- doxytag: member="Gtk::Window::property_gravity" ref="a0b401df88f3c1d4a7ebb7f2861601647" 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_1PropertyProxy.html">Glib::PropertyProxy</a>&lt;<a class="el" href="group__gdkmmEnums.html#ga1bb9235871d434d3c55411d8261b075e">Gdk::Gravity</a>&gt; Gtk::Window::property_gravity </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>The window gravity of the window. </p>
<p>You rarely need to use properties because there are get_ and set_ methods for almost all of them. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>A PropertyProxy that allows you to get or set the property of the value, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="a9a75b1ea13fde63bef46088572dd604c"></a><!-- doxytag: member="Gtk::Window::property_has_toplevel_focus" ref="a9a75b1ea13fde63bef46088572dd604c" 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_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>&lt;bool&gt; Gtk::Window::property_has_toplevel_focus </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Whether the input focus is within this GtkWindow. </p>
<p>You rarely need to use properties because there are get_ and set_ methods for almost all of them. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>A PropertyProxy that allows you to get or set the property of the value, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="a27b6b9ec07d45a7901f59ecb41df3549"></a><!-- doxytag: member="Gtk::Window::property_icon" ref="a27b6b9ec07d45a7901f59ecb41df3549" 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_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>&lt; <a 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>&lt;<a class="el" href="classGdk_1_1Pixbuf.html">Gdk::Pixbuf</a>&gt; &gt; Gtk::Window::property_icon </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Icon for this window. </p>
<p>You rarely need to use properties because there are get_ and set_ methods for almost all of them. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>A PropertyProxy that allows you to get or set the property of the value, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="a6f815ca5a742d06b5f636d2db481774c"></a><!-- doxytag: member="Gtk::Window::property_icon" ref="a6f815ca5a742d06b5f636d2db481774c" 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_1PropertyProxy.html">Glib::PropertyProxy</a>&lt; <a 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>&lt;<a class="el" href="classGdk_1_1Pixbuf.html">Gdk::Pixbuf</a>&gt; &gt; Gtk::Window::property_icon </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Icon for this window. </p>
<p>You rarely need to use properties because there are get_ and set_ methods for almost all of them. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>A PropertyProxy that allows you to get or set the property of the value, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="a4b65bba4e01f68806043cbd57fc039f5"></a><!-- doxytag: member="Gtk::Window::property_icon_name" ref="a4b65bba4e01f68806043cbd57fc039f5" 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_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>&lt;<a 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>&gt; Gtk::Window::property_icon_name </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Name of the themed icon for this window. </p>
<p>You rarely need to use properties because there are get_ and set_ methods for almost all of them. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>A PropertyProxy that allows you to get or set the property of the value, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="a39f62c20ec849d0ac54640c1e6f12dcd"></a><!-- doxytag: member="Gtk::Window::property_icon_name" ref="a39f62c20ec849d0ac54640c1e6f12dcd" 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_1PropertyProxy.html">Glib::PropertyProxy</a>&lt;<a 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>&gt; Gtk::Window::property_icon_name </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Name of the themed icon for this window. </p>
<p>You rarely need to use properties because there are get_ and set_ methods for almost all of them. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>A PropertyProxy that allows you to get or set the property of the value, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="a3bb84c0c269cc03ec3e54afaf163471d"></a><!-- doxytag: member="Gtk::Window::property_is_active" ref="a3bb84c0c269cc03ec3e54afaf163471d" 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_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>&lt;bool&gt; Gtk::Window::property_is_active </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Whether the toplevel is the current active window. </p>
<p>You rarely need to use properties because there are get_ and set_ methods for almost all of them. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>A PropertyProxy that allows you to get or set the property of the value, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="a2ef4965176b11ee64705293630fb66e0"></a><!-- doxytag: member="Gtk::Window::property_mnemonics_visible" ref="a2ef4965176b11ee64705293630fb66e0" 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_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>&lt;bool&gt; Gtk::Window::property_mnemonics_visible </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Whether mnemonics are currently visible in this window. </p>
<p>You rarely need to use properties because there are get_ and set_ methods for almost all of them. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>A PropertyProxy that allows you to get or set the property of the value, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="ad1779b1317f1db33b407126de4b2658b"></a><!-- doxytag: member="Gtk::Window::property_mnemonics_visible" ref="ad1779b1317f1db33b407126de4b2658b" 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_1PropertyProxy.html">Glib::PropertyProxy</a>&lt;bool&gt; Gtk::Window::property_mnemonics_visible </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Whether mnemonics are currently visible in this window. </p>
<p>You rarely need to use properties because there are get_ and set_ methods for almost all of them. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>A PropertyProxy that allows you to get or set the property of the value, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="aa50db5c7dc639e6b5aa92acc2bf12bc4"></a><!-- doxytag: member="Gtk::Window::property_modal" ref="aa50db5c7dc639e6b5aa92acc2bf12bc4" 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_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>&lt;bool&gt; Gtk::Window::property_modal </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>If TRUE. </p>
<p>You rarely need to use properties because there are get_ and set_ methods for almost all of them. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>A PropertyProxy that allows you to get or set the property of the value, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="af2933fa629131dc3ddac7c42eceffefb"></a><!-- doxytag: member="Gtk::Window::property_modal" ref="af2933fa629131dc3ddac7c42eceffefb" 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_1PropertyProxy.html">Glib::PropertyProxy</a>&lt;bool&gt; Gtk::Window::property_modal </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>If TRUE. </p>
<p>You rarely need to use properties because there are get_ and set_ methods for almost all of them. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>A PropertyProxy that allows you to get or set the property of the value, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="a1a7e5f5cdaf1d925bef4aa0e3d2c0ee6"></a><!-- doxytag: member="Gtk::Window::property_resizable" ref="a1a7e5f5cdaf1d925bef4aa0e3d2c0ee6" 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_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>&lt;bool&gt; Gtk::Window::property_resizable </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>If TRUE. </p>
<p>You rarely need to use properties because there are get_ and set_ methods for almost all of them. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>A PropertyProxy that allows you to get or set the property of the value, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="a2bf5fda11c269a2a664619aaccf0175a"></a><!-- doxytag: member="Gtk::Window::property_resizable" ref="a2bf5fda11c269a2a664619aaccf0175a" 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_1PropertyProxy.html">Glib::PropertyProxy</a>&lt;bool&gt; Gtk::Window::property_resizable </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>If TRUE. </p>
<p>You rarely need to use properties because there are get_ and set_ methods for almost all of them. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>A PropertyProxy that allows you to get or set the property of the value, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="a0ee6a75ce168da74f2f68635fc68753b"></a><!-- doxytag: member="Gtk::Window::property_role" ref="a0ee6a75ce168da74f2f68635fc68753b" 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_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>&lt;<a 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>&gt; Gtk::Window::property_role </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Unique identifier for the window to be used when restoring a session. </p>
<p>You rarely need to use properties because there are get_ and set_ methods for almost all of them. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>A PropertyProxy that allows you to get or set the property of the value, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="a9b3f69310fba15f6b8869b7b3afb0e02"></a><!-- doxytag: member="Gtk::Window::property_role" ref="a9b3f69310fba15f6b8869b7b3afb0e02" 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_1PropertyProxy.html">Glib::PropertyProxy</a>&lt;<a 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>&gt; Gtk::Window::property_role </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Unique identifier for the window to be used when restoring a session. </p>
<p>You rarely need to use properties because there are get_ and set_ methods for almost all of them. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>A PropertyProxy that allows you to get or set the property of the value, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="a46d4ec8b50289a45c488e856177c9126"></a><!-- doxytag: member="Gtk::Window::property_screen" ref="a46d4ec8b50289a45c488e856177c9126" 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_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>&lt; <a 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>&lt;<a class="el" href="classGdk_1_1Screen.html">Gdk::Screen</a>&gt; &gt; Gtk::Window::property_screen </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>The screen where this window will be displayed. </p>
<p>You rarely need to use properties because there are get_ and set_ methods for almost all of them. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>A PropertyProxy that allows you to get or set the property of the value, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="a02775b4be90428c53359834fbc1d6d6f"></a><!-- doxytag: member="Gtk::Window::property_screen" ref="a02775b4be90428c53359834fbc1d6d6f" 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_1PropertyProxy.html">Glib::PropertyProxy</a>&lt; <a 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>&lt;<a class="el" href="classGdk_1_1Screen.html">Gdk::Screen</a>&gt; &gt; Gtk::Window::property_screen </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>The screen where this window will be displayed. </p>
<p>You rarely need to use properties because there are get_ and set_ methods for almost all of them. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>A PropertyProxy that allows you to get or set the property of the value, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="a81bd5ecca9fa996c0e0bf2813f0903b5"></a><!-- doxytag: member="Gtk::Window::property_skip_pager_hint" ref="a81bd5ecca9fa996c0e0bf2813f0903b5" 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_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>&lt;bool&gt; Gtk::Window::property_skip_pager_hint </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>TRUE if the window should not be in the pager. </p>
<p>You rarely need to use properties because there are get_ and set_ methods for almost all of them. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>A PropertyProxy that allows you to get or set the property of the value, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="af09047dad3a7dc903f1a01627643cee4"></a><!-- doxytag: member="Gtk::Window::property_skip_pager_hint" ref="af09047dad3a7dc903f1a01627643cee4" 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_1PropertyProxy.html">Glib::PropertyProxy</a>&lt;bool&gt; Gtk::Window::property_skip_pager_hint </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>TRUE if the window should not be in the pager. </p>
<p>You rarely need to use properties because there are get_ and set_ methods for almost all of them. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>A PropertyProxy that allows you to get or set the property of the value, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="aa15717f6b7597d36afe7de49302e6713"></a><!-- doxytag: member="Gtk::Window::property_skip_taskbar_hint" ref="aa15717f6b7597d36afe7de49302e6713" 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_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>&lt;bool&gt; Gtk::Window::property_skip_taskbar_hint </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>TRUE if the window should not be in the task bar. </p>
<p>You rarely need to use properties because there are get_ and set_ methods for almost all of them. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>A PropertyProxy that allows you to get or set the property of the value, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="a805906f84dbc3d36d552e4c57474561e"></a><!-- doxytag: member="Gtk::Window::property_skip_taskbar_hint" ref="a805906f84dbc3d36d552e4c57474561e" 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_1PropertyProxy.html">Glib::PropertyProxy</a>&lt;bool&gt; Gtk::Window::property_skip_taskbar_hint </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>TRUE if the window should not be in the task bar. </p>
<p>You rarely need to use properties because there are get_ and set_ methods for almost all of them. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>A PropertyProxy that allows you to get or set the property of the value, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="a6f09adcf1f6337c3968329d608f56e37"></a><!-- doxytag: member="Gtk::Window::property_title" ref="a6f09adcf1f6337c3968329d608f56e37" 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_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>&lt;<a 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>&gt; Gtk::Window::property_title </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>The title of the window. </p>
<p>You rarely need to use properties because there are get_ and set_ methods for almost all of them. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>A PropertyProxy that allows you to get or set the property of the value, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="a5649221f85fdd2bcc2ac277ad29511aa"></a><!-- doxytag: member="Gtk::Window::property_title" ref="a5649221f85fdd2bcc2ac277ad29511aa" 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_1PropertyProxy.html">Glib::PropertyProxy</a>&lt;<a 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>&gt; Gtk::Window::property_title </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>The title of the window. </p>
<p>You rarely need to use properties because there are get_ and set_ methods for almost all of them. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>A PropertyProxy that allows you to get or set the property of the value, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="ac6e2b8c0e31a96fa39747944178f4e3e"></a><!-- doxytag: member="Gtk::Window::property_transient_for" ref="ac6e2b8c0e31a96fa39747944178f4e3e" 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_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>&lt;<a class="el" href="classGtk_1_1Window.html">Window</a>*&gt; Gtk::Window::property_transient_for </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>The transient parent of the dialog. </p>
<p>You rarely need to use properties because there are get_ and set_ methods for almost all of them. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>A PropertyProxy that allows you to get or set the property of the value, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="a107c2a8b6739632efac46667e6526b37"></a><!-- doxytag: member="Gtk::Window::property_transient_for" ref="a107c2a8b6739632efac46667e6526b37" 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_1PropertyProxy.html">Glib::PropertyProxy</a>&lt;<a class="el" href="classGtk_1_1Window.html">Window</a>*&gt; Gtk::Window::property_transient_for </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>The transient parent of the dialog. </p>
<p>You rarely need to use properties because there are get_ and set_ methods for almost all of them. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>A PropertyProxy that allows you to get or set the property of the value, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="a3759232580287bbc25aff6d74977f24c"></a><!-- doxytag: member="Gtk::Window::property_type_hint" ref="a3759232580287bbc25aff6d74977f24c" 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_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>&lt;GdkWindowTypeHint&gt; Gtk::Window::property_type_hint </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Hint to help the desktop environment understand what kind of window this is and how to treat it. </p>
<p>You rarely need to use properties because there are get_ and set_ methods for almost all of them. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>A PropertyProxy that allows you to get or set the property of the value, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="aa0053ed2d5731e121b5f5d79af261f18"></a><!-- doxytag: member="Gtk::Window::property_type_hint" ref="aa0053ed2d5731e121b5f5d79af261f18" 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_1PropertyProxy.html">Glib::PropertyProxy</a>&lt;GdkWindowTypeHint&gt; Gtk::Window::property_type_hint </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Hint to help the desktop environment understand what kind of window this is and how to treat it. </p>
<p>You rarely need to use properties because there are get_ and set_ methods for almost all of them. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>A PropertyProxy that allows you to get or set the property of the value, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="a4c467ce84354b2cf8727aa95800c1ba3"></a><!-- doxytag: member="Gtk::Window::property_urgency_hint" ref="a4c467ce84354b2cf8727aa95800c1ba3" 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_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>&lt;bool&gt; Gtk::Window::property_urgency_hint </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>TRUE if the window should be brought to the user's attention. </p>
<p>You rarely need to use properties because there are get_ and set_ methods for almost all of them. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>A PropertyProxy that allows you to get or set the property of the value, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="abf0a0bdb77af9aec3eaff860ba12d49a"></a><!-- doxytag: member="Gtk::Window::property_urgency_hint" ref="abf0a0bdb77af9aec3eaff860ba12d49a" 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_1PropertyProxy.html">Glib::PropertyProxy</a>&lt;bool&gt; Gtk::Window::property_urgency_hint </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>TRUE if the window should be brought to the user's attention. </p>
<p>You rarely need to use properties because there are get_ and set_ methods for almost all of them. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>A PropertyProxy that allows you to get or set the property of the value, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="a201dea889e1e3f0f17ea79ef1d99e4a1"></a><!-- doxytag: member="Gtk::Window::property_window_position" ref="a201dea889e1e3f0f17ea79ef1d99e4a1" 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_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>&lt;<a class="el" href="group__gtkmmEnums.html#gabfa67443f852c48477b2d55b15982e21">WindowPosition</a>&gt; Gtk::Window::property_window_position </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>The initial position of the window. </p>
<p>You rarely need to use properties because there are get_ and set_ methods for almost all of them. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>A PropertyProxy that allows you to get or set the property of the value, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="af467e6fb75fe5d6f391290f61fc76eb3"></a><!-- doxytag: member="Gtk::Window::property_window_position" ref="af467e6fb75fe5d6f391290f61fc76eb3" 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_1PropertyProxy.html">Glib::PropertyProxy</a>&lt;<a class="el" href="group__gtkmmEnums.html#gabfa67443f852c48477b2d55b15982e21">WindowPosition</a>&gt; Gtk::Window::property_window_position </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>The initial position of the window. </p>
<p>You rarely need to use properties because there are get_ and set_ methods for almost all of them. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>A PropertyProxy that allows you to get or set the property of the value, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="ad61a5ddefd7b84f178460635c6448ef8"></a><!-- doxytag: member="Gtk::Window::raise" ref="ad61a5ddefd7b84f178460635c6448ef8" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">virtual void Gtk::Window::raise </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td><code> [virtual]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Brings the window to the front. </p>
<p>This is just a more obvious convenience wrapper for <a class="el" href="classGtk_1_1Widget.html#a403777253417c5c7653aac9e932de76b" title="Returns the widget&#39;s window if it is realized, 0 otherwise.">get_window()</a>-&gt;<a class="el" href="classGtk_1_1Window.html#ad61a5ddefd7b84f178460635c6448ef8" title="Brings the window to the front.">raise()</a>. </p>

</div>
</div>
<a class="anchor" id="afe7b9acac2c46e63948aa0bdf719dce2"></a><!-- doxytag: member="Gtk::Window::remove_accel_group" ref="afe7b9acac2c46e63948aa0bdf719dce2" args="(const Glib::RefPtr&lt; AccelGroup &gt; &amp;accel_group)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::Window::remove_accel_group </td>
          <td>(</td>
          <td class="paramtype">const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="el" href="classGtk_1_1AccelGroup.html">AccelGroup</a> &gt;&amp;&#160;</td>
          <td class="paramname"> <em>accel_group</em></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Reverses the effects of <a class="el" href="classGtk_1_1Window.html#ad15a4530150d8464ee06bb2218e582e9" title="Associate accel_group with window, such that calling gtk_accel_groups_activate()...">add_accel_group()</a>. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>accel_group</em>&#160;</td><td>A <a class="el" href="classGtk_1_1AccelGroup.html" title="A Gtk::AccelGroup represents a group of keyboard accelerators, typically attached...">Gtk::AccelGroup</a>. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a8a4a99151b257228f68f6fc643653b52"></a><!-- doxytag: member="Gtk::Window::remove_mnemonic" ref="a8a4a99151b257228f68f6fc643653b52" args="(guint keyval, Widget &amp;target)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::Window::remove_mnemonic </td>
          <td>(</td>
          <td class="paramtype">guint&#160;</td>
          <td class="paramname"> <em>keyval</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="classGtk_1_1Widget.html">Widget</a>&amp;&#160;</td>
          <td class="paramname"> <em>target</em></td><td>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td><td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Removes a mnemonic from this window. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>keyval</em>&#160;</td><td>The mnemonic. </td></tr>
    <tr><td valign="top"></td><td valign="top"><em>target</em>&#160;</td><td>The widget that gets activated by the mnemonic. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a7acae2440f5436966dab4b023318a37a"></a><!-- doxytag: member="Gtk::Window::reshow_with_initial_size" ref="a7acae2440f5436966dab4b023318a37a" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::Window::reshow_with_initial_size </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Hides <em>window</em>, then reshows it, resetting the default size and position of the window. </p>
<p>Used by GUI builders only. </p>

</div>
</div>
<a class="anchor" id="ad6d1fc27730d7f26402a1924c3495787"></a><!-- doxytag: member="Gtk::Window::resize" ref="ad6d1fc27730d7f26402a1924c3495787" args="(int width, int height)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::Window::resize </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"> <em>width</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"> <em>height</em></td><td>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td><td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Resizes the window as if the user had done so, obeying geometry constraints. </p>
<p>The default geometry constraint is that windows may not be smaller than their size request; to override this constraint, call <a class="el" href="classGtk_1_1Widget.html#a5e95431f630a226b0b7297e4815ee945" title="Sets the minimum size of a widget; that is, the widget&#39;s size request will be...">Gtk::Widget::set_size_request()</a> to set the window's request to a smaller value.</p>
<p>If <a class="el" href="classGtk_1_1Window.html#ad6d1fc27730d7f26402a1924c3495787" title="Resizes the window as if the user had done so, obeying geometry constraints.">resize()</a> is called before showing a window for the first time, it overrides any default size set with <a class="el" href="classGtk_1_1Window.html#ac7bddf34f109fd2ed006ff95f1ae881c" title="Sets the default size of a window.">set_default_size()</a>.</p>
<p>Windows may not be resized smaller than 1 by 1 pixels. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>width</em>&#160;</td><td>Width in pixels to resize the window to. </td></tr>
    <tr><td valign="top"></td><td valign="top"><em>height</em>&#160;</td><td>Height in pixels to resize the window to. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a9fc2a01d8aa1ab126060d9f363b5d8c5"></a><!-- doxytag: member="Gtk::Window::set_accept_focus" ref="a9fc2a01d8aa1ab126060d9f363b5d8c5" args="(bool setting=true)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::Window::set_accept_focus </td>
          <td>(</td>
          <td class="paramtype">bool&#160;</td>
          <td class="paramname"> <em>setting</em> = <code>true</code></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Windows may set a hint asking the desktop environment not to receive the input focus. </p>
<p>This function sets this hint.</p>
<dl class="since_2_4"><dt><b><a class="el" href="since_2_4.html#_since_2_4000335">Since gtkmm 2.4:</a></b></dt><dd></dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>setting</em>&#160;</td><td><code>true</code> to let this window receive input focus. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a17d7fbb99c147938b2f8af87cd1187f8"></a><!-- doxytag: member="Gtk::Window::set_auto_startup_notification" ref="a17d7fbb99c147938b2f8af87cd1187f8" args="(bool setting=true)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">static void Gtk::Window::set_auto_startup_notification </td>
          <td>(</td>
          <td class="paramtype">bool&#160;</td>
          <td class="paramname"> <em>setting</em> = <code>true</code></td>
          <td>&#160;)&#160;</td>
          <td><code> [static]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>By default, after showing the first <a class="el" href="classGtk_1_1Window.html" title="Toplevel Window This represents all widgets which are physical windows controlled...">Gtk::Window</a>, GTK+ calls gdk_notify_startup_complete(). </p>
<p>Call this function to disable the automatic startup notification. You might do this if your first window is a splash screen, and you want to delay notification until after your real main window has been shown, for example.</p>
<p>In that example, you would disable startup notification temporarily, show your splash screen, then re-enable it so that showing the main window would automatically result in notification.</p>
<dl class="since_2_2"><dt><b><a class="el" href="since_2_2.html#_since_2_2000130">Since gtkmm 2.2:</a></b></dt><dd></dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>setting</em>&#160;</td><td><code>true</code> to automatically do startup notification. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a67adb1d8051a38e0e5272f141bb8778c"></a><!-- doxytag: member="Gtk::Window::set_decorated" ref="a67adb1d8051a38e0e5272f141bb8778c" args="(bool setting=true)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::Window::set_decorated </td>
          <td>(</td>
          <td class="paramtype">bool&#160;</td>
          <td class="paramname"> <em>setting</em> = <code>true</code></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>By default, windows are decorated with a title bar, resize controls, etc. </p>
<p>Some &lt;link linkend="gtk-X11-arch"&gt;window managers&lt;/link&gt; allow GTK+ to disable these decorations, creating a borderless window. If you set the decorated property to <code>false</code> using this function, GTK+ will do its best to convince the window manager not to decorate the window. Depending on the system, this function may not have any effect when called on a window that is already visible, so you should call it before calling gtk_window_show().</p>
<p>On Windows, this function always works, since there's no window manager policy involved. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>setting</em>&#160;</td><td><code>true</code> to decorate the window. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a8a5fcf84b5222de8d4dea390b79969de"></a><!-- doxytag: member="Gtk::Window::set_default" ref="a8a5fcf84b5222de8d4dea390b79969de" args="(Gtk::Widget &amp;default_widget)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::Window::set_default </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classGtk_1_1Widget.html">Gtk::Widget</a>&amp;&#160;</td>
          <td class="paramname"> <em>default_widget</em></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>The default widget is the widget that's activated when the user presses Enter in a dialog (for example). </p>
<p>This function sets the default widget for a <a class="el" href="classGtk_1_1Window.html" title="Toplevel Window This represents all widgets which are physical windows controlled...">Gtk::Window</a>. When setting (rather than unsetting) the default widget it's generally easier to call <a class="el" href="classGtk_1_1Widget.html#a4c376dd31e5b4d616d8f914338fea8b6" title="Causes widget to have the keyboard focus for the Gtk::Window it&#39;s inside.">Gtk::Widget::grab_focus()</a> on the widget. Before making a widget the default widget, you must set the <a class="el" href="group__gtkmmEnums.html#gga3d42e9e6671e48764b3b42bcc8da0b47af4d68bafb695d9cdbfd69add0cdf475f">Gtk::CAN_DEFAULT</a> flag on the widget you'd like to make the default using GTK_WIDGET_SET_FLAGS(). </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>default_widget</em>&#160;</td><td><a class="el" href="classGtk_1_1Widget.html" title="Abstract Widget (Base class for all widgets).">Widget</a> to be the default. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a355e4704d6b2f24de627f182946f8782"></a><!-- doxytag: member="Gtk::Window::set_default_icon" ref="a355e4704d6b2f24de627f182946f8782" args="(const Glib::RefPtr&lt; Gdk::Pixbuf &gt; &amp;icon)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">static void Gtk::Window::set_default_icon </td>
          <td>(</td>
          <td class="paramtype">const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="el" href="classGdk_1_1Pixbuf.html">Gdk::Pixbuf</a> &gt;&amp;&#160;</td>
          <td class="paramname"> <em>icon</em></td>
          <td>&#160;)&#160;</td>
          <td><code> [static]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Sets an icon to be used as fallback for windows that haven't had <a class="el" href="classGtk_1_1Window.html#af8da32d981bcf1992d3d2361a9aec894" title="Sets up the icon representing a Gtk::Window.">set_icon()</a> called on them from a pixbuf. </p>
<dl class="since_2_4"><dt><b><a class="el" href="since_2_4.html#_since_2_4000337">Since gtkmm 2.4:</a></b></dt><dd></dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>icon</em>&#160;</td><td>The icon. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="ada7d63162e412693d80a397096f46b0f"></a><!-- doxytag: member="Gtk::Window::set_default_icon_from_file" ref="ada7d63162e412693d80a397096f46b0f" args="(const std::string &amp;filename)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">static bool Gtk::Window::set_default_icon_from_file </td>
          <td>(</td>
          <td class="paramtype">const <a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01116.html#a32db3d9898c44d3b3a578b560f7758cc">std::string</a> &amp;&#160;</td>
          <td class="paramname"> <em>filename</em></td>
          <td>&#160;)&#160;</td>
          <td><code> [static]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Sets an icon to be used as fallback for windows that haven't had <a class="el" href="classGtk_1_1Window.html#a81ad667e5c42dada1dc24fafae7d81c5" title="Sets up the icon representing a Gtk::Window.">set_icon_list()</a> called on them from a file on disk. </p>
<p>Warns on failure if <em>err</em> is <code>0</code>.</p>
<dl class="since_2_2"><dt><b><a class="el" href="since_2_2.html#_since_2_2000129">Since gtkmm 2.2:</a></b></dt><dd></dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>filename</em>&#160;</td><td>Location of icon file. </td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd><code>true</code> if setting the icon succeeded. </dd></dl>

</div>
</div>
<a class="anchor" id="a7061612826fd86c5a1386091ddc4be31"></a><!-- doxytag: member="Gtk::Window::set_default_icon_list" ref="a7061612826fd86c5a1386091ddc4be31" args="(const Glib::ListHandle&lt; Glib::RefPtr&lt; Gdk::Pixbuf &gt; &gt; &amp;list)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">static void Gtk::Window::set_default_icon_list </td>
          <td>(</td>
          <td class="paramtype">const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ListHandle.html">Glib::ListHandle</a>&lt; <a 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>&lt; <a class="el" href="classGdk_1_1Pixbuf.html">Gdk::Pixbuf</a> &gt; &gt;&amp;&#160;</td>
          <td class="paramname"> <em>list</em></td>
          <td>&#160;)&#160;</td>
          <td><code> [static]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Sets an icon list to be used as fallback for windows that haven't had <a class="el" href="classGtk_1_1Window.html#a81ad667e5c42dada1dc24fafae7d81c5" title="Sets up the icon representing a Gtk::Window.">set_icon_list()</a> called on them to set up a window-specific icon list. </p>
<p>This function allows you to set up the icon for all windows in your app at once.</p>
<p>See <a class="el" href="classGtk_1_1Window.html#a81ad667e5c42dada1dc24fafae7d81c5" title="Sets up the icon representing a Gtk::Window.">set_icon_list()</a> for more details. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>list</em>&#160;</td><td>A list of <a class="el" href="classGdk_1_1Pixbuf.html">Gdk::Pixbuf</a>. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a533d03e9b92d8ccd142ab3a44005cae4"></a><!-- doxytag: member="Gtk::Window::set_default_icon_name" ref="a533d03e9b92d8ccd142ab3a44005cae4" args="(const Glib::ustring &amp;name)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">static void Gtk::Window::set_default_icon_name </td>
          <td>(</td>
          <td class="paramtype">const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> &amp;&#160;</td>
          <td class="paramname"> <em>name</em></td>
          <td>&#160;)&#160;</td>
          <td><code> [static]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Sets an icon to be used as fallback for windows that haven't had <a class="el" href="classGtk_1_1Window.html#a81ad667e5c42dada1dc24fafae7d81c5" title="Sets up the icon representing a Gtk::Window.">set_icon_list()</a> called on them from a named themed icon, see <a class="el" href="classGtk_1_1Window.html#a80a7d07b5d126a17206a770d134c76c0" title="Sets the icon for the window from a named themed icon.">set_icon_name()</a>. </p>
<dl class="since_2_6"><dt><b><a class="el" href="since_2_6.html#_since_2_6000166">Since gtkmm 2.6:</a></b></dt><dd></dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>name</em>&#160;</td><td>The name of the themed icon. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="ac7bddf34f109fd2ed006ff95f1ae881c"></a><!-- doxytag: member="Gtk::Window::set_default_size" ref="ac7bddf34f109fd2ed006ff95f1ae881c" args="(int width, int height)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::Window::set_default_size </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"> <em>width</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"> <em>height</em></td><td>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td><td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Sets the default size of a window. </p>
<p>If the window's "natural" size (its size request) is larger than the default, the default will be ignored. More generally, if the default size does not obey the geometry hints for the window (<a class="el" href="classGtk_1_1Window.html#a4564d6044ee0c89e02244559b6b5f916" title="This function sets up hints about how a window can be resized by the user.">set_geometry_hints()</a> can be used to set these explicitly), the default size will be clamped to the nearest permitted size.</p>
<p>Unlike <a class="el" href="classGtk_1_1Widget.html#a5e95431f630a226b0b7297e4815ee945" title="Sets the minimum size of a widget; that is, the widget&#39;s size request will be...">Gtk::Widget::set_size_request()</a>, which sets a size request for a widget and thus would keep users from shrinking the window, this function only sets the initial size, just as if the user had resized the window themselves. Users can still shrink the window again as they normally would. Setting a default size of -1 means to use the "natural" default size (the size request of the window).</p>
<p>For more control over a window's initial size and how resizing works, investigate <a class="el" href="classGtk_1_1Window.html#a4564d6044ee0c89e02244559b6b5f916" title="This function sets up hints about how a window can be resized by the user.">set_geometry_hints()</a>.</p>
<p>For some uses, <a class="el" href="classGtk_1_1Window.html#ad6d1fc27730d7f26402a1924c3495787" title="Resizes the window as if the user had done so, obeying geometry constraints.">resize()</a> is a more appropriate function. <a class="el" href="classGtk_1_1Window.html#ad6d1fc27730d7f26402a1924c3495787" title="Resizes the window as if the user had done so, obeying geometry constraints.">resize()</a> changes the current size of the window, rather than the size to be used on initial display. <a class="el" href="classGtk_1_1Window.html#ad6d1fc27730d7f26402a1924c3495787" title="Resizes the window as if the user had done so, obeying geometry constraints.">resize()</a> always affects the window itself, not the geometry widget.</p>
<p>The default size of a window only affects the first time a window is shown; if a window is hidden and re-shown, it will remember the size it had prior to hiding, rather than using the default size.</p>
<p>Windows can't actually be 0x0 in size, they must be at least 1x1, but passing 0 for <em>width</em> and <em>height</em> is OK, resulting in a 1x1 default size. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>width</em>&#160;</td><td>Width in pixels, or -1 to unset the default width. </td></tr>
    <tr><td valign="top"></td><td valign="top"><em>height</em>&#160;</td><td>Height in pixels, or -1 to unset the default height. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a986276f116d90d61f00bb50d2f87d69c"></a><!-- doxytag: member="Gtk::Window::set_deletable" ref="a986276f116d90d61f00bb50d2f87d69c" args="(bool setting=true)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::Window::set_deletable </td>
          <td>(</td>
          <td class="paramtype">bool&#160;</td>
          <td class="paramname"> <em>setting</em> = <code>true</code></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>By default, windows have a close button in the window frame. </p>
<p>Some &lt;link linkend="gtk-X11-arch"&gt;window managers&lt;/link&gt; allow GTK+ to disable this button. If you set the deletable property to <code>false</code> using this function, GTK+ will do its best to convince the window manager not to show a close button. Depending on the system, this function may not have any effect when called on a window that is already visible, so you should call it before calling gtk_window_show().</p>
<p>On Windows, this function always works, since there's no window manager policy involved.</p>
<dl class="since_2_10"><dt><b><a class="el" href="since_2_10.html#_since_2_10000341">Since gtkmm 2.10:</a></b></dt><dd></dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>setting</em>&#160;</td><td><code>true</code> to decorate the window as deletable. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a8589880384bc7cd7b39c5bcfa6d2932a"></a><!-- doxytag: member="Gtk::Window::set_focus" ref="a8589880384bc7cd7b39c5bcfa6d2932a" args="(Gtk::Widget &amp;focus)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::Window::set_focus </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classGtk_1_1Widget.html">Gtk::Widget</a>&amp;&#160;</td>
          <td class="paramname"> <em>focus</em></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>If <em>focus</em> is not the current focus widget, and is focusable, sets it as the focus widget for the window. </p>
<p>To set the focus to a particular widget in the toplevel, it is usually more convenient to use <a class="el" href="classGtk_1_1Widget.html#a4c376dd31e5b4d616d8f914338fea8b6" title="Causes widget to have the keyboard focus for the Gtk::Window it&#39;s inside.">Gtk::Widget::grab_focus()</a> instead of this function. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>focus</em>&#160;</td><td><a class="el" href="classGtk_1_1Widget.html" title="Abstract Widget (Base class for all widgets).">Widget</a> to be the new focus widget. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a3a2c87ab12bb354d4ac0262748fb6aea"></a><!-- doxytag: member="Gtk::Window::set_focus_on_map" ref="a3a2c87ab12bb354d4ac0262748fb6aea" args="(bool setting=true)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::Window::set_focus_on_map </td>
          <td>(</td>
          <td class="paramtype">bool&#160;</td>
          <td class="paramname"> <em>setting</em> = <code>true</code></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Windows may set a hint asking the desktop environment not to receive the input focus when the window is mapped. </p>
<p>This function sets this hint.</p>
<dl class="since_2_6"><dt><b><a class="el" href="since_2_6.html#_since_2_6000162">Since gtkmm 2.6:</a></b></dt><dd></dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>setting</em>&#160;</td><td><code>true</code> to let this window receive input focus on map. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a17dad6dfdbf039ce8a54a04f80ea8477"></a><!-- doxytag: member="Gtk::Window::set_frame_dimensions" ref="a17dad6dfdbf039ce8a54a04f80ea8477" args="(int left, int top, int right, int bottom)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::Window::set_frame_dimensions </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"> <em>left</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"> <em>top</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"> <em>right</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"> <em>bottom</em></td><td>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td><td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>(Note: this is a special-purpose function intended for the framebuffer port; see <a class="el" href="classGtk_1_1Window.html#a7cf0d119b57e73136353ef075eca5d26" title="(Note: this is a special-purpose function for the framebuffer port, that causes GTK+...">set_has_frame()</a>. </p>
<p>It will have no effect on the window border drawn by the window manager, which is the normal case when using the X&#160;Window system.)</p>
<p>For windows with frames (see <a class="el" href="classGtk_1_1Window.html#a7cf0d119b57e73136353ef075eca5d26" title="(Note: this is a special-purpose function for the framebuffer port, that causes GTK+...">set_has_frame()</a>) this function can be used to change the size of the frame border. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>left</em>&#160;</td><td>The width of the left border. </td></tr>
    <tr><td valign="top"></td><td valign="top"><em>top</em>&#160;</td><td>The height of the top border. </td></tr>
    <tr><td valign="top"></td><td valign="top"><em>right</em>&#160;</td><td>The width of the right border. </td></tr>
    <tr><td valign="top"></td><td valign="top"><em>bottom</em>&#160;</td><td>The height of the bottom border. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a4564d6044ee0c89e02244559b6b5f916"></a><!-- doxytag: member="Gtk::Window::set_geometry_hints" ref="a4564d6044ee0c89e02244559b6b5f916" args="(Widget &amp;geometry_widget, const Gdk::Geometry &amp;geometry, Gdk::WindowHints geom_mask)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::Window::set_geometry_hints </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classGtk_1_1Widget.html">Widget</a>&amp;&#160;</td>
          <td class="paramname"> <em>geometry_widget</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="namespaceGdk.html#af6948e754cab4e79c6430fb94e438d83">Gdk::Geometry</a>&amp;&#160;</td>
          <td class="paramname"> <em>geometry</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="group__gdkmmEnums.html#ga7dd31e80216f3452a1e080bd22fcfd9c">Gdk::WindowHints</a>&#160;</td>
          <td class="paramname"> <em>geom_mask</em></td><td>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td><td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>This function sets up hints about how a window can be resized by the user. </p>
<p>You can set a minimum and maximum size; allowed resize increments (e.g. for xterm, you can only resize by the size of a character); aspect ratios; and more. See the <a class="el" href="namespaceGdk.html#af6948e754cab4e79c6430fb94e438d83">Gdk::Geometry</a> struct. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>geometry_widget</em>&#160;</td><td><a class="el" href="classGtk_1_1Widget.html" title="Abstract Widget (Base class for all widgets).">Widget</a> the geometry hints will be applied to. </td></tr>
    <tr><td valign="top"></td><td valign="top"><em>geometry</em>&#160;</td><td>Struct containing geometry information. </td></tr>
    <tr><td valign="top"></td><td valign="top"><em>geom_mask</em>&#160;</td><td>Mask indicating which struct fields should be paid attention to. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a0ba6f596398c8685fa5535c77c2c9184"></a><!-- doxytag: member="Gtk::Window::set_gravity" ref="a0ba6f596398c8685fa5535c77c2c9184" args="(Gdk::Gravity gravity)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::Window::set_gravity </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="group__gdkmmEnums.html#ga1bb9235871d434d3c55411d8261b075e">Gdk::Gravity</a>&#160;</td>
          <td class="paramname"> <em>gravity</em></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p><a class="el" href="classGtk_1_1Window.html" title="Toplevel Window This represents all widgets which are physical windows controlled...">Window</a> gravity defines the meaning of coordinates passed to <a class="el" href="classGtk_1_1Window.html#aabece927b3c31478f0d22a437d340b62" title="Asks the &lt;link linkend=&quot;gtk-X11-arch&quot;&gt;window manager&lt;/link&gt;...">move()</a>. </p>
<p>See <a class="el" href="classGtk_1_1Window.html#aabece927b3c31478f0d22a437d340b62" title="Asks the &lt;link linkend=&quot;gtk-X11-arch&quot;&gt;window manager&lt;/link&gt;...">move()</a> and <a class="el" href="group__gdkmmEnums.html#ga1bb9235871d434d3c55411d8261b075e">Gdk::Gravity</a> for more details.</p>
<p>The default window gravity is <a class="el" href="group__gdkmmEnums.html#gga1bb9235871d434d3c55411d8261b075eae18dc80dbede5c1e9b86c3184842f5cf">Gdk::GRAVITY_NORTH_WEST</a> which will typically "do what you mean." </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>gravity</em>&#160;</td><td><a class="el" href="classGtk_1_1Window.html" title="Toplevel Window This represents all widgets which are physical windows controlled...">Window</a> gravity. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a7cf0d119b57e73136353ef075eca5d26"></a><!-- doxytag: member="Gtk::Window::set_has_frame" ref="a7cf0d119b57e73136353ef075eca5d26" args="(bool setting=true)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::Window::set_has_frame </td>
          <td>(</td>
          <td class="paramtype">bool&#160;</td>
          <td class="paramname"> <em>setting</em> = <code>true</code></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>(Note: this is a special-purpose function for the framebuffer port, that causes GTK+ to draw its own window border. </p>
<p>For most applications, you want <a class="el" href="classGtk_1_1Window.html#a67adb1d8051a38e0e5272f141bb8778c" title="By default, windows are decorated with a title bar, resize controls, etc.">set_decorated()</a> instead, which tells the window manager whether to draw the window border.)</p>
<p>If this function is called on a window with setting of <code>true</code>, before it is realized or showed, it will have a "frame" window around <em>window-&gt;window</em>, accessible in <em>window-&gt;frame</em>. Using the signal frame_event you can receive all events targeted at the frame.</p>
<p>This function is used by the linux-fb port to implement managed windows, but it could conceivably be used by X-programs that want to do their own window decorations. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>setting</em>&#160;</td><td>A boolean. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="af8da32d981bcf1992d3d2361a9aec894"></a><!-- doxytag: member="Gtk::Window::set_icon" ref="af8da32d981bcf1992d3d2361a9aec894" args="(const Glib::RefPtr&lt; Gdk::Pixbuf &gt; &amp;icon)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::Window::set_icon </td>
          <td>(</td>
          <td class="paramtype">const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="el" href="classGdk_1_1Pixbuf.html">Gdk::Pixbuf</a> &gt;&amp;&#160;</td>
          <td class="paramname"> <em>icon</em></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Sets up the icon representing a <a class="el" href="classGtk_1_1Window.html" title="Toplevel Window This represents all widgets which are physical windows controlled...">Gtk::Window</a>. </p>
<p>This icon is used when the window is minimized (also known as iconified). Some window managers or desktop environments may also place it in the window frame, or display it in other contexts.</p>
<p>The icon should be provided in whatever size it was naturally drawn; that is, don't scale the image before passing it to GTK+. Scaling is postponed until the last minute, when the desired final size is known, to allow best quality.</p>
<p>If you have your icon hand-drawn in multiple sizes, use <a class="el" href="classGtk_1_1Window.html#a81ad667e5c42dada1dc24fafae7d81c5" title="Sets up the icon representing a Gtk::Window.">set_icon_list()</a>. Then the best size will be used.</p>
<p>This function is equivalent to calling <a class="el" href="classGtk_1_1Window.html#a81ad667e5c42dada1dc24fafae7d81c5" title="Sets up the icon representing a Gtk::Window.">set_icon_list()</a> with a 1-element list.</p>
<p>See also <a class="el" href="classGtk_1_1Window.html#a7061612826fd86c5a1386091ddc4be31" title="Sets an icon list to be used as fallback for windows that haven&#39;t had set_icon_list()...">set_default_icon_list()</a> to set the icon for all windows in your application in one go. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>icon</em>&#160;</td><td>Icon image, or <code>0</code>. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a2cde5d111ad787f58e9d3908f0bf8bbd"></a><!-- doxytag: member="Gtk::Window::set_icon_from_file" ref="a2cde5d111ad787f58e9d3908f0bf8bbd" args="(const std::string &amp;filename)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool Gtk::Window::set_icon_from_file </td>
          <td>(</td>
          <td class="paramtype">const <a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01116.html#a32db3d9898c44d3b3a578b560f7758cc">std::string</a> &amp;&#160;</td>
          <td class="paramname"> <em>filename</em></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Sets the icon for the window. </p>
<p>This function is equivalent to calling <a class="el" href="classGtk_1_1Window.html#af8da32d981bcf1992d3d2361a9aec894" title="Sets up the icon representing a Gtk::Window.">set_icon()</a> with a pixbuf created by loading the image from <em>filename</em>. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>filename</em>&#160;</td><td>Location of icon file. </td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd><code>true</code> if setting the icon succeeded. </dd></dl>

</div>
</div>
<a class="anchor" id="a81ad667e5c42dada1dc24fafae7d81c5"></a><!-- doxytag: member="Gtk::Window::set_icon_list" ref="a81ad667e5c42dada1dc24fafae7d81c5" args="(const Glib::ListHandle&lt; Glib::RefPtr&lt; Gdk::Pixbuf &gt; &gt; &amp;list)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::Window::set_icon_list </td>
          <td>(</td>
          <td class="paramtype">const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ListHandle.html">Glib::ListHandle</a>&lt; <a 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>&lt; <a class="el" href="classGdk_1_1Pixbuf.html">Gdk::Pixbuf</a> &gt; &gt;&amp;&#160;</td>
          <td class="paramname"> <em>list</em></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Sets up the icon representing a <a class="el" href="classGtk_1_1Window.html" title="Toplevel Window This represents all widgets which are physical windows controlled...">Gtk::Window</a>. </p>
<p>The icon is used when the window is minimized (also known as iconified). Some window managers or desktop environments may also place it in the window frame, or display it in other contexts.</p>
<p><a class="el" href="classGtk_1_1Window.html#a81ad667e5c42dada1dc24fafae7d81c5" title="Sets up the icon representing a Gtk::Window.">set_icon_list()</a> allows you to pass in the same icon in several hand-drawn sizes. The list should contain the natural sizes your icon is available in; that is, don't scale the image before passing it to GTK+. Scaling is postponed until the last minute, when the desired final size is known, to allow best quality.</p>
<p>By passing several sizes, you may improve the final image quality of the icon, by reducing or eliminating automatic image scaling.</p>
<p>Recommended sizes to provide: 16x16, 32x32, 48x48 at minimum, and larger images (64x64, 128x128) if you have them.</p>
<p>See also <a class="el" href="classGtk_1_1Window.html#a7061612826fd86c5a1386091ddc4be31" title="Sets an icon list to be used as fallback for windows that haven&#39;t had set_icon_list()...">set_default_icon_list()</a> to set the icon for all windows in your application in one go.</p>
<p>Note that transient windows (those who have been set transient for another window using <a class="el" href="classGtk_1_1Window.html#a4dc2db7c44546300a7843314cfa21bc8" title="Dialog windows should be set transient for the main application window they were...">set_transient_for()</a>) will inherit their icon from their transient parent. So there's no need to explicitly set the icon on transient windows. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>list</em>&#160;</td><td>List of <a class="el" href="classGdk_1_1Pixbuf.html">Gdk::Pixbuf</a>. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a80a7d07b5d126a17206a770d134c76c0"></a><!-- doxytag: member="Gtk::Window::set_icon_name" ref="a80a7d07b5d126a17206a770d134c76c0" args="(const Glib::ustring &amp;name)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::Window::set_icon_name </td>
          <td>(</td>
          <td class="paramtype">const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> &amp;&#160;</td>
          <td class="paramname"> <em>name</em></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Sets the icon for the window from a named themed icon. </p>
<p>See the docs for <a class="el" href="classGtk_1_1IconTheme.html">Gtk::IconTheme</a> for more details.</p>
<p>Note that this has nothing to do with the WM_ICON_NAME property which is mentioned in the ICCCM.</p>
<dl class="since_2_6"><dt><b><a class="el" href="since_2_6.html#_since_2_6000164">Since gtkmm 2.6:</a></b></dt><dd></dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>name</em>&#160;</td><td>The name of the themed icon. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a1233d35c8c1108ed4446c4b0c8d97e35"></a><!-- doxytag: member="Gtk::Window::set_keep_above" ref="a1233d35c8c1108ed4446c4b0c8d97e35" args="(bool setting=true)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::Window::set_keep_above </td>
          <td>(</td>
          <td class="paramtype">bool&#160;</td>
          <td class="paramname"> <em>setting</em> = <code>true</code></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Asks to keep <em>window</em> above, so that it stays on top. </p>
<p>Note that you shouldn't assume the window is definitely above afterward, because other entities (e.g. the user or &lt;link linkend="gtk-X11-arch"&gt;window manager&lt;/link&gt;) could not keep it above, and not all window managers support keeping windows above. But normally the window will end kept above. Just don't write code that crashes if not.</p>
<p>It's permitted to call this function before showing a window, in which case the window will be kept above when it appears onscreen initially.</p>
<p>You can track the above state via the "window-state-event" signal on <a class="el" href="classGtk_1_1Widget.html" title="Abstract Widget (Base class for all widgets).">Gtk::Widget</a>.</p>
<p>Note that, according to the &lt;ulink url="http://www.freedesktop.org/Standards/wm-spec"&gt;Extended <a class="el" href="classGtk_1_1Window.html" title="Toplevel Window This represents all widgets which are physical windows controlled...">Window</a> Manager Hints&lt;/ulink&gt; specification, the above state is mainly meant for user preferences and should not be used by applications e.g. for drawing attention to their dialogs.</p>
<dl class="since_2_4"><dt><b><a class="el" href="since_2_4.html#_since_2_4000338">Since gtkmm 2.4:</a></b></dt><dd></dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>setting</em>&#160;</td><td>Whether to keep <em>window</em> above other windows. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="ad671b4dcca5e8e659b9126e0deed74f2"></a><!-- doxytag: member="Gtk::Window::set_keep_below" ref="ad671b4dcca5e8e659b9126e0deed74f2" args="(bool setting=true)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::Window::set_keep_below </td>
          <td>(</td>
          <td class="paramtype">bool&#160;</td>
          <td class="paramname"> <em>setting</em> = <code>true</code></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Asks to keep <em>window</em> below, so that it stays in bottom. </p>
<p>Note that you shouldn't assume the window is definitely below afterward, because other entities (e.g. the user or &lt;link linkend="gtk-X11-arch"&gt;window manager&lt;/link&gt;) could not keep it below, and not all window managers support putting windows below. But normally the window will be kept below. Just don't write code that crashes if not.</p>
<p>It's permitted to call this function before showing a window, in which case the window will be kept below when it appears onscreen initially.</p>
<p>You can track the below state via the "window-state-event" signal on <a class="el" href="classGtk_1_1Widget.html" title="Abstract Widget (Base class for all widgets).">Gtk::Widget</a>.</p>
<p>Note that, according to the &lt;ulink url="http://www.freedesktop.org/Standards/wm-spec"&gt;Extended <a class="el" href="classGtk_1_1Window.html" title="Toplevel Window This represents all widgets which are physical windows controlled...">Window</a> Manager Hints&lt;/ulink&gt; specification, the above state is mainly meant for user preferences and should not be used by applications e.g. for drawing attention to their dialogs.</p>
<dl class="since_2_4"><dt><b><a class="el" href="since_2_4.html#_since_2_4000339">Since gtkmm 2.4:</a></b></dt><dd></dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>setting</em>&#160;</td><td>Whether to keep <em>window</em> below other windows. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a707c97e32be83c712b4a414c3e37d13c"></a><!-- doxytag: member="Gtk::Window::set_manage" ref="a707c97e32be83c712b4a414c3e37d13c" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">virtual void Gtk::Window::set_manage </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td><code> [virtual]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Overriden to warn that it doesn't make sense to use <a class="el" href="namespaceGtk.html#a85d08eef743328ffebac2647a9c7f183" title="Mark a Gtk::Object as owned by its parent container widget, so you don&#39;t need...">Gtk::manage()</a> on this class because it has no parent container. </p>

</div>
</div>
<a class="anchor" id="aa9e48f426c507de6ef00efabf25ab9b3"></a><!-- doxytag: member="Gtk::Window::set_mnemonic_modifier" ref="aa9e48f426c507de6ef00efabf25ab9b3" args="(Gdk::ModifierType modifier)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::Window::set_mnemonic_modifier </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="group__gdkmmEnums.html#ga734c2979005c87dbe51223a0128cdd97">Gdk::ModifierType</a>&#160;</td>
          <td class="paramname"> <em>modifier</em></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Sets the mnemonic modifier for this window. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>modifier</em>&#160;</td><td>The modifier mask used to activate mnemonics on this window. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a44cd7531e6d69b94e742e6a5da953d4e"></a><!-- doxytag: member="Gtk::Window::set_mnemonics_visible" ref="a44cd7531e6d69b94e742e6a5da953d4e" args="(bool setting=true)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::Window::set_mnemonics_visible </td>
          <td>(</td>
          <td class="paramtype">bool&#160;</td>
          <td class="paramname"> <em>setting</em> = <code>true</code></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Sets the <a class="el" href="classGtk_1_1Window.html" title="Toplevel Window This represents all widgets which are physical windows controlled...">Gtk::Window</a>:mnemonics-visible property. </p>
<dl class="since_2_20"><dt><b><a class="el" href="since_2_20.html#_since_2_20000093">Since gtkmm 2.20:</a></b></dt><dd></dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>setting</em>&#160;</td><td>The new value. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a1f70b3c35e8c477ab3c1f9503a37a6a1"></a><!-- doxytag: member="Gtk::Window::set_modal" ref="a1f70b3c35e8c477ab3c1f9503a37a6a1" args="(bool modal=true)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::Window::set_modal </td>
          <td>(</td>
          <td class="paramtype">bool&#160;</td>
          <td class="paramname"> <em>modal</em> = <code>true</code></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Sets a window modal or non-modal. </p>
<p>Modal windows prevent interaction with other windows in the same application. To keep modal dialogs on top of main application windows, use <a class="el" href="classGtk_1_1Window.html#a4dc2db7c44546300a7843314cfa21bc8" title="Dialog windows should be set transient for the main application window they were...">set_transient_for()</a> to make the dialog transient for the parent; most &lt;link linkend="gtk-X11-arch"&gt;window managers&lt;/link&gt; will then disallow lowering the dialog below the parent. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>modal</em>&#160;</td><td>Whether the window is modal. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a54af1fe27d57afc59744862a9ef922f1"></a><!-- doxytag: member="Gtk::Window::set_opacity" ref="a54af1fe27d57afc59744862a9ef922f1" args="(double opacity)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::Window::set_opacity </td>
          <td>(</td>
          <td class="paramtype">double&#160;</td>
          <td class="paramname"> <em>opacity</em></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Request the windowing system to make <em>window</em> partially transparent, with opacity 0 being fully transparent and 1 fully opaque. </p>
<p>(Values of the opacity parameter are clamped to the [0,1] range.) On X11 this has any effect only on X screens with a compositing manager running. See <a class="el" href="classGtk_1_1Widget.html#a06ee94eb3c601b3a400a9a1ceef97d01" title="Whether widget can rely on having its alpha channel drawn correctly.">Gtk::Widget::is_composited()</a>. On Windows it should work always.</p>
<p>Note that setting a window's opacity after the window has been shown causes it to flicker once on Windows.</p>
<dl class="since_2_12"><dt><b><a class="el" href="since_2_12.html#_since_2_12000134">Since gtkmm 2.12:</a></b></dt><dd></dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>opacity</em>&#160;</td><td>Desired opacity, between 0 and 1. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="ace2f64d36b5c1574073fc7c6e03df7a3"></a><!-- doxytag: member="Gtk::Window::set_position" ref="ace2f64d36b5c1574073fc7c6e03df7a3" args="(WindowPosition position)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::Window::set_position </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="group__gtkmmEnums.html#gabfa67443f852c48477b2d55b15982e21">WindowPosition</a>&#160;</td>
          <td class="paramname"> <em>position</em></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Sets a position constraint for this window. </p>
<p>If the old or new constraint is <a class="el" href="group__gtkmmEnums.html#ggabfa67443f852c48477b2d55b15982e21a8f72105fd448d50c1b0333d2d77935c0">Gtk::WIN_POS_CENTER_ALWAYS</a>, this will also cause the window to be repositioned to satisfy the new constraint. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>position</em>&#160;</td><td>A position constraint. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a1ec816449fe941e5fe330bfa509eeb7f"></a><!-- doxytag: member="Gtk::Window::set_resizable" ref="a1ec816449fe941e5fe330bfa509eeb7f" args="(bool resizable=true)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::Window::set_resizable </td>
          <td>(</td>
          <td class="paramtype">bool&#160;</td>
          <td class="paramname"> <em>resizable</em> = <code>true</code></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Sets whether the user can resize a window. </p>
<p>Windows are user resizable by default. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>resizable</em>&#160;</td><td><code>true</code> if the user can resize this window. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a0bc20c48120eb7ea4fc5e6170da050db"></a><!-- doxytag: member="Gtk::Window::set_role" ref="a0bc20c48120eb7ea4fc5e6170da050db" args="(const Glib::ustring &amp;role)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::Window::set_role </td>
          <td>(</td>
          <td class="paramtype">const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> &amp;&#160;</td>
          <td class="paramname"> <em>role</em></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>This function is only useful on X11, not with other GTK+ targets. </p>
<p>In combination with the window title, the window role allows a &lt;link linkend="gtk-X11-arch"&gt;window manager&lt;/link&gt; to identify "the
 same" window when an application is restarted. So for example you might set the "toolbox" role on your app's toolbox window, so that when the user restarts their session, the window manager can put the toolbox back in the same place.</p>
<p>If a window already has a unique title, you don't need to set the role, since the WM can use the title to identify the window when restoring the session. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>role</em>&#160;</td><td>Unique identifier for the window to be used when restoring a session. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a8019e1426461d32385bfea734b5e63a8"></a><!-- doxytag: member="Gtk::Window::set_screen" ref="a8019e1426461d32385bfea734b5e63a8" args="(const Glib::RefPtr&lt; Gdk::Screen &gt; &amp;screen)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::Window::set_screen </td>
          <td>(</td>
          <td class="paramtype">const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="el" href="classGdk_1_1Screen.html">Gdk::Screen</a> &gt;&amp;&#160;</td>
          <td class="paramname"> <em>screen</em></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Sets the <a class="el" href="classGdk_1_1Screen.html" title="Object representing a physical screen Gdk::Screen objects are the GDK representation...">Gdk::Screen</a> where the <em>window</em> is displayed; if the window is already mapped, it will be unmapped, and then remapped on the new screen. </p>
<dl class="since_2_2"><dt><b><a class="el" href="since_2_2.html#_since_2_2000126">Since gtkmm 2.2:</a></b></dt><dd></dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>screen</em>&#160;</td><td>A <a class="el" href="classGdk_1_1Screen.html" title="Object representing a physical screen Gdk::Screen objects are the GDK representation...">Gdk::Screen</a>. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a4cdea59994940ba8edc41f17e31f31a9"></a><!-- doxytag: member="Gtk::Window::set_skip_pager_hint" ref="a4cdea59994940ba8edc41f17e31f31a9" args="(bool setting=true)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::Window::set_skip_pager_hint </td>
          <td>(</td>
          <td class="paramtype">bool&#160;</td>
          <td class="paramname"> <em>setting</em> = <code>true</code></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Windows may set a hint asking the desktop environment not to display the window in the pager. </p>
<p>This function sets this hint. (A "pager" is any desktop navigation tool such as a workspace switcher that displays a thumbnail representation of the windows on the screen.)</p>
<dl class="since_2_2"><dt><b><a class="el" href="since_2_2.html#_since_2_2000124">Since gtkmm 2.2:</a></b></dt><dd></dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>setting</em>&#160;</td><td><code>true</code> to keep this window from appearing in the pager. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a0b88348a3d7c69b8930a0e2e11a63a88"></a><!-- doxytag: member="Gtk::Window::set_skip_taskbar_hint" ref="a0b88348a3d7c69b8930a0e2e11a63a88" args="(bool setting=true)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::Window::set_skip_taskbar_hint </td>
          <td>(</td>
          <td class="paramtype">bool&#160;</td>
          <td class="paramname"> <em>setting</em> = <code>true</code></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Windows may set a hint asking the desktop environment not to display the window in the task bar. </p>
<p>This function sets this hint.</p>
<dl class="since_2_2"><dt><b><a class="el" href="since_2_2.html#_since_2_2000122">Since gtkmm 2.2:</a></b></dt><dd></dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>setting</em>&#160;</td><td><code>true</code> to keep this window from appearing in the task bar. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a10c072ee6b41d5eea0002d986aa03c07"></a><!-- doxytag: member="Gtk::Window::set_title" ref="a10c072ee6b41d5eea0002d986aa03c07" args="(const Glib::ustring &amp;title)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::Window::set_title </td>
          <td>(</td>
          <td class="paramtype">const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> &amp;&#160;</td>
          <td class="paramname"> <em>title</em></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Sets the title of the <a class="el" href="classGtk_1_1Window.html" title="Toplevel Window This represents all widgets which are physical windows controlled...">Gtk::Window</a>. </p>
<p>The title of a window will be displayed in its title bar; on the X&#160;Window System, the title bar is rendered by the &lt;link linkend="gtk-X11-arch"&gt;window manager&lt;/link&gt;, so exactly how the title appears to users may vary according to a user's exact configuration. The title should help a user distinguish this window from other windows they may have open. A good title might include the application name and current document filename, for example. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>title</em>&#160;</td><td>Title of the window. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a4dc2db7c44546300a7843314cfa21bc8"></a><!-- doxytag: member="Gtk::Window::set_transient_for" ref="a4dc2db7c44546300a7843314cfa21bc8" args="(Window &amp;parent)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::Window::set_transient_for </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classGtk_1_1Window.html">Window</a>&amp;&#160;</td>
          <td class="paramname"> <em>parent</em></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p><a class="el" href="classGtk_1_1Dialog.html" title="Create popup windows.">Dialog</a> windows should be set transient for the main application window they were spawned from. </p>
<p>This allows &lt;link linkend="gtk-X11-arch"&gt;window managers&lt;/link&gt; to e.g. keep the dialog on top of the main window, or center the dialog over the main window. Gtk::Dialog::new_with_buttons() and other convenience functions in GTK+ will sometimes call <a class="el" href="classGtk_1_1Window.html#a4dc2db7c44546300a7843314cfa21bc8" title="Dialog windows should be set transient for the main application window they were...">set_transient_for()</a> on your behalf.</p>
<p>Passing <code>0</code> for <em>parent</em> unsets the current transient window.</p>
<p>On Windows, this function puts the child window on top of the parent, much as the window manager would have done on X. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>parent</em>&#160;</td><td>Parent window, or <code>0</code>. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a61321cd59c3630d1b9f0c07781a6029b"></a><!-- doxytag: member="Gtk::Window::set_type_hint" ref="a61321cd59c3630d1b9f0c07781a6029b" args="(Gdk::WindowTypeHint hint)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::Window::set_type_hint </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="group__gdkmmEnums.html#ga1f75a8db0f289997ac16bba0891776c9">Gdk::WindowTypeHint</a>&#160;</td>
          <td class="paramname"> <em>hint</em></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>By setting the type hint for the window, you allow the window manager to decorate and handle the window in a way which is suitable to the function of the window in your application. </p>
<p>This function should be called before the window becomes visible.</p>
<p>Gtk::Dialog::new_with_buttons() and other convenience functions in GTK+ will sometimes call <a class="el" href="classGtk_1_1Window.html#a61321cd59c3630d1b9f0c07781a6029b" title="By setting the type hint for the window, you allow the window manager to decorate...">set_type_hint()</a> on your behalf. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>hint</em>&#160;</td><td>The window type. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="afd7971d45db2936c2102faaa57e55279"></a><!-- doxytag: member="Gtk::Window::set_urgency_hint" ref="afd7971d45db2936c2102faaa57e55279" args="(bool setting=true)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::Window::set_urgency_hint </td>
          <td>(</td>
          <td class="paramtype">bool&#160;</td>
          <td class="paramname"> <em>setting</em> = <code>true</code></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Windows may set a hint asking the desktop environment to draw the users attention to the window. </p>
<p>This function sets this hint.</p>
<dl class="since_2_8"><dt><b><a class="el" href="since_2_8.html#_since_2_8000052">Since gtkmm 2.8:</a></b></dt><dd></dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>setting</em>&#160;</td><td><code>true</code> to mark this window as urgent. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="ac6a7119c34bcfc31fdc27a8061a6f8f1"></a><!-- doxytag: member="Gtk::Window::set_wmclass" ref="ac6a7119c34bcfc31fdc27a8061a6f8f1" args="(const Glib::ustring &amp;wmclass_name, const Glib::ustring &amp;wmclass_class)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::Window::set_wmclass </td>
          <td>(</td>
          <td class="paramtype">const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> &amp;&#160;</td>
          <td class="paramname"> <em>wmclass_name</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> &amp;&#160;</td>
          <td class="paramname"> <em>wmclass_class</em></td><td>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td><td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Don't use this function. </p>
<p>It sets the X&#160;Window System "class" and "name" hints for a window. According to the ICCCM, you should always set these to the same value for all windows in an application, and GTK+ sets them to that value by default, so calling this function is sort of pointless. However, you may want to call <a class="el" href="classGtk_1_1Window.html#a0bc20c48120eb7ea4fc5e6170da050db" title="This function is only useful on X11, not with other GTK+ targets.">set_role()</a> on each window in your application, for the benefit of the session manager. Setting the role allows the window manager to restore window positions when loading a saved session. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>wmclass_name</em>&#160;</td><td><a class="el" href="classGtk_1_1Window.html" title="Toplevel Window This represents all widgets which are physical windows controlled...">Window</a> name hint. </td></tr>
    <tr><td valign="top"></td><td valign="top"><em>wmclass_class</em>&#160;</td><td><a class="el" href="classGtk_1_1Window.html" title="Toplevel Window This represents all widgets which are physical windows controlled...">Window</a> class hint. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a505a69e917d75220202a28fe5713066f"></a><!-- doxytag: member="Gtk::Window::signal_frame_event" ref="a505a69e917d75220202a28fe5713066f" 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_1SignalProxy1.html">Glib::SignalProxy1</a>&lt; bool,GdkEvent* &gt; Gtk::Window::signal_frame_event </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">
<dl class="user"><dt><b>Prototype:</b></dt><dd><code>bool on_my_frame_event(GdkEvent* event)</code> </dd></dl>

</div>
</div>
<a class="anchor" id="ab88c04ab503236174c6a30f883407046"></a><!-- doxytag: member="Gtk::Window::signal_set_focus" ref="ab88c04ab503236174c6a30f883407046" 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_1SignalProxy1.html">Glib::SignalProxy1</a>&lt; void,<a class="el" href="classGtk_1_1Widget.html">Widget</a>* &gt; Gtk::Window::signal_set_focus </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">
<dl class="user"><dt><b>Prototype:</b></dt><dd><code>void on_my_set_focus(Widget* focus)</code> </dd></dl>

</div>
</div>
<a class="anchor" id="aaadaf48bd2ce3def9eb69e5347a415aa"></a><!-- doxytag: member="Gtk::Window::stick" ref="aaadaf48bd2ce3def9eb69e5347a415aa" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::Window::stick </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Asks to stick <em>window</em>, which means that it will appear on all user desktops. </p>
<p>Note that you shouldn't assume the window is definitely stuck afterward, because other entities (e.g. the user or &lt;link linkend="gtk-X11-arch"&gt;window manager&lt;/link&gt;) could unstick it again, and some window managers do not support sticking windows. But normally the window will end up stuck. Just don't write code that crashes if not.</p>
<p>It's permitted to call this function before showing a window.</p>
<p>You can track stickiness via the "window-state-event" signal on <a class="el" href="classGtk_1_1Widget.html" title="Abstract Widget (Base class for all widgets).">Gtk::Widget</a>. </p>

</div>
</div>
<a class="anchor" id="aa426c8fca5b776d5266da732293f6dab"></a><!-- doxytag: member="Gtk::Window::unfullscreen" ref="aa426c8fca5b776d5266da732293f6dab" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::Window::unfullscreen </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Asks to toggle off the fullscreen state for <em>window</em>. </p>
<p>Note that you shouldn't assume the window is definitely not full screen afterward, because other entities (e.g. the user or &lt;link linkend="gtk-X11-arch"&gt;window manager&lt;/link&gt;) could fullscreen it again, and not all window managers honor requests to unfullscreen windows. But normally the window will end up restored to its normal state. Just don't write code that crashes if not.</p>
<p>You can track the fullscreen state via the "window-state-event" signal on <a class="el" href="classGtk_1_1Widget.html" title="Abstract Widget (Base class for all widgets).">Gtk::Widget</a>.</p>
<dl class="since_2_2"><dt><b><a class="el" href="since_2_2.html#_since_2_2000132">Since gtkmm 2.2:</a></b></dt><dd></dd></dl>

</div>
</div>
<a class="anchor" id="a78bca41d0915b84f285187f3bfcd1e9c"></a><!-- doxytag: member="Gtk::Window::unmaximize" ref="a78bca41d0915b84f285187f3bfcd1e9c" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::Window::unmaximize </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Asks to unmaximize <em>window</em>. </p>
<p>Note that you shouldn't assume the window is definitely unmaximized afterward, because other entities (e.g. the user or &lt;link linkend="gtk-X11-arch"&gt;window manager&lt;/link&gt;) could maximize it again, and not all window managers honor requests to unmaximize. But normally the window will end up unmaximized. Just don't write code that crashes if not.</p>
<p>You can track maximization via the "window-state-event" signal on <a class="el" href="classGtk_1_1Widget.html" title="Abstract Widget (Base class for all widgets).">Gtk::Widget</a>. </p>

</div>
</div>
<a class="anchor" id="ad17e8ca434b1284ee2778daaddc3f5b3"></a><!-- doxytag: member="Gtk::Window::unset_default" ref="ad17e8ca434b1284ee2778daaddc3f5b3" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::Window::unset_default </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

</div>
</div>
<a class="anchor" id="a8dbaf6fd2f692b1dda1e9eb2d7fb9edf"></a><!-- doxytag: member="Gtk::Window::unset_focus" ref="a8dbaf6fd2f692b1dda1e9eb2d7fb9edf" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::Window::unset_focus </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

</div>
</div>
<a class="anchor" id="a8765c60eaa06575d86d877cd5ba75d6d"></a><!-- doxytag: member="Gtk::Window::unset_transient_for" ref="a8765c60eaa06575d86d877cd5ba75d6d" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::Window::unset_transient_for </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Unsets the current transient window. </p>
<dl class="see"><dt><b>See also:</b></dt><dd><a class="el" href="classGtk_1_1Window.html#a4dc2db7c44546300a7843314cfa21bc8" title="Dialog windows should be set transient for the main application window they were...">set_transient_for()</a>. </dd></dl>
<dl class="since_2_20"><dt><b><a class="el" href="since_2_20.html#_since_2_20000092">Since gtkmm 2.20:</a></b></dt><dd></dd></dl>

</div>
</div>
<a class="anchor" id="ae2b53147692cf07b5738e0a76c27f50f"></a><!-- doxytag: member="Gtk::Window::unstick" ref="ae2b53147692cf07b5738e0a76c27f50f" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::Window::unstick </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Asks to unstick <em>window</em>, which means that it will appear on only one of the user's desktops. </p>
<p>Note that you shouldn't assume the window is definitely unstuck afterward, because other entities (e.g. the user or &lt;link linkend="gtk-X11-arch"&gt;window manager&lt;/link&gt;) could stick it again. But normally the window will end up stuck. Just don't write code that crashes if not.</p>
<p>You can track stickiness via the "window-state-event" signal on <a class="el" href="classGtk_1_1Widget.html" title="Abstract Widget (Base class for all widgets).">Gtk::Widget</a>. </p>

</div>
</div>
<hr/><h2>Friends And Related Function Documentation</h2>
<a class="anchor" id="ae450767a1f7f277ee50a0acb197f3e08"></a><!-- doxytag: member="Gtk::Window::wrap" ref="ae450767a1f7f277ee50a0acb197f3e08" args="(GtkWindow *object, bool take_copy=false)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classGtk_1_1Window.html">Gtk::Window</a>* wrap </td>
          <td>(</td>
          <td class="paramtype">GtkWindow *&#160;</td>
          <td class="paramname"> <em>object</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">bool&#160;</td>
          <td class="paramname"> <em>take_copy</em> = <code>false</code></td><td>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <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 border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>object</em>&#160;</td><td>The C instance. </td></tr>
    <tr><td valign="top"></td><td valign="top"><em>take_copy</em>&#160;</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>gtkmm/window.h</li>
</ul>
</div>
<hr size="1"/><address style="text-align: right;"><small>Generated on Tue May 4 13:22:08 2010 for gtkmm by&#160;
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.1 </small></address>
</body>
</html>