~ctwm/ctwm/trunk

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
/*****************************************************************************/
/**       Copyright 1988 by Evans & Sutherland Computer Corporation,        **/
/**                          Salt Lake City, Utah                           **/
/**  Portions Copyright 1989 by the Massachusetts Institute of Technology   **/
/**                        Cambridge, Massachusetts                         **/
/**                                                                         **/
/**                           All Rights Reserved                           **/
/**                                                                         **/
/**    Permission to use, copy, modify, and distribute this software and    **/
/**    its documentation  for  any  purpose  and  without  fee is hereby    **/
/**    granted, provided that the above copyright notice appear  in  all    **/
/**    copies and that both  that  copyright  notice  and  this  permis-    **/
/**    sion  notice appear in supporting  documentation,  and  that  the    **/
/**    names of Evans & Sutherland and M.I.T. not be used in advertising    **/
/**    in publicity pertaining to distribution of the  software  without    **/
/**    specific, written prior permission.                                  **/
/**                                                                         **/
/**    EVANS & SUTHERLAND AND M.I.T. DISCLAIM ALL WARRANTIES WITH REGARD    **/
/**    TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES  OF  MERCHANT-    **/
/**    ABILITY  AND  FITNESS,  IN  NO  EVENT SHALL EVANS & SUTHERLAND OR    **/
/**    M.I.T. BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL  DAM-    **/
/**    AGES OR  ANY DAMAGES WHATSOEVER  RESULTING FROM LOSS OF USE, DATA    **/
/**    OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER    **/
/**    TORTIOUS ACTION, ARISING OUT OF OR IN  CONNECTION  WITH  THE  USE    **/
/**    OR PERFORMANCE OF THIS SOFTWARE.                                     **/
/*****************************************************************************/

/*
 *  [ ctwm ]
 *
 *  Copyright 1992 Claude Lecommandeur.
 *
 * Permission to use, copy, modify  and distribute this software  [ctwm] and
 * its documentation for any purpose is hereby granted without fee, provided
 * that the above  copyright notice appear  in all copies and that both that
 * copyright notice and this permission notice appear in supporting documen-
 * tation, and that the name of  Claude Lecommandeur not be used in adverti-
 * sing or  publicity  pertaining to  distribution of  the software  without
 * specific, written prior permission. Claude Lecommandeur make no represen-
 * tations  about the suitability  of this software  for any purpose.  It is
 * provided "as is" without express or implied warranty.
 *
 * Claude Lecommandeur DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
 * INCLUDING ALL  IMPLIED WARRANTIES OF  MERCHANTABILITY AND FITNESS.  IN NO
 * EVENT SHALL  Claude Lecommandeur  BE LIABLE FOR ANY SPECIAL,  INDIRECT OR
 * CONSEQUENTIAL  DAMAGES OR ANY  DAMAGES WHATSOEVER  RESULTING FROM LOSS OF
 * USE, DATA  OR PROFITS,  WHETHER IN AN ACTION  OF CONTRACT,  NEGLIGENCE OR
 * OTHER  TORTIOUS ACTION,  ARISING OUT OF OR IN  CONNECTION WITH THE USE OR
 * PERFORMANCE OF THIS SOFTWARE.
 *
 * Author:  Claude Lecommandeur [ lecom@sic.epfl.ch ][ April 1992 ]
 */

/**********************************************************************
 *
 * $XConsortium: add_window.c,v 1.153 91/07/10 13:17:26 dave Exp $
 *
 * Add a new window, put the titlbar and other stuff around
 * the window
 *
 * 31-Mar-88 Tom LaStrange        Initial Version.
 *
 * Do the necessary modification to be integrated in ctwm.
 * Can no longer be used for the standard twm.
 *
 * 22-April-92 Claude Lecommandeur.
 *
 **********************************************************************/

#include "ctwm.h"

#include <stdio.h>
#include <string.h>
#include <sys/time.h>
#include <X11/Xatom.h>

#include "ctwm_atoms.h"
#include "add_window.h"
#include "windowbox.h"
#include "util.h"
#include "otp.h"
#include "resize.h"
#include "parse.h"
#include "list.h"
#include "events.h"
#include "menus.h"
#include "screen.h"
#include "icons.h"
#include "iconmgr.h"
#include "session.h"
#include "mwmhints.h"

#define gray_width 2
#define gray_height 2
static unsigned char gray_bits[] = {
	0x02, 0x01
};
static unsigned char black_bits[] = {
	0xFF, 0xFF
};

int AddingX;
int AddingY;
unsigned int AddingW;
unsigned int AddingH;

static int PlaceX = -1;
static int PlaceY = -1;
static void CreateWindowTitlebarButtons(TwmWindow *tmp_win);
void DealWithNonSensicalGeometries(Display *dpy, Window vroot,
                                   TwmWindow *tmp_win);

static void             splitWindowRegionEntry(WindowEntry     *we,
                int grav1, int grav2,
                int w, int h);
static WindowEntry      *findWindowEntry(WorkSpace    *wl,
                TwmWindow    *tmp_win,
                WindowRegion **wrp);
static WindowEntry      *prevWindowEntry(WindowEntry   *we,
                WindowRegion  *wr);
static void             mergeWindowEntries(WindowEntry *old, WindowEntry *we);

char NoName[] = "Untitled"; /* name if no name is specified */
int  resizeWhenAdd;

/************************************************************************
 *
 *  Procedure:
 *      GetGravityOffsets - map gravity to (x,y) offset signs for adding
 *              to x and y when window is mapped to get proper placement.
 *
 ************************************************************************
 */

void GetGravityOffsets(TwmWindow *tmp,  /* window from which to get gravity */
                       int *xp, int *yp)       /* return values */
{
	static struct _gravity_offset {
		int x, y;
	} gravity_offsets[11] = {
		{  0,  0 },                     /* ForgetGravity */
		{ -1, -1 },                     /* NorthWestGravity */
		{  0, -1 },                     /* NorthGravity */
		{  1, -1 },                     /* NorthEastGravity */
		{ -1,  0 },                     /* WestGravity */
		{  0,  0 },                     /* CenterGravity */
		{  1,  0 },                     /* EastGravity */
		{ -1,  1 },                     /* SouthWestGravity */
		{  0,  1 },                     /* SouthGravity */
		{  1,  1 },                     /* SouthEastGravity */
		{  0,  0 },                     /* StaticGravity */
	};
	int g = ((tmp->hints.flags & PWinGravity)
	         ? tmp->hints.win_gravity : NorthWestGravity);

	if(g < ForgetGravity || g > StaticGravity) {
		*xp = *yp = 0;
	}
	else {
		*xp = gravity_offsets[g].x;
		*yp = gravity_offsets[g].y;
	}
}




/***********************************************************************
 *
 *  Procedure:
 *      AddWindow - add a new window to the twm list
 *
 *  Returned Value:
 *      (TwmWindow *) - pointer to the TwmWindow structure
 *
 *  Inputs:
 *      w       - the window id of the window to add
 *      iconm   - flag to tell if this is an icon manager window
 *              0 --> normal window.
 *              1 --> icon manager.
 *              2 --> window box;
 *              else --> iconmgr;
 *
 *      iconp   - pointer to icon manager struct
 *
 ***********************************************************************
 */

