summaryrefslogtreecommitdiffstats
path: root/plugin/simplestyle.cpp
blob: a1b2131bae84b83d7d6bca1476f21e539a60ae97 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
/****************************************************************************
**
** Copyright (C) 2012 Timothy Pearson.  All rights reserved.
**
** This file is part of the TDE Qt4 style interface
**
** This file may be used under the terms of the GNU General
** Public License versions 2.0 or 3.0 as published by the Free
** Software Foundation and appearing in the files LICENSE.GPL2
** and LICENSE.GPL3 included in the packaging of this file.
**
** This file is provided "AS IS" with NO WARRANTY OF ANY KIND,
** INCLUDING THE WARRANTIES OF DESIGN, MERCHANTABILITY AND FITNESS FOR
** A PARTICULAR PURPOSE. Trolltech reserves all rights not granted
** herein.
**
**********************************************************************/

#define TQT_NO_COMPAT_NAMES
#include <tqstyle.h>
#include <tqpixmap.h>
#include <tqbitmap.h>
#include <tqpainter.h>
#include <tqapplication.h>
#include <tqprogressbar.h>
#include <tqtabbar.h>
#include <tqradiobutton.h>
#include <tqcheckbox.h>
#include <tqpushbutton.h>
#include <tqpopupmenu.h>
#include <tqmenudata.h>
#include <tqcombobox.h>
#include <tqslider.h>
#include <tqscrollbar.h>
#include <tqspinbox.h>
#include <tqiconset.h>
#include <tqmenubar.h>
#include <tqtoolbox.h>
#include <tqtoolbutton.h>
#include <qtitlebar_p.h>
#include <tqpixmapcache.h>
#undef Qt

// HACK to gain access to QSpinBox QLineEdit object
#define protected public

#include <QtGui/QtGui>
#include <QtGui/QX11Info>

// HACK
#undef protected

#include "simplestyle.h"
#include "tdeqt4painter.h"
#include "tdeqt4converter.h"

#define INTEGRATE_WITH_TDE 1

#ifdef INTEGRATE_WITH_TDE
#undef Q_OBJECT
#define Q_OBJECT TQ_OBJECT
#include <tdeapplication.h>
#include <tdecmdlineargs.h>
#include <tdeaboutdata.h>
#include <kicontheme.h>
#include <kiconloader.h>
#include <tdefiledialog.h>
#endif

// #define DEBUG_SPEW 1

//#define BASE_QT4_STYLE_CLASS QCommonStyle
#define BASE_QT4_STYLE_CLASS QWindowsStyle

// Run your application like this:
// DEBUG_TDEQT4_THEME_ENGINE=true <appname>
// to debug the theme engine
bool enable_debug_warnings = false;

#ifdef INTEGRATE_WITH_TDE
// BEGIN
// Qt4 file dialog hook information block
typedef QStringList (*_qt_filedialog_open_filenames_hook)(QWidget * parent, const QString &caption, const QString &dir,
                                                          const QString &filter, QString *selectedFilter, QFileDialog::Options options);
typedef QString (*_qt_filedialog_open_filename_hook)     (QWidget * parent, const QString &caption, const QString &dir,
                                                          const QString &filter, QString *selectedFilter, QFileDialog::Options options);
typedef QString (*_qt_filedialog_save_filename_hook)     (QWidget * parent, const QString &caption, const QString &dir,
                                                          const QString &filter, QString *selectedFilter, QFileDialog::Options options);
typedef QString (*_qt_filedialog_existing_directory_hook)(QWidget *parent, const QString &caption, const QString &dir,
                                                          QFileDialog::Options options);

extern Q_GUI_EXPORT _qt_filedialog_open_filename_hook qt_filedialog_open_filename_hook;
extern Q_GUI_EXPORT _qt_filedialog_open_filenames_hook qt_filedialog_open_filenames_hook;
extern Q_GUI_EXPORT _qt_filedialog_save_filename_hook qt_filedialog_save_filename_hook;
extern Q_GUI_EXPORT _qt_filedialog_existing_directory_hook qt_filedialog_existing_directory_hook;
// END
#endif // INTEGRATE_WITH_TDE

#ifdef INTEGRATE_WITH_TDE
static QString TDEFileDialogOpenName(QWidget *parent, const QString &caption, const QString &dir, const QString &filter, QString *selectedFilter, QFileDialog::Options)
{
	Q_UNUSED(selectedFilter);

	if (parent) {
		return convertTQt3ToQt4String(KFileDialog::getOpenFileNameWId(convertQt4ToTQt3String(dir), convertQt4ToTQt3String(filter), parent->winId(), convertQt4ToTQt3String(caption)));
	}
	else {
		return convertTQt3ToQt4String(KFileDialog::getOpenFileName(convertQt4ToTQt3String(dir), convertQt4ToTQt3String(filter), 0, convertQt4ToTQt3String(caption)));
	}
}

static QStringList TDEFileDialogOpenNames(QWidget *parent, const QString &caption, const QString &dir, const QString &filter, QString *selectedFilter, QFileDialog::Options)
{
	Q_UNUSED(selectedFilter);
	Q_UNUSED(parent);

//	TQWidget* tqt3parent = TQT_TQWIDGET(TQWidget::find( parent->winId() ));
	TQWidget* tqt3parent = 0;
	return convertTQt3ToQt4StringList(KFileDialog::getOpenFileNames(convertQt4ToTQt3String(dir), convertQt4ToTQt3String(filter), tqt3parent, convertQt4ToTQt3String(caption)));
}

static QString TDEFileDialogSaveName(QWidget *parent, const QString &caption, const QString &dir, const QString &filter, QString *selectedFilter, QFileDialog::Options)
{
	Q_UNUSED(selectedFilter);

	if (parent) {
		return convertTQt3ToQt4String(KFileDialog::getSaveFileNameWId(convertQt4ToTQt3String(dir), convertQt4ToTQt3String(filter), parent->winId(), convertQt4ToTQt3String(caption)));
	}
	else {
		return convertTQt3ToQt4String(KFileDialog::getSaveFileName(convertQt4ToTQt3String(dir), convertQt4ToTQt3String(filter), 0, convertQt4ToTQt3String(caption)));
	}
}

static QString TDEFileDialogSelectDirectory(QWidget *parent, const QString &caption, const QString &dir, QFileDialog::Options)
{
	Q_UNUSED(parent);

	TQWidget* tqt3parent = 0;
	return convertTQt3ToQt4String(KFileDialog::getExistingDirectory(convertQt4ToTQt3String(dir), tqt3parent, convertQt4ToTQt3String(caption)));
}
#endif // INTEGRATE_WITH_TDE

#define NO_QT3_EQUIVALENT can_override = false;
#define DO_NOT_DRAW can_override = true; do_not_draw = true;

Qt4TDEStyle::Qt4TDEStyle() : m_aboutData(NULL), m_tqApplication(NULL), m_tdeApplication(NULL), hoverTab(-1)
{
	enable_debug_warnings = (getenv("DEBUG_TDEQT4_THEME_ENGINE") != NULL);

#ifdef INTEGRATE_WITH_TDE
	if (!tqApp) {
		// Initialize TDEApplication required data structures
		int argc = 1;
		char** argv;
		// Supply it with fake data to keep TDEApplication happy
		argv = (char**) malloc(sizeof(char*));
		argv[0] = (char*) malloc(sizeof(char) * 19);
		strncpy(argv[0], "Qt4TDEStyle", 19);

		m_qt4ApplicationName = convertQt4ToTQt3String(qApp->applicationName());

		m_aboutData = new TDEAboutData("Qt4TDEStyle", I18N_NOOP(m_qt4ApplicationName.ascii()), "v0.1",
			"TDE Qt4 theme engine", TDEAboutData::License_GPL,
			"(c) 2012, Timothy Pearson",
			"message goes here", 0 /* TODO: Website */, "kb9vqf@pearsoncomputing.net");
		TDECmdLineArgs::init(argc, argv, m_aboutData);

		// Qt4 can be SO STUPID sometimes...why can't I get the X11 display directly from qApp?!?!??
		QWidget myhackedwidget;
		m_tdeApplication = new TDEApplication(myhackedwidget.x11Info().display());
	}

	// Set the Qt4 icon set to the TDE icon set
	QIcon::setThemeName(convertTQt3ToQt4String(TDEIconTheme::current()));

	// Set the Qt4 default font
	QApplication::setFont(convertTQt3ToQt4Font(TQApplication::font()));

	// Set up Qt4 size hints to match the TDE sizes
	// FIXME
	// m_tqt3DialogButtons_ShowIcons, m_tqt3IconSize_MenuItem, and m_tqt3IconSize_Large are still hardcoded
	// Verify all mappings
	m_tqt3IconSize_NoGroup        = IconSize(TDEIcon::NoGroup);
	m_tqt3IconSize_Desktop        = IconSize(TDEIcon::Desktop);
	m_tqt3IconSize_FirstGroup     = IconSize(TDEIcon::FirstGroup);
	m_tqt3IconSize_Toolbar        = IconSize(TDEIcon::Toolbar);
	m_tqt3IconSize_MainToolbar    = IconSize(TDEIcon::MainToolbar);
	m_tqt3IconSize_Small          = IconSize(TDEIcon::Small);
	m_tqt3IconSize_Large          = 32;
	m_tqt3IconSize_Panel          = IconSize(TDEIcon::Panel);
	m_tqt3IconSize_LastGroup      = IconSize(TDEIcon::LastGroup);
	m_tqt3IconSize_User           = IconSize(TDEIcon::User);
	m_tqt3IconSize_MenuItem       = 16;
	m_tqt3IconSize_Tabbar         = m_tqt3IconSize_MenuItem;
	m_tqt3IconSize_Listview       = m_tqt3IconSize_MenuItem;
	m_tqt3IconSize_Button         = m_tqt3IconSize_MenuItem;
	m_tqt3DialogButtons_ShowIcons = 0;

#else // INTEGRATE_WITH_TDE
	if (!tqApp) {
		// Qt4 can be SO STUPID sometimes...why can't I get the X11 display directly from qApp?!?!??
		QWidget myhackedwidget;
		m_tqApplication = new TQApplication(myhackedwidget.x11Info().display());
	}

	// Set up Qt4 size hints to match the hardcoded TQt3 sizes
	// FIXME
	// Verify all mappings
	m_tqt3IconSize_NoGroup        = 32;
	m_tqt3IconSize_Desktop        = 32;
	m_tqt3IconSize_FirstGroup     = m_tqt3IconSize_NoGroup;
	m_tqt3IconSize_Toolbar        = 22;
	m_tqt3IconSize_MainToolbar    = 22;
	m_tqt3IconSize_Small          = 22;			// Hardcoded in TQt3 qiconset.cpp:56
	m_tqt3IconSize_Large          = 32;			// Hardcoded in TQt3 qiconset.cpp:56
	m_tqt3IconSize_Panel          = 22;
	m_tqt3IconSize_LastGroup      = m_tqt3IconSize_NoGroup;
	m_tqt3IconSize_User           = m_tqt3IconSize_NoGroup;
	m_tqt3IconSize_MenuItem       = 16;
	m_tqt3IconSize_Tabbar         = m_tqt3IconSize_MenuItem;
	m_tqt3IconSize_Listview       = m_tqt3IconSize_MenuItem;
	m_tqt3IconSize_Button         = m_tqt3IconSize_MenuItem;
	m_tqt3DialogButtons_ShowIcons = 0;
#endif // INTEGRATE_WITH_TDE

	// Set the Qt4 palette to the TQt3 palette
	qApp->setPalette(convertTQt3ToQt4Palette(tqApp->palette()));

	// Initialize the pixmap cache
	m_internalTQt3PixmapCache = new TQPixmapCache();
	m_internalTQt3PixmapCache->setCacheLimit(4096);

	// Initialize the widget cache
	m_internalTQt3WidgetCache = new TQWidgetCache();
	m_internalTQt3WidgetCache->setMaxCost(4096);
	m_internalTQt3WidgetCache->setAutoDelete(true);

	// Create interface widgets
	m_tqt3parent_widget = new TQWidget();

	m_tqt3generic_widget = new TQWidget(m_tqt3parent_widget);
	m_tqt3window_widget = new TQWidget(m_tqt3parent_widget);

#ifdef INTEGRATE_WITH_TDE
	qt_filedialog_open_filename_hook = &TDEFileDialogOpenName;
	qt_filedialog_open_filenames_hook = &TDEFileDialogOpenNames;
	qt_filedialog_save_filename_hook = &TDEFileDialogSaveName;
	qt_filedialog_existing_directory_hook = &TDEFileDialogSelectDirectory;
#endif // INTEGRATE_WITH_TDE

#if QT_VERSION > 0x040800
	// How a bug of this magnitude could go undetected in a major Qt4 release is beyond me...I guess cell phones don't generally use thin lines in their widgets!?
	// This is Yet Another Example of why TDE cannot rely on Qt4 for anything of any real importance
	printf("[WARNING] Qt4 >= Qt 4.8.0 detected; you are likely affected by these Qt4 bugs:\n[WARNING] https://bugreports.qt-project.org/browse/QTBUG-25896\n[WARNING] https://bugreports.qt-project.org/browse/QTBUG-26013\n[WARNING] There is no known workaround for this problem; your Qt4 application will display with numerous graphical glitches.\n");
#endif
}

Qt4TDEStyle::~Qt4TDEStyle()
{
//	delete tqApp;

	// Delete interface widgets
	// Widgets are deleted when their parent is deleted...these lines will cause a crash on exit
// 	delete m_tqt3generic_widget;
// 	delete m_tqt3window_widget;

	// FIXME
	// Verify I'm not leaking memory like a sieve when this is commented out!!!
// 	delete m_tqt3parent_widget;

	m_internalTQt3WidgetCache->setAutoDelete(false);
	delete m_internalTQt3WidgetCache;
	delete m_internalTQt3PixmapCache;

	if (m_tdeApplication) {
		delete m_tdeApplication;
	}
	if (m_tqApplication) {
		delete m_tqApplication;
	}

	// FIXME
	// Do I need to delete this?
// 	delete m_aboutData;
}

void Qt4TDEStyle::polish(QPalette &palette)
{
	// FIXME
	// Figure out some way to polish the Qt4 widgets with the Qt3 polish method
	// This probably involves modifying Qt3 to specify a painter...
}

void Qt4TDEStyle::polish(QWidget *widget)
{
	// HACK
	// Many TQt3 styles need to be notified when their widgets are moused over
	// The only way we can really do that here is to force a repaint on mouse entry/mouse exit
	// I figure if Qt4 programmers and users can put up with Qt4's overall poor raster graphics
	// performance, they can also put up with this hack...
        widget->setMouseTracking(true);
        widget->installEventFilter(this);
}

void Qt4TDEStyle::unpolish(QWidget *widget)
{
	// HACK
	// See Qt4TDEStyle::polish
        widget->setMouseTracking(false);
        widget->removeEventFilter(this);
}

#define HOVER_SENSITIVE_WIDGET_SELECT		if ( widget->inherits("QPushButton")				\
							|| widget->inherits("QComboBox")			\
							|| widget->inherits("QSpinWidget")			\
							|| widget->inherits("QCheckBox")			\
							|| widget->inherits("QRadioButton")			\
							|| widget->inherits("QToolButton")			\
							|| widget->inherits("QSlider")				\
							|| widget->inherits("QScrollBar")			\
							|| widget->inherits("QTabBar")				\
							|| widget->inherits("QDockWindowHandle")		\
							|| widget->inherits("QSplitterHandle") )

#define FOCUS_SENSITIVE_WIDGET_SELECT		if ( widget->inherits("QLineEdit") )
#define FOCUS_SENSITIVE_PARENT_WIDGET_SELECT	if ( widget->parentWidget() && widget->parentWidget()->inherits("QSpinWidget") )

bool Qt4TDEStyle::eventFilter(QObject *obj, QEvent *ev)
{
	// HACK
	// See Qt4TDEStyle::polish
	if (!obj->isWidgetType() ) {
		return false;
	}

	QWidget* widget = dynamic_cast<QWidget*>(obj);

	if ((ev->type() == QEvent::FocusIn) || (ev->type() == QEvent::FocusOut)) {
		FOCUS_SENSITIVE_WIDGET_SELECT {
			widget->repaint();
		}
		FOCUS_SENSITIVE_PARENT_WIDGET_SELECT {
			widget->parentWidget()->repaint();
		}
	}
	
	if ((ev->type() == QEvent::Enter) || (ev->type() == QEvent::Leave) || (ev->type() == QEvent::Wheel)) {
		HOVER_SENSITIVE_WIDGET_SELECT {
			widget->repaint();
		}
	}
	else {
		if (ev->type() == QEvent::MouseMove) {
			QTabBar *tabbar = dynamic_cast<QTabBar*>(obj);
			QMouseEvent *me = dynamic_cast<QMouseEvent*>(ev);
			if (tabbar && me) {
				// FIXME
				// Avoid unnecessary repaints (which otherwise would occur on every MouseMove event causing high cpu load).
				// Qt4 should really be handling tab mouseover repaint calls instead of relying on this hack...
				bool repaint = true;
				int tab = tabbar->tabAt(me->pos());
				if (hoverTab == tab) {
					repaint = false;
				}
				hoverTab = tab;

				if (repaint) {
					tabbar->repaint();
				}
			}
		}
	}

	// Transparently pass the event on to any other handlers
	return false;
}