TwmWindow *AddWindow(Window w, int iconm, IconMgr *iconp, VirtualScreen *vs)
{
	TwmWindow *tmp_win;                 /* new twm window structure */
	int stat;
	XEvent event;
	unsigned long valuemask;            /* mask for create windows */
	XSetWindowAttributes attributes;    /* attributes for create windows */
	int width, height;                  /* tmp variable */
	int ask_user;               /* don't know where to put the window */
	int gravx, gravy;                   /* gravity signs for positioning */
	int namelen;
	int bw2;
	short saved_x, saved_y, restore_icon_x, restore_icon_y;
	unsigned short saved_width, saved_height;
	Bool restore_iconified = 0;
	Bool restore_icon_info_present = 0;
	int restoredFromPrevSession;
	Bool width_ever_changed_by_user;
	Bool height_ever_changed_by_user;
	int saved_occupation; /* <== [ Matthew McNeill Feb 1997 ] == */
	Bool        random_placed = False;
	int         found = 0;
	fd_set      mask;
	int         fd;
	struct timeval timeout;
	XRectangle ink_rect;
	XRectangle logical_rect;
	WindowBox *winbox;
	int iswinbox = 0;
	int iswman = 0;
	Window vroot;

#ifdef DEBUG
	fprintf(stderr, "AddWindow: w = 0x%x\n", w);
#endif

	if(!CLarg.is_captive && RedirectToCaptive(w)) {
		return (NULL);
	}

	/* allocate space for the twm window */
	tmp_win = (TwmWindow *)calloc(1, sizeof(TwmWindow));
	if(tmp_win == 0) {
		fprintf(stderr, "%s: Unable to allocate memory to manage window ID %lx.\n",
		        ProgramName, w);
		return NULL;
	}

	switch(iconm) {
		case ADD_WINDOW_NORMAL:
			break;
		case ADD_WINDOW_ICON_MANAGER:
			/* iconm remains nonzero */
			break;
		case  ADD_WINDOW_WINDOWBOX:
			iswinbox = 1;
			iconm  = 0;
			break;
		case ADD_WINDOW_WORKSPACE_MANAGER :
			iswman = 1;
			iconm  = 0;
			break;
		default :
			iconm = ADD_WINDOW_ICON_MANAGER;
			break;
	}
	tmp_win->w = w;
	tmp_win->zoomed = ZOOM_NONE;
	tmp_win->iconmgr = iconm;
	tmp_win->iconmgrp = iconp;
	tmp_win->wspmgr = iswman;
	tmp_win->iswinbox = iswinbox;
	tmp_win->vs = vs;
	tmp_win->parent_vs = vs;
	tmp_win->savevs = NULL;
	tmp_win->cmaps.number_cwins = 0;
	tmp_win->savegeometry.width = -1;

	XSelectInput(dpy, tmp_win->w, PropertyChangeMask);
	XGetWindowAttributes(dpy, tmp_win->w, &tmp_win->attr);
	tmp_win->name = (char *) GetWMPropertyString(tmp_win->w, XA_WM_NAME);
	tmp_win->class = NoClass;
	XGetClassHint(dpy, tmp_win->w, &tmp_win->class);
	FetchWmProtocols(tmp_win);
	FetchWmColormapWindows(tmp_win);

	if(GetWindowConfig(tmp_win,
	                   &saved_x, &saved_y, &saved_width, &saved_height,
	                   &restore_iconified, &restore_icon_info_present,
	                   &restore_icon_x, &restore_icon_y,
	                   &width_ever_changed_by_user, &height_ever_changed_by_user,
	                   &saved_occupation)) { /* <== [ Matthew McNeill Feb 1997 ] == */
		tmp_win->attr.x = saved_x;
		tmp_win->attr.y = saved_y;

		tmp_win->widthEverChangedByUser = width_ever_changed_by_user;
		tmp_win->heightEverChangedByUser = height_ever_changed_by_user;

		if(width_ever_changed_by_user) {
			tmp_win->attr.width = saved_width;
		}

		if(height_ever_changed_by_user) {
			tmp_win->attr.height = saved_height;
		}

		restoredFromPrevSession = 1;
	}
	else {
		tmp_win->widthEverChangedByUser = False;
		tmp_win->heightEverChangedByUser = False;

		restoredFromPrevSession = 0;
	}

	/*
	 * do initial clip; should look at window gravity
	 */
	if(tmp_win->attr.width > Scr->MaxWindowWidth) {
		tmp_win->attr.width = Scr->MaxWindowWidth;
	}
	if(tmp_win->attr.height > Scr->MaxWindowHeight) {
		tmp_win->attr.height = Scr->MaxWindowHeight;
	}

	tmp_win->wmhints = XGetWMHints(dpy, tmp_win->w);

	if(tmp_win->wmhints) {
		if(restore_iconified) {
			tmp_win->wmhints->initial_state = IconicState;
			tmp_win->wmhints->flags |= StateHint;
		}

		if(restore_icon_info_present) {
			tmp_win->wmhints->icon_x = restore_icon_x;
			tmp_win->wmhints->icon_y = restore_icon_y;
			tmp_win->wmhints->flags |= IconPositionHint;
		}
	}

	if(tmp_win->wmhints) {
		tmp_win->wmhints->input = True;
	}
	/* CL: Having with not willing focus
	cause problems with AutoSqueeze and a few others
	things. So I suppress it. And the whole focus thing
	is buggy anyway */
	if(tmp_win->wmhints && !(tmp_win->wmhints->flags & InputHint)) {
		tmp_win->wmhints->input = True;
	}
	if(tmp_win->wmhints && (tmp_win->wmhints->flags & WindowGroupHint)) {
		tmp_win->group = tmp_win->wmhints->window_group;
		if(tmp_win->group) {
			/*
			 * GTK windows often have a spurious "group leader" window which is
			 * never reported to us and therefore does not really exist.  This
			 * is annoying because we treat group members a lot like transient
			 * windows.  Look for that here. It is in fact a duplicate of the
			 * WM_CLIENT_LEADER property.
			 */
			if(tmp_win->group != w && !GetTwmWindow(tmp_win->group)) {
				tmp_win->group = 0;
			}
		}
	}
	else {
		tmp_win->group = 0;
	}

	/*
	 * The July 27, 1988 draft of the ICCCM ignores the size and position
	 * fields in the WM_NORMAL_HINTS property.
	 */

	tmp_win->transient = Transient(tmp_win->w, &tmp_win->transientfor);

	tmp_win->nameChanged = 0;
	if(tmp_win->name == NULL) {
		tmp_win->name = NoName;
	}
	if(tmp_win->class.res_name == NULL) {
		tmp_win->class.res_name = NoName;
	}
	if(tmp_win->class.res_class == NULL) {
		tmp_win->class.res_class = NoName;
	}

	/*
	 * full_name seems to exist only because in the conditional code below,
	 * name is sometimes changed. In all other cases, name and full_name
	 * seem to be identical. Is that worth it?
	 */
	tmp_win->full_name = tmp_win->name;
#ifdef CLAUDE
	if(strstr(tmp_win->name, " - Mozilla")) {
		char *moz = strstr(tmp_win->name, " - Mozilla");
		*moz = '\0';
	}
#endif
	namelen = strlen(tmp_win->name);

	if(LookInList(Scr->IgnoreTransientL, tmp_win->full_name, &tmp_win->class)) {
		tmp_win->transient = 0;
	}

	tmp_win->highlight = Scr->Highlight &&
	                     (!LookInList(Scr->NoHighlight, tmp_win->full_name,
	                                  &tmp_win->class));

	tmp_win->stackmode = Scr->StackMode &&
	                     (!LookInList(Scr->NoStackModeL, tmp_win->full_name,
	                                  &tmp_win->class));

	tmp_win->titlehighlight = Scr->TitleHighlight &&
	                          (!LookInList(Scr->NoTitleHighlight, tmp_win->full_name,
	                                       &tmp_win->class));

	tmp_win->auto_raise = Scr->AutoRaiseDefault ||
	                      LookInList(Scr->AutoRaise, tmp_win->full_name,
	                                 &tmp_win->class);
	if(tmp_win->auto_raise) {
		Scr->NumAutoRaises++;
	}

	tmp_win->auto_lower = Scr->AutoLowerDefault ||
	                      LookInList(Scr->AutoLower, tmp_win->full_name,
	                                 &tmp_win->class);
	if(tmp_win->auto_lower) {
		Scr->NumAutoLowers++;
	}

	tmp_win->iconify_by_unmapping = Scr->IconifyByUnmapping;
	if(Scr->IconifyByUnmapping) {
		tmp_win->iconify_by_unmapping = iconm ? FALSE :
		                                !LookInList(Scr->DontIconify, tmp_win->full_name,
		                                                &tmp_win->class);
	}
	tmp_win->iconify_by_unmapping = tmp_win->iconify_by_unmapping ||
	                                LookInList(Scr->IconifyByUn, tmp_win->full_name, &tmp_win->class);

	if(LookInList(Scr->UnmapByMovingFarAway, tmp_win->full_name, &tmp_win->class)) {
		tmp_win->UnmapByMovingFarAway = True;
	}
	else {
		tmp_win->UnmapByMovingFarAway = False;
	}

	if(LookInList(Scr->DontSetInactive, tmp_win->full_name, &tmp_win->class)) {
		tmp_win->DontSetInactive = True;
	}
	else {
		tmp_win->DontSetInactive = False;
	}

#ifdef EWMH
	EwmhGetProperties(tmp_win);
#endif /* EWMH */

	if(LookInList(Scr->AutoSqueeze, tmp_win->full_name, &tmp_win->class)) {
		tmp_win->AutoSqueeze = True;
	}
	else {
		tmp_win->AutoSqueeze = False;
	}

	if(
#ifdef EWMH
	        (tmp_win->ewmhFlags & EWMH_STATE_SHADED) ||
#endif /* EWMH */
	        LookInList(Scr->StartSqueezed, tmp_win->full_name, &tmp_win->class)) {
		tmp_win->StartSqueezed = True;
	}
	else {
		tmp_win->StartSqueezed = False;
	}

	if(Scr->AlwaysSqueezeToGravity
	                || LookInList(Scr->AlwaysSqueezeToGravityL, tmp_win->full_name,
	                              &tmp_win->class)) {
		tmp_win->AlwaysSqueezeToGravity = True;
	}
	else {
		tmp_win->AlwaysSqueezeToGravity = False;
	}

	if(tmp_win->transient || tmp_win->group) {
		TwmWindow *t = NULL;
		if(tmp_win->transient) {
			t = GetTwmWindow(tmp_win->transientfor);
		}
		if(!t && tmp_win->group) {
			t = GetTwmWindow(tmp_win->group);
		}
		if(t) {
			tmp_win->UnmapByMovingFarAway = t->UnmapByMovingFarAway;
		}
	}
	if((Scr->WindowRingAll && !iswman && !iconm &&
#ifdef EWMH
	                EwmhOnWindowRing(tmp_win) &&
#endif /* EWMH */
	                !LookInList(Scr->WindowRingExcludeL, tmp_win->full_name, &tmp_win->class)) ||
	                LookInList(Scr->WindowRingL, tmp_win->full_name, &tmp_win->class)) {
		if(Scr->Ring) {
			tmp_win->ring.next = Scr->Ring->ring.next;
			if(Scr->Ring->ring.next->ring.prev) {
				Scr->Ring->ring.next->ring.prev = tmp_win;
			}
			Scr->Ring->ring.next = tmp_win;
			tmp_win->ring.prev = Scr->Ring;
		}
		else {
			tmp_win->ring.next = tmp_win->ring.prev = Scr->Ring = tmp_win;
		}
	}
	else {
		tmp_win->ring.next = tmp_win->ring.prev = NULL;
	}
	tmp_win->ring.cursor_valid = False;

	tmp_win->squeeze_info = NULL;
	tmp_win->squeeze_info_copied = 0;
	/*
	 * get the squeeze information; note that this does not have to be freed
	 * since it is coming from the screen list
	 */
	if(HasShape) {
		if(!LookInList(Scr->DontSqueezeTitleL, tmp_win->full_name,
		                &tmp_win->class)) {
			tmp_win->squeeze_info = (SqueezeInfo *)
			                        LookInList(Scr->SqueezeTitleL, tmp_win->full_name,
			                                   &tmp_win->class);
			if(!tmp_win->squeeze_info) {
				static SqueezeInfo default_squeeze = { J_LEFT, 0, 0 };
				if(Scr->SqueezeTitle) {
					tmp_win->squeeze_info = &default_squeeze;
				}
			}
		}
	}

	tmp_win->old_bw = tmp_win->attr.border_width;

	{
		MotifWmHints mwmHints;
		Boolean have_title;

		GetMWMHints(tmp_win->w, &mwmHints);

		tmp_win->frame_bw3D = Scr->ThreeDBorderWidth;
		if(
#ifdef EWMH
		        !EwmhHasBorder(tmp_win) ||
#endif /* EWMH */
		        ((mwmHints.flags & MWM_HINTS_DECORATIONS) &&
		         (mwmHints.decorations & MWM_DECOR_BORDER) == 0) ||
		        LookInList(Scr->NoBorder, tmp_win->full_name, &tmp_win->class)) {
			tmp_win->frame_bw = 0;
			tmp_win->frame_bw3D = 0;
		}
		else if(tmp_win->frame_bw3D != 0) {
			tmp_win->frame_bw = 0;
		}
		else if(Scr->ClientBorderWidth) {
			tmp_win->frame_bw = tmp_win->old_bw;
		}
		else {
			tmp_win->frame_bw = Scr->BorderWidth;
		}
		bw2 = tmp_win->frame_bw * 2;


		have_title = True;
#ifdef EWMH
		have_title = EwmhHasTitle(tmp_win);
#endif /* EWMH */
		if(mwmHints.flags & MWM_HINTS_DECORATIONS) {
			have_title = (mwmHints.decorations & MWM_DECOR_TITLE) != 0;
		}
		if(Scr->NoTitlebar) {
			have_title = False;
		}
		if(LookInList(Scr->MakeTitle, tmp_win->full_name, &tmp_win->class)) {
			have_title = True;
		}
		if(LookInList(Scr->NoTitle, tmp_win->full_name, &tmp_win->class)) {
			have_title = False;
		}

		if(have_title) {
			tmp_win->title_height = Scr->TitleHeight + tmp_win->frame_bw;
		}
		else {
			tmp_win->title_height = 0;
		}
	}

	tmp_win->OpaqueMove = Scr->DoOpaqueMove;
	if(LookInList(Scr->OpaqueMoveList, tmp_win->full_name, &tmp_win->class)) {
		tmp_win->OpaqueMove = TRUE;
	}
	else if(LookInList(Scr->NoOpaqueMoveList, tmp_win->full_name,
	                   &tmp_win->class)) {
		tmp_win->OpaqueMove = FALSE;
	}

	tmp_win->OpaqueResize = Scr->DoOpaqueResize;
	if(LookInList(Scr->OpaqueResizeList, tmp_win->full_name, &tmp_win->class)) {
		tmp_win->OpaqueResize = TRUE;
	}
	else if(LookInList(Scr->NoOpaqueResizeList, tmp_win->full_name,
	                   &tmp_win->class)) {
		tmp_win->OpaqueResize = FALSE;
	}

	/* if it is a transient window, don't put a title on it */
	if(tmp_win->transient && !Scr->DecorateTransients) {
		tmp_win->title_height = 0;
	}

	if(LookInList(Scr->StartIconified, tmp_win->full_name, &tmp_win->class)) {
		if(!tmp_win->wmhints) {
			tmp_win->wmhints = (XWMHints *)malloc(sizeof(XWMHints));
			tmp_win->wmhints->flags = 0;
		}
		tmp_win->wmhints->initial_state = IconicState;
		tmp_win->wmhints->flags |= StateHint;
	}

	GetWindowSizeHints(tmp_win);

	if(restoredFromPrevSession) {
		/*
		 * When restoring window positions from the previous session,
		 * we always use NorthWest gravity.
		 */

		gravx = gravy = -1;
	}
	else {
		GetGravityOffsets(tmp_win, &gravx, &gravy);
	}

	/*
	 * Don't bother user if:
	 *
	 *     o  the window is a transient, or
	 *
	 *     o  a USPosition was requested, or
	 *
	 *     o  a PPosition was requested and UsePPosition is ON or
	 *        NON_ZERO if the window is at other than (0,0)
	 */
	ask_user = TRUE;
	if(tmp_win->transient ||
	                (tmp_win->hints.flags & USPosition) ||
	                ((tmp_win->hints.flags & PPosition) && Scr->UsePPosition &&
	                 (Scr->UsePPosition == PPOS_ON ||
	                  tmp_win->attr.x != 0 || tmp_win->attr.y != 0))) {
		ask_user = FALSE;
	}

	/*===============[ Matthew McNeill 1997 ]==========================*
	 * added the occupation parameter to this function call so that the
	 * occupation can be set up in a specific state if desired
	 * (restore session for example)
	 */

	/*
	 * Note, this may update tmp_win->{parent_,}vs if needed to make the
	 * window visible in another vscreen.
	 * It may set tmp_win->vs to NULL if it has no occupation in the
	 * current workspace.
	 */

	if(restoredFromPrevSession) {
		SetupOccupation(tmp_win, saved_occupation);
	}
	else {
		SetupOccupation(tmp_win, 0);
	}
	/*=================================================================*/

	tmp_win->frame_width  = tmp_win->attr.width  + 2 * tmp_win->frame_bw3D;
	tmp_win->frame_height = tmp_win->attr.height + 2 * tmp_win->frame_bw3D +
	                        tmp_win->title_height;
	ConstrainSize(tmp_win, &tmp_win->frame_width, &tmp_win->frame_height);
	winbox = findWindowBox(tmp_win);
	if(PlaceWindowInRegion(tmp_win, &(tmp_win->attr.x), &(tmp_win->attr.y))) {
		ask_user = False;
	}
	if(LookInList(Scr->WindowGeometries, tmp_win->full_name, &tmp_win->class)) {
		char *geom;
		int mask_;
		geom = LookInList(Scr->WindowGeometries, tmp_win->full_name, &tmp_win->class);
		mask_ = XParseGeometry(geom, &tmp_win->attr.x, &tmp_win->attr.y,
		                       (unsigned int *) &tmp_win->attr.width,
		                       (unsigned int *) &tmp_win->attr.height);

		if(mask_ & XNegative) {
			tmp_win->attr.x += Scr->rootw - tmp_win->attr.width;
		}
		if(mask_ & YNegative) {
			tmp_win->attr.y += Scr->rooth - tmp_win->attr.height;
		}
		ask_user = False;
	}

	vs = tmp_win->parent_vs;
	if(vs) {
		vroot = vs->window;
	}
	else {
		vroot = Scr->Root;      /* never */
		tmp_win->parent_vs = Scr->currentvs;
	}
	if(winbox) {
		vroot = winbox->window;
	}

	/*
	 * do any prompting for position
	 */

	if(HandlingEvents && ask_user && !restoredFromPrevSession) {
		if((Scr->RandomPlacement == RP_ALL) ||
		                ((Scr->RandomPlacement == RP_UNMAPPED) &&
		                 ((tmp_win->wmhints && (tmp_win->wmhints->initial_state == IconicState)) ||
		                  (! visible(tmp_win))))) {  /* just stick it somewhere */

#ifdef DEBUG
			fprintf(stderr,
			        "DEBUG[RandomPlacement]: win: %dx%d+%d+%d, screen: %dx%d, title height: %d, random: +%d+%d\n",
			        tmp_win->attr.width, tmp_win->attr.height,
			        tmp_win->attr.x, tmp_win->attr.y,
			        Scr->rootw, Scr->rooth,
			        tmp_win->title_height,
			        PlaceX, PlaceY);
#endif

			/* Initiallise PlaceX and PlaceY */
			if(PlaceX < 0 && PlaceY < 0) {
				if(Scr->RandomDisplacementX >= 0) {
					PlaceX = Scr->BorderLeft + 5;
				}
				else {
					PlaceX = Scr->rootw - tmp_win->attr.width - Scr->BorderRight - 5;
				}
				if(Scr->RandomDisplacementY >= 0) {
					PlaceY = Scr->BorderTop + 5;
				}
				else
					PlaceY = Scr->rooth - tmp_win->attr.height - tmp_win->title_height
					         - Scr->BorderBottom - 5;
			}

			/* For a positive horizontal displacement, if the right edge
			   of the window would fall outside of the screen, start over
			   by placing the left edge of the window 5 pixels inside
			   the left edge of the screen.*/
			if(Scr->RandomDisplacementX >= 0
			                && (PlaceX + tmp_win->attr.width
			                    > Scr->rootw - Scr->BorderRight - 5)) {
				PlaceX = Scr->BorderLeft + 5;
			}

			/* For a negative horizontal displacement, if the left edge
			   of the window would fall outside of the screen, start over
			   by placing the right edge of the window 5 pixels inside
			   the right edge of the screen.*/
			if(Scr->RandomDisplacementX < 0 && PlaceX < Scr->BorderLeft + 5) {
				PlaceX = Scr->rootw - tmp_win->attr.width - Scr->BorderRight - 5;
			}

			/* For a positive vertical displacement, if the bottom edge
			   of the window would fall outside of the screen, start over
			   by placing the top edge of the window 5 pixels inside the
			   top edge of the screen.  Because we add the title height
			   further down, we need to count with it here as well.  */
			if(Scr->RandomDisplacementY >= 0
			                && (PlaceY + tmp_win->attr.height + tmp_win->title_height
			                    > Scr->rooth - Scr->BorderBottom - 5)) {
				PlaceY = Scr->BorderTop + 5;
			}

			/* For a negative vertical displacement, if the top edge of
			   the window would fall outside of the screen, start over by
			   placing the bottom edge of the window 5 pixels inside the
			   bottom edge of the screen.  Because we add the title height
			   further down, we need to count with it here as well.  */
			if(Scr->RandomDisplacementY < 0 && PlaceY < Scr->BorderTop + 5)
				PlaceY = Scr->rooth - tmp_win->attr.height - tmp_win->title_height
				         - Scr->BorderBottom - 5;

			/* Assign the current random placement to the new window, as
			   a preliminary measure.  Add the title height so things will
			   look right.  */
			tmp_win->attr.x = PlaceX;
			tmp_win->attr.y = PlaceY + tmp_win->title_height;

			/* If the window is not supposed to move off the screen, check
			   that it's still within the screen, and if not, attempt to
			   correct the situation. */
			if(Scr->DontMoveOff) {
				int available;

#ifdef DEBUG
				fprintf(stderr,
				        "DEBUG[DontMoveOff]: win: %dx%d+%d+%d, screen: %dx%d, bw2: %d, bw3D: %d\n",
				        tmp_win->attr.width, tmp_win->attr.height,
				        tmp_win->attr.x, tmp_win->attr.y,
				        Scr->rootw, Scr->rooth,
				        bw2, tmp_win->frame_bw3D);
#endif

				/* If the right edge of the window is outside the right edge
				   of the screen, we need to move the window left.  Note that
				   this can only happen with windows that are less than 50
				   pixels less wide than the screen. */
				if((tmp_win->attr.x + tmp_win->attr.width)  > Scr->rootw) {
					available = Scr->rootw - tmp_win->attr.width
					            - 2 * (bw2 + tmp_win->frame_bw3D);

#ifdef DEBUG
					fprintf(stderr, "DEBUG[DontMoveOff]: availableX: %d\n",
					        available);
#endif

					/* If the window is wider than the screen or exactly the width
					 of the screen, the availability is exactly 0.  The result
					 will be to have the window placed as much to the left as
					 possible. */
					if(available <= 0) {
						available = 0;
					}

					/* Place the window exactly between the left and right edge of
					 the screen when possible.  If available was originally less
					 than zero, it means the window's left edge will be against
					 the screen's left edge, and the window's right edge will be
					 outside the screen.  */
					tmp_win->attr.x = available / 2;
				}

				/* If the bottom edge of the window is outside the bottom edge
				   of the screen, we need to move the window up.  Note that
				   this can only happen with windows that are less than 50
				   pixels less tall than the screen.  Don't forget to count
				   with the title height and the frame widths.  */
				if((tmp_win->attr.y + tmp_win->attr.height)  > Scr->rooth) {
					available = Scr->rooth - tmp_win->attr.height
					            - tmp_win->title_height - 2 * (bw2 + tmp_win->frame_bw3D);

#ifdef DEBUG
					fprintf(stderr, "DEBUG[DontMoveOff]: availableY: %d\n",
					        available);
#endif

					/* If the window is taller than the screen or exactly the
					 height of the screen, the availability is exactly 0.
					 The result will be to have the window placed as much to
					 the top as possible. */
					if(available <= 0) {
						available = 0;
					}

					/* Place the window exactly between the top and bottom edge of
					 the screen when possible.  If available was originally less
					 than zero, it means the window's top edge will be against
					 the screen's top edge, and the window's bottom edge will be
					 outside the screen.  Again, don't forget to add the title
					 height.  */
					tmp_win->attr.y = available / 2 + tmp_win->title_height;
				}

#ifdef DEBUG
				fprintf(stderr,
				        "DEBUG[DontMoveOff]: win: %dx%d+%d+%d, screen: %dx%d\n",
				        tmp_win->attr.width, tmp_win->attr.height,
				        tmp_win->attr.x, tmp_win->attr.y,
				        Scr->rootw, Scr->rooth);
#endif
			}

			/* We know that if the window's left edge has moved compared to
			   PlaceX, it will have moved to the left.  If it was moved less
			   than 15 pixel either way, change the next "random position"
			   30 pixels down and right. */
			if(PlaceX - tmp_win->attr.x < 15
			                || PlaceY - (tmp_win->attr.y - tmp_win->title_height) < 15) {
				PlaceX += Scr->RandomDisplacementX;
				PlaceY += Scr->RandomDisplacementY;
			}

			random_placed = True;
		}
		else {                            /* else prompt */
			if(!(tmp_win->wmhints && tmp_win->wmhints->flags & StateHint &&
			                tmp_win->wmhints->initial_state == IconicState)) {
				Bool firsttime = True;

				/* better wait until all the mouse buttons have been
				 * released.
				 */
				while(TRUE) {
					XUngrabServer(dpy);
					XSync(dpy, 0);
					XGrabServer(dpy);

					JunkMask = 0;
					if(!XQueryPointer(dpy, Scr->Root, &JunkRoot,
					                  &JunkChild, &JunkX, &JunkY,
					                  &AddingX, &AddingY, &JunkMask)) {
						JunkMask = 0;
					}

					JunkMask &= (Button1Mask | Button2Mask | Button3Mask |
					             Button4Mask | Button5Mask);

					/*
					 * watch out for changing screens
					 */
					if(firsttime) {
						if(JunkRoot != Scr->Root) {
							int scrnum;
							for(scrnum = 0; scrnum < NumScreens; scrnum++) {
								if(JunkRoot == RootWindow(dpy, scrnum)) {
									break;
								}
							}
							if(scrnum != NumScreens) {
								PreviousScreen = scrnum;
							}
						}
						if(Scr->currentvs) {
							vroot = Scr->currentvs->window;
						}
						firsttime = False;
					}
					if(winbox) {
						vroot = winbox->window;
					}

					/*
					 * wait for buttons to come up; yuck
					 */
					if(JunkMask != 0) {
						continue;
					}

					/*
					 * this will cause a warp to the indicated root
					 */
					stat = XGrabPointer(dpy, vroot, False,
					                    ButtonPressMask | ButtonReleaseMask |
					                    PointerMotionMask | PointerMotionHintMask,
					                    GrabModeAsync, GrabModeAsync,
					                    vroot, UpperLeftCursor, CurrentTime);
					if(stat == GrabSuccess) {
						break;
					}
				}

				XmbTextExtents(Scr->SizeFont.font_set,
				               tmp_win->name, namelen,
				               &ink_rect, &logical_rect);
				width = SIZE_HINDENT + ink_rect.width;
				height = logical_rect.height + SIZE_VINDENT * 2;
				XmbTextExtents(Scr->SizeFont.font_set,
				               ": ", 2,  &logical_rect, &logical_rect);
				Scr->SizeStringOffset = width + logical_rect.width;

				XResizeWindow(dpy, Scr->SizeWindow, Scr->SizeStringOffset +
				              Scr->SizeStringWidth + SIZE_HINDENT, height);
				XMapRaised(dpy, Scr->SizeWindow);
				InstallRootColormap();
				FB(Scr->DefaultC.fore, Scr->DefaultC.back);
				XmbDrawImageString(dpy, Scr->SizeWindow, Scr->SizeFont.font_set,
				                   Scr->NormalGC, SIZE_HINDENT,
				                   SIZE_VINDENT + Scr->SizeFont.ascent,
				                   tmp_win->name, namelen);

				if(winbox) {
					ConstrainedToWinBox(tmp_win, AddingX, AddingY, &AddingX, &AddingY);
				}

				AddingW = tmp_win->attr.width + bw2 + 2 * tmp_win->frame_bw3D;
				AddingH = tmp_win->attr.height + tmp_win->title_height +
				          bw2 + 2 * tmp_win->frame_bw3D;
				MoveOutline(vroot, AddingX, AddingY, AddingW, AddingH,
				            tmp_win->frame_bw, tmp_win->title_height + tmp_win->frame_bw3D);

				XmbDrawImageString(dpy, Scr->SizeWindow, Scr->SizeFont.font_set,
				                   Scr->NormalGC, width,
				                   SIZE_VINDENT + Scr->SizeFont.ascent, ": ", 2);
				DisplayPosition(tmp_win, AddingX, AddingY);

				tmp_win->frame_width  = AddingW;
				tmp_win->frame_height = AddingH;
				/*SetFocus ((TwmWindow *) NULL, CurrentTime);*/
				while(TRUE) {
					if(Scr->OpenWindowTimeout) {
						fd = ConnectionNumber(dpy);
						while(!XCheckMaskEvent(dpy, ButtonMotionMask | ButtonPressMask, &event)) {
							FD_ZERO(&mask);
							FD_SET(fd, &mask);
							timeout.tv_sec  = Scr->OpenWindowTimeout;
							timeout.tv_usec = 0;
							found = select(fd + 1, &mask, NULL, NULL, &timeout);
							if(found == 0) {
								break;
							}
						}
						if(found == 0) {
							break;
						}
					}
					else {
						found = 1;
						XMaskEvent(dpy, ButtonPressMask | PointerMotionMask, &event);
					}
					if(event.type == MotionNotify) {
						/* discard any extra motion events before a release */
						while(XCheckMaskEvent(dpy,
						                      ButtonMotionMask | ButtonPressMask, &event))
							if(event.type == ButtonPress) {
								break;
							}
					}
					FixRootEvent(&event);
					if(event.type == ButtonPress) {
						AddingX = event.xbutton.x_root;
						AddingY = event.xbutton.y_root;

						TryToGrid(tmp_win, &AddingX, &AddingY);
						if(Scr->PackNewWindows) {
							TryToPack(tmp_win, &AddingX, &AddingY);
						}

						/* DontMoveOff prohibits user form off-screen placement */
						if(Scr->DontMoveOff) {
							ConstrainByBorders(tmp_win, &AddingX, AddingW, &AddingY, AddingH);
						}
						break;
					}

					if(event.type != MotionNotify) {
						continue;
					}

					XQueryPointer(dpy, vroot, &JunkRoot, &JunkChild,
					              &JunkX, &JunkY, &AddingX, &AddingY, &JunkMask);

					TryToGrid(tmp_win, &AddingX, &AddingY);
					if(Scr->PackNewWindows) {
						TryToPack(tmp_win, &AddingX, &AddingY);
					}
					if(Scr->DontMoveOff) {
						ConstrainByBorders(tmp_win, &AddingX, AddingW, &AddingY, AddingH);
					}
					MoveOutline(vroot, AddingX, AddingY, AddingW, AddingH,
					            tmp_win->frame_bw, tmp_win->title_height + tmp_win->frame_bw3D);

					DisplayPosition(tmp_win, AddingX, AddingY);
				}

				if(found) {
					if(event.xbutton.button == Button2) {
						int lastx, lasty;

						XmbTextExtents(Scr->SizeFont.font_set,
						               ": ", 2,  &logical_rect, &logical_rect);
						Scr->SizeStringOffset = width + logical_rect.width;

						XResizeWindow(dpy, Scr->SizeWindow, Scr->SizeStringOffset +
						              Scr->SizeStringWidth + SIZE_HINDENT, height);

						XmbDrawImageString(dpy, Scr->SizeWindow, Scr->SizeFont.font_set,
						                   Scr->NormalGC, width,
						                   SIZE_VINDENT + Scr->SizeFont.ascent, ": ", 2);

						if(0/*Scr->AutoRelativeResize*/) {
							int dx = (tmp_win->attr.width / 4);
							int dy = (tmp_win->attr.height / 4);

#define HALF_AVE_CURSOR_SIZE 8          /* so that it is visible */
							if(dx < HALF_AVE_CURSOR_SIZE + Scr->BorderLeft) {
								dx = HALF_AVE_CURSOR_SIZE + Scr->BorderLeft;
							}
							if(dy < HALF_AVE_CURSOR_SIZE + Scr->BorderTop) {
								dy = HALF_AVE_CURSOR_SIZE + Scr->BorderTop;
							}
#undef HALF_AVE_CURSOR_SIZE
							dx += (tmp_win->frame_bw + 1);
							dy += (bw2 + tmp_win->title_height + 1);
							if(AddingX + dx >= Scr->rootw - Scr->BorderRight) {
								dx = Scr->rootw - Scr->BorderRight - AddingX - 1;
							}
							if(AddingY + dy >= Scr->rooth - Scr->BorderBottom) {
								dy = Scr->rooth - Scr->BorderBottom - AddingY - 1;
							}
							if(dx > 0 && dy > 0) {
								XWarpPointer(dpy, None, None, 0, 0, 0, 0, dx, dy);
							}
						}
						else {
							XWarpPointer(dpy, None, vroot, 0, 0, 0, 0,
							             AddingX + AddingW / 2, AddingY + AddingH / 2);
						}
						AddStartResize(tmp_win, AddingX, AddingY, AddingW, AddingH);

						lastx = -10000;
						lasty = -10000;
						while(TRUE) {
							XMaskEvent(dpy,
							           ButtonReleaseMask | ButtonMotionMask, &event);

							if(event.type == MotionNotify) {
								/* discard any extra motion events before a release */
								while(XCheckMaskEvent(dpy,
								                      ButtonMotionMask | ButtonReleaseMask, &event))
									if(event.type == ButtonRelease) {
										break;
									}
							}
							FixRootEvent(&event);

							if(event.type == ButtonRelease) {
								AddEndResize(tmp_win);
								break;
							}

							if(event.type != MotionNotify) {
								continue;
							}

							/*
							 * XXX - if we are going to do a loop, we ought to consider
							 * using multiple GXxor lines so that we don't need to
							 * grab the server.
							 */
							XQueryPointer(dpy, vroot, &JunkRoot, &JunkChild,
							              &JunkX, &JunkY, &AddingX, &AddingY, &JunkMask);

							if(lastx != AddingX || lasty != AddingY) {
								resizeWhenAdd = TRUE;
								DoResize(AddingX, AddingY, tmp_win);
								resizeWhenAdd = FALSE;

								lastx = AddingX;
								lasty = AddingY;
							}

						}
					}
					else if(event.xbutton.button == Button3) {
						int maxw = Scr->rootw - Scr->BorderRight  - AddingX - bw2;
						int maxh = Scr->rooth - Scr->BorderBottom - AddingY - bw2;

						/*
						 * Make window go to bottom of screen, and clip to right edge.
						 * This is useful when popping up large windows and fixed
						 * column text windows.
						 */
						if(AddingW > maxw) {
							AddingW = maxw;
						}
						AddingH = maxh;

						ConstrainSize(tmp_win, &AddingW, &AddingH);   /* w/o borders */
						AddingW += bw2;
						AddingH += bw2;
						XMaskEvent(dpy, ButtonReleaseMask, &event);
					}
					else {
						XMaskEvent(dpy, ButtonReleaseMask, &event);
					}
				}
				MoveOutline(vroot, 0, 0, 0, 0, 0, 0);
				XUnmapWindow(dpy, Scr->SizeWindow);
				UninstallRootColormap();
				XUngrabPointer(dpy, CurrentTime);

				tmp_win->attr.x = AddingX;
				tmp_win->attr.y = AddingY + tmp_win->title_height;
				tmp_win->attr.width = AddingW - bw2 - 2 * tmp_win->frame_bw3D;
				tmp_win->attr.height = AddingH - tmp_win->title_height -
				                       bw2 - 2 * tmp_win->frame_bw3D;

				XUngrabServer(dpy);
			}
		}
	}
	else {                            /* put it where asked, mod title bar */
		/* if the gravity is towards the top, move it by the title height */
		if(gravy < 0) {
			tmp_win->attr.y -= gravy * tmp_win->title_height;
		}
	}

#ifdef DEBUG
	fprintf(stderr, "  position window  %d, %d  %dx%d\n",
	        tmp_win->attr.x,
	        tmp_win->attr.y,
	        tmp_win->attr.width,
	        tmp_win->attr.height);
#endif

	if(!Scr->ClientBorderWidth) {       /* need to adjust for twm borders */
		int delta = tmp_win->attr.border_width - tmp_win->frame_bw -
		            tmp_win->frame_bw3D;
		tmp_win->attr.x += gravx * delta;
		tmp_win->attr.y += gravy * delta;
	}

	tmp_win->title_width = tmp_win->attr.width;

	tmp_win->icon_name = (char *) GetWMPropertyString(tmp_win->w, XA_WM_ICON_NAME);
	if(!tmp_win->icon_name) {
		tmp_win->icon_name = tmp_win->name;
	}

#ifdef CLAUDE
	if(strstr(tmp_win->icon_name, " - Mozilla")) {
		char *moz = strstr(tmp_win->icon_name, " - Mozilla");
		*moz = '\0';
	}
#endif

	XmbTextExtents(Scr->TitleBarFont.font_set, tmp_win->name, namelen, &ink_rect,
	               &logical_rect);
	tmp_win->name_width = logical_rect.width;

	if(tmp_win->old_bw) {
		XSetWindowBorderWidth(dpy, tmp_win->w, 0);
	}

	tmp_win->squeezed = FALSE;
	tmp_win->iconified = FALSE;
	tmp_win->isicon = FALSE;
	tmp_win->icon_on = FALSE;

	XGrabServer(dpy);

	/*
	 * Make sure the client window still exists.  We don't want to leave an
	 * orphan frame window if it doesn't.  Since we now have the server
	 * grabbed, the window can't disappear later without having been
	 * reparented, so we'll get a DestroyNotify for it.  We won't have
	 * gotten one for anything up to here, however.
	 */
	if(XGetGeometry(dpy, tmp_win->w, &JunkRoot, &JunkX, &JunkY,
	                &JunkWidth, &JunkHeight, &JunkBW, &JunkDepth) == 0) {
		TwmWindow *prev = tmp_win->ring.prev, *next = tmp_win->ring.next;

		if(prev) {
			prev->ring.next = next;
		}
		if(next) {
			next->ring.prev = prev;
		}
		if(Scr->Ring == tmp_win) {
			Scr->Ring = (next != tmp_win ? next : (TwmWindow *) NULL);
		}
		if(!Scr->Ring || Scr->RingLeader == tmp_win) {
			Scr->RingLeader = Scr->Ring;
		}

		free((char *)tmp_win);
		XUngrabServer(dpy);
		return(NULL);
	}

	/* add the window into the twm list */
	tmp_win->next = Scr->FirstWindow;
	if(Scr->FirstWindow != NULL) {
		Scr->FirstWindow->prev = tmp_win;
	}
	tmp_win->prev = NULL;
	Scr->FirstWindow = tmp_win;

	/* get all the colors for the window */

	tmp_win->borderC.fore     = Scr->BorderColorC.fore;
	tmp_win->borderC.back     = Scr->BorderColorC.back;
	tmp_win->border_tile.fore = Scr->BorderTileC.fore;
	tmp_win->border_tile.back = Scr->BorderTileC.back;
	tmp_win->title.fore       = Scr->TitleC.fore;
	tmp_win->title.back       = Scr->TitleC.back;

	GetColorFromList(Scr->BorderColorL, tmp_win->full_name, &tmp_win->class,
	                 &tmp_win->borderC.fore);
	GetColorFromList(Scr->BorderColorL, tmp_win->full_name, &tmp_win->class,
	                 &tmp_win->borderC.back);
	GetColorFromList(Scr->BorderTileForegroundL, tmp_win->full_name,
	                 &tmp_win->class, &tmp_win->border_tile.fore);
	GetColorFromList(Scr->BorderTileBackgroundL, tmp_win->full_name,
	                 &tmp_win->class, &tmp_win->border_tile.back);
	GetColorFromList(Scr->TitleForegroundL, tmp_win->full_name, &tmp_win->class,
	                 &tmp_win->title.fore);
	GetColorFromList(Scr->TitleBackgroundL, tmp_win->full_name, &tmp_win->class,
	                 &tmp_win->title.back);

	if(Scr->use3Dtitles  && !Scr->BeNiceToColormap) {
		GetShadeColors(&tmp_win->title);
	}
	if(Scr->use3Dborders && !Scr->BeNiceToColormap) {
		GetShadeColors(&tmp_win->borderC);
		GetShadeColors(&tmp_win->border_tile);
	}
	/* create windows */

	tmp_win->frame_x = tmp_win->attr.x + tmp_win->old_bw - tmp_win->frame_bw
	                   - tmp_win->frame_bw3D;
	tmp_win->frame_y = tmp_win->attr.y - tmp_win->title_height +
	                   tmp_win->old_bw - tmp_win->frame_bw - tmp_win->frame_bw3D;
	tmp_win->frame_width = tmp_win->attr.width + 2 * tmp_win->frame_bw3D;
	tmp_win->frame_height = tmp_win->attr.height + tmp_win->title_height +
	                        2 * tmp_win->frame_bw3D;

	ConstrainSize(tmp_win, &tmp_win->frame_width, &tmp_win->frame_height);
	if(random_placed)
		ConstrainByBorders(tmp_win, &tmp_win->frame_x, tmp_win->frame_width,
		                   &tmp_win->frame_y, tmp_win->frame_height);

	valuemask = CWBackPixmap | CWBorderPixel | CWCursor | CWEventMask | CWBackPixel;
	attributes.background_pixmap = None;
	attributes.border_pixel = tmp_win->border_tile.back;
	attributes.background_pixel = tmp_win->border_tile.back;
	attributes.cursor = Scr->FrameCursor;
	attributes.event_mask = (SubstructureRedirectMask |
	                         ButtonPressMask | ButtonReleaseMask |
	                         EnterWindowMask | LeaveWindowMask | ExposureMask);
	if(Scr->BorderCursors) {
		attributes.event_mask |= PointerMotionMask;
	}
	if(tmp_win->attr.save_under) {
		attributes.save_under = True;
		valuemask |= CWSaveUnder;
	}
	if(tmp_win->hints.flags & PWinGravity) {
		attributes.win_gravity = tmp_win->hints.win_gravity;
		valuemask |= CWWinGravity;
	}

	if((tmp_win->frame_x > Scr->rootw) ||
	                (tmp_win->frame_y > Scr->rooth) ||
	                ((int)(tmp_win->frame_x + tmp_win->frame_width)  < 0) ||
	                ((int)(tmp_win->frame_y + tmp_win->frame_height) < 0)) {
		tmp_win->frame_x = 0;
		tmp_win->frame_y = 0;
	}

	DealWithNonSensicalGeometries(dpy, vroot, tmp_win);

	tmp_win->frame = XCreateWindow(dpy, vroot, tmp_win->frame_x, tmp_win->frame_y,
	                               (unsigned int) tmp_win->frame_width,
	                               (unsigned int) tmp_win->frame_height,
	                               (unsigned int) tmp_win->frame_bw,
	                               Scr->d_depth,
	                               (unsigned int) CopyFromParent,
	                               Scr->d_visual, valuemask, &attributes);

	if(tmp_win->title_height) {
		valuemask = (CWEventMask | CWDontPropagate | CWBorderPixel | CWBackPixel);
		attributes.event_mask = (KeyPressMask | ButtonPressMask |
		                         ButtonReleaseMask | ExposureMask);
		attributes.do_not_propagate_mask = PointerMotionMask;
		attributes.border_pixel = tmp_win->borderC.back;
		attributes.background_pixel = tmp_win->title.back;
		tmp_win->title_w = XCreateWindow(dpy, tmp_win->frame,
		                                 tmp_win->frame_bw3D - tmp_win->frame_bw,
		                                 tmp_win->frame_bw3D - tmp_win->frame_bw,
		                                 (unsigned int) tmp_win->attr.width,
		                                 (unsigned int) Scr->TitleHeight,
		                                 (unsigned int) tmp_win->frame_bw,
		                                 Scr->d_depth,
		                                 (unsigned int) CopyFromParent,
		                                 Scr->d_visual, valuemask,
		                                 &attributes);
	}
	else {
		tmp_win->title_w = 0;
		tmp_win->squeeze_info = NULL;
	}

	if(tmp_win->highlight) {
		if(Scr->use3Dtitles && (Scr->Monochrome != COLOR))
			tmp_win->gray = XCreatePixmapFromBitmapData(dpy, vroot,
			                (char *)black_bits, gray_width, gray_height,
			                tmp_win->border_tile.fore, tmp_win->border_tile.back,
			                Scr->d_depth);
		else
			tmp_win->gray = XCreatePixmapFromBitmapData(dpy, vroot,
			                (char *)gray_bits, gray_width, gray_height,
			                tmp_win->border_tile.fore, tmp_win->border_tile.back,
			                Scr->d_depth);

		tmp_win->hasfocusvisible = True;
		SetFocusVisualAttributes(tmp_win, False);
	}
	else {
		tmp_win->gray = None;
	}

	OtpAdd(tmp_win, WinWin);

	if(tmp_win->title_w) {
		ComputeTitleLocation(tmp_win);
		CreateWindowTitlebarButtons(tmp_win);
		XMoveWindow(dpy, tmp_win->title_w,
		            tmp_win->title_x, tmp_win->title_y);
		XDefineCursor(dpy, tmp_win->title_w, Scr->TitleCursor);
	}
	else {
		tmp_win->title_x = tmp_win->frame_bw3D - tmp_win->frame_bw;
		tmp_win->title_y = tmp_win->frame_bw3D - tmp_win->frame_bw;
	}

	valuemask = (CWEventMask | CWDontPropagate);
	attributes.event_mask = (StructureNotifyMask | PropertyChangeMask |
	                         ColormapChangeMask | VisibilityChangeMask |
	                         FocusChangeMask |
	                         EnterWindowMask | LeaveWindowMask);
	attributes.do_not_propagate_mask = ButtonPressMask | ButtonReleaseMask |
	                                   PointerMotionMask;
	XChangeWindowAttributes(dpy, tmp_win->w, valuemask, &attributes);

	if(HasShape) {
		XShapeSelectInput(dpy, tmp_win->w, ShapeNotifyMask);
	}

	if(tmp_win->title_w) {
		XMapWindow(dpy, tmp_win->title_w);
	}

	if(HasShape) {
		int xws, yws, xbs, ybs;
		unsigned wws, hws, wbs, hbs;
		int boundingShaped, clipShaped;

		XShapeSelectInput(dpy, tmp_win->w, ShapeNotifyMask);
		XShapeQueryExtents(dpy, tmp_win->w,
		                   &boundingShaped, &xws, &yws, &wws, &hws,
		                   &clipShaped, &xbs, &ybs, &wbs, &hbs);
		tmp_win->wShaped = boundingShaped;
	}

	if(!tmp_win->iconmgr && ! iswman &&
	                (tmp_win->w != Scr->workSpaceMgr.occupyWindow->w)) {
		XAddToSaveSet(dpy, tmp_win->w);
	}

	XReparentWindow(dpy, tmp_win->w, tmp_win->frame, tmp_win->frame_bw3D,
	                tmp_win->title_height + tmp_win->frame_bw3D);
	/*
	 * Reparenting generates an UnmapNotify event, followed by a MapNotify.
	 * Set the map state to FALSE to prevent a transition back to
	 * WithdrawnState in HandleUnmapNotify.  Map state gets set correctly
	 * again in HandleMapNotify.
	 */
	tmp_win->mapped = FALSE;

	SetupFrame(tmp_win, tmp_win->frame_x, tmp_win->frame_y,
	           tmp_win->frame_width, tmp_win->frame_height, -1, True);

	/* wait until the window is iconified and the icon window is mapped
	 * before creating the icon window
	 */
	tmp_win->icon = (Icon *) 0;
	tmp_win->iconslist = (name_list *) 0;

	if(!tmp_win->iconmgr) {
		GrabButtons(tmp_win);
		GrabKeys(tmp_win);
	}

	(void) AddIconManager(tmp_win);

	XSaveContext(dpy, tmp_win->w, TwmContext, (XPointer) tmp_win);
	XSaveContext(dpy, tmp_win->w, ScreenContext, (XPointer) Scr);
	XSaveContext(dpy, tmp_win->frame, TwmContext, (XPointer) tmp_win);
	XSaveContext(dpy, tmp_win->frame, ScreenContext, (XPointer) Scr);

	if(tmp_win->title_height) {
		int i;
		int nb = Scr->TBInfo.nleft + Scr->TBInfo.nright;

		XSaveContext(dpy, tmp_win->title_w, TwmContext, (XPointer) tmp_win);
		XSaveContext(dpy, tmp_win->title_w, ScreenContext, (XPointer) Scr);
		for(i = 0; i < nb; i++) {
			XSaveContext(dpy, tmp_win->titlebuttons[i].window, TwmContext,
			             (XPointer) tmp_win);
			XSaveContext(dpy, tmp_win->titlebuttons[i].window, ScreenContext,
			             (XPointer) Scr);
		}
		if(tmp_win->hilite_wl) {
			XSaveContext(dpy, tmp_win->hilite_wl, TwmContext, (XPointer)tmp_win);
			XSaveContext(dpy, tmp_win->hilite_wl, ScreenContext, (XPointer)Scr);
		}
		if(tmp_win->hilite_wr) {
			XSaveContext(dpy, tmp_win->hilite_wr, TwmContext, (XPointer)tmp_win);
			XSaveContext(dpy, tmp_win->hilite_wr, ScreenContext, (XPointer)Scr);
		}
		if(tmp_win->lolite_wl) {
			XSaveContext(dpy, tmp_win->lolite_wl, TwmContext, (XPointer)tmp_win);
			XSaveContext(dpy, tmp_win->lolite_wl, ScreenContext, (XPointer)Scr);
		}
		if(tmp_win->lolite_wr) {
			XSaveContext(dpy, tmp_win->lolite_wr, TwmContext, (XPointer)tmp_win);
			XSaveContext(dpy, tmp_win->lolite_wr, ScreenContext, (XPointer)Scr);
		}
	}

	XUngrabServer(dpy);

	/* if we were in the middle of a menu activated function, regrab
	 * the pointer
	 */
	if(RootFunction) {
		ReGrab();
	}
	if(!iswman) {
		WMapAddWindow(tmp_win);
	}
	SetPropsIfCaptiveCtwm(tmp_win);
	savegeometry(tmp_win);
	return (tmp_win);
}

/***********************************************************************
 *
 *  Procedure:
 *      GetTwmWindow - finds the TwmWindow structure associated with
 *              a Window (if any), or NULL.
 *
 *  Returned Value:
 *      NULL    - it is not a Window we know about
 *      otherwise- the TwmWindow *
 *
 *  Inputs:
 *      w       - the window to check
 *
 *  Note:
 *      This is a relatively cheap function since it does not involve
 *      communication with the server. Probably faster than walking
 *      the list of TwmWindows, since the lookup is by a hash table.
 *
 ***********************************************************************
 */
TwmWindow *GetTwmWindow(Window w)
{
	TwmWindow *twmwin;
	int stat;

	stat = XFindContext(dpy, w, TwmContext, (XPointer *)&twmwin);
	if(stat == XCNOENT) {
		twmwin = NULL;
	}

	return twmwin;
}

/***********************************************************************
 *
 *  Procedure:
 *      MappedNotOverride - checks to see if we should really
 *              put a twm frame on the window
 *
 *  Returned Value:
 *      TRUE    - go ahead and frame the window
 *      FALSE   - don't frame the window
 *
 *  Inputs:
 *      w       - the window to check
 *
 ***********************************************************************
 */

int MappedNotOverride(Window w)
{
	XWindowAttributes wa;

	XGetWindowAttributes(dpy, w, &wa);
	return ((wa.map_state != IsUnmapped) && (wa.override_redirect != True));
}