QIcon Qt4TDEStyle::standardIconImplementation(StandardPixmap standardIcon, const QStyleOption* opt, const QWidget* w) const
{
	QIcon reticon;
	TQString iconLookupName;
	TQWidget* interfaceWidget = 0;

	char retswitch = 0;
	TQStyle::StylePixmap tqt3stylepixmap = TQStyle::SP_CustomBase;
	switch (standardIcon) {
// 		case QStyle::SP_TitleBarMenuButton;
// 			tqt3stylepixmap = TQStyle::SP_TitleBarMenuButton;
// 			retswitch = 1;
// 			break;
		case QStyle::SP_TitleBarMinButton:
			tqt3stylepixmap = TQStyle::SP_TitleBarMinButton;
			retswitch = 1;
			break;
		case QStyle::SP_TitleBarMaxButton:
			tqt3stylepixmap = TQStyle::SP_TitleBarMaxButton;
			retswitch = 1;
			break;
		case QStyle::SP_TitleBarCloseButton:
			tqt3stylepixmap = TQStyle::SP_TitleBarCloseButton;
			retswitch = 1;
			break;
		case QStyle::SP_TitleBarNormalButton:
			tqt3stylepixmap = TQStyle::SP_TitleBarNormalButton;
			retswitch = 1;
			break;
		case QStyle::SP_TitleBarShadeButton:
			tqt3stylepixmap = TQStyle::SP_TitleBarShadeButton;
			retswitch = 1;
			break;
		case QStyle::SP_TitleBarUnshadeButton:
			tqt3stylepixmap = TQStyle::SP_TitleBarUnshadeButton;
			retswitch = 1;
			break;
// 		case QStyle::SP_TitleBarContextHelpButton:
// 		case QStyle::SP_DockWidgetCloseButton:
		case QStyle::SP_MessageBoxInformation:
			tqt3stylepixmap = TQStyle::SP_MessageBoxInformation;
			retswitch = 1;
			break;
		case QStyle::SP_MessageBoxWarning:
			tqt3stylepixmap = TQStyle::SP_MessageBoxWarning;
			retswitch = 1;
			break;
		case QStyle::SP_MessageBoxCritical:
			tqt3stylepixmap = TQStyle::SP_MessageBoxCritical;
			retswitch = 1;
			break;
		case QStyle::SP_MessageBoxQuestion:
			tqt3stylepixmap = TQStyle::SP_MessageBoxQuestion;
			retswitch = 1;
			break;
#ifdef INTEGRATE_WITH_TDE
		// FIXME
		// Verify these mappings and fill in the missing ones
		case QStyle::SP_DesktopIcon:
			iconLookupName = "desktop";
			retswitch = 3;
			break;
		case QStyle::SP_TrashIcon:
			iconLookupName = "trash";
			retswitch = 3;
			break;
		case QStyle::SP_ComputerIcon:
			iconLookupName = "computer";
			retswitch = 3;
			break;
		case QStyle::SP_DriveFDIcon:
			iconLookupName = "media-floppy-3_5";
			retswitch = 3;
			break;
		case QStyle::SP_DriveHDIcon:
			iconLookupName = "drive-harddisk";
			retswitch = 3;
			break;
		case QStyle::SP_DriveCDIcon:
			iconLookupName = "media-optical-cdrom";
			retswitch = 3;
			break;
		case QStyle::SP_DriveDVDIcon:
			iconLookupName = "media-optical-dvd";
			retswitch = 3;
			break;
// 		case QStyle::SP_DriveNetIcon:
		case QStyle::SP_DirOpenIcon:
			iconLookupName = "folder_open";
			retswitch = 3;
			break;
		case QStyle::SP_DirClosedIcon:
			iconLookupName = "folder";
			retswitch = 3;
			break;
// 		case QStyle::SP_DirLinkIcon:
// 		case QStyle::SP_FileIcon:
// 		case QStyle::SP_FileLinkIcon:
// 		case QStyle::SP_ToolBarHorizontalExtensionButton:
// 		case QStyle::SP_ToolBarVerticalExtensionButton:
		case QStyle::SP_FileDialogStart:
			iconLookupName = "go-first";
			retswitch = 3;
			break;
		case QStyle::SP_FileDialogEnd:
			iconLookupName = "go-last";
			retswitch = 3;
			break;
		case QStyle::SP_FileDialogToParent:
			iconLookupName = "go-up";
			retswitch = 3;
			break;
		case QStyle::SP_FileDialogNewFolder:
			iconLookupName = "folder-new";
			retswitch = 3;
			break;
		case QStyle::SP_FileDialogDetailedView:
			iconLookupName = "view_detailed";
			retswitch = 3;
			break;
		case QStyle::SP_FileDialogInfoView:
			iconLookupName = "view_icon";
			retswitch = 3;
			break;
// 		case QStyle::SP_FileDialogContentsView:
		case QStyle::SP_FileDialogListView:
			iconLookupName = "view_text";
			retswitch = 3;
			break;
		case QStyle::SP_FileDialogBack:
			iconLookupName = "back";
			retswitch = 3;
			break;
		case QStyle::SP_DirIcon:
			iconLookupName = "folder";
			retswitch = 3;
			break;
		case QStyle::SP_DialogOkButton:
			iconLookupName = "button_ok";
			retswitch = 3;
			break;
		case QStyle::SP_DialogCancelButton:
			iconLookupName = "button_cancel";
			retswitch = 3;
			break;
		case QStyle::SP_DialogHelpButton:
			iconLookupName = "help";
			retswitch = 3;
			break;
		case QStyle::SP_DialogOpenButton:
			iconLookupName = "document-open";
			retswitch = 3;
			break;
		case QStyle::SP_DialogSaveButton:
			iconLookupName = "document-save";
			retswitch = 3;
			break;
		case QStyle::SP_DialogCloseButton:
			iconLookupName = "window-close";
			retswitch = 3;
			break;
		case QStyle::SP_DialogApplyButton:
			iconLookupName = "apply";
			retswitch = 3;
			break;
// 		case QStyle::SP_DialogResetButton:
		case QStyle::SP_DialogDiscardButton:
			iconLookupName = "remove";
			retswitch = 3;
			break;
// 		case QStyle::SP_DialogYesButton:
// 		case QStyle::SP_DialogNoButton:
		case QStyle::SP_ArrowUp:
			iconLookupName = "go-up";
			retswitch = 3;
			break;
		case QStyle::SP_ArrowDown:
			iconLookupName = "go-down";
			retswitch = 3;
			break;
// 		case QStyle::SP_ArrowLeft:
// 		case QStyle::SP_ArrowRight:
		case QStyle::SP_ArrowBack:
			iconLookupName = "back";
			retswitch = 3;
			break;
		case QStyle::SP_ArrowForward:
			iconLookupName = "forward";
			retswitch = 3;
			break;
		case QStyle::SP_DirHomeIcon:
			iconLookupName = "folder_home";
			retswitch = 3;
			break;
// 		case QStyle::SP_CommandLink:
// 		case QStyle::SP_VistaShield:
		case QStyle::SP_BrowserReload:
			iconLookupName = "reload";
			retswitch = 3;
			break;
		case QStyle::SP_BrowserStop:
			iconLookupName = "process-stop";
			retswitch = 3;
			break;
		case QStyle::SP_MediaPlay:
			iconLookupName = "media-playback-start";
			retswitch = 3;
			break;
		case QStyle::SP_MediaStop:
			iconLookupName = "media-playback-stop";
			retswitch = 3;
			break;
		case QStyle::SP_MediaPause:
			iconLookupName = "media-playback-pause";
			retswitch = 3;
			break;
		case QStyle::SP_MediaSkipForward:
			iconLookupName = "media-skip-forward";
			retswitch = 3;
			break;
		case QStyle::SP_MediaSkipBackward:
			iconLookupName = "media-skip-backward";
			retswitch = 3;
			break;
		case QStyle::SP_MediaSeekForward:
			iconLookupName = "media-seek-forward";
			retswitch = 3;
			break;
		case QStyle::SP_MediaSeekBackward:
			iconLookupName = "media-seek-backward";
			retswitch = 3;
			break;
// 		case QStyle::SP_MediaVolume:
// 		case QStyle::SP_MediaVolumeMuted:
#endif // INTEGRATE_WITH_TDE
		default:
			if (enable_debug_warnings) {
				printf("No pixmap for Qt4 standard pixmap request %d\n", standardIcon); fflush(stdout);
			}
	}

	if (retswitch == 1) {
		TQPixmap tqt3pixmap = tqApp->style().stylePixmap(tqt3stylepixmap, interfaceWidget);
		// FIXME
		// This spews tons of "X Error: BadDrawable (invalid Pixmap or Window parameter) 9" errors and fails to work
// 		if (tqt3pixmap.isNull() == false) {
// 			reticon = convertTQt3PixmapToQt4Icon(tqt3pixmap);
// 		}
// 		else {
			// Tell Qt4 to get the information
			reticon = BASE_QT4_STYLE_CLASS::standardIconImplementation(standardIcon, opt, w);
// 		}
	}
	else {
		if (retswitch == 2) {
			// reticon was already set
		}
		else if (retswitch == 3) {
			// convert string to icon
			reticon = QIcon(convertTQt3ToQt4String(TDEGlobal::iconLoader()->iconPath(iconLookupName, TDEIcon::Desktop, true)));
		}
		else {
			// Tell Qt4 to get the information
			reticon = BASE_QT4_STYLE_CLASS::standardIconImplementation(standardIcon, opt, w);
		}
	}

	return reticon;
}