/***********************************************************************
 *
 *  Procedure:
 *      AddDefaultBindings - attach default bindings so that naive users
 *      don't get messed up if they provide a minimal twmrc.
 */
static void do_add_binding(int button, int context, int modifier, int func)
{
	AddFuncButton(button, context, modifier, func, NULL, NULL);
}

void AddDefaultBindings(void)
{
#define NoModifierMask 0

	do_add_binding(Button1, C_TITLE, NoModifierMask, F_MOVE);
	do_add_binding(Button1, C_ICON, NoModifierMask, F_ICONIFY);
	do_add_binding(Button1, C_ICONMGR, NoModifierMask, F_ICONIFY);

	do_add_binding(Button2, C_TITLE, NoModifierMask, F_RAISELOWER);
	do_add_binding(Button2, C_ICON, NoModifierMask, F_ICONIFY);
	do_add_binding(Button2, C_ICONMGR, NoModifierMask, F_ICONIFY);

#undef NoModifierMask
}




/***********************************************************************
 *
 *  Procedure:
 *      GrabButtons - grab needed buttons for the window
 *
 *  Inputs:
 *      tmp_win - the twm window structure to use
 *
 ***********************************************************************
 */

#define grabbutton(button, modifier, window, pointer_mode) \
        XGrabButton (dpy, button, modifier, window,  \
                True, ButtonPressMask | ButtonReleaseMask, \
                pointer_mode, GrabModeAsync, None,  \
                Scr->FrameCursor);

void GrabButtons(TwmWindow *tmp_win)
{
	FuncButton *tmp;
	int i;
	unsigned int ModifierMask[8] = { ShiftMask, ControlMask, LockMask,
	                                 Mod1Mask, Mod2Mask, Mod3Mask, Mod4Mask,
	                                 Mod5Mask
	                               };

	for(tmp = Scr->FuncButtonRoot.next; tmp != NULL; tmp = tmp->next) {
		if((tmp->cont != C_WINDOW) || (tmp->func == 0)) {
			continue;
		}
		grabbutton(tmp->num, tmp->mods, tmp_win->frame, GrabModeAsync);

		for(i = 0 ; i < 8 ; i++) {
			if((Scr->IgnoreModifier & ModifierMask [i]) && !(tmp->mods & ModifierMask [i]))
				grabbutton(tmp->num, tmp->mods | ModifierMask [i],
				           tmp_win->frame, GrabModeAsync);
		}
	}
	if(Scr->ClickToFocus) {
		grabbutton(AnyButton, None, tmp_win->w, GrabModeSync);
		for(i = 0 ; i < 8 ; i++) {
			grabbutton(AnyButton, ModifierMask [i], tmp_win->w, GrabModeSync);
		}
	}
	else if(Scr->RaiseOnClick) {
		grabbutton(Scr->RaiseOnClickButton, None, tmp_win->w, GrabModeSync);
		for(i = 0 ; i < 8 ; i++) {
			grabbutton(Scr->RaiseOnClickButton,
			           ModifierMask [i], tmp_win->w, GrabModeSync);
		}
	}
}
#undef grabbutton

/***********************************************************************
 *
 *  Procedure:
 *      GrabKeys - grab needed keys for the window
 *
 *  Inputs:
 *      tmp_win - the twm window structure to use
 *
 ***********************************************************************
 */

#define grabkey(funckey, modifier, window) \
        XGrabKey(dpy, funckey->keycode, funckey->mods | modifier, window, True, \
                GrabModeAsync, GrabModeAsync);
#define ungrabkey(funckey, modifier, window) \
        XUngrabKey (dpy, funckey->keycode, funckey->mods | modifier, window);