int Qt4TDEStyle::styleHint(StyleHint hint, const QStyleOption *opt, const QWidget *w, QStyleHintReturn* returnData) const
{
	Q_UNUSED(returnData);

	int retval = 0;
	TQWidget* interfaceWidget = 0;

	char retswitch = 0;
	TQStyle::StyleHint tqt3stylehint = TQStyle::SH_CustomBase;
	switch (hint) {
		// FIXME
		// Hardcode defaults from TQt3 where case statements have been commented out below...
		case QStyle::SH_EtchDisabledText:
			tqt3stylehint = TQStyle::SH_EtchDisabledText;
			retswitch=1;
			break;
// 		case QStyle::SH_DitherDisabledText:
// 			tqt3stylehint = TQStyle::SH_DitherDisabledText;
// 			retswitch=1;
// 			break;
		case QStyle::SH_ScrollBar_MiddleClickAbsolutePosition:
			tqt3stylehint = TQStyle::SH_ScrollBar_MiddleClickAbsolutePosition;
			retswitch=1;
			break;
		case QStyle::SH_ScrollBar_ScrollWhenPointerLeavesControl:
			tqt3stylehint = TQStyle::SH_ScrollBar_ScrollWhenPointerLeavesControl;
			retswitch=1;
			break;
		case QStyle::SH_TabBar_SelectMouseType:
			tqt3stylehint = TQStyle::SH_TabBar_SelectMouseType;
			retswitch=1;
			break;
		case QStyle::SH_TabBar_Alignment:
			tqt3stylehint = TQStyle::SH_TabBar_Alignment;
			retswitch=1;
			break;
		case QStyle::SH_Header_ArrowAlignment:
			tqt3stylehint = TQStyle::SH_Header_ArrowAlignment;
			retswitch=1;
			break;
		case QStyle::SH_Slider_SnapToValue:
			tqt3stylehint = TQStyle::SH_Slider_SnapToValue;
			retswitch=1;
			break;
		case QStyle::SH_Slider_SloppyKeyEvents:
			tqt3stylehint = TQStyle::SH_Slider_SloppyKeyEvents;
			retswitch=1;
			break;
		case QStyle::SH_ProgressDialog_CenterCancelButton:
			tqt3stylehint = TQStyle::SH_ProgressDialog_CenterCancelButton;
			retswitch=1;
			break;
		case QStyle::SH_ProgressDialog_TextLabelAlignment:
			tqt3stylehint = TQStyle::SH_ProgressDialog_TextLabelAlignment;
			retswitch=1;
			break;
		case QStyle::SH_PrintDialog_RightAlignButtons:
			tqt3stylehint = TQStyle::SH_PrintDialog_RightAlignButtons;
			retswitch=1;
			break;
		case QStyle::SH_MainWindow_SpaceBelowMenuBar:
			tqt3stylehint = TQStyle::SH_MainWindow_SpaceBelowMenuBar;
			retswitch=1;
			break;
		case QStyle::SH_FontDialog_SelectAssociatedText:
			tqt3stylehint = TQStyle::SH_FontDialog_SelectAssociatedText;
			retswitch=1;
			break;
		case QStyle::SH_Menu_AllowActiveAndDisabled:
			tqt3stylehint = TQStyle::SH_PopupMenu_AllowActiveAndDisabled;
			retswitch=1;
			break;
		case QStyle::SH_Menu_SpaceActivatesItem:
			tqt3stylehint = TQStyle::SH_PopupMenu_SpaceActivatesItem;
			retswitch=1;
			break;
		case QStyle::SH_Menu_SubMenuPopupDelay:
			tqt3stylehint = TQStyle::SH_PopupMenu_SubMenuPopupDelay;
			retswitch=1;
			break;
		case QStyle::SH_ScrollView_FrameOnlyAroundContents:
			tqt3stylehint = TQStyle::SH_ScrollView_FrameOnlyAroundContents;
			retswitch=1;
			break;
		case QStyle::SH_MenuBar_AltKeyNavigation:
			tqt3stylehint = TQStyle::SH_MenuBar_AltKeyNavigation;
			retswitch=1;
			break;
		case QStyle::SH_ComboBox_ListMouseTracking:
			tqt3stylehint = TQStyle::SH_ComboBox_ListMouseTracking;
			retswitch=1;
			break;
		case QStyle::SH_Menu_MouseTracking:
			tqt3stylehint = TQStyle::SH_PopupMenu_MouseTracking;
			retswitch=1;
			break;
		case QStyle::SH_MenuBar_MouseTracking:
			tqt3stylehint = TQStyle::SH_MenuBar_MouseTracking;
			retswitch=1;
			break;
		case QStyle::SH_ItemView_ChangeHighlightOnFocus:
			tqt3stylehint = TQStyle::SH_ItemView_ChangeHighlightOnFocus;
			retswitch=1;
			break;
		case QStyle::SH_Widget_ShareActivation:
			tqt3stylehint = TQStyle::SH_Widget_ShareActivation;
			retswitch=1;
			break;
		case QStyle::SH_Workspace_FillSpaceOnMaximize:
			tqt3stylehint = TQStyle::SH_Workspace_FillSpaceOnMaximize;
			retswitch=1;
			break;
		case QStyle::SH_ComboBox_Popup:
			tqt3stylehint = TQStyle::SH_ComboBox_Popup;
			retswitch=1;
			break;
		case QStyle::SH_TitleBar_NoBorder:
			// HACK
			// Qt4 again shows its limitations!
			// Why are titlebar borders more limited in Qt4???  You can only choose between no borders or borders of exactly 4 pixels when using Qt4...
			if (tqApp->style().pixelMetric(TQStyle::PM_MDIFrameWidth, interfaceWidget) < 4) {
				retval=1;
			}
			else {
				retval=0;
			}
			retswitch=2;
			break;
// 		case QStyle::SH_Slider_StopMouseOverSlider:
// 			tqt3stylehint = TQStyle::SH_Slider_StopMouseOverSlider;
// 			retswitch=1;
// 			break;
		case QStyle::SH_BlinkCursorWhenTextSelected:
			tqt3stylehint = TQStyle::SH_BlinkCursorWhenTextSelected;
			retswitch=1;
			break;
		case QStyle::SH_RichText_FullWidthSelection:
			tqt3stylehint = TQStyle::SH_RichText_FullWidthSelection;
			retswitch=1;
			break;
		case QStyle::SH_Menu_Scrollable:
			tqt3stylehint = TQStyle::SH_PopupMenu_Scrollable;
			retswitch=1;
			break;
		// FIXME
		// Apparently SH_GroupBox_TextLabelVerticalAlignment returns something different (enum value?) under TQt3,
		// so translation will be needed.
// 		case QStyle::SH_GroupBox_TextLabelVerticalAlignment:
// 			tqt3stylehint = TQStyle::SH_GroupBox_TextLabelVerticalAlignment;
// 			retswitch=1;
// 			break;
		case QStyle::SH_GroupBox_TextLabelColor:
			tqt3stylehint = TQStyle::SH_GroupBox_TextLabelColor;
			retswitch=1;
			break;
		case QStyle::SH_Menu_SloppySubMenus:
			tqt3stylehint = TQStyle::SH_PopupMenu_SloppySubMenus;
			retswitch=1;
			break;
		case QStyle::SH_Table_GridLineColor:
			tqt3stylehint = TQStyle::SH_Table_GridLineColor;
			retswitch=1;
			break;
		case QStyle::SH_LineEdit_PasswordCharacter:
			tqt3stylehint = TQStyle::SH_LineEdit_PasswordCharacter;
			retswitch=1;
			break;
		case QStyle::SH_DialogButtons_DefaultButton:
			tqt3stylehint = TQStyle::SH_DialogButtons_DefaultButton;
			retswitch=1;
			break;
		case QStyle::SH_ToolBox_SelectedPageTitleBold:
			tqt3stylehint = TQStyle::SH_ToolBox_SelectedPageTitleBold;
			retswitch=1;
			break;
		case QStyle::SH_TabBar_PreferNoArrows:
			tqt3stylehint = TQStyle::SH_TabBar_PreferNoArrows;
			retswitch=1;
			break;
		case QStyle::SH_ScrollBar_LeftClickAbsolutePosition:
			tqt3stylehint = TQStyle::SH_ScrollBar_LeftClickAbsolutePosition;
			retswitch=1;
			break;
// 		case QStyle::SH_Q3ListViewExpand_SelectMouseType:
// 			tqt3stylehint = TQStyle::SH_Q3ListViewExpand_SelectMouseType;
// 			retswitch=1;
// 			break;
// 		case QStyle::SH_UnderlineShortcut:
// 			tqt3stylehint = TQStyle::SH_UnderlineShortcut;
// 			retswitch=1;
// 			break;
// 		case QStyle::SH_SpinBox_AnimateButton:
// 			tqt3stylehint = TQStyle::SH_SpinBox_AnimateButton;
// 			retswitch=1;
// 			break;
// 		case QStyle::SH_SpinBox_KeyPressAutoRepeatRate:
// 			tqt3stylehint = TQStyle::SH_SpinBox_KeyPressAutoRepeatRate;
// 			retswitch=1;
// 			break;
// 		case QStyle::SH_SpinBox_ClickAutoRepeatRate:
// 			tqt3stylehint = TQStyle::SH_SpinBox_ClickAutoRepeatRate;
// 			retswitch=1;
// 			break;
// 		case QStyle::SH_Menu_FillScreenWithScroll:
// 			tqt3stylehint = TQStyle::SH_PopupMenu_FillScreenWithScroll;
// 			retswitch=1;
// 			break;
// 		case QStyle::SH_ToolTipLabel_Opacity:
// 			tqt3stylehint = TQStyle::SH_ToolTipLabel_Opacity;
// 			retswitch=1;
// 			break;
// 		case QStyle::SH_DrawMenuBarSeparator:
// 			tqt3stylehint = TQStyle::SH_DrawMenuBarSeparator;
// 			retswitch=1;
// 			break;
// 		case QStyle::SH_TitleBar_ModifyNotification:
// 			tqt3stylehint = TQStyle::SH_TitleBar_ModifyNotification;
// 			retswitch=1;
// 			break;
// 		case QStyle::SH_Button_FocusPolicy:
// 			tqt3stylehint = TQStyle::SH_Button_FocusPolicy;
// 			retswitch=1;
// 			break;
// 		case QStyle::SH_MenuBar_DismissOnSecondClick:
// 			tqt3stylehint = TQStyle::SH_MenuBar_DismissOnSecondClick;
// 			retswitch=1;
// 			break;
// 		case QStyle::SH_MessageBox_UseBorderForButtonSpacing:
// 			tqt3stylehint = TQStyle::SH_MessageBox_UseBorderForButtonSpacing;
// 			retswitch=1;
// 			break;
// 		case QStyle::SH_TitleBar_AutoRaise:
// 			tqt3stylehint = TQStyle::SH_TitleBar_AutoRaise;
// 			retswitch=1;
// 			break;
// 		case QStyle::SH_ToolButton_PopupDelay:
// 			tqt3stylehint = TQStyle::SH_ToolButton_PopupDelay;
// 			retswitch=1;
// 			break;
// 		case QStyle::SH_FocusFrame_Mask:
// 			tqt3stylehint = TQStyle::SH_FocusFrame_Mask;
// 			retswitch=1;
// 			break;
// 		case QStyle::SH_RubberBand_Mask:
// 			tqt3stylehint = TQStyle::SH_RubberBand_Mask;
// 			retswitch=1;
// 			break;
// 		case QStyle::SH_WindowFrame_Mask:
// 			tqt3stylehint = TQStyle::SH_WindowFrame_Mask;
// 			retswitch=1;
// 			break;
// 		case QStyle::SH_SpinControls_DisableOnBounds:
// 			tqt3stylehint = TQStyle::SH_SpinControls_DisableOnBounds;
// 			retswitch=1;
// 			break;
// 		case QStyle::SH_Dial_BackgroundRole:
// 			tqt3stylehint = TQStyle::SH_Dial_BackgroundRole;
// 			retswitch=1;
// 			break;
// 		case QStyle::SH_ComboBox_LayoutDirection:
// 			tqt3stylehint = TQStyle::SH_ComboBox_LayoutDirection;
// 			retswitch=1;
// 			break;
// 		case QStyle::SH_ItemView_EllipsisLocation:
// 			tqt3stylehint = TQStyle::SH_ItemView_EllipsisLocation;
// 			retswitch=1;
// 			break;
// 		case QStyle::SH_ItemView_ShowDecorationSelected:
// 			tqt3stylehint = TQStyle::SH_ItemView_ShowDecorationSelected;
// 			retswitch=1;
// 			break;
// 		case QStyle::SH_ItemView_ActivateItemOnSingleClick:
// 			tqt3stylehint = TQStyle::SH_ItemView_ActivateItemOnSingleClick;
// 			retswitch=1;
// 			break;
// 		case QStyle::SH_ScrollBar_ContextMenu:
// 			tqt3stylehint = TQStyle::SH_ScrollBar_ContextMenu;
// 			retswitch=1;
// 			break;
// 		case QStyle::SH_ScrollBar_RollBetweenButtons:
// 			tqt3stylehint = TQStyle::SH_ScrollBar_RollBetweenButtons;
// 			retswitch=1;
// 			break;
// 		case QStyle::SH_Slider_AbsoluteSetButtons:
// 			tqt3stylehint = TQStyle::SH_Slider_AbsoluteSetButtons;
// 			retswitch=1;
// 			break;
// 		case QStyle::SH_Slider_PageSetButtons:
// 			tqt3stylehint = TQStyle::SH_Slider_PageSetButtons;
// 			retswitch=1;
// 			break;
// 		case QStyle::SH_Menu_KeyboardSearch:
// 			tqt3stylehint = TQStyle::SH_PopupMenu_KeyboardSearch;
// 			retswitch=1;
// 			break;
// 		case QStyle::SH_TabBar_ElideMode:
// 			tqt3stylehint = TQStyle::SH_TabBar_ElideMode;
// 			retswitch=1;
// 			break;
// 		case QStyle::SH_DialogButtonLayout:
// 			tqt3stylehint = TQStyle::SH_DialogButtonLayout;
// 			retswitch=1;
// 			break;
// 		case QStyle::SH_ComboBox_PopupFrameStyle:
// 			tqt3stylehint = TQStyle::SH_ComboBox_PopupFrameStyle;
// 			retswitch=1;
// 			break;
// 		case QStyle::SH_MessageBox_TextInteractionFlags:
// 			tqt3stylehint = TQStyle::SH_MessageBox_TextInteractionFlags;
// 			retswitch=1;
// 			break;
		case QStyle::SH_DialogButtonBox_ButtonsHaveIcons:
			retval = m_tqt3DialogButtons_ShowIcons;
			retswitch=2;
			break;
// 		case QStyle::SH_SpellCheckUnderlineStyle:
// 			tqt3stylehint = TQStyle::SH_SpellCheckUnderlineStyle;
// 			retswitch=1;
// 			break;
// 		case QStyle::SH_MessageBox_CenterButtons:
// 			tqt3stylehint = TQStyle::SH_MessageBox_CenterButtons;
// 			retswitch=1;
// 			break;
// 		case QStyle::SH_Menu_SelectionWrap:
// 			tqt3stylehint = TQStyle::SH_Menu_SelectionWrap;
// 			retswitch=1;
// 			break;
// 		case QStyle::SH_ItemView_MovementWithoutUpdatingSelection:
// 			tqt3stylehint = TQStyle::SH_ItemView_MovementWithoutUpdatingSelection;
// 			retswitch=1;
// 			break;
// 		case QStyle::SH_ToolTip_Mask:
// 			tqt3stylehint = TQStyle::SH_ToolTip_Mask;
// 			retswitch=1;
// 			break;
// 		case QStyle::SH_FocusFrame_AboveWidget:
// 			tqt3stylehint = TQStyle::SH_FocusFrame_AboveWidget;
// 			retswitch=1;
// 			break;
// 		case QStyle::SH_TextControl_FocusIndicatorTextCharFormat:
// 			tqt3stylehint = TQStyle::SH_TextControl_FocusIndicatorTextCharFormat;
// 			retswitch=1;
// 			break;
// 		case QStyle::SH_WizardStyle:
// 			tqt3stylehint = TQStyle::SH_WizardStyle;
// 			retswitch=1;
// 			break;
// 		case QStyle::SH_ItemView_ArrowKeysNavigateIntoChildren:
// 			tqt3stylehint = TQStyle::SH_ItemView_ArrowKeysNavigateIntoChildren;
// 			retswitch=1;
// 			break;
// 		case QStyle::SH_Menu_Mask:
// 			tqt3stylehint = TQStyle::SH_Menu_Mask;
// 			retswitch=1;
// 			break;
// 		case QStyle::SH_Menu_FlashTriggeredItem:
// 			tqt3stylehint = TQStyle::SH_Menu_FlashTriggeredItem;
// 			retswitch=1;
// 			break;
// 		case QStyle::SH_Menu_FadeOutOnHide:
// 			tqt3stylehint = TQStyle::SH_Menu_FadeOutOnHide;
// 			retswitch=1;
// 			break;
// 		case QStyle::SH_SpinBox_ClickAutoRepeatThreshold:
// 			tqt3stylehint = TQStyle::SH_SpinBox_ClickAutoRepeatThreshold;
// 			retswitch=1;
// 			break;
// 		case QStyle::SH_ItemView_PaintAlternatingRowColorsForEmptyArea:
// 			tqt3stylehint = TQStyle::SH_ItemView_PaintAlternatingRowColorsForEmptyArea;
// 			retswitch=1;
// 			break;
// 		case QStyle::SH_FormLayoutWrapPolicy:
// 			tqt3stylehint = TQStyle::SH_FormLayoutWrapPolicy;
// 			retswitch=1;
// 			break;
// 		case QStyle::SH_TabWidget_DefaultTabPosition:
// 			tqt3stylehint = TQStyle::SH_TabWidget_DefaultTabPosition;
// 			retswitch=1;
// 			break;
// 		case QStyle::SH_ToolBar_Movable:
// 			tqt3stylehint = TQStyle::SH_ToolBar_Movable;
// 			retswitch=1;
// 			break;
// 		case QStyle::SH_FormLayoutFieldGrowthPolicy:
// 			tqt3stylehint = TQStyle::SH_FormLayoutFieldGrowthPolicy;
// 			retswitch=1;
// 			break;
// 		case QStyle::SH_FormLayoutFormAlignment:
// 			tqt3stylehint = TQStyle::SH_FormLayoutFormAlignment;
// 			retswitch=1;
// 			break;
// 		case QStyle::SH_FormLayoutLabelAlignment:
// 			tqt3stylehint = TQStyle::SH_FormLayoutLabelAlignment;
// 			retswitch=1;
// 			break;
// 		case QStyle::SH_ItemView_DrawDelegateFrame:
// 			tqt3stylehint = TQStyle::SH_ItemView_DrawDelegateFrame;
// 			retswitch=1;
// 			break;
// 		case QStyle::SH_TabBar_CloseButtonPosition:
// 			tqt3stylehint = TQStyle::SH_TabBar_CloseButtonPosition;
// 			retswitch=1;
// 			break;
// 		case QStyle::SH_DockWidget_ButtonsHaveFrame:
// 			tqt3stylehint = TQStyle::SH_DockWidget_ButtonsHaveFrame;
// 			retswitch=1;
// 			break;
// 		case QStyle::SH_ToolButtonStyle:
// 			tqt3stylehint = TQStyle::SH_ToolButtonStyle;
// 			retswitch=1;
// 			break;
// 		case QStyle::SH_RequestSoftwareInputPanel:
// 			tqt3stylehint = TQStyle::SH_RequestSoftwareInputPanel;
// 			retswitch=1;
// 			break;
		default:
			if (enable_debug_warnings) {
				printf("No hints for Qt4 hint request %d\n", hint); fflush(stdout);
			}
			retval = 0;
	}

	if (retswitch == 1) {
		retval = tqApp->style().styleHint(tqt3stylehint, interfaceWidget);
	}
	else {
		if (retswitch == 2) {
			// retval was already set
		}
		else {
			// Tell Qt4 to get the information
			retval = BASE_QT4_STYLE_CLASS::styleHint(hint, opt, w);
		}
	}

	return retval;
}

QSize Qt4TDEStyle::sizeFromContents(ContentsType type, const QStyleOption *opt, const QSize &contentsSize, const QWidget *w) const
{
	int i;

	QSize retval;
	TQWidget* interfaceWidget = 0;
	TQStyleOption tqt3opt(TQStyleOption::Default);

	TQMenuItem* drawingItem = 0;
	QList<QAction*> qt4menuactions;
	int tqt3tabwidth = 0;
	int tqt3iconwidth = 0;
	const QStyleOptionMenuItem* qt4menuitemoptions;

	char retswitch = 0;
	TQStyle::ContentsType tqt3contentstype = TQStyle::CT_CustomBase;

	switch (type) {
		case QStyle::CT_MenuItem:
			tqt3contentstype = TQStyle::CT_PopupMenuItem;
			interfaceWidget = initializeInterfaceWidget(TQT3WT_TQPopupMenu, w);
			if (interfaceWidget == 0) {
				retswitch = 0;
			}
			else {
				// Convert the QStyleOption to the proper TQStyleOption
				// In other words, figure out which TQt3 menu item is currently being drawn
				// Qt4 makes this impossible in sizeFromContents()
				// The best we can do is to find a menu item that is somewhat close and use that
				drawingItem = 0;
				qt4menuactions = dynamic_cast<const QMenu*>(w)->actions();
				qt4menuitemoptions = static_cast<const QStyleOptionMenuItem*>(opt);

				for (i=0; i<qt4menuactions.size();++i) {
					if (((qt4menuactions.at(i)->isSeparator() == 1) == (qt4menuitemoptions->menuItemType == QStyleOptionMenuItem::Separator))
						&& (qt4menuactions.at(i)->icon().cacheKey() == qt4menuitemoptions->icon.cacheKey())
						&& (qt4menuactions.at(i)->text() == qt4menuitemoptions->text)
						&& (qt4menuactions.at(i)->isChecked() == qt4menuitemoptions->checked)
						) {
							TQPopupMenu* popupMenuWidget = dynamic_cast<TQPopupMenu*>(interfaceWidget);
							drawingItem = popupMenuWidget->findItem(popupMenuWidget->idAt(i));
							break;
					}
				}

				if (drawingItem) {
					tqt3tabwidth = static_cast<const QStyleOptionMenuItem*>(opt)->tabWidth;
					tqt3iconwidth = static_cast<const QStyleOptionMenuItem*>(opt)->maxIconWidth;
					tqt3opt = TQStyleOption(drawingItem, tqt3iconwidth, tqt3tabwidth);

					retswitch = 1;
				}
			}
			break;
		default:
			if (enable_debug_warnings) {
				printf("No size for Qt4 contents %d\n", type); fflush(stdout);
			}
	}

	if (retswitch == 1) {
		retval = convertTQt3ToQt4Size(tqApp->style().sizeFromContents(tqt3contentstype, interfaceWidget, convertQt4ToTQt3Size(contentsSize), tqt3opt));
	}
	else {
		if (retswitch == 2) {
			// retval was already set
		}
		else {
			// Tell Qt4 to get the information
			retval = BASE_QT4_STYLE_CLASS::sizeFromContents(type, opt, contentsSize, w);
		}
	}

	return retval;
}