void GrabKeys(TwmWindow *tmp_win)
{
	FuncKey *tmp;
	IconMgr *p;
	int i;
	unsigned int ModifierMask[8] = { ShiftMask, ControlMask, LockMask,
	                                 Mod1Mask, Mod2Mask, Mod3Mask, Mod4Mask,
	                                 Mod5Mask
	                               };

	for(tmp = Scr->FuncKeyRoot.next; tmp != NULL; tmp = tmp->next) {
		switch(tmp->cont) {
			case C_WINDOW:
				/* case C_WORKSPACE: */
#define AltMask (Alt1Mask | Alt2Mask | Alt3Mask | Alt4Mask | Alt5Mask)
				if(tmp->mods & AltMask) {
					break;
				}
#undef AltMask

				grabkey(tmp, 0, tmp_win->w);

				for(i = 0 ; i < 8 ; i++) {
					if((Scr->IgnoreModifier & ModifierMask [i]) &&
					                !(tmp->mods & ModifierMask [i])) {
						grabkey(tmp, ModifierMask [i], tmp_win->w);
					}
				}
				break;

			case C_ICON:
				if(!tmp_win->icon || tmp_win->icon->w) {
					break;
				}

				grabkey(tmp, 0, tmp_win->icon->w);

				for(i = 0 ; i < 8 ; i++) {
					if((Scr->IgnoreModifier & ModifierMask [i]) &&
					                !(tmp->mods & ModifierMask [i])) {
						grabkey(tmp, ModifierMask [i], tmp_win->icon->w);
					}
				}
				break;

			case C_TITLE:
				if(!tmp_win->title_w) {
					break;
				}

				grabkey(tmp, 0, tmp_win->title_w);

				for(i = 0 ; i < 8 ; i++) {
					if((Scr->IgnoreModifier & ModifierMask [i]) &&
					                !(tmp->mods & ModifierMask [i])) {
						grabkey(tmp, ModifierMask [i], tmp_win->title_w);
					}
				}
				break;

			case C_NAME:
				grabkey(tmp, 0, tmp_win->w);
				for(i = 0 ; i < 8 ; i++) {
					if((Scr->IgnoreModifier & ModifierMask [i]) &&
					                !(tmp->mods & ModifierMask [i])) {
						grabkey(tmp, ModifierMask [i], tmp_win->w);
					}
				}
				if(tmp_win->icon && tmp_win->icon->w) {
					grabkey(tmp, 0, tmp_win->icon->w);

					for(i = 0 ; i < 8 ; i++) {
						if((Scr->IgnoreModifier & ModifierMask [i]) &&
						                !(tmp->mods & ModifierMask [i])) {
							grabkey(tmp, ModifierMask [i], tmp_win->icon->w);
						}
					}
				}
				if(tmp_win->title_w) {
					grabkey(tmp, 0, tmp_win->title_w);

					for(i = 0 ; i < 8 ; i++) {
						if((Scr->IgnoreModifier & ModifierMask [i]) &&
						                !(tmp->mods & ModifierMask [i])) {
							grabkey(tmp, ModifierMask [i], tmp_win->title_w);
						}
					}
				}
				break;

#ifdef EWMH_DESKTOP_ROOT
			case C_ROOT:
				if(tmp_win->ewmhWindowType != wt_Desktop) {
					break;
				}

				grabkey(tmp, 0, tmp_win->w);

				for(i = 0 ; i < 8 ; i++) {
					if((Scr->IgnoreModifier & ModifierMask [i]) &&
					                !(tmp->mods & ModifierMask [i])) {
						grabkey(tmp, ModifierMask [i], tmp_win->w);
					}
				}
				break;
#endif /* EWMH */

				/*
				case C_ROOT:
				    XGrabKey(dpy, tmp->keycode, tmp->mods, Scr->Root, True,
				        GrabModeAsync, GrabModeAsync);
				    break;
				*/
		}
	}
	for(tmp = Scr->FuncKeyRoot.next; tmp != NULL; tmp = tmp->next) {
		if(tmp->cont == C_ICONMGR && !Scr->NoIconManagers) {
			for(p = Scr->iconmgr; p != NULL; p = p->next) {
				ungrabkey(tmp, 0, p->twm_win->w);

				for(i = 0 ; i < 8 ; i++) {
					if((Scr->IgnoreModifier & ModifierMask [i]) &&
					                !(tmp->mods & ModifierMask [i])) {
						ungrabkey(tmp, ModifierMask [i], p->twm_win->w);
					}
				}
			}
		}
	}
}
#undef grabkey
#undef ungrabkey

void ComputeCommonTitleOffsets(void)
{
	int buttonwidth = (Scr->TBInfo.width + Scr->TBInfo.pad);

	Scr->TBInfo.leftx = Scr->TBInfo.rightoff = Scr->FramePadding;
	if(Scr->TBInfo.nleft  > 0) {
		Scr->TBInfo.leftx    += Scr->ButtonIndent;
	}
	if(Scr->TBInfo.nright > 0) Scr->TBInfo.rightoff += (Scr->ButtonIndent +
		                (Scr->TBInfo.nright * buttonwidth) -
		                Scr->TBInfo.pad);

	Scr->TBInfo.titlex = (Scr->TBInfo.leftx +
	                      (Scr->TBInfo.nleft * buttonwidth) -
	                      Scr->TBInfo.pad +
	                      Scr->TitlePadding);
}

static void CreateHighlightWindows(TwmWindow *tmp_win)
{
	XSetWindowAttributes attributes;    /* attributes for create windows */
	GC gc;
	XGCValues gcv;
	unsigned long valuemask;
	int h = (Scr->TitleHeight - 2 * Scr->FramePadding);
	int y = Scr->FramePadding;

	if(! tmp_win->titlehighlight) {
		tmp_win->hilite_wl = (Window) 0;
		tmp_win->hilite_wr = (Window) 0;
		return;
	}
	/*
	 * If a special highlight pixmap was given, use that.  Otherwise,
	 * use a nice, even gray pattern.  The old horizontal lines look really
	 * awful on interlaced monitors (as well as resembling other looks a
	 * little bit too closely), but can be used by putting
	 *
	 *                 Pixmaps { TitleHighlight "hline2" }
	 *
	 * (or whatever the horizontal line bitmap is named) in the startup
	 * file.  If all else fails, use the foreground color to look like a
	 * solid line.
	 */

	if(! tmp_win->HiliteImage) {
		if(Scr->HighlightPixmapName) {
			tmp_win->HiliteImage = GetImage(Scr->HighlightPixmapName, tmp_win->title);
		}
	}
	if(! tmp_win->HiliteImage) {
		Pixmap pm = None;
		Pixmap bm = None;

		if(Scr->use3Dtitles && (Scr->Monochrome != COLOR))
			bm = XCreateBitmapFromData(dpy, tmp_win->title_w,
			                           (char *)black_bits, gray_width, gray_height);
		else
			bm = XCreateBitmapFromData(dpy, tmp_win->title_w,
			                           (char *)gray_bits, gray_width, gray_height);

		pm = XCreatePixmap(dpy, tmp_win->title_w, gray_width, gray_height,
		                   Scr->d_depth);
		gcv.foreground = tmp_win->title.fore;
		gcv.background = tmp_win->title.back;
		gcv.graphics_exposures = False;
		gc = XCreateGC(dpy, pm, (GCForeground | GCBackground | GCGraphicsExposures),
		               &gcv);
		if(gc) {
			XCopyPlane(dpy, bm, pm, gc, 0, 0, gray_width, gray_height, 0, 0, 1);
			tmp_win->HiliteImage = (Image *) malloc(sizeof(Image));
			tmp_win->HiliteImage->pixmap = pm;
			tmp_win->HiliteImage->width  = gray_width;
			tmp_win->HiliteImage->height = gray_height;
			tmp_win->HiliteImage->mask   = None;
			tmp_win->HiliteImage->next   = None;
			XFreeGC(dpy, gc);
		}
		else {
			XFreePixmap(dpy, pm);
			pm = None;
		}
		XFreePixmap(dpy, bm);
	}
	if(tmp_win->HiliteImage) {
		valuemask = CWBackPixmap;
		attributes.background_pixmap = tmp_win->HiliteImage->pixmap;
	}
	else {
		valuemask = CWBackPixel;
		attributes.background_pixel = tmp_win->title.fore;
	}

	if(Scr->use3Dtitles) {
		y += Scr->TitleShadowDepth;
		h -= 2 * Scr->TitleShadowDepth;
	}
	if(Scr->TitleJustification == J_LEFT) {
		tmp_win->hilite_wl = (Window) 0;
	}
	else
		tmp_win->hilite_wl = XCreateWindow(dpy, tmp_win->title_w, 0, y,
		                                   (unsigned int) Scr->TBInfo.width, (unsigned int) h,
		                                   (unsigned int) 0, Scr->d_depth, (unsigned int) CopyFromParent,
		                                   Scr->d_visual, valuemask, &attributes);

	if(Scr->TitleJustification == J_RIGHT) {
		tmp_win->hilite_wr = (Window) 0;
	}
	else
		tmp_win->hilite_wr = XCreateWindow(dpy, tmp_win->title_w, 0, y,
		                                   (unsigned int) Scr->TBInfo.width, (unsigned int) h,
		                                   (unsigned int) 0,  Scr->d_depth, (unsigned int) CopyFromParent,
		                                   Scr->d_visual, valuemask, &attributes);
}

void DeleteHighlightWindows(TwmWindow *tmp_win)
{
	if(tmp_win->HiliteImage) {
		if(Scr->HighlightPixmapName) {
			/*
			 * Image obtained from GetImage(): it is in a cache
			 * so we don't need to free it. There will not be multiple
			 * copies if the same xpm:foo image is requested again.
			 */
		}
		else {
			XFreePixmap(dpy, tmp_win->HiliteImage->pixmap);
			free(tmp_win->HiliteImage);
		}
		tmp_win->HiliteImage = NULL;
	}
}

static void CreateLowlightWindows(TwmWindow *tmp_win)
{
	XSetWindowAttributes attributes;    /* attributes for create windows */
	unsigned long valuemask;
	int h = (Scr->TitleHeight - 2 * Scr->FramePadding);
	int y = Scr->FramePadding;
	ColorPair cp;

	if(!Scr->UseSunkTitlePixmap || ! tmp_win->titlehighlight) {
		tmp_win->lolite_wl = (Window) 0;
		tmp_win->lolite_wr = (Window) 0;
		return;
	}
	/*
	 * If a special highlight pixmap was given, use that.  Otherwise,
	 * use a nice, even gray pattern.  The old horizontal lines look really
	 * awful on interlaced monitors (as well as resembling other looks a
	 * little bit too closely), but can be used by putting
	 *
	 *                 Pixmaps { TitleHighlight "hline2" }
	 *
	 * (or whatever the horizontal line bitmap is named) in the startup
	 * file.  If all else fails, use the foreground color to look like a
	 * solid line.
	 */

	if(! tmp_win->LoliteImage) {
		if(Scr->HighlightPixmapName) {
			cp = tmp_win->title;
			cp.shadc = tmp_win->title.shadd;
			cp.shadd = tmp_win->title.shadc;
			tmp_win->LoliteImage = GetImage(Scr->HighlightPixmapName, cp);
		}
	}
	if(tmp_win->LoliteImage) {
		valuemask = CWBackPixmap;
		attributes.background_pixmap = tmp_win->LoliteImage->pixmap;
	}
	else {
		valuemask = CWBackPixel;
		attributes.background_pixel = tmp_win->title.fore;
	}

	if(Scr->use3Dtitles) {
		y += 2;
		h -= 4;
	}
	if(Scr->TitleJustification == J_LEFT) {
		tmp_win->lolite_wl = (Window) 0;
	}
	else
		tmp_win->lolite_wl = XCreateWindow(dpy, tmp_win->title_w, 0, y,
		                                   (unsigned int) Scr->TBInfo.width, (unsigned int) h,
		                                   (unsigned int) 0, Scr->d_depth, (unsigned int) CopyFromParent,
		                                   Scr->d_visual, valuemask, &attributes);

	if(Scr->TitleJustification == J_RIGHT) {
		tmp_win->lolite_wr = (Window) 0;
	}
	else
		tmp_win->lolite_wr = XCreateWindow(dpy, tmp_win->title_w, 0, y,
		                                   (unsigned int) Scr->TBInfo.width, (unsigned int) h,
		                                   (unsigned int) 0,  Scr->d_depth, (unsigned int) CopyFromParent,
		                                   Scr->d_visual, valuemask, &attributes);
}