int Qt4TDEStyle::pixelMetric(PixelMetric metric, const QStyleOption *opt, const QWidget *w) const
{
	int retval = 0;
	TQWidget* interfaceWidget = 0;

	char retswitch = 0;
	TQStyle::PixelMetric tqt3pixelmetric = TQStyle::PM_CustomBase;
	switch (metric) {
		case QStyle::PM_ButtonMargin:
			tqt3pixelmetric = TQStyle::PM_ButtonMargin;
			retswitch = 1;
			break;
// 		case QStyle::PM_DockWidgetTitleBarButtonMargin:
// 			tqt3pixelmetric = TQStyle::;
// 			retswitch = 1;
// 			break;
		case QStyle::PM_ButtonDefaultIndicator:
			tqt3pixelmetric = TQStyle::PM_ButtonDefaultIndicator;
			retswitch = 1;
			break;
		case QStyle::PM_MenuButtonIndicator:
			tqt3pixelmetric = TQStyle::PM_MenuButtonIndicator;
			retswitch = 1;
			break;
		case QStyle::PM_ButtonShiftHorizontal:
			tqt3pixelmetric = TQStyle::PM_ButtonShiftHorizontal;
			retswitch = 1;
			break;
		case QStyle::PM_ButtonShiftVertical:
			tqt3pixelmetric = TQStyle::PM_ButtonShiftVertical;
			retswitch = 1;
			break;
		case QStyle::PM_DefaultFrameWidth:
			tqt3pixelmetric = TQStyle::PM_DefaultFrameWidth;
			retswitch = 1;
			break;
		case QStyle::PM_SpinBoxFrameWidth:
			tqt3pixelmetric = TQStyle::PM_SpinBoxFrameWidth;
			retswitch = 1;
			break;
// 		case QStyle::PM_ComboBoxFrameWidth:
// 			tqt3pixelmetric = TQStyle::PM_ComboBoxFrameWidth;
// 			retswitch = 1;
// 			break;
		case QStyle::PM_MdiSubWindowFrameWidth:
			tqt3pixelmetric = TQStyle::PM_MDIFrameWidth;
			retswitch = 1;
			break;
		case QStyle::PM_MDIMinimizedWidth:
			tqt3pixelmetric = TQStyle::PM_MDIMinimizedWidth;
			retswitch = 1;
			break;
// 		case QStyle::PM_MdiSubWindowMinimizedWidth:
// 			tqt3pixelmetric = TQStyle::PM_MdiSubWindowMinimizedWidth;
// 			retswitch = 1;
// 			break;
// 		case QStyle::PM_LayoutLeftMargin:
// 			retval = 0;
// 			retswitch = 2;
// 			break;
// 		case QStyle::PM_LayoutTopMargin:
// 			retval = 0;
// 			retswitch = 2;
// 			break;
// 		case QStyle::PM_LayoutRightMargin:
// 			retval = 0;
// 			retswitch = 2;
// 			break;
// 		case QStyle::PM_LayoutBottomMargin:
// 			retval = 0;
// 			retswitch = 2;
// 			break;
// 		case QStyle::PM_LayoutHorizontalSpacing:
// 			retval = 0;
// 			retswitch = 2;
// 			break;
// 		case QStyle::PM_LayoutVerticalSpacing:
// 			retval = 0;
// 			retswitch = 2;
// 			break;
		case QStyle::PM_MaximumDragDistance:
			tqt3pixelmetric = TQStyle::PM_MaximumDragDistance;
			retswitch = 1;
			break;
		case QStyle::PM_ScrollBarExtent:
			tqt3pixelmetric = TQStyle::PM_ScrollBarExtent;
			retswitch = 1;
			break;
		case QStyle::PM_ScrollBarSliderMin:
			tqt3pixelmetric = TQStyle::PM_ScrollBarSliderMin;
			retswitch = 1;
			break;
		case QStyle::PM_SliderThickness:
			tqt3pixelmetric = TQStyle::PM_SliderThickness;
			interfaceWidget = initializeInterfaceWidget(TQT3WT_TQSlider, w);
			retswitch = 1;
			break;
		case QStyle::PM_SliderControlThickness:
			tqt3pixelmetric = TQStyle::PM_SliderControlThickness;
			interfaceWidget = initializeInterfaceWidget(TQT3WT_TQSlider, w);
			retswitch = 1;
			break;
		case QStyle::PM_SliderLength:
			tqt3pixelmetric = TQStyle::PM_SliderLength;
			interfaceWidget = initializeInterfaceWidget(TQT3WT_TQSlider, w);
			retswitch = 1;
			break;
		case QStyle::PM_SliderTickmarkOffset:
			tqt3pixelmetric = TQStyle::PM_SliderTickmarkOffset;
			interfaceWidget = initializeInterfaceWidget(TQT3WT_TQSlider, w);
			retswitch = 1;
			break;
		case QStyle::PM_SliderSpaceAvailable:
			tqt3pixelmetric = TQStyle::PM_SliderSpaceAvailable;
			retswitch = 1;
			break;
		case QStyle::PM_DockWidgetSeparatorExtent:
			tqt3pixelmetric = TQStyle::PM_DockWindowSeparatorExtent;
			retswitch = 1;
			break;
		case QStyle::PM_DockWidgetHandleExtent:
			tqt3pixelmetric = TQStyle::PM_DockWindowHandleExtent;
			retswitch = 1;
			break;
		case QStyle::PM_DockWidgetFrameWidth:
			tqt3pixelmetric = TQStyle::PM_DockWindowFrameWidth;
			retswitch = 1;
			break;
// 		case QStyle::PM_DockWidgetTitleMargin:
// 			tqt3pixelmetric = TQStyle::PM_DockWindowTitleMargin;
// 			retswitch = 1;
// 			break;
		case QStyle::PM_MenuBarPanelWidth:
			tqt3pixelmetric = TQStyle::PM_MenuBarFrameWidth;
			retswitch = 1;
			break;
		case QStyle::PM_MenuBarItemSpacing:
			tqt3pixelmetric = TQStyle::PM_MenuBarItemSpacing;
			retswitch = 1;
			break;
// 		case QStyle::PM_MenuBarHMargin:
// 			tqt3pixelmetric = TQStyle::PM_MenuBarHMargin;
// 			retswitch = 1;
// 			break;
// 		case QStyle::PM_MenuBarVMargin:
// 			tqt3pixelmetric = TQStyle::PM_MenuBarVMargin;
// 			retswitch = 1;
// 			break;
// 		case QStyle::PM_ToolBarFrameWidth:
// 			tqt3pixelmetric = TQStyle::PM_ToolBarFrameWidth;
// 			retswitch = 1;
// 			break;
// 		case QStyle::PM_ToolBarHandleExtent:
// 			tqt3pixelmetric = TQStyle::PM_ToolBarHandleExtent;
// 			retswitch = 1;
// 			break;
// 		case QStyle::PM_ToolBarItemMargin:
// 			tqt3pixelmetric = TQStyle::PM_ToolBarItemMargin;
// 			retswitch = 1;
// 			break;
// 		case QStyle::PM_ToolBarItemSpacing:
// 			tqt3pixelmetric = TQStyle::PM_ToolBarItemSpacing;
// 			retswitch = 1;
// 			break;
// 		case QStyle::PM_ToolBarSeparatorExtent:
// 			tqt3pixelmetric = TQStyle::PM_ToolBarSeparatorExtent;
// 			retswitch = 1;
// 			break;
// 		case QStyle::PM_ToolBarExtensionExtent:
// 			tqt3pixelmetric = TQStyle::PM_ToolBarExtensionExtent;
// 			retswitch = 1;
// 			break;
		case QStyle::PM_TabBarTabOverlap:
			tqt3pixelmetric = TQStyle::PM_TabBarTabOverlap;
			interfaceWidget = initializeInterfaceWidget(TQT3WT_TQTabBar, w);
			retswitch = 1;
			break;
		case QStyle::PM_TabBarTabHSpace:
			tqt3pixelmetric = TQStyle::PM_TabBarTabHSpace;
			interfaceWidget = initializeInterfaceWidget(TQT3WT_TQTabBar, w);
			retswitch = 1;
			break;
		case QStyle::PM_TabBarTabVSpace:
			tqt3pixelmetric = TQStyle::PM_TabBarTabVSpace;
			interfaceWidget = initializeInterfaceWidget(TQT3WT_TQTabBar, w);
			retswitch = 1;
			break;
		case QStyle::PM_TabBarBaseHeight:
			tqt3pixelmetric = TQStyle::PM_TabBarBaseHeight;
			interfaceWidget = initializeInterfaceWidget(TQT3WT_TQTabBar, w);
			retswitch = 1;
			break;
		case QStyle::PM_TabBarBaseOverlap:
			tqt3pixelmetric = TQStyle::PM_TabBarBaseOverlap;
			interfaceWidget = initializeInterfaceWidget(TQT3WT_TQTabBar, w);
			retswitch = 1;
			break;
		case QStyle::PM_TabBarScrollButtonWidth:
			tqt3pixelmetric = TQStyle::PM_TabBarScrollButtonWidth;
			interfaceWidget = initializeInterfaceWidget(TQT3WT_TQTabBar, w);
			retswitch = 1;
			break;
		case QStyle::PM_TabBarTabShiftHorizontal:
			tqt3pixelmetric = TQStyle::PM_TabBarTabShiftHorizontal;
			interfaceWidget = initializeInterfaceWidget(TQT3WT_TQTabBar, w);
			retswitch = 1;
			break;
		case QStyle::PM_TabBarTabShiftVertical:
			tqt3pixelmetric = TQStyle::PM_TabBarTabShiftVertical;
			interfaceWidget = initializeInterfaceWidget(TQT3WT_TQTabBar, w);
			retswitch = 1;
			break;
		case QStyle::PM_ProgressBarChunkWidth:
			tqt3pixelmetric = TQStyle::PM_ProgressBarChunkWidth;
			retswitch = 1;
			break;
		case QStyle::PM_SplitterWidth:
			tqt3pixelmetric = TQStyle::PM_SplitterWidth;
			retswitch = 1;
			break;
		case QStyle::PM_TitleBarHeight:
			tqt3pixelmetric = TQStyle::PM_TitleBarHeight;
			if (opt) {
				m_tqt3generic_widget->setGeometry(0, 0, opt->rect.width(), opt->rect.height());
				interfaceWidget = m_tqt3generic_widget;
				retswitch = 1;
			}
			break;
		case QStyle::PM_IndicatorWidth:
			tqt3pixelmetric = TQStyle::PM_IndicatorWidth;
			retswitch = 1;
			break;
		case QStyle::PM_IndicatorHeight:
			tqt3pixelmetric = TQStyle::PM_IndicatorHeight;
			retswitch = 1;
			break;
		case QStyle::PM_ExclusiveIndicatorWidth:
			tqt3pixelmetric = TQStyle::PM_ExclusiveIndicatorWidth;
			retswitch = 1;
			break;
		case QStyle::PM_ExclusiveIndicatorHeight:
			tqt3pixelmetric = TQStyle::PM_ExclusiveIndicatorHeight;
			retswitch = 1;
			break;
// 		case QStyle::PM_MenuPanelWidth:
// 			retval = 0;
// 			retswitch = 2;
// 			break;
		case QStyle::PM_MenuHMargin:
			tqt3pixelmetric = TQStyle::PM_PopupMenuFrameHorizontalExtra;
			retswitch = 1;
			break;
		case QStyle::PM_MenuVMargin:
			tqt3pixelmetric = TQStyle::PM_PopupMenuFrameVerticalExtra;
			retswitch = 1;
			break;
// 		case QStyle::PM_MenuScrollerHeight:
// 			tqt3pixelmetric = TQStyle::PM_MenuScrollerHeight;
// 			retswitch = 1;
// 			break;
// 		case QStyle::PM_MenuTearoffHeight:
// 			tqt3pixelmetric = TQStyle::PM_MenuTearoffHeight;
// 			retswitch = 1;
// 			break;
// 		case QStyle::PM_MenuDesktopFrameWidth:
// 			tqt3pixelmetric = TQStyle::PM_MenuDesktopFrameWidth;
// 			retswitch = 1;
// 			break;
		case QStyle::PM_CheckListButtonSize:
			tqt3pixelmetric = TQStyle::PM_CheckListButtonSize;
			retswitch = 1;
			break;
		case QStyle::PM_CheckListControllerSize:
			tqt3pixelmetric = TQStyle::PM_CheckListControllerSize;
			retswitch = 1;
			break;
		case QStyle::PM_HeaderMarkSize:
			tqt3pixelmetric = TQStyle::PM_HeaderMarkSize;
			retswitch = 1;
			break;
		case QStyle::PM_HeaderGripMargin:
			tqt3pixelmetric = TQStyle::PM_HeaderGripMargin;
			retswitch = 1;
			break;
		case QStyle::PM_HeaderMargin:
			tqt3pixelmetric = TQStyle::PM_HeaderMargin;
			retswitch = 1;
			break;
		case QStyle::PM_ToolBarIconSize:
			retval = m_tqt3IconSize_Toolbar;
			retswitch = 2;
			break;
		case QStyle::PM_SmallIconSize:
			retval = m_tqt3IconSize_Small;
			retswitch = 2;
			break;
		case QStyle::PM_LargeIconSize:
			retval = m_tqt3IconSize_Large;
			retswitch = 2;
			break;
		case QStyle::PM_TabBarIconSize:
			retval = m_tqt3IconSize_Tabbar;
			retswitch = 2;
			break;
		case QStyle::PM_IconViewIconSize:
			retval = m_tqt3IconSize_Desktop;
			retswitch = 2;
			break;
		case QStyle::PM_ListViewIconSize:
			retval = m_tqt3IconSize_Listview;
			retswitch = 2;
			break;
		case QStyle::PM_ButtonIconSize:
			retval = m_tqt3IconSize_Button;
			retswitch = 2;
			break;
// 		case QStyle::PM_MessageBoxIconSize:
// 			tqt3pixelmetric = TQStyle::PM_MessageBoxIconSize;
// 			retswitch = 1;
// 			break;
// 		case QStyle::PM_SpinBoxSliderHeight:
// 			tqt3pixelmetric = TQStyle::PM_SpinBoxSliderHeight;
// 			retswitch = 1;
// 			break;
// 		case QStyle::PM_FocusFrameHMargin:
// 			tqt3pixelmetric = TQStyle::PM_FocusFrameHMargin;
// 			retswitch = 1;
// 			break;
// 		case QStyle::PM_FocusFrameVMargin:
// 			tqt3pixelmetric = TQStyle::PM_FocusFrameVMargin;
// 			retswitch = 1;
// 			break;
// 		case QStyle::PM_ToolTipLabelFrameWidth:
// 			tqt3pixelmetric = TQStyle::PM_ToolTipLabelFrameWidth;
// 			retswitch = 1;
// 			break;
// 		case QStyle::PM_CheckBoxLabelSpacing:
// 			tqt3pixelmetric = TQStyle::PM_CheckBoxLabelSpacing;
// 			retswitch = 1;
// 			break;
// 		case QStyle::PM_RadioButtonLabelSpacing:
// 			tqt3pixelmetric = TQStyle::PM_RadioButtonLabelSpacing;
// 			retswitch = 1;
// 			break;
// 		case QStyle::PM_SizeGripSize:
// 			tqt3pixelmetric = TQStyle::PM_SizeGripSize;
// 			retswitch = 1;
// 			break;
// 		case QStyle::PM_TextCursorWidth:
// 			tqt3pixelmetric = TQStyle::PM_TextCursorWidth;
// 			retswitch = 1;
// 			break;
// 		case QStyle::PM_TabBar_ScrollButtonOverlap:
// 			tqt3pixelmetric = TQStyle::PM_TabBar_ScrollButtonOverlap;
// 			retswitch = 1;
// 			break;
// 		case QStyle::PM_TabCloseIndicatorWidth:
// 			tqt3pixelmetric = TQStyle::PM_TabCloseIndicatorWidth;
// 			retswitch = 1;
// 			break;
// 		case QStyle::PM_TabCloseIndicatorHeight:
// 			tqt3pixelmetric = TQStyle::PM_TabCloseIndicatorHeight;
// 			retswitch = 1;
// 			break;
		default:
			if (enable_debug_warnings) {
				printf("No metrics for Qt4 element %d\n", metric); fflush(stdout);
			}
			retval = 0;
	}

	if (retswitch == 1) {
		retval = tqApp->style().pixelMetric(tqt3pixelmetric, interfaceWidget);
		// HACK
		// For some reason Qt4 tacks on a pixel to this by default
		// FIXME
		// Figure out why!
		if (tqt3pixelmetric == TQStyle::PM_TabBarTabVSpace) {
			retval = retval - 1;
		}
		// HACK
		// Qt4 does not normally allow enough space for the rightmost tab to be
		// completely drawn when PM_TabBarTabOverlap is greater than zero
		// This is related to the fact that PM_TabBarTabOverlap is not implemented in Qt4
		if (tqt3pixelmetric == TQStyle::PM_TabBarTabHSpace) {
			retval = retval + tqApp->style().pixelMetric(TQStyle::PM_TabBarTabOverlap, interfaceWidget);
		}
	}
	else {
		if (retswitch == 2) {
			// retval was already set
		}
		else {
			// Tell Qt4 to get the information
			retval = BASE_QT4_STYLE_CLASS::pixelMetric(metric, opt, w);
		}
	}

	return retval;
}

TQWidget* Qt4TDEStyle::initializeInterfaceWidget(TQt3WidgetType wt, const QWidget* w, const QStyleOption* qt4styleoptions, bool forceReload) const
{
	int i;
	TQWidget* interfaceWidget = 0;

	// Qt4 interface widget pointers
	const QTabBar* qt4tabbar_widget = 0;
	const QRadioButton* qt4radiobutton_widget = 0;
	const QCheckBox* qt4checkbox_widget = 0;
	const QPushButton* qt4pushbutton_widget = 0;
	const QMenu* qt4menu_widget = 0;
	const QProgressBar* qt4progressbar_widget = 0;
	const QComboBox* qt4combobox_widget = 0;
	const QSlider* qt4slider_widget = 0;
	const QScrollBar* qt4scrollbar_widget = 0;
	const QAbstractSpinBox* qt4spinbox_widget = 0;
	const QMenuBar* qt4menubar_widget = 0;
	const QToolBox* qt4toolbox_widget = 0;
	const QToolButton* qt4toolbutton_widget = 0;

	const QStyleOptionTitleBar* qt4titlebar_options = 0;

	TQTabBar::Shape tqt3tbshape = TQTabBar::RoundedAbove;

	QList<QAction*> qt4menuactions;
	QAction* currentAction;

	TQColor bgcolor;

	TQWidget* cacheResult = 0;
	const QObject* qt4objectptr = dynamic_cast<const QObject*>(w);
	if (qt4objectptr) {
		cacheResult = m_internalTQt3WidgetCache->find((long)qt4objectptr);
	}
	else {
		return NULL;
	}

	if (forceReload == false) {
		// NOTE
		// Enabling this for every widget breaks sliders and all other dynamically updated widgets
		// Disabling it for every widget makes the style engine run too slowly to be of much use
		// Much of the slowdown appears to be from Qt4TDEStyle::pixelMetric calling this method
		if (cacheResult) {
			if (/*(wt == TQT3WT_TQProgressBar)*/
				/*||*/ (wt == TQT3WT_TQTabBar)
				|| (wt == TQT3WT_TQRadioButton)
				|| (wt == TQT3WT_TQCheckBox)
				|| (wt == TQT3WT_TQPopupMenu)
				//|| (wt == TQT3WT_TQComboBox)
				//|| (wt == TQT3WT_TQSlider)
				//|| (wt == TQT3WT_TQScrollBar)
				//|| (wt == TQT3WT_TQSpinBox)
				//|| (wt == TQT3WT_TQSpinWidget)
				//|| (wt == TQT3WT_TQTitleBar)
				|| (wt == TQT3WT_TQMenuBar)
				|| (wt == TQT3WT_TQToolBox)
				|| (wt == TQT3WT_TQToolButton)) {
				return cacheResult;
			}
		}
	}

	TQTabBar* m_tqt3tabbar_widget = 0;
	TQRadioButton* m_tqt3radiobutton_widget = 0;
	TQCheckBox* m_tqt3checkbox_widget = 0;
	TQPushButton* m_tqt3pushbutton_widget = 0;
	TQProgressBar* m_tqt3progressbar_widget = 0;
	TQPopupMenu* m_tqt3popupmenu_widget = 0;
	TQComboBox* m_tqt3combobox_widget = 0;
	TQSlider* m_tqt3slider_widget = 0;
	TQScrollBar* m_tqt3scrollbar_widget = 0;
#if 0
	TQSpinBox* m_tqt3spinbox_widget = 0;
#endif
	TQSpinWidget* m_tqt3spinwidget_widget = 0;
	TQTitleBar* m_tqt3titlebar_widget = 0;
	TQMenuBar* m_tqt3menubar_widget = 0;
	TQToolBox* m_tqt3toolbox_widget = 0;
	TQToolButton* m_tqt3toolbutton_widget = 0;

	if (cacheResult) {
		// Set pointer
		m_tqt3tabbar_widget = dynamic_cast<TQTabBar*>(cacheResult);
		m_tqt3radiobutton_widget = dynamic_cast<TQRadioButton*>(cacheResult);
		m_tqt3checkbox_widget = dynamic_cast<TQCheckBox*>(cacheResult);
		m_tqt3pushbutton_widget = dynamic_cast<TQPushButton*>(cacheResult);
		m_tqt3progressbar_widget = dynamic_cast<TQProgressBar*>(cacheResult);
		m_tqt3popupmenu_widget = dynamic_cast<TQPopupMenu*>(cacheResult);
		m_tqt3combobox_widget = dynamic_cast<TQComboBox*>(cacheResult);
		m_tqt3slider_widget = dynamic_cast<TQSlider*>(cacheResult);
		m_tqt3scrollbar_widget = dynamic_cast<TQScrollBar*>(cacheResult);
#if 0
		m_tqt3spinbox_widget = dynamic_cast<TQSpinBox*>(cacheResult);
#endif
		m_tqt3spinwidget_widget = dynamic_cast<TQSpinWidget*>(cacheResult);
		m_tqt3titlebar_widget = dynamic_cast<TQTitleBar*>(cacheResult);
		m_tqt3menubar_widget = dynamic_cast<TQMenuBar*>(cacheResult);
		m_tqt3toolbox_widget = dynamic_cast<TQToolBox*>(cacheResult);
		m_tqt3toolbutton_widget = dynamic_cast<TQToolButton*>(cacheResult);
	}

	switch (wt) {
		case TQT3WT_TQProgressBar:
			if (!m_tqt3progressbar_widget) m_tqt3progressbar_widget = new TQProgressBar(m_tqt3parent_widget);
			interfaceWidget = m_tqt3progressbar_widget;
			// Copy over all widget attributes
			qt4progressbar_widget = dynamic_cast<const QProgressBar*>(w);
			if (qt4progressbar_widget) {
				m_tqt3progressbar_widget->setGeometry(0, 0, qt4progressbar_widget->width(), qt4progressbar_widget->height());
				m_tqt3progressbar_widget->setEnabled(qt4progressbar_widget->isEnabled());
				m_tqt3progressbar_widget->setProgress(qt4progressbar_widget->value()-qt4progressbar_widget->minimum(),qt4progressbar_widget->maximum()-qt4progressbar_widget->minimum());
				if (qt4progressbar_widget->orientation() != Qt::Horizontal) {
					// Qt3 cannot draw vertical progress bars
					if (enable_debug_warnings) {
						printf("No rules to draw vertical Qt4 progress bar\n"); fflush(stdout);
					}
					interfaceWidget = 0;
				}
			}
			else {
				if (enable_debug_warnings) {
					printf("Unable to draw Qt4 progress bar with no Qt4 object available\n"); fflush(stdout);
				}
				interfaceWidget = 0;
			}
			break;
		case TQT3WT_TQTabBar:
			if (!m_tqt3tabbar_widget) m_tqt3tabbar_widget = new TQTabBar(m_tqt3parent_widget);
			interfaceWidget = m_tqt3tabbar_widget;
			// Copy over all widget attributes
			qt4tabbar_widget = dynamic_cast<const QTabBar*>(w);
			if (qt4tabbar_widget) {
				m_tqt3tabbar_widget->setGeometry(0, 0, qt4tabbar_widget->width(), qt4tabbar_widget->height());
				m_tqt3tabbar_widget->setEnabled(qt4tabbar_widget->isEnabled());
				// Clear out tabbar
				while (m_tqt3tabbar_widget->count() > 0) {
					m_tqt3tabbar_widget->removeTab(m_tqt3tabbar_widget->tabAt(0));
				}
				// Copy over all tabs
				for (i=0;i<qt4tabbar_widget->count();i++) {
					if (qt4tabbar_widget->tabIcon(i).isNull()) {
						TQTab* newTab = new TQTab(convertQt4ToTQt3String(qt4tabbar_widget->tabText(i)));
						m_tqt3tabbar_widget->insertTab(newTab, i);
						newTab->setIdentifier(i);
					}
					else {
						TQTab* newTab = new TQTab(convertQt4ToTQt3IconSet(qt4tabbar_widget->tabIcon(i), m_tqt3IconSize_Small, m_tqt3IconSize_Large, m_internalTQt3PixmapCache), convertQt4ToTQt3String(qt4tabbar_widget->tabText(i)));
						m_tqt3tabbar_widget->insertTab(newTab, i);
						newTab->setIdentifier(i);
					}
				}
				m_tqt3tabbar_widget->setCurrentTab(qt4tabbar_widget->currentIndex());
				switch (qt4tabbar_widget->shape()) {
					case QTabBar::RoundedNorth:
						tqt3tbshape = TQTabBar::RoundedAbove;
						break;
					case QTabBar::RoundedSouth:
						tqt3tbshape = TQTabBar::RoundedBelow;
						break;
					case QTabBar::TriangularNorth:
						tqt3tbshape = TQTabBar::TriangularAbove;
						break;
					case QTabBar::TriangularSouth:
						tqt3tbshape = TQTabBar::TriangularBelow;
						break;
					default:
						// Qt3 cannot draw other tab shapes
						if (enable_debug_warnings) {
							printf("No rules to draw Qt4 tab shape %d\n", qt4tabbar_widget->shape()); fflush(stdout);
						}
						interfaceWidget = 0;
				}
				m_tqt3tabbar_widget->setShape(tqt3tbshape);
			}
			else {
				if (enable_debug_warnings) {
					printf("Unable to draw Qt4 tabbar with no Qt4 object available\n"); fflush(stdout);
				}
				interfaceWidget = 0;
			}
			break;
		case TQT3WT_TQRadioButton:
			if (!m_tqt3radiobutton_widget) m_tqt3radiobutton_widget = new TQRadioButton(m_tqt3parent_widget);
			interfaceWidget = m_tqt3radiobutton_widget;
			// Copy over all widget attributes
			qt4radiobutton_widget = dynamic_cast<const QRadioButton*>(w);
			if (qt4radiobutton_widget) {
				m_tqt3radiobutton_widget->setGeometry(0, 0, qt4radiobutton_widget->width(), qt4radiobutton_widget->height());
				m_tqt3radiobutton_widget->setEnabled(qt4radiobutton_widget->isEnabled());
				m_tqt3radiobutton_widget->setText(convertQt4ToTQt3String(qt4radiobutton_widget->text()));
				m_tqt3radiobutton_widget->setDown(qt4radiobutton_widget->isDown());
			}
			else {
				if (enable_debug_warnings) {
					printf("Unable to draw Qt4 radio button with no Qt4 object available\n"); fflush(stdout);
				}
				interfaceWidget = 0;
			}
			break;
		case TQT3WT_TQCheckBox:
			if (!m_tqt3checkbox_widget) m_tqt3checkbox_widget = new TQCheckBox(m_tqt3parent_widget);
			interfaceWidget = m_tqt3checkbox_widget;
			// Copy over all widget attributes
			qt4checkbox_widget = dynamic_cast<const QCheckBox*>(w);
			if (qt4checkbox_widget) {
				m_tqt3checkbox_widget->setGeometry(0, 0, qt4checkbox_widget->width(), qt4checkbox_widget->height());
				m_tqt3checkbox_widget->setEnabled(qt4checkbox_widget->isEnabled());
				m_tqt3checkbox_widget->setText(convertQt4ToTQt3String(qt4checkbox_widget->text()));
				m_tqt3checkbox_widget->setDown(qt4checkbox_widget->isDown());
			}
			else {
				if (enable_debug_warnings) {
					printf("Unable to draw Qt4 checkbox with no Qt4 object available\n"); fflush(stdout);
				}
				interfaceWidget = 0;
			}
			break;
		case TQT3WT_TQPushButton:
			if (!m_tqt3pushbutton_widget) m_tqt3pushbutton_widget = new TQPushButton(m_tqt3parent_widget);
			interfaceWidget = m_tqt3pushbutton_widget;
			// Copy over all widget attributes
			qt4pushbutton_widget = dynamic_cast<const QPushButton*>(w);
			if (qt4pushbutton_widget) {
				m_tqt3pushbutton_widget->setGeometry(0, 0, qt4pushbutton_widget->width(), qt4pushbutton_widget->height());
				m_tqt3pushbutton_widget->setEnabled(qt4pushbutton_widget->isEnabled());
				m_tqt3pushbutton_widget->setText(convertQt4ToTQt3String(qt4pushbutton_widget->text()));
				m_tqt3pushbutton_widget->setDown(qt4pushbutton_widget->isDown());
			}
			else {
				if (enable_debug_warnings) {
					printf("Unable to draw Qt4 pushbutton with no Qt4 object available\n"); fflush(stdout);
				}
				interfaceWidget = 0;
			}
			break;
		case TQT3WT_TQComboBox:
			if (!m_tqt3combobox_widget) m_tqt3combobox_widget = new TQComboBox(m_tqt3parent_widget);
			interfaceWidget = m_tqt3combobox_widget;
			// Copy over all widget attributes
			qt4combobox_widget = dynamic_cast<const QComboBox*>(w);
			if (qt4combobox_widget) {
				m_tqt3combobox_widget->setGeometry(0, 0, qt4combobox_widget->width(), qt4combobox_widget->height());
				m_tqt3combobox_widget->setEnabled(qt4combobox_widget->isEnabled());
				// Clear out all combobox items
				m_tqt3combobox_widget->clear();
	
				for (i=0;i<qt4combobox_widget->count();i++) {
					if (qt4combobox_widget->itemIcon(i).isNull()) {
						m_tqt3combobox_widget->insertItem(convertQt4ToTQt3String(qt4combobox_widget->itemText(i)), i);
					}
					else {
						m_tqt3combobox_widget->insertItem(convertQt4IconToTQt3Pixmap(qt4combobox_widget->itemIcon(i), m_tqt3IconSize_Small, m_internalTQt3PixmapCache), convertQt4ToTQt3String(qt4combobox_widget->itemText(i)), i);
					}
				}
				m_tqt3combobox_widget->setEditable(qt4combobox_widget->isEditable());
			}
			else {
				if (enable_debug_warnings) {
					printf("Unable to draw Qt4 combobox with no Qt4 object available\n"); fflush(stdout);
				}
				interfaceWidget = 0;
			}
			break;
		case TQT3WT_TQPopupMenu:
			if (!m_tqt3popupmenu_widget) m_tqt3popupmenu_widget = new TQPopupMenu(m_tqt3parent_widget);
			interfaceWidget = m_tqt3popupmenu_widget;
			// Copy over all widget attributes
			qt4menu_widget = dynamic_cast<const QMenu*>(w);
			if (qt4menu_widget) {
				m_tqt3popupmenu_widget->setGeometry(0, 0, qt4menu_widget->width(), qt4menu_widget->height());
				m_tqt3popupmenu_widget->setEnabled(qt4menu_widget->isEnabled());
				// Clear out menu
				m_tqt3popupmenu_widget->clear();
				m_tqt3popupmenu_widget->setCheckable(false);
				// Copy over all menu items
				qt4menuactions = qt4menu_widget->actions();
				currentAction = 0;
				for (i=0; i<qt4menuactions.size();++i) {
					currentAction = qt4menuactions.at(i);
					if (currentAction) {
						if (currentAction->isSeparator()) {
							m_tqt3popupmenu_widget->insertSeparator(i);
						}
						else {
							if (currentAction->icon().isNull()) {
								m_tqt3popupmenu_widget->insertItem(convertQt4ToTQt3String(currentAction->text()), i, i);
							}
							else {
								m_tqt3popupmenu_widget->insertItem(convertQt4ToTQt3IconSet(currentAction->icon(), m_tqt3IconSize_Small, m_tqt3IconSize_Large, m_internalTQt3PixmapCache), convertQt4ToTQt3String(currentAction->text()), i, i);
							}
							// FIXME
							// Handle pixmaps, etc.
						}
						m_tqt3popupmenu_widget->setItemEnabled(i, currentAction->isEnabled());
						m_tqt3popupmenu_widget->setItemChecked(i, currentAction->isChecked());
						m_tqt3popupmenu_widget->setItemVisible(i, currentAction->isVisible());
	
						// FIXME
						// It seems that all menus under TQt3 are checkable
						// VERIFY THIS
						m_tqt3popupmenu_widget->setCheckable(true);
// 						if (currentAction->isCheckable()) {
// 							m_tqt3popupmenu_widget->setCheckable(true);
// 						}
					}
				}
			}
			else {
				if (enable_debug_warnings) {
					printf("Unable to draw Qt4 popup menu with no Qt4 object available\n"); fflush(stdout);
				}
				interfaceWidget = 0;
			}
			break;
		case TQT3WT_TQMenuBar:
			if (!m_tqt3menubar_widget) m_tqt3menubar_widget = new TQMenuBar(m_tqt3parent_widget);
			interfaceWidget = m_tqt3menubar_widget;
			// Copy over all widget attributes
			qt4menubar_widget = dynamic_cast<const QMenuBar*>(w);
			if (qt4menubar_widget) {
				m_tqt3menubar_widget->setGeometry(0, 0, qt4menubar_widget->width(), qt4menubar_widget->height());
				m_tqt3menubar_widget->setEnabled(qt4menubar_widget->isEnabled());
				// Clear out menu
				m_tqt3menubar_widget->clear();
				// Copy over all menu items
				qt4menuactions = qt4menubar_widget->actions();
				currentAction = 0;
				for (i=0; i<qt4menuactions.size();++i) {
					currentAction = qt4menuactions.at(i);
					if (currentAction) {
						if (currentAction->isSeparator()) {
							m_tqt3menubar_widget->insertSeparator(i);
						}
						else {
							if (currentAction->icon().isNull()) {
								m_tqt3menubar_widget->insertItem(convertQt4ToTQt3String(currentAction->text()), i, i);
							}
							else {
								m_tqt3menubar_widget->insertItem(convertQt4ToTQt3IconSet(currentAction->icon(), m_tqt3IconSize_Small, m_tqt3IconSize_Large, m_internalTQt3PixmapCache), convertQt4ToTQt3String(currentAction->text()), i, i);
							}
							// FIXME
							// Handle pixmaps, etc.
						}
						m_tqt3menubar_widget->setItemEnabled(i, currentAction->isEnabled());
						m_tqt3menubar_widget->setItemChecked(i, currentAction->isChecked());
						m_tqt3menubar_widget->setItemVisible(i, currentAction->isVisible());
					}
				}
			}
			else {
				if (enable_debug_warnings) {
					printf("Unable to draw Qt4 menu bar with no Qt4 object available\n"); fflush(stdout);
				}
				interfaceWidget = 0;
			}
			break;
		case TQT3WT_TQSlider:
			if (!m_tqt3slider_widget) m_tqt3slider_widget = new TQSlider(m_tqt3parent_widget);
			interfaceWidget = m_tqt3slider_widget;
			// Copy over all widget attributes
			qt4slider_widget = dynamic_cast<const QSlider*>(w);
			if (qt4slider_widget) {
				m_tqt3slider_widget->setGeometry(0, 0, qt4slider_widget->width(), qt4slider_widget->height());
				m_tqt3slider_widget->setEnabled(qt4slider_widget->isEnabled());
				m_tqt3slider_widget->setOrientation(convertQt4ToTQt3Orientation(qt4slider_widget->orientation()));
				m_tqt3slider_widget->setTracking(qt4slider_widget->hasTracking());
// 				m_tqt3slider_widget->setPalette();	// FIXME
				m_tqt3slider_widget->setTickmarks(convertQt4ToTQt3TickSetting(qt4slider_widget->tickPosition()));
				m_tqt3slider_widget->setTickInterval(qt4slider_widget->tickInterval());
				m_tqt3slider_widget->setMinValue(qt4slider_widget->minimum());
				m_tqt3slider_widget->setMaxValue(qt4slider_widget->maximum());
				m_tqt3slider_widget->setLineStep(qt4slider_widget->singleStep());
				m_tqt3slider_widget->setPageStep(qt4slider_widget->pageStep());
				m_tqt3slider_widget->setValue(qt4slider_widget->value());
			}
			else {
				if (enable_debug_warnings) {
					printf("Unable to draw Qt4 slider with no Qt4 object available\n"); fflush(stdout);
				}
				interfaceWidget = 0;
			}
			break;
		case TQT3WT_TQScrollBar:
			if (!m_tqt3scrollbar_widget) m_tqt3scrollbar_widget = new TQScrollBar(m_tqt3parent_widget);
			interfaceWidget = m_tqt3scrollbar_widget;
			// Copy over all widget attributes
			qt4scrollbar_widget = dynamic_cast<const QScrollBar*>(w);
			if (qt4scrollbar_widget) {
				m_tqt3scrollbar_widget->setGeometry(0, 0, qt4scrollbar_widget->width(), qt4scrollbar_widget->height());
				m_tqt3scrollbar_widget->setEnabled(qt4scrollbar_widget->isEnabled());
				m_tqt3scrollbar_widget->setOrientation(convertQt4ToTQt3Orientation(qt4scrollbar_widget->orientation()));
				m_tqt3scrollbar_widget->setTracking(qt4scrollbar_widget->hasTracking());
				m_tqt3scrollbar_widget->setMinValue(qt4scrollbar_widget->minimum());
				m_tqt3scrollbar_widget->setMaxValue(qt4scrollbar_widget->maximum());
				m_tqt3scrollbar_widget->setLineStep(qt4scrollbar_widget->singleStep());
				m_tqt3scrollbar_widget->setPageStep(qt4scrollbar_widget->pageStep());
				m_tqt3scrollbar_widget->setValue(qt4scrollbar_widget->value());
			}
			else {
				if (enable_debug_warnings) {
					printf("Unable to draw Qt4 scrollbar with no Qt4 object available\n"); fflush(stdout);
				}
				interfaceWidget = 0;
			}
			break;
		case TQT3WT_TQSpinBox:
#if 0
			if (!m_tqt3spinbox_widget) m_tqt3spinbox_widget = new TQSpinBox(m_tqt3parent_widget);
			interfaceWidget = m_tqt3spinbox_widget;
			// Copy over all widget attributes
			qt4spinbox_widget = dynamic_cast<const QAbstractSpinBox*>(w);
			if (qt4spinbox_widget) {
				m_tqt3spinbox_widget->setGeometry(0, 0, qt4spinbox_widget->width(), qt4spinbox_widget->height());
				m_tqt3spinbox_widget->setEnabled(qt4spinbox_widget->isEnabled());
				m_tqt3spinbox_widget->setMinValue(qt4spinbox_widget->minimum());
				m_tqt3spinbox_widget->setMaxValue(qt4spinbox_widget->maximum());
				m_tqt3spinbox_widget->setLineStep(qt4spinbox_widget->singleStep());
				m_tqt3spinbox_widget->setValue(qt4spinbox_widget->value());
			}
			else {
				if (enable_debug_warnings) {
					printf("Unable to draw Qt4 spinbox with no Qt4 object available\n"); fflush(stdout);
				}
				interfaceWidget = 0;
			}
#endif
			break;
		case TQT3WT_TQSpinWidget:
			if (!m_tqt3spinwidget_widget) m_tqt3spinwidget_widget = new TQSpinWidget(m_tqt3parent_widget);
			interfaceWidget = m_tqt3spinwidget_widget;
			// Copy over all widget attributes
			qt4spinbox_widget = dynamic_cast<const QAbstractSpinBox*>(w);
			if (qt4spinbox_widget) {
				m_tqt3spinwidget_widget->setGeometry(0, 0, qt4spinbox_widget->width(), qt4spinbox_widget->height());
				m_tqt3spinwidget_widget->setEnabled(qt4spinbox_widget->isEnabled());
				m_tqt3spinwidget_widget->setUpEnabled(qt4spinbox_widget->stepEnabled() & QSpinBox::StepUpEnabled);
				m_tqt3spinwidget_widget->setDownEnabled(qt4spinbox_widget->stepEnabled() & QSpinBox::StepDownEnabled);
			}
			else {
				if (enable_debug_warnings) {
					printf("Unable to draw Qt4 spinbox with no Qt4 object available\n"); fflush(stdout);
				}
				interfaceWidget = 0;
			}
			break;
		case TQT3WT_TQTitleBar:
			if (!m_tqt3titlebar_widget) m_tqt3titlebar_widget = new TQTitleBar(m_tqt3window_widget, m_tqt3parent_widget);
			interfaceWidget = m_tqt3titlebar_widget;
			qt4titlebar_options = static_cast<const QStyleOptionTitleBar*>(qt4styleoptions);
			// Construct an internal TQTitleBar widget from the options and widget provided by Qt4
			m_tqt3titlebar_widget->setGeometry(qt4styleoptions->rect.x(), qt4styleoptions->rect.y(), qt4styleoptions->rect.width(), qt4styleoptions->rect.height());
			m_tqt3titlebar_widget->setCaption(convertQt4ToTQt3String(qt4titlebar_options->text));
			m_tqt3titlebar_widget->setActive(qt4titlebar_options->titleBarState & Qt::WindowActive);

			// HACK
			// TQt3 does not know how to handle transparent icons in title bars,
			// so assume that the titlebar is uniform in color and draw the icon over the background color
			if (m_tqt3titlebar_widget->isActive()) {
				bgcolor = convertQt4ToTQt3Palette(qt4styleoptions->palette).active().highlight();
			}
			else {
				bgcolor = convertQt4ToTQt3Palette(qt4styleoptions->palette).inactive().highlight();
			}
			m_tqt3titlebar_widget->setIcon(convertQt4IconToTQt3Pixmap(qt4titlebar_options->icon, m_tqt3IconSize_Small, m_internalTQt3PixmapCache, false, &bgcolor));
			break;
		case TQT3WT_TQToolBox:
			if (!m_tqt3toolbox_widget) m_tqt3toolbox_widget = new TQToolBox(m_tqt3parent_widget);
			interfaceWidget = m_tqt3toolbox_widget;
			// Copy over all widget attributes
			qt4toolbox_widget = dynamic_cast<const QToolBox*>(w);
			if (qt4toolbox_widget) {
				m_tqt3toolbox_widget->setGeometry(0, 0, qt4toolbox_widget->width(), qt4toolbox_widget->height());
				m_tqt3toolbox_widget->setEnabled(qt4toolbox_widget->isEnabled());
				// Remove all tabs
				for (i=0;i<m_tqt3toolbox_widget->count();i++) {
					TQWidget* item = m_tqt3toolbox_widget->item(i);
					m_tqt3toolbox_widget->removeItem(item);
					if (item) {
						delete item;
					}
				}
				// Copy all tabs
				for (i=0;i<qt4toolbox_widget->count();i++) {
					m_tqt3toolbox_widget->insertItem(i, new TQWidget(m_tqt3parent_widget), convertQt4ToTQt3String(qt4toolbox_widget->itemText(i)));
				}
			}
			else {
				if (enable_debug_warnings) {
					printf("Unable to draw Qt4 toolbox with no Qt4 object available\n"); fflush(stdout);
				}
				interfaceWidget = 0;
			}
			break;
		case TQT3WT_TQToolButton:
			// FIXME
			if (!m_tqt3toolbutton_widget) m_tqt3toolbutton_widget = new TQToolButton(m_tqt3parent_widget);
			interfaceWidget = m_tqt3toolbutton_widget;
			// Copy over all widget attributes
			qt4toolbutton_widget = dynamic_cast<const QToolButton*>(w);
			if (qt4toolbutton_widget) {
				m_tqt3toolbutton_widget->setGeometry(0, 0, qt4toolbutton_widget->width(), qt4toolbutton_widget->height());
				m_tqt3toolbutton_widget->setEnabled(qt4toolbutton_widget->isEnabled());
				m_tqt3toolbutton_widget->setIconSet(convertQt4ToTQt3IconSet(qt4toolbutton_widget->icon(), m_tqt3IconSize_Small, m_tqt3IconSize_Large, m_internalTQt3PixmapCache));
// 				m_tqt3toolbutton_widget->setUsesBigPixmap(qt4toolbutton_widget->);
				m_tqt3toolbutton_widget->setUsesTextLabel(((qt4toolbutton_widget->toolButtonStyle() != Qt::ToolButtonIconOnly) && (qt4toolbutton_widget->toolButtonStyle() != Qt::ToolButtonFollowStyle)));
				m_tqt3toolbutton_widget->setTextLabel(convertQt4ToTQt3String(qt4toolbutton_widget->text()));
				m_tqt3toolbutton_widget->setToggleButton(qt4toolbutton_widget->isCheckable());
				m_tqt3toolbutton_widget->setOn(qt4toolbutton_widget->isChecked());
				if (qt4toolbutton_widget->toolButtonStyle() == Qt::ToolButtonTextBesideIcon) {
					m_tqt3toolbutton_widget->setTextPosition(TQToolButton::BesideIcon);
				}
				m_tqt3toolbutton_widget->setAutoRaise(qt4toolbutton_widget->autoRaise());
			}
			else {
				if (enable_debug_warnings) {
					printf("Unable to draw Qt4 toolbutton with no Qt4 object available\n"); fflush(stdout);
				}
				interfaceWidget = 0;
			}
			break;
		case TQT3WT_NONE:
			break;
	}

	if ((qt4objectptr) && (!cacheResult) && (interfaceWidget)) {
		connect(qt4objectptr, SIGNAL(destroyed(QObject*)), this, SLOT(handleQt4ObjectDestroyed(QObject*)));
		m_internalTQt3WidgetCache->insert((long)qt4objectptr, interfaceWidget);
	}

#ifdef DEBUG_SPEW
	if (enable_debug_warnings) {
		printf("Widget cache: %d items now present in cache\n", m_internalTQt3WidgetCache->count());
	}
#endif // DEBUG_SPEW
	return interfaceWidget;
}