void ComputeWindowTitleOffsets(TwmWindow *tmp_win, unsigned int width,
                               Bool squeeze)
{
	int titlew = width - Scr->TBInfo.titlex - Scr->TBInfo.rightoff;

	switch(Scr->TitleJustification) {
		case J_LEFT :
			tmp_win->name_x = Scr->TBInfo.titlex;
			if(Scr->use3Dtitles) {
				tmp_win->name_x += Scr->TitleShadowDepth + 2;
			}
			break;
		case J_CENTER :
			tmp_win->name_x = Scr->TBInfo.titlex + (titlew - tmp_win->name_width) / 2;
			break;
		case J_RIGHT :
			tmp_win->name_x = Scr->TBInfo.titlex + titlew - tmp_win->name_width;
			if(Scr->use3Dtitles) {
				tmp_win->name_x -= Scr->TitleShadowDepth - 2;
			}
			break;
	}
	if(Scr->use3Dtitles) {
		if(tmp_win->name_x < (Scr->TBInfo.titlex + 2 * Scr->TitleShadowDepth)) {
			tmp_win->name_x = Scr->TBInfo.titlex + 2 * Scr->TitleShadowDepth;
		}
	}
	else if(tmp_win->name_x < Scr->TBInfo.titlex) {
		tmp_win->name_x = Scr->TBInfo.titlex;
	}
	tmp_win->highlightxl = Scr->TBInfo.titlex;
	tmp_win->highlightxr = tmp_win->name_x + tmp_win->name_width + 2;

	if(Scr->use3Dtitles) {
		tmp_win->highlightxl += Scr->TitleShadowDepth;
	}
	if(tmp_win->hilite_wr || Scr->TBInfo.nright > 0) {
		tmp_win->highlightxr += Scr->TitlePadding;
	}
	tmp_win->rightx = width - Scr->TBInfo.rightoff;
	if(squeeze && tmp_win->squeeze_info && !tmp_win->squeezed) {
		int rx = (tmp_win->highlightxr +
		          (tmp_win->hilite_wr
		           ? Scr->TBInfo.width * 2 : 0) +
		          (Scr->TBInfo.nright > 0 ? Scr->TitlePadding : 0) +
		          Scr->FramePadding);
		if(rx < tmp_win->rightx) {
			tmp_win->rightx = rx;
		}
	}
	return;
}


/*
 * ComputeTitleLocation - calculate the position of the title window; we need
 * to take the frame_bw into account since we want (0,0) of the title window
 * to line up with (0,0) of the frame window.
 */
void ComputeTitleLocation(TwmWindow *tmp)
{
	tmp->title_x = tmp->frame_bw3D - tmp->frame_bw;
	tmp->title_y = tmp->frame_bw3D - tmp->frame_bw;

	if(tmp->squeeze_info && !tmp->squeezed) {
		SqueezeInfo *si = tmp->squeeze_info;
		int basex;
		int maxwidth = tmp->frame_width;
		int tw = tmp->title_width + 2 * tmp->frame_bw3D;

		/*
		 * figure label base from squeeze info (justification fraction)
		 */
		if(si->denom == 0) {            /* num is pixel based */
			basex = si->num;
		}
		else {                          /* num/denom is fraction */
			basex = ((si->num * maxwidth) / si->denom);
		}
		if(si->num < 0) {
			basex += maxwidth;
		}

		/*
		 * adjust for left (nop), center, right justify and clip
		 */
		switch(si->justify) {
			case J_CENTER:
				basex -= tw / 2;
				break;
			case J_RIGHT:
				basex -= tw - 1;
				break;
		}
		if(basex > maxwidth - tw) {
			basex = maxwidth - tw;
		}
		if(basex < 0) {
			basex = 0;
		}

		tmp->title_x = basex - tmp->frame_bw + tmp->frame_bw3D;
	}
}


static void CreateWindowTitlebarButtons(TwmWindow *tmp_win)
{
	unsigned long valuemask;            /* mask for create windows */
	XSetWindowAttributes attributes;    /* attributes for create windows */
	int leftx, rightx, y;
	TitleButton *tb;
	int nb;

	if(tmp_win->title_height == 0) {
		tmp_win->hilite_wl = (Window) 0;
		tmp_win->hilite_wr = (Window) 0;
		tmp_win->lolite_wl = (Window) 0;
		tmp_win->lolite_wr = (Window) 0;
		return;
	}


	/*
	 * create the title bar windows; let the event handler deal with painting
	 * so that we don't have to spend two pixmaps (or deal with hashing)
	 */
	ComputeWindowTitleOffsets(tmp_win, tmp_win->attr.width, False);

	leftx = y = Scr->TBInfo.leftx;
	rightx = tmp_win->rightx;

	attributes.win_gravity = NorthWestGravity;
	attributes.background_pixel = tmp_win->title.back;
	attributes.border_pixel = tmp_win->title.fore;
	attributes.event_mask = (ButtonPressMask | ButtonReleaseMask |
	                         ExposureMask);
	attributes.cursor = Scr->ButtonCursor;
	valuemask = (CWWinGravity | CWBackPixel | CWBorderPixel | CWEventMask |
	             CWCursor);

	tmp_win->titlebuttons = NULL;
	nb = Scr->TBInfo.nleft + Scr->TBInfo.nright;
	if(nb > 0) {
		tmp_win->titlebuttons = (TBWindow *) malloc(nb * sizeof(TBWindow));
		if(!tmp_win->titlebuttons) {
			fprintf(stderr, "%s:  unable to allocate %d titlebuttons\n",
			        ProgramName, nb);
		}
		else {
			TBWindow *tbw;
			int boxwidth = (Scr->TBInfo.width + Scr->TBInfo.pad);
			unsigned int h = (Scr->TBInfo.width - Scr->TBInfo.border * 2);

			for(tb = Scr->TBInfo.head, tbw = tmp_win->titlebuttons; tb;
			                tb = tb->next, tbw++) {
				int x;
				if(tb->rightside) {
					x = rightx;
					rightx += boxwidth;
					attributes.win_gravity = NorthEastGravity;
				}
				else {
					x = leftx;
					leftx += boxwidth;
					attributes.win_gravity = NorthWestGravity;
				}
				tbw->window = XCreateWindow(dpy, tmp_win->title_w, x, y, h, h,
				                            (unsigned int) Scr->TBInfo.border,
				                            0, (unsigned int) CopyFromParent,
				                            (Visual *) CopyFromParent,
				                            valuemask, &attributes);
				tbw->image = GetImage(tb->name, tmp_win->title);
				if(! tbw->image) {
					tbw->image = GetImage(TBPM_QUESTION, tmp_win->title);
					if(! tbw->image) {          /* cannot happen (see util.c) */
						fprintf(stderr, "%s:  unable to add titlebar button \"%s\"\n",
						        ProgramName, tb->name);
					}
				}
				tbw->info = tb;
			}
		}
	}

	CreateHighlightWindows(tmp_win);
	CreateLowlightWindows(tmp_win);
	XMapSubwindows(dpy, tmp_win->title_w);
	if(tmp_win->hilite_wl) {
		XUnmapWindow(dpy, tmp_win->hilite_wl);
	}
	if(tmp_win->hilite_wr) {
		XUnmapWindow(dpy, tmp_win->hilite_wr);
	}
	if(tmp_win->lolite_wl) {
		XMapWindow(dpy, tmp_win->lolite_wl);
	}
	if(tmp_win->lolite_wr) {
		XMapWindow(dpy, tmp_win->lolite_wr);
	}
	return;
}

void SetHighlightPixmap(char *filename)
{
	Scr->HighlightPixmapName = (char *) strdup(filename);
}


void FetchWmProtocols(TwmWindow *tmp)
{
	unsigned long flags = 0L;
	Atom *protocols = NULL;
	int n;

	if(XGetWMProtocols(dpy, tmp->w, &protocols, &n)) {
		int i;
		Atom *ap;

		for(i = 0, ap = protocols; i < n; i++, ap++) {
			if(*ap == XA_WM_TAKE_FOCUS) {
				flags |= DoesWmTakeFocus;
			}
			if(*ap == XA_WM_SAVE_YOURSELF) {
				flags |= DoesWmSaveYourself;
			}
			if(*ap == XA_WM_DELETE_WINDOW) {
				flags |= DoesWmDeleteWindow;
			}
		}
		if(protocols) {
			XFree((char *) protocols);
		}
	}
	tmp->protocols = flags;
}

TwmColormap *CreateTwmColormap(Colormap c)
{
	TwmColormap *cmap;
	cmap = (TwmColormap *) malloc(sizeof(TwmColormap));
	if(!cmap ||
	                XSaveContext(dpy, c, ColormapContext, (XPointer) cmap)) {
		if(cmap) {
			free((char *) cmap);
		}
		return (NULL);
	}
	cmap->c = c;
	cmap->state = 0;
	cmap->install_req = 0;
	cmap->w = None;
	cmap->refcnt = 1;
	return (cmap);
}

ColormapWindow *CreateColormapWindow(Window w,
                                     Bool creating_parent,
                                     Bool property_window)
{
	ColormapWindow *cwin;
	TwmColormap *cmap;
	XWindowAttributes attributes;

	cwin = (ColormapWindow *) malloc(sizeof(ColormapWindow));
	if(cwin) {
		if(!XGetWindowAttributes(dpy, w, &attributes) ||
		                XSaveContext(dpy, w, ColormapContext, (XPointer) cwin)) {
			free((char *) cwin);
			return (NULL);
		}

		if(XFindContext(dpy, attributes.colormap,  ColormapContext,
		                (XPointer *)&cwin->colormap) == XCNOENT) {
			cwin->colormap = cmap = CreateTwmColormap(attributes.colormap);
			if(!cmap) {
				XDeleteContext(dpy, w, ColormapContext);
				free((char *) cwin);
				return (NULL);
			}
		}
		else {
			cwin->colormap->refcnt++;
		}

		cwin->w = w;
		/*
		 * Assume that windows in colormap list are
		 * obscured if we are creating the parent window.
		 * Otherwise, we assume they are unobscured.
		 */
		cwin->visibility = creating_parent ?
		                   VisibilityPartiallyObscured : VisibilityUnobscured;
		cwin->refcnt = 1;

		/*
		 * If this is a ColormapWindow property window and we
		 * are not monitoring ColormapNotify or VisibilityNotify
		 * events, we need to.
		 */
		if(property_window &&
		                (attributes.your_event_mask &
		                 (ColormapChangeMask | VisibilityChangeMask)) !=
		                (ColormapChangeMask | VisibilityChangeMask)) {
			XSelectInput(dpy, w, attributes.your_event_mask |
			             (ColormapChangeMask | VisibilityChangeMask));
		}
	}

	return (cwin);
}

void FetchWmColormapWindows(TwmWindow *tmp)
{
	int i, j;
	Window *cmap_windows = NULL;
	Bool can_free_cmap_windows = False;
	int number_cmap_windows = 0;
	ColormapWindow **cwins = NULL;
	int previously_installed;

	number_cmap_windows = 0;

	if( /* SUPPRESS 560 */
	        (previously_installed =
	                 (Scr->cmapInfo.cmaps == &tmp->cmaps && tmp->cmaps.number_cwins))) {
		cwins = tmp->cmaps.cwins;
		for(i = 0; i < tmp->cmaps.number_cwins; i++) {
			cwins[i]->colormap->state = 0;
		}
	}

	if(XGetWMColormapWindows(dpy, tmp->w, &cmap_windows,
	                         &number_cmap_windows) &&
	                number_cmap_windows > 0) {

		can_free_cmap_windows = False;
		/*
		 * check if the top level is in the list, add to front if not
		 */
		for(i = 0; i < number_cmap_windows; i++) {
			if(cmap_windows[i] == tmp->w) {
				break;
			}
		}
		if(i == number_cmap_windows) {   /* not in list */
			Window *new_cmap_windows =
			        (Window *) malloc(sizeof(Window) * (number_cmap_windows + 1));

			if(!new_cmap_windows) {
				fprintf(stderr,
				        "%s:  unable to allocate %d element colormap window array\n",
				        ProgramName, number_cmap_windows + 1);
				goto done;
			}
			new_cmap_windows[0] = tmp->w;  /* add to front */
			for(i = 0; i < number_cmap_windows; i++) {   /* append rest */
				new_cmap_windows[i + 1] = cmap_windows[i];
			}
			XFree((char *) cmap_windows);
			can_free_cmap_windows = True;  /* do not use XFree any more */
			cmap_windows = new_cmap_windows;
			number_cmap_windows++;
		}

		cwins = (ColormapWindow **) malloc(sizeof(ColormapWindow *) *
		                                   number_cmap_windows);
		if(cwins) {
			for(i = 0; i < number_cmap_windows; i++) {

				/*
				 * Copy any existing entries into new list.
				 */
				for(j = 0; j < tmp->cmaps.number_cwins; j++) {
					if(tmp->cmaps.cwins[j]->w == cmap_windows[i]) {
						cwins[i] = tmp->cmaps.cwins[j];
						cwins[i]->refcnt++;
						break;
					}
				}

				/*
				 * If the colormap window is not being pointed by
				 * some other applications colormap window list,
				 * create a new entry.
				 */
				if(j == tmp->cmaps.number_cwins) {
					if(XFindContext(dpy, cmap_windows[i], ColormapContext,
					                (XPointer *)&cwins[i]) == XCNOENT) {
						if((cwins[i] = CreateColormapWindow(cmap_windows[i],
						                                    (Bool) tmp->cmaps.number_cwins == 0,
						                                    True)) == NULL) {
							int k;
							for(k = i + 1; k < number_cmap_windows; k++) {
								cmap_windows[k - 1] = cmap_windows[k];
							}
							i--;
							number_cmap_windows--;
						}
					}
					else {
						cwins[i]->refcnt++;
					}
				}
			}
		}
	}

	/* No else here, in case we bailed out of clause above.
	 */
	if(number_cmap_windows == 0) {

		number_cmap_windows = 1;

		cwins = (ColormapWindow **) malloc(sizeof(ColormapWindow *));
		if(XFindContext(dpy, tmp->w, ColormapContext, (XPointer *)&cwins[0]) ==
		                XCNOENT)
			cwins[0] = CreateColormapWindow(tmp->w,
			                                (Bool) tmp->cmaps.number_cwins == 0, False);
		else {
			cwins[0]->refcnt++;
		}
	}

	if(tmp->cmaps.number_cwins) {
		free_cwins(tmp);
	}

	tmp->cmaps.cwins = cwins;
	tmp->cmaps.number_cwins = number_cmap_windows;
	if(number_cmap_windows > 1)
		tmp->cmaps.scoreboard =
		        (char *) calloc(1, ColormapsScoreboardLength(&tmp->cmaps));

	if(previously_installed) {
		InstallColormaps(PropertyNotify, NULL);
	}

done:
	if(cmap_windows) {
		if(can_free_cmap_windows) {
			free((char *) cmap_windows);
		}
		else {
			XFree((char *) cmap_windows);
		}
	}
}