void Qt4TDEStyle::handleQt4ObjectDestroyed(QObject* obj) {
	m_internalTQt3WidgetCache->remove((long)obj);
}

QRect Qt4TDEStyle::subElementRect(SubElement element, const QStyleOption *opt, const QWidget *w) const
{
	bool can_override = true;
	TQStyle::SubRect tqtSR;

	TQWidget* interfaceWidget = 0;
	QRect retRect;

	switch (element) {
		case SE_ComboBoxFocusRect:
			tqtSR = TQStyle::SR_ComboBoxFocusRect;
			interfaceWidget = initializeInterfaceWidget(TQT3WT_TQComboBox, w);
			if (interfaceWidget == 0) {
				can_override = false;
			}
			break;
		default:
			if (enable_debug_warnings) {
				printf("No rules to obtain Qt4 subelement rect %d\n", element); fflush(stdout);
			}
			can_override = false;
	}

	if (can_override) {
		// Instruct TQt3 to obtain the subelement rect information
		retRect = convertTQt3ToQt4Rect(tqApp->style().subRect(tqtSR, interfaceWidget));

		if (enable_debug_warnings) {
#ifdef DEBUG_SPEW
			printf("Used Qt3 subelement rect %d to handle Qt4 subelement rect %d\n", tqtSR, element); fflush(stdout);
#endif
		}
	}
	else {
		// Tell Qt4 to obtain the subelement rect information
		retRect = BASE_QT4_STYLE_CLASS::subElementRect(element, opt, w);
	}

	return retRect;
}

QRect Qt4TDEStyle::subControlRect(ComplexControl control, const QStyleOptionComplex* opt, SubControl subControl, const QWidget* w) const
{
	bool can_override = true;
	TQStyle::ComplexControl tqtCC;
	TQStyle::SubControl tqtSC;

	TQWidget* interfaceWidget = 0;
	TQStyleOption tqt3opt(TQStyleOption::Default);
	QRect retRect;

	switch (control) {
		case CC_SpinBox: {
			tqtCC = TQStyle::CC_SpinWidget;
			switch (subControl) {
				case SC_SpinBoxUp:
					tqtSC = TQStyle::SC_SpinWidgetUp;
					interfaceWidget = initializeInterfaceWidget(TQT3WT_TQSpinWidget, w, opt);
					if (interfaceWidget == 0) {
						can_override = false;
					}
					break;
				case SC_SpinBoxDown:
					tqtSC = TQStyle::SC_SpinWidgetDown;
					interfaceWidget = initializeInterfaceWidget(TQT3WT_TQSpinWidget, w, opt);
					if (interfaceWidget == 0) {
						can_override = false;
					}
					break;
				case SC_SpinBoxEditField:
					tqtSC = TQStyle::SC_SpinWidgetEditField;
					interfaceWidget = initializeInterfaceWidget(TQT3WT_TQSpinWidget, w, opt);
					if (interfaceWidget == 0) {
						can_override = false;
					}
					break;
				case SC_SpinBoxFrame:
					tqtSC = TQStyle::SC_SpinWidgetFrame;
					interfaceWidget = initializeInterfaceWidget(TQT3WT_TQSpinWidget, w, opt);
					if (interfaceWidget == 0) {
						can_override = false;
					}
					break;
				default:
					if (enable_debug_warnings) {
						printf("No rules to obtain Qt4 subcontrol rect %d for control %d\n", subControl, control); fflush(stdout);
					}
					can_override = false;
			}
			break;
		}
		default:
			if (enable_debug_warnings) {
				printf("No rules to obtain Qt4 subcontrol rect %d for control %d\n", subControl, control); fflush(stdout);
			}
			can_override = false;
	}

	if (can_override) {
		// Instruct TQt3 to obtain the subelement rect information
		retRect = convertTQt3ToQt4Rect(tqApp->style().querySubControlMetrics(tqtCC, interfaceWidget, tqtSC, tqt3opt));

		if ((tqtCC == TQStyle::CC_SpinWidget) && (tqtSC == TQStyle::SC_SpinWidgetEditField)) {
			// HACK
			// For an unknown reason, Qt4 instantly resizes SpinBoxes to a very small height if TQt3 returns
			// an editor height hint that is different (larger?) than the Qt4 editor height hint!
			// Work around this problem here...
			QRect qt4Rect = BASE_QT4_STYLE_CLASS::subControlRect(control, opt, subControl, w);
			retRect.setHeight(qt4Rect.height());
		}

		if (enable_debug_warnings) {
#ifdef DEBUG_SPEW
			printf("Used Qt3 subcontrol rect %d for control %d to handle Qt4 subcontrol rect %d for control %d\n", tqtSC, tqtCC, subControl, control); fflush(stdout);
#endif
		}
	}
	else {
		// Tell Qt4 to obtain the subelement rect information
		retRect = BASE_QT4_STYLE_CLASS::subControlRect(control, opt, subControl, w);
	}

	return retRect;
}

void Qt4TDEStyle::drawComplexControl(ComplexControl control, const QStyleOptionComplex *opt, QPainter *p, const QWidget *w) const
{
	TQStyle::SFlags sflags = 0;

	bool can_override = true;
	bool do_not_draw = false;
	TQStyle::ComplexControl tqtCC;

	TQStyle::SCFlags subControl = TQStyle::SC_All;
	TQStyle::SCFlags subControlActive = TQStyle::SC_None;

	TQWidget* interfaceWidget = 0;
	TQStyleOption tqt3opt(TQStyleOption::Default);

	TQRect tqt3rect(opt->rect.x(), opt->rect.y(), opt->rect.width(), opt->rect.height());

	// Determine the correct color group
	sflags = convertQt4ToTQt3SFlags(opt->state, TQT3WT_NONE);
	TQPalette tqt3palette = convertQt4ToTQt3Palette(opt->palette);
	TQColorGroup tqt3colorgroup;
	if (sflags & TQStyle::Style_Enabled) {
		if (sflags & TQStyle::Style_Active) {
			tqt3colorgroup = tqt3palette.active();
		}
		else {
			tqt3colorgroup = tqt3palette.inactive();
		}
	}
	else {
		tqt3colorgroup = tqt3palette.disabled();
	}

	const QStyleOptionTitleBar* tbopt;
	const QStyleOptionSpinBox* sbopt;
	bool drawCloseButton;
	bool drawMaxButton;
	bool drawMinButton;
	bool drawNormalButton;
	bool drawShadeButton;
	bool drawUnshadeButton;
	bool drawSysMenuButton;

	switch (control) {
		case CC_ComboBox:
			tqtCC = TQStyle::CC_ComboBox;
			interfaceWidget = initializeInterfaceWidget(TQT3WT_TQComboBox, w);
			if (interfaceWidget == 0) {
				can_override = false;
			}
			break;
		case CC_Slider:
			tqtCC = TQStyle::CC_Slider;
			interfaceWidget = initializeInterfaceWidget(TQT3WT_TQSlider, w);
			if (interfaceWidget == 0) {
				can_override = false;
			}
			break;
		case CC_ScrollBar:
			tqtCC = TQStyle::CC_ScrollBar;
			interfaceWidget = initializeInterfaceWidget(TQT3WT_TQScrollBar, w);
			if (interfaceWidget == 0) {
				can_override = false;
			}
			break;
		case CC_SpinBox:
			tqtCC = TQStyle::CC_SpinWidget;
			interfaceWidget = initializeInterfaceWidget(TQT3WT_TQSpinWidget, w, opt);
			if (interfaceWidget == 0) {
				can_override = false;
			}

			// Draw the correct subcontrol(s)
			sbopt = static_cast<const QStyleOptionSpinBox*>(opt);
			subControl = 0;
			if ((sbopt->subControls & QStyle::SC_SpinBoxUp) || (sbopt->subControls & QStyle::SC_SpinBoxDown)) {
				subControl = subControl | TQStyle::SC_SpinWidgetButtonField;
			}
			if (sbopt->subControls & QStyle::SC_SpinBoxUp) {
				subControl = subControl | TQStyle::SC_SpinWidgetUp;
			}
			if (sbopt->subControls & QStyle::SC_SpinBoxDown) {
				subControl = subControl | TQStyle::SC_SpinWidgetDown;
			}
			if (sbopt->subControls & QStyle::SC_SpinBoxEditField) {
				subControl = subControl | TQStyle::SC_SpinWidgetEditField;
			}
			if (sbopt->subControls & QStyle::SC_SpinBoxFrame) {
				subControl = subControl | TQStyle::SC_SpinWidgetFrame;
			}

			subControlActive = 0;
			if ((sbopt->activeSubControls & QStyle::SC_SpinBoxUp) && (sbopt->state & State_Sunken)) {
				subControlActive = subControlActive | TQStyle::SC_SpinWidgetUp;
			}
			if ((sbopt->activeSubControls & QStyle::SC_SpinBoxDown) && (sbopt->state & State_Sunken)) {
				subControlActive = subControlActive | TQStyle::SC_SpinWidgetDown;
			}

			break;
		case CC_TitleBar:
			tqtCC = TQStyle::CC_TitleBar;
			interfaceWidget = initializeInterfaceWidget(TQT3WT_TQTitleBar, w, opt);
			if (interfaceWidget == 0) {
				can_override = false;
			}
			else {
				// Select subcontrol(s) to be drawn
				// Qt4 made this hard again (surprise surprise)
				tbopt = static_cast<const QStyleOptionTitleBar*>(opt);

				// This logic is taken from Qt4 (qcommonstyle.cpp)
				// It will need to be kept in sync with whatever Nokia does
				drawCloseButton = (tbopt->subControls & SC_TitleBarCloseButton && tbopt->titleBarFlags & Qt::WindowSystemMenuHint);
				drawMaxButton = (tbopt->subControls & SC_TitleBarMaxButton && tbopt->titleBarFlags & Qt::WindowMaximizeButtonHint && !(tbopt->titleBarState & Qt::WindowMaximized));
				drawMinButton = (tbopt->subControls & SC_TitleBarMinButton && tbopt->titleBarFlags & Qt::WindowMinimizeButtonHint && !(tbopt->titleBarState & Qt::WindowMinimized));
				drawNormalButton = (tbopt->subControls & SC_TitleBarNormalButton) && (((tbopt->titleBarFlags & Qt::WindowMinimizeButtonHint) && (tbopt->titleBarState & Qt::WindowMinimized)) || ((tbopt->titleBarFlags & Qt::WindowMaximizeButtonHint) && (tbopt->titleBarState & Qt::WindowMaximized)));
				drawShadeButton = (tbopt->subControls & SC_TitleBarShadeButton && tbopt->titleBarFlags & Qt::WindowShadeButtonHint && !(tbopt->titleBarState & Qt::WindowMinimized));
				drawUnshadeButton = (tbopt->subControls & SC_TitleBarUnshadeButton && tbopt->titleBarFlags & Qt::WindowShadeButtonHint && tbopt->titleBarState & Qt::WindowMinimized);
				drawSysMenuButton = (tbopt->subControls & SC_TitleBarSysMenu && tbopt->titleBarFlags & Qt::WindowSystemMenuHint);
				// End logic taken from Qt4

				// FIXME
				// TQt3 has no idea how to draw the restore button on a maximized window!!!
				// This needs to be fixed in qcommonstyle.cpp drawComplexControl, case CC_TitleBar
				// Once this is fixed in TQt3, the logic below needs to be updated

				subControl = 0;
				if (drawSysMenuButton) {
					subControl = subControl | TQStyle::SC_TitleBarSysMenu;
				}
				if (drawMinButton) {
					subControl = subControl | TQStyle::SC_TitleBarMinButton;
				}
				if (drawMaxButton) {
					subControl = subControl | TQStyle::SC_TitleBarMaxButton;
				}
				if (drawCloseButton) {
					subControl = subControl | TQStyle::SC_TitleBarCloseButton;
				}
				if (tbopt->subControls & SC_TitleBarLabel) {
					subControl = subControl | TQStyle::SC_TitleBarLabel;
				}
				if (drawNormalButton && !(tbopt->titleBarState & Qt::WindowMaximized)) {
					subControl = subControl | TQStyle::SC_TitleBarNormalButton;
				}
				if (drawShadeButton) {
					subControl = subControl | TQStyle::SC_TitleBarShadeButton;
				}
				if (drawUnshadeButton) {
					subControl = subControl | TQStyle::SC_TitleBarUnshadeButton;
				}
// 				if (tbopt->subControls & SC_TitleBarContextHelpButton) {
// 					subControl = subControl | TQStyle::SC_TitleBarContextHelpButton;
// 				}

				subControlActive = 0;
				if (tbopt->activeSubControls & SC_TitleBarSysMenu) {
					subControlActive = subControlActive | TQStyle::SC_TitleBarSysMenu;
				}
				if (tbopt->activeSubControls & SC_TitleBarMinButton) {
					subControlActive = subControlActive | TQStyle::SC_TitleBarMinButton;
				}
				if (tbopt->activeSubControls & SC_TitleBarMaxButton) {
					subControlActive = subControlActive | TQStyle::SC_TitleBarMaxButton;
				}
				if (tbopt->activeSubControls & SC_TitleBarCloseButton) {
					subControlActive = subControlActive | TQStyle::SC_TitleBarCloseButton;
				}
				if (tbopt->activeSubControls & SC_TitleBarLabel) {
					subControlActive = subControlActive | TQStyle::SC_TitleBarLabel;
				}
				if (tbopt->activeSubControls & SC_TitleBarNormalButton) {
					subControlActive = subControlActive | TQStyle::SC_TitleBarNormalButton;
				}
				if (tbopt->activeSubControls & SC_TitleBarShadeButton) {
					subControlActive = subControlActive | TQStyle::SC_TitleBarShadeButton;
				}
				if (tbopt->activeSubControls & SC_TitleBarUnshadeButton) {
					subControlActive = subControlActive | TQStyle::SC_TitleBarUnshadeButton;
				}
// 				if (tbopt->activeSubControls & SC_TitleBarContextHelpButton) {
// 					subControlActive = subControlActive | TQStyle::SC_TitleBarContextHelpButton;
// 				}

				// HACK
				if (static_cast<TQTitleBar*>(interfaceWidget)->isActive()) {
					interfaceWidget->setPalette(TQPalette(tqt3palette.active(), tqt3palette.active(), tqt3palette.active()));
				}
				else {
					interfaceWidget->setPalette(TQPalette(tqt3palette.inactive(), tqt3palette.inactive(), tqt3palette.inactive()));
				}
			}
			break;
		case CC_ToolButton:
			// Qt4 expects this to also draw CE_ToolButtonLabel
			// See below for drawControl() call
			tqtCC = TQStyle::CC_ToolButton;
			sflags = convertQt4ToTQt3SFlags(opt->state, TQT3WT_TQToolButton);
			interfaceWidget = initializeInterfaceWidget(TQT3WT_TQToolButton, w);
			if (interfaceWidget == 0) {
				can_override = false;
			}

			// Draw the correct subcontrol(s)
			sbopt = static_cast<const QStyleOptionSpinBox*>(opt);
			subControl = 0;
			if (sbopt->subControls & QStyle::SC_ToolButton) {
				subControl = subControl | TQStyle::SC_ToolButton;
			}
			if (sbopt->subControls & QStyle::SC_ToolButtonMenu) {
				subControl = subControl | TQStyle::SC_ToolButtonMenu;
			}
			break;
		case CC_GroupBox:
			NO_QT3_EQUIVALENT
			break;
		default:
			if (enable_debug_warnings) {
				printf("No rules to draw Qt4 complex control %d\n", control); fflush(stdout);
			}
			can_override = false;
	}

	if (can_override) {
		// Construct a Qt3 paint device on the Qt4 painter
		TDEQt4PaintDevice qt4pd(p);

		TQPainter tqtPainter(&qt4pd);

		if (tqtCC == TQStyle::CC_ComboBox) {
			// TQt3 expects the Style_MouseOver flag to be cleared if the certain widgets have been disabled
			if (interfaceWidget) {
				if (interfaceWidget->isEnabled() == false) {
					sflags = sflags & (~TQStyle::Style_MouseOver);
				}
			}
		}

		if (tqtCC == TQStyle::CC_TitleBar) {
			// TQt3 is expecting to see a rect() from the titlebar that excludes the window frame,
			// while Qt4 provides the entire rectangle (including the frame) via the widget/QStyleOptionTitleBar
			// This is due to the fact that under TQt3 the titlebar is a correctly positioned widget,
			// whereas under Qt4 the titlebar is part of the base widget itself.
			// Compensate...
			if (interfaceWidget) {
				TQRect tbg = interfaceWidget->geometry();
				tqtPainter.translate(tbg.x(), tbg.y());
			}
		}

		if (tqtCC == TQStyle::CC_SpinWidget) {
			// Qt4 expects both the lineedit and the spinbox outside frame to be drawn
			// Draw the outside frame before the spinbox buttons are drawn
			tqApp->style().drawPrimitive(TQStyle::PE_PanelLineEdit, &tqtPainter, tqt3rect, tqt3colorgroup, sflags, tqt3opt);
		}

		if (do_not_draw == false) {
			// Instruct TQt3 to draw the complex control
			tqApp->style().drawComplexControl(tqtCC, &tqtPainter, interfaceWidget, tqt3rect, tqt3colorgroup, sflags, subControl, subControlActive, tqt3opt);
		}

		if (tqtCC == TQStyle::CC_SpinWidget) {
			// Paint the spinbox's editor widget over the outside frame (outside the spinbutton area)
			const QSpinBox* sbWidget = dynamic_cast<const QSpinBox*>(w);
			if (sbWidget) {
				QLineEdit* sbLineEdit = sbWidget->lineEdit();
				QRect sbleRect = sbLineEdit->geometry();
				tqtPainter.setClipRect(tqt3rect.x(),tqt3rect.y(),sbleRect.x()+sbleRect.width(),tqt3rect.height());
				p->fillRect(sbleRect,convertTQt3ToQt4Color(tqt3colorgroup.base()));
			}
			else {
				if (enable_debug_warnings) {
					printf("Unable to draw Qt4 spinbox with no Qt4 object available\n"); fflush(stdout);
				}
			}

			// Now draw the outside frame again, but clipped to the editor widget side of the spinwidget this time
			// This fixes drawing glitches inside of the editor widget while leaving the spinbutton area untouched
			tqApp->style().drawPrimitive(TQStyle::PE_PanelLineEdit, &tqtPainter, tqt3rect, tqt3colorgroup, sflags, tqt3opt);
		}


		tqtPainter.end();

		// Qt4 still needs to draw the button contents over the TQt3 frame and panel
		if (tqtCC == TQStyle::CC_ToolButton) {
			drawControl(QStyle::CE_ToolButtonLabel, opt, p, w);
		}

		if (enable_debug_warnings) {
#ifdef DEBUG_SPEW
			printf("Used Qt3 complex control %d to draw Qt4 complex control %d\n", tqtCC, control); fflush(stdout);
#endif
		}
	}
	else {
		if (do_not_draw == false) {
			// Tell Qt4 to draw it
			BASE_QT4_STYLE_CLASS::drawComplexControl(control, opt, p, w);
		}
	}
}

void Qt4TDEStyle::drawControl(ControlElement element, const QStyleOption *opt, QPainter *p, const QWidget *w) const
{
	int i;
	TQStyle::SFlags sflags = 0;

	bool can_override = true;
	bool do_not_draw = false;
	TQStyle::ControlElement tqtCE;

	bool draw_second_element = false;
	TQStyle::ControlElement tqtCE_element2;

	bool draw_third_element = false;
	TQStyle::ControlElement tqtCE_element3;

	TQWidget* interfaceWidget = 0;
	TQStyleOption tqt3opt(TQStyleOption::Default);
	TQStyleOption tqt3opt_element2(TQStyleOption::Default);
	TQStyleOption tqt3opt_element3(TQStyleOption::Default);

	TQTab* drawingTab = 0;
	int estimated_tab_index;

	TQMenuItem* drawingItem = 0;
	QAction* drawingAction = 0;
	QList<QAction*> qt4menuactions;
	int tqt3tabwidth = 0;
	int tqt3iconwidth = 0;

	TQRect tqt3elementrect(opt->rect.x(), opt->rect.y(), opt->rect.width(), opt->rect.height());
	TQRect tqt3element2rect = tqt3elementrect;
	TQRect tqt3element3rect = tqt3elementrect;

	// Determine the correct color group
	sflags = convertQt4ToTQt3SFlags(opt->state, TQT3WT_NONE);
	TQPalette tqt3palette = convertQt4ToTQt3Palette(opt->palette);
	TQColorGroup tqt3colorgroup;
	if (sflags & TQStyle::Style_Enabled) {
		if (sflags & TQStyle::Style_Active) {
			tqt3colorgroup = tqt3palette.active();
		}
		else {
			tqt3colorgroup = tqt3palette.inactive();
		}
	}
	else {
		tqt3colorgroup = tqt3palette.disabled();
	}

	switch (element) {
		case QStyle::CE_ProgressBar:
			// Unlike Qt3, QStyle::CE_ProgressBar draws the bar, the groove, and the label
			tqtCE = TQStyle::CE_ProgressBarContents;
			draw_second_element = true;
			tqtCE_element2 = TQStyle::CE_ProgressBarGroove;
			draw_third_element = true;
			tqtCE_element3 = TQStyle::CE_ProgressBarLabel;
			sflags = convertQt4ToTQt3SFlags(opt->state, TQT3WT_TQProgressBar);
			interfaceWidget = initializeInterfaceWidget(TQT3WT_TQProgressBar, w, NULL, TRUE);
			if (interfaceWidget == 0) {
				can_override = false;
			}
			break;
		case QStyle::CE_ProgressBarContents:
			tqtCE = TQStyle::CE_ProgressBarContents;
			sflags = convertQt4ToTQt3SFlags(opt->state, TQT3WT_TQProgressBar);
			interfaceWidget = initializeInterfaceWidget(TQT3WT_TQProgressBar, w, NULL, TRUE);
			if (interfaceWidget == 0) {
				can_override = false;
			}
			break;
		case QStyle::CE_TabBarTab:
			// Unlike Qt3, QStyle::CE_TabBarTab draws both the tab and the label
			tqtCE = TQStyle::CE_TabBarTab;
			draw_second_element = true;
			tqtCE_element2 = TQStyle::CE_TabBarLabel;
			sflags = convertQt4ToTQt3SFlags(opt->state, TQT3WT_TQTabBar);
			interfaceWidget = initializeInterfaceWidget(TQT3WT_TQTabBar, w, NULL, TRUE);
			if (interfaceWidget == 0) {
				can_override = false;
			}
			else {
				// Convert the QStyleOption to the proper TQStyleOption
				// In other words, figure out which TQt3 tab is currently being drawn
				// Qt4 makes this really, really hard...
				// I have to guess based on the Qt4 position of the tab in the tab bar, which may or may not work 100% in all cases
				drawingTab = 0;
				estimated_tab_index = dynamic_cast<const QTabBar*>(w)->tabAt(QPoint(opt->rect.x(), opt->rect.y()));
				QRect estimated_tab_rect = dynamic_cast<const QTabBar*>(w)->tabRect(estimated_tab_index);
				TQTabBar* tabBarWidget = dynamic_cast<TQTabBar*>(interfaceWidget);
				drawingTab = tabBarWidget->tabAt(estimated_tab_index);

				if (estimated_tab_rect.contains(w->mapFromGlobal(QCursor::pos()))) {
					sflags |= TQStyle::Style_MouseOver;
				}

				if (drawingTab) {
					tqt3opt = TQStyleOption(drawingTab, (sflags & TQStyle::Style_MouseOver)?drawingTab:NULL);
					tqt3opt_element2 = TQStyleOption(drawingTab);
				}

				// HACK
				// Qt4 is BUSTED YET AGAIN
				// Grrrrr....
				// The PM_TabBarTabOverlap enum is present, BUT IS NOT IMPLEMENTED, in Qt4 (!??!?)
				// Many TDE styles use overlapping tabs, and expect to draw outside their horizontal boundaries by PM_TabBarTabOverlap pixels
				// At the very least we need to expand the drawing rect by that amount, even if the drawing gets clipped, otherwise
				// those styles will show badly broken tabs with missing chunks and added lines.
				tqt3tabwidth = tqApp->style().pixelMetric(TQStyle::PM_TabBarTabOverlap, interfaceWidget);
				if (tqt3tabwidth > 0) {
					tqt3elementrect = TQRect(tqt3elementrect.x()-tqt3tabwidth, tqt3elementrect.y(), tqt3elementrect.width()+(tqt3tabwidth*1), tqt3elementrect.height());
				}
				if (drawingTab) {
					if (drawingTab->identifier() == (TQApplication::reverseLayout() ? (tabBarWidget->count()-1) : 0)) {
						// This is the first tab in the tab bar
						// We will end up clipping on the left edge if the rectangle is not adjusted
						tqt3elementrect = TQRect(tqt3elementrect.x()+tqt3tabwidth, tqt3elementrect.y(), tqt3elementrect.width()-(tqt3tabwidth*1), tqt3elementrect.height());
					}
				}
			}
			break;
		case CE_RadioButton:
			// Unlike Qt3, QStyle::CE_RadioButton draws the button, the label, and the focus rectangle
			// FIXME
			// Handle the focus rectangle
			tqtCE = TQStyle::CE_RadioButton;
			draw_second_element = true;
			tqtCE_element2 = TQStyle::CE_RadioButtonLabel;

			sflags = convertQt4ToTQt3SFlags(opt->state, TQT3WT_TQRadioButton);
			interfaceWidget = initializeInterfaceWidget(TQT3WT_TQRadioButton, w, NULL, TRUE);
			if (interfaceWidget == 0) {
				can_override = false;
			}
			else {
				tqt3elementrect = tqApp->style().visualRect( tqApp->style().subRect(TQStyle::SR_RadioButtonIndicator, interfaceWidget), interfaceWidget);
				tqt3element2rect = tqApp->style().visualRect( tqApp->style().subRect(TQStyle::SR_RadioButtonContents, interfaceWidget), interfaceWidget);
				// HACK
				// Lock text area height to indicator height
				// [FIXME 001]
				// Figure out why this is needed!  Without it the text shows up lower than the indicator does...
				// Potential subRect() mismatch between Qt4 and TQt3?  See TQt3 qcommonstyle.cpp lines 1307 and 1315
				// Strange that this hack is not needed for the CheckBox and PushButton cases...
				tqt3element2rect.setHeight(tqt3elementrect.height());
			}
			break;
		case CE_CheckBox:
			// Unlike Qt3, QStyle::CE_CheckBox draws the button, the label, and the focus rectangle
			// FIXME
			// Handle the focus rectangle
			tqtCE = TQStyle::CE_CheckBox;
			draw_second_element = true;
			tqtCE_element2 = TQStyle::CE_CheckBoxLabel;

			sflags = convertQt4ToTQt3SFlags(opt->state, TQT3WT_TQCheckBox);
			interfaceWidget = initializeInterfaceWidget(TQT3WT_TQCheckBox, w, NULL, TRUE);
			if (interfaceWidget == 0) {
				can_override = false;
			}
			else {
				tqt3elementrect = tqApp->style().visualRect( tqApp->style().subRect(TQStyle::SR_CheckBoxIndicator, interfaceWidget), interfaceWidget);
				tqt3element2rect = tqApp->style().visualRect( tqApp->style().subRect(TQStyle::SR_CheckBoxContents, interfaceWidget), interfaceWidget);
			}
			break;
		case CE_PushButton:
			// Unlike Qt3, QStyle::CE_PushButton draws the button, the label, and the focus rectangle
			// FIXME
			// Handle the focus rectangle
			tqtCE = TQStyle::CE_PushButton;
			draw_second_element = true;
			tqtCE_element2 = TQStyle::CE_PushButtonLabel;

			sflags = convertQt4ToTQt3SFlags(opt->state, TQT3WT_TQPushButton);
			interfaceWidget = initializeInterfaceWidget(TQT3WT_TQPushButton, w, NULL, TRUE);
			if (interfaceWidget == 0) {
				can_override = false;
			}
			else {
				tqt3element2rect = tqApp->style().visualRect( tqApp->style().subRect(TQStyle::SR_PushButtonContents, interfaceWidget), interfaceWidget);
			}
			break;
		case CE_MenuItem:
			tqtCE = TQStyle::CE_PopupMenuItem;
			sflags = convertQt4ToTQt3SFlags(opt->state, TQT3WT_TQPopupMenu);
			interfaceWidget = initializeInterfaceWidget(TQT3WT_TQPopupMenu, w, NULL, TRUE);
			if (interfaceWidget == 0) {
				can_override = false;
			}
			else {
				// Convert the QStyleOption to the proper TQStyleOption
				// In other words, figure out which TQt3 menu item is currently being drawn
				// Qt4 makes this really, really hard...
				// I have to guess based on the Qt4 position of the item in the menu, which may or may not work 100% in all cases
				drawingItem = 0;
				drawingAction = dynamic_cast<const QMenu*>(w)->actionAt(QPoint(opt->rect.x(), opt->rect.y()));
				qt4menuactions = dynamic_cast<const QMenu*>(w)->actions();
				for (i=0; i<qt4menuactions.size();++i) {
					if (qt4menuactions.at(i) == drawingAction) {
						TQPopupMenu* popupMenuWidget = dynamic_cast<TQPopupMenu*>(interfaceWidget);
						drawingItem = popupMenuWidget->findItem(popupMenuWidget->idAt(i));
					}
				}

				if (drawingItem) {
					tqt3tabwidth = static_cast<const QStyleOptionMenuItem*>(opt)->tabWidth;
					tqt3iconwidth = static_cast<const QStyleOptionMenuItem*>(opt)->maxIconWidth;
					tqt3opt = TQStyleOption(drawingItem, tqt3iconwidth, tqt3tabwidth);
				}
			}
			break;
		case QStyle::CE_MenuBarItem:
			tqtCE = TQStyle::CE_MenuBarItem;
			sflags = convertQt4ToTQt3SFlags(opt->state, TQT3WT_TQMenuBar);
			interfaceWidget = initializeInterfaceWidget(TQT3WT_TQMenuBar, w, NULL, TRUE);
			if (interfaceWidget == 0) {
				can_override = false;
			}
			else {
				// Convert the QStyleOption to the proper TQStyleOption
				// In other words, figure out which TQt3 menu item is currently being drawn
				// Qt4 makes this really, really hard...
				// I have to guess based on the Qt4 position of the item in the menu, which may or may not work 100% in all cases
				drawingItem = 0;
				drawingAction = dynamic_cast<const QMenuBar*>(w)->actionAt(QPoint(opt->rect.x(), opt->rect.y()));
				qt4menuactions = dynamic_cast<const QMenuBar*>(w)->actions();
				TQMenuBar* menuBarWidget = dynamic_cast<TQMenuBar*>(interfaceWidget);
				for (i=0; i<qt4menuactions.size();++i) {
					if (qt4menuactions.at(i) == drawingAction) {
						drawingItem = menuBarWidget->findItem(menuBarWidget->idAt(i));
					}
				}

				if (drawingItem) {
					tqt3opt = TQStyleOption(drawingItem);
				}
			}
			break;
		case QStyle::CE_ToolBar:
			// TQt3 treats this as a primitive
			// It is drawn as such below
			DO_NOT_DRAW
			break;
		case QStyle::CE_HeaderSection:
			// TQt3 treats this as a primitive
			// It is drawn as such below
			DO_NOT_DRAW
			break;
		case QStyle::CE_ToolBoxTab:
			// Unlike TQt3, QStyle::CE_ToolBoxTab draws the tab, the label, and the focus rectangle
			// See below for Qt4 drawing calls
			tqtCE = TQStyle::CE_ToolBoxTab;
			sflags = convertQt4ToTQt3SFlags(opt->state, TQT3WT_TQToolBox);
			interfaceWidget = initializeInterfaceWidget(TQT3WT_TQToolBox, w, NULL, TRUE);
			if (interfaceWidget == 0) {
				can_override = false;
			}
			break;
		case QStyle::CE_MenuBarEmptyArea:
			tqtCE = TQStyle::CE_MenuBarEmptyArea;
			sflags = convertQt4ToTQt3SFlags(opt->state, TQT3WT_TQMenuBar);
			interfaceWidget = initializeInterfaceWidget(TQT3WT_TQMenuBar, w, NULL, TRUE);
			if (interfaceWidget == 0) {
				can_override = false;
			}
			break;
		case QStyle::CE_MenuEmptyArea:
			// Ignore request as Qt3 has no equivalent
			can_override = false;
			break;
		case QStyle::CE_ItemViewItem:
			// Ignore request as Qt3 has no equivalent
			can_override = false;
			break;
		case QStyle::CE_ShapedFrame:
			// Ignore request as Qt3 has no equivalent
			can_override = false;
			break;
		case QStyle::CE_TabBarTabShape:
			// Ignore request as Qt3 has no equivalent
			can_override = false;
			break;
		case QStyle::CE_ScrollBarAddLine:
			// Ignore request as Qt3 has no equivalent
			can_override = false;
			break;
		case QStyle::CE_ScrollBarSubLine:
			// Ignore request as Qt3 has no equivalent
			can_override = false;
			break;
		case QStyle::CE_ScrollBarAddPage:
			// Ignore request as Qt3 has no equivalent
			can_override = false;
			break;
		case QStyle::CE_ScrollBarSubPage:
			// Ignore request as Qt3 has no equivalent
			can_override = false;
			break;
		case QStyle::CE_ScrollBarSlider:
			// Ignore request as Qt3 has no equivalent
			can_override = false;
			break;
		case QStyle::CE_ScrollBarFirst:
			// Ignore request as Qt3 has no equivalent
			can_override = false;
			break;
		case QStyle::CE_ScrollBarLast:
			// Ignore request as Qt3 has no equivalent
			can_override = false;
			break;
		default:
			if (enable_debug_warnings) {
				printf("No rules to draw Qt4 control %d\n", element); fflush(stdout);
			}
			can_override = false;
	}

	if (can_override) {
		// Construct a Qt3 paint device on the Qt4 painter
		TDEQt4PaintDevice qt4pd(p);

		TQPainter tqtPainter(&qt4pd);

		if (element == QStyle::CE_TabBarTab) {
			// CE_TabBarTab doesn't draw the base panel of the tab
			tqt3tabwidth = tqApp->style().pixelMetric(TQStyle::PM_TabBarTabOverlap, interfaceWidget);
			tqtPainter.fillRect(TQRect(tqt3elementrect.x()+tqt3tabwidth, tqt3elementrect.y(), tqt3elementrect.width()-(tqt3tabwidth*2), tqt3elementrect.height()), tqt3colorgroup.background());
		}

		if (element == QStyle::CE_ToolBar) {
			tqApp->style().drawPrimitive(TQStyle::PE_PanelDockWindow, &tqtPainter, tqt3elementrect, tqt3colorgroup, sflags, tqt3opt);
		}

		if (element == QStyle::CE_HeaderSection) {
			tqApp->style().drawPrimitive(TQStyle::PE_HeaderSection, &tqtPainter, tqt3elementrect, tqt3colorgroup, sflags, tqt3opt);
		}

		if (do_not_draw == false) {
			// Instruct TQt3 to draw the control
			// FIXME
			// Implement sflags and QStyleOption
			tqApp->style().drawControl(tqtCE, &tqtPainter, interfaceWidget, tqt3elementrect, tqt3colorgroup, sflags, tqt3opt);
			if (draw_second_element == true) {
				tqApp->style().drawControl(tqtCE_element2, &tqtPainter, interfaceWidget, tqt3element2rect, tqt3colorgroup, sflags, tqt3opt_element2);
			}
			if (draw_third_element == true) {
				tqApp->style().drawControl(tqtCE_element3, &tqtPainter, interfaceWidget, tqt3element3rect, tqt3colorgroup, sflags, tqt3opt_element3);
			}
		}

		tqtPainter.end();

		if (tqtCE == TQStyle::CE_ToolBoxTab) {
			// Instruct Qt4 to draw the label
			BASE_QT4_STYLE_CLASS::drawControl(QStyle::CE_ToolBoxTabLabel, opt, p, w);
		}

		if (enable_debug_warnings) {
#ifdef DEBUG_SPEW
			printf("Used Qt3 control %d to draw Qt4 control %d\n", tqtCE, element); fflush(stdout);
#endif
		}
	}
	else {
		if (do_not_draw == false) {
			// Tell Qt4 to draw it
			BASE_QT4_STYLE_CLASS::drawControl(element, opt, p, w);
		}
	}
}