void GetWindowSizeHints(TwmWindow *tmp)
{
	long supplied = 0;
	XSizeHints *hints = &tmp->hints;

	if(!XGetWMNormalHints(dpy, tmp->w, hints, &supplied)) {
		hints->flags = 0;
	}

	if(hints->flags & PResizeInc) {
		if(hints->width_inc == 0) {
			hints->width_inc = 1;
		}
		if(hints->height_inc == 0) {
			hints->height_inc = 1;
		}
	}

	if(!(supplied & PWinGravity) && (hints->flags & USPosition)) {
		static int gravs[] = { SouthEastGravity, SouthWestGravity,
		                       NorthEastGravity, NorthWestGravity
		                     };
		int right =  tmp->attr.x + tmp->attr.width + 2 * tmp->old_bw;
		int bottom = tmp->attr.y + tmp->attr.height + 2 * tmp->old_bw;
		hints->win_gravity =
		        gravs[((Scr->rooth - bottom <
		                tmp->title_height + 2 * tmp->frame_bw3D) ? 0 : 2) |
		              ((Scr->rootw - right   <
		                tmp->title_height + 2 * tmp->frame_bw3D) ? 0 : 1)];
		hints->flags |= PWinGravity;
	}

	/* Check for min size < max size */
	if((hints->flags & (PMinSize | PMaxSize)) == (PMinSize | PMaxSize)) {
		if(hints->max_width < hints->min_width) {
			if(hints->max_width > 0) {
				hints->min_width = hints->max_width;
			}
			else if(hints->min_width > 0) {
				hints->max_width = hints->min_width;
			}
			else {
				hints->max_width = hints->min_width = 1;
			}
		}

		if(hints->max_height < hints->min_height) {
			if(hints->max_height > 0) {
				hints->min_height = hints->max_height;
			}
			else if(hints->min_height > 0) {
				hints->max_height = hints->min_height;
			}
			else {
				hints->max_height = hints->min_height = 1;
			}
		}
	}
}

void AnimateButton(TBWindow *tbw)
{
	Image       *image;
	XSetWindowAttributes attr;

	image = tbw->image;
	attr.background_pixmap = image->pixmap;
	XChangeWindowAttributes(dpy, tbw->window, CWBackPixmap, &attr);
	XClearWindow(dpy, tbw->window);
	tbw->image = image->next;
}

void AnimateHighlight(TwmWindow *t)
{
	Image       *image;
	XSetWindowAttributes attr;

	image = t->HiliteImage;
	attr.background_pixmap = image->pixmap;
	if(t->hilite_wl) {
		XChangeWindowAttributes(dpy, t->hilite_wl, CWBackPixmap, &attr);
		XClearWindow(dpy, t->hilite_wl);
	}
	if(t->hilite_wr) {
		XChangeWindowAttributes(dpy, t->hilite_wr, CWBackPixmap, &attr);
		XClearWindow(dpy, t->hilite_wr);
	}
	t->HiliteImage = image->next;
}

name_list **AddWindowRegion(char *geom, int grav1, int grav2)
{
	WindowRegion *wr;
	int mask;

	wr = (WindowRegion *) malloc(sizeof(WindowRegion));
	wr->next = NULL;

	if(!Scr->FirstWindowRegion) {
		Scr->FirstWindowRegion = wr;
	}

	wr->entries    = NULL;
	wr->clientlist = NULL;
	wr->grav1      = grav1;
	wr->grav2      = grav2;
	wr->x = wr->y = wr->w = wr->h = 0;

	mask = XParseGeometry(geom, &wr->x, &wr->y, (unsigned int *) &wr->w,
	                      (unsigned int *) &wr->h);

	if(mask & XNegative) {
		wr->x += Scr->rootw - wr->w;
	}
	if(mask & YNegative) {
		wr->y += Scr->rooth - wr->h;
	}

	return (&(wr->clientlist));
}

void CreateWindowRegions(void)
{
	WindowRegion  *wr, *wr1 = NULL, *wr2 = NULL;
	WorkSpace *wl;

	for(wl = Scr->workSpaceMgr.workSpaceList; wl != NULL; wl = wl->next) {
		wl->FirstWindowRegion = NULL;
		wr2 = NULL;
		for(wr = Scr->FirstWindowRegion; wr != NULL; wr = wr->next) {
			wr1  = (WindowRegion *) malloc(sizeof(WindowRegion));
			*wr1 = *wr;
			wr1->entries = (WindowEntry *) malloc(sizeof(WindowEntry));
			wr1->entries->next = 0;
			wr1->entries->x = wr1->x;
			wr1->entries->y = wr1->y;
			wr1->entries->w = wr1->w;
			wr1->entries->h = wr1->h;
			wr1->entries->twm_win = (TwmWindow *) 0;
			wr1->entries->used = 0;
			if(wr2) {
				wr2->next = wr1;
			}
			else {
				wl->FirstWindowRegion = wr1;
			}
			wr2 = wr1;
		}
		if(wr1) {
			wr1->next = NULL;
		}
	}
}


Bool PlaceWindowInRegion(TwmWindow *tmp_win, int *final_x, int *final_y)
{
	WindowRegion  *wr;
	WindowEntry   *we;
	int           w, h;
	WorkSpace     *wl;

	if(!Scr->FirstWindowRegion) {
		return (False);
	}
	for(wl = Scr->workSpaceMgr.workSpaceList; wl != NULL; wl = wl->next) {
		if(OCCUPY(tmp_win, wl)) {
			break;
		}
	}
	if(!wl) {
		return (False);
	}
	w = tmp_win->frame_width;
	h = tmp_win->frame_height;
	we = (WindowEntry *) 0;
	for(wr = wl->FirstWindowRegion; wr; wr = wr->next) {
		if(LookInList(wr->clientlist, tmp_win->full_name, &tmp_win->class)) {
			for(we = wr->entries; we; we = we->next) {
				if(we->used) {
					continue;
				}
				if(we->w >= w && we->h >= h) {
					break;
				}
			}
			if(we) {
				break;
			}
		}
	}
	tmp_win->wr = (WindowRegion *) 0;
	if(!we) {
		return (False);
	}

	splitWindowRegionEntry(we, wr->grav1, wr->grav2, w, h);
	we->used = 1;
	we->twm_win = tmp_win;
	*final_x = we->x;
	*final_y = we->y;
	tmp_win->wr = wr;
	return (True);
}

static void splitWindowRegionEntry(WindowEntry *we, int grav1, int grav2,
                                   int w, int h)
{
	WindowEntry *new;

	switch(grav1) {
		case D_NORTH:
		case D_SOUTH:
			if(w != we->w) {
				splitWindowRegionEntry(we, grav2, grav1, w, we->h);
			}
			if(h != we->h) {
				new = (WindowEntry *) malloc(sizeof(WindowEntry));
				new->twm_win = 0;
				new->used = 0;
				new->next = we->next;
				we->next  = new;
				new->x    = we->x;
				new->h    = (we->h - h);
				new->w    = we->w;
				we->h     = h;
				if(grav1 == D_SOUTH) {
					new->y = we->y;
					we->y  = new->y + new->h;
				}
				else {
					new->y = we->y + we->h;
				}
			}
			break;
		case D_EAST:
		case D_WEST:
			if(h != we->h) {
				splitWindowRegionEntry(we, grav2, grav1, we->w, h);
			}
			if(w != we->w) {
				new = (WindowEntry *) malloc(sizeof(WindowEntry));
				new->twm_win = 0;
				new->used = 0;
				new->next = we->next;
				we->next  = new;
				new->y    = we->y;
				new->w    = (we->w - w);
				new->h    = we->h;
				we->w = w;
				if(grav1 == D_EAST) {
					new->x = we->x;
					we->x  = new->x + new->w;
				}
				else {
					new->x = we->x + we->w;
				}
			}
			break;
	}
}

static WindowEntry *findWindowEntry(WorkSpace *wl, TwmWindow *tmp_win,
                                    WindowRegion **wrp)
{
	WindowRegion *wr;
	WindowEntry  *we;

	for(wr = wl->FirstWindowRegion; wr; wr = wr->next) {
		for(we = wr->entries; we; we = we->next) {
			if(we->twm_win == tmp_win) {
				if(wrp) {
					*wrp = wr;
				}
				return we;
			}
		}
	}
	return (WindowEntry *) 0;
}

static WindowEntry *prevWindowEntry(WindowEntry *we, WindowRegion *wr)
{
	WindowEntry *wp;

	if(we == wr->entries) {
		return 0;
	}
	for(wp = wr->entries; wp->next != we; wp = wp->next);
	return wp;
}

static void mergeWindowEntries(WindowEntry *old, WindowEntry *we)
{
	if(old->y == we->y) {
		we->w = old->w + we->w;
		if(old->x < we->x) {
			we->x = old->x;
		}
	}
	else {
		we->h = old->h + we->h;
		if(old->y < we->y) {
			we->y = old->y;
		}
	}
}

void RemoveWindowFromRegion(TwmWindow *tmp_win)
{
	WindowEntry  *we, *wp, *wn;
	WindowRegion *wr;
	WorkSpace    *wl;

	if(!Scr->FirstWindowRegion) {
		return;
	}
	we = (WindowEntry *) 0;
	for(wl = Scr->workSpaceMgr.workSpaceList; wl != NULL; wl = wl->next) {
		we = findWindowEntry(wl, tmp_win, &wr);
		if(we) {
			break;
		}
	}
	if(!we) {
		return;
	}

	we->twm_win = 0;
	we->used = 0;
	wp = prevWindowEntry(we, wr);
	wn = we->next;
	for(;;) {
		if(wp && wp->used == 0 &&
		                ((wp->x == we->x && wp->w == we->w) ||
		                 (wp->y == we->y && wp->h == we->h))) {
			wp->next = we->next;
			mergeWindowEntries(we, wp);
			free((char *) we);
			we = wp;
			wp = prevWindowEntry(wp, wr);
		}
		else if(wn && wn->used == 0 &&
		                ((wn->x == we->x && wn->w == we->w) ||
		                 (wn->y == we->y && wn->h == we->h))) {
			we->next = wn->next;
			mergeWindowEntries(wn, we);
			free((char *) wn);
			wn = we->next;
		}
		else {
			break;
		}
	}
}

/*
 * This is largely for Xinerama support with VirtualScreens.
 * In this case, windows may be on something other then the main screen
 * on startup, or the mapping may be relative to the right side of the
 * screen, which is on a different monitor, which will cause issues with
 * the virtual screens.
 *
 * It probably needs to be congnizant of windows that are actually owned by
 * other workspaces, and ignore them (this needs to be revisited), or perhaps
 * that functionality is appropriate in AddWindow().  This needs to be dug into
 * more deply.
 *
 * this approach assumes screens that are next to each other horizontally,
 * Other possibilities need to be investigated and accounted for.
 */
void DealWithNonSensicalGeometries(Display *mydpy, Window vroot,
                                   TwmWindow *tmp_win)
{
	Window              vvroot;
	int                 x, y;
	unsigned int        w, h;
	unsigned int        j;
	VirtualScreen       *myvs, *vs;
	int                 dropx = 0;

	if(! vroot) {
		return;
	}

	if(!(XGetGeometry(mydpy, vroot, &vvroot, &x, &y, &w, &h, &j, &j))) {
		return;
	}

	myvs = findIfVScreenOf(x, y);

	/*
	 * probably need to rethink this  for unmapped vs's.  ugh.
	 */
	if(!myvs) {
		return;
	}

	for(vs = myvs->next; vs; vs = vs->next) {
		dropx += vs->w;
	}

	for(vs = Scr->vScreenList; vs && vs != myvs; vs = vs->next) {
		dropx -= vs->w;
	}

	if(tmp_win->frame_x > 0 && tmp_win->frame_x >= w) {
		tmp_win->frame_x -= abs(dropx);
	}
	else {
	}

}