void Qt4TDEStyle::drawPrimitive(PrimitiveElement pe, const QStyleOption *opt, QPainter *p, const QWidget *w) const
{
	// Construct a Qt3 paint device translator on the Qt4 painter
	TDEQt4PaintDevice qt4pd(p);

	// Open a painter on the paint device translator
	TQPainter tqtPainter(&qt4pd);

	TQRect tqt3paintrect = TQRect(opt->rect.x(), opt->rect.y(), opt->rect.width(), opt->rect.height());

	bool can_override = true;
	bool do_not_draw = false;
	bool draw_transparent_background = false;
	TQStyle::PrimitiveElement tqtPE;
	TQStyleOption tqt3opt(TQStyleOption::Default);

	// Convert the style flags
	TQStyle::SFlags sflags = convertQt4ToTQt3SFlags(opt->state, TQT3WT_NONE);

	// NOTE: Qt3 seems to combine PE_FrameMenu and PE_PanelMenu into PE_PanelPopup

	switch (pe) {
		case QStyle::PE_Frame:
			tqtPE = TQStyle::PE_Panel;
			tqt3opt = TQStyleOption(static_cast<const QStyleOptionFrame*>(opt)->lineWidth, static_cast<const QStyleOptionFrame*>(opt)->midLineWidth);
			break;
		case QStyle::PE_FrameMenu:
			tqtPE = TQStyle::PE_PanelPopup;
			tqt3opt = TQStyleOption(static_cast<const QStyleOptionFrame*>(opt)->lineWidth, static_cast<const QStyleOptionFrame*>(opt)->midLineWidth);
			break;
		case QStyle::PE_PanelMenuBar:
			tqtPE = TQStyle::PE_PanelMenuBar;
			tqt3opt = TQStyleOption(static_cast<const QStyleOptionFrame*>(opt)->lineWidth, static_cast<const QStyleOptionFrame*>(opt)->midLineWidth);
			break;
		case QStyle::PE_PanelMenu:
			tqtPE = TQStyle::PE_PanelPopup;
			tqt3opt = TQStyleOption(static_cast<const QStyleOptionFrame*>(opt)->lineWidth, static_cast<const QStyleOptionFrame*>(opt)->midLineWidth);
			break;
		case QStyle::PE_PanelToolBar:
			tqtPE = TQStyle::PE_PanelDockWindow;
			tqt3opt = TQStyleOption(static_cast<const QStyleOptionFrame*>(opt)->lineWidth, static_cast<const QStyleOptionFrame*>(opt)->midLineWidth);
			break;
		case QStyle::PE_PanelButtonBevel:
			sflags = convertQt4ToTQt3SFlags(opt->state, TQT3WT_TQPushButton);
			tqtPE = TQStyle::PE_ButtonBevel;
			break;
		case QStyle::PE_FrameLineEdit:
			tqtPE = TQStyle::PE_PanelLineEdit;
			break;
		case QStyle::PE_PanelStatusBar:
			tqtPE = TQStyle::PE_Panel;
			break;
		case QStyle::PE_PanelButtonTool:
			tqtPE = TQStyle::PE_ButtonTool;
			break;
		case QStyle::PE_FrameGroupBox:
			tqtPE = TQStyle::PE_GroupBoxFrame;
			tqt3opt = TQStyleOption(static_cast<const QStyleOptionFrame*>(opt)->lineWidth, static_cast<const QStyleOptionFrame*>(opt)->midLineWidth);
			break;
		case QStyle::PE_FrameWindow:
			tqtPE = TQStyle::PE_WindowFrame;
			tqt3opt = TQStyleOption(static_cast<const QStyleOptionFrame*>(opt)->lineWidth, static_cast<const QStyleOptionFrame*>(opt)->midLineWidth);
			break;
		case QStyle::PE_FrameFocusRect:
			// HACK
			// Qt4 tries to draw a focus rectangle around the entire tab
			// Needless to say this is ugly
			// TQt3 tries to draw the focus rectangle around the tab text only, which is better
			if (dynamic_cast<const QTabBar*>(w)) {
				// FIXME
				// We should attempt to draw the focus rectangle around the tab's text instead
				DO_NOT_DRAW
			}
			else {
				tqtPE = TQStyle::PE_FocusRect;
			}
			break;
		case QStyle::PE_FrameButtonTool:
			tqtPE = TQStyle::PE_ButtonTool;
			break;
		case QStyle::PE_IndicatorToolBarHandle:
			tqtPE = TQStyle::PE_DockWindowHandle;
			break;
		case QStyle::PE_IndicatorToolBarSeparator:
			tqtPE = TQStyle::PE_DockWindowSeparator;
			break;
		case QStyle::PE_IndicatorDockWidgetResizeHandle:
			tqtPE = TQStyle::PE_DockWindowResizeHandle;
			break;
		case QStyle::PE_IndicatorMenuCheckMark:
			tqtPE = TQStyle::PE_Indicator;
			break;
		case QStyle::PE_PanelTipLabel:
			NO_QT3_EQUIVALENT
			break;
		case QStyle::PE_PanelItemViewItem:
			NO_QT3_EQUIVALENT
			break;
		case QStyle::PE_PanelItemViewRow:
			NO_QT3_EQUIVALENT
			break;
		case QStyle::PE_PanelScrollAreaCorner:
			NO_QT3_EQUIVALENT
			break;
		case QStyle::PE_FrameTabBarBase:
			NO_QT3_EQUIVALENT
			break;
		case QStyle::PE_IndicatorBranch:
			NO_QT3_EQUIVALENT
			break;
		case QStyle::PE_IndicatorHeaderArrow:
			tqtPE = TQStyle::PE_HeaderArrow;
			break;
		case QStyle::PE_FrameTabWidget:
			tqtPE = TQStyle::PE_PanelTabWidget;
			// HACK
			// For an unknown reason Qt4 paints the tab border 2 pixels lower and shorter than it should
			// FIXME
			// Figure out why that happens!
			tqt3paintrect = TQRect(tqt3paintrect.x(), tqt3paintrect.y()-2, tqt3paintrect.width(), tqt3paintrect.height()+2);
			p->setClipRect(QRect(tqt3paintrect.x(), tqt3paintrect.y(), tqt3paintrect.width(), tqt3paintrect.height()));
			break;
		case QStyle::PE_FrameDefaultButton:
			tqtPE = TQStyle::PE_ButtonDefault;
			break;
		case QStyle::PE_PanelButtonCommand:
			tqtPE = TQStyle::PE_ButtonCommand;
			break;
		case QStyle::PE_IndicatorProgressChunk:
			tqtPE = TQStyle::PE_ProgressBarChunk;
			break;
		case QStyle::PE_IndicatorArrowDown:
			tqtPE = TQStyle::PE_ArrowDown;
			break;
		case QStyle::PE_IndicatorArrowLeft:
			tqtPE = TQStyle::PE_ArrowLeft;
			break;
		case QStyle::PE_IndicatorArrowRight:
			tqtPE = TQStyle::PE_ArrowRight;
			break;
		case QStyle::PE_IndicatorArrowUp:
			tqtPE = TQStyle::PE_ArrowUp;
			break;
		case QStyle::PE_IndicatorCheckBox:
			tqtPE = TQStyle::PE_Indicator;
			break;
		case QStyle::PE_IndicatorRadioButton:
			tqtPE = TQStyle::PE_ExclusiveIndicator;
			break;
		case QStyle::PE_IndicatorSpinDown:
			tqtPE = TQStyle::PE_SpinWidgetDown;
			break;
		case QStyle::PE_IndicatorSpinUp:
			tqtPE = TQStyle::PE_SpinWidgetUp;
			break;
		case QStyle::PE_IndicatorSpinPlus:
			tqtPE = TQStyle::PE_SpinWidgetPlus;
			break;
		case QStyle::PE_IndicatorSpinMinus:
			tqtPE = TQStyle::PE_SpinWidgetMinus;
			break;
		case QStyle::PE_IndicatorTabTear:
			NO_QT3_EQUIVALENT
			break;
		case QStyle::PE_FrameStatusBarItem:
			NO_QT3_EQUIVALENT
			break;
		case QStyle::PE_PanelLineEdit:
			// Under Qt4 this draws both the panel and the frame
			// Under TQt3 it only draws the frame
			// See resultant background fill routine directly before drawPrimitive below
			// Also, the given rectangle is only valid for LineEdit widgets without a parent QSpinBox, QComboBox, or similar widget
			// For those widgets we must draw a transparent background
			tqtPE = TQStyle::PE_PanelLineEdit;
			if (dynamic_cast<QSpinBox*>(w->parent()) || dynamic_cast<QComboBox*>(w->parent())) {
				draw_transparent_background = true;
			}
			break;
		// Qt3 support elements
		case QStyle::PE_Q3Separator:
			tqtPE = TQStyle::PE_Separator;
			break;
		default:
			if (enable_debug_warnings) {
				printf("No rules to draw Qt4 element %d\n", pe); fflush(stdout);
			}
			can_override = false;
	}

	// Determine the correct color group
	TQPalette tqt3palette = convertQt4ToTQt3Palette(opt->palette);
	TQColorGroup tqt3colorgroup;
	if (sflags & TQStyle::Style_Enabled) {
		if (sflags & TQStyle::Style_Active) {
			tqt3colorgroup = tqt3palette.active();
		}
		else {
			tqt3colorgroup = tqt3palette.inactive();
		}
	}
	else {
		tqt3colorgroup = tqt3palette.disabled();
	}

	if (can_override) {
		// Construct a Qt3 paint device on the Qt4 painter
		TDEQt4PaintDevice qt4pd(p);

		TQPainter tqtPainter(&qt4pd);

		// Certain primitives require additional drawing operations that Qt4 now expects
		if (tqtPE == TQStyle::PE_PanelLineEdit) {
			if (draw_transparent_background == false) {
				// Tell Qt4 to draw the background
				BASE_QT4_STYLE_CLASS::drawPrimitive(pe, opt, p, w);
			}
			else {
				p->fillRect(opt->rect, Qt::transparent);
			}
		}

		if (do_not_draw == false) {
			// Instruct TQt3 to draw the primitive
			if (!((tqtPE == TQStyle::PE_PanelLineEdit) && (draw_transparent_background == true))) {
				tqApp->style().drawPrimitive(tqtPE, &tqtPainter, tqt3paintrect, tqt3colorgroup, sflags, tqt3opt);
			}
		}

		tqtPainter.end();

		if (enable_debug_warnings) {
#ifdef DEBUG_SPEW
			printf("Used Qt3 element %d to draw Qt4 element %d\n", tqtPE, pe); fflush(stdout);
#endif
		}
	}
	else {
		if (do_not_draw == false) {
			// Tell Qt4 to draw it
			BASE_QT4_STYLE_CLASS::drawPrimitive(pe, opt, p, w);
		}
	}
